﻿:root {
  --bg: #060a10;
  --panel: rgba(12, 18, 28, 0.78);
  --line: rgba(147, 167, 201, 0.26);
  --text: #f5f8ff;
  --muted: #b7c3d9;
  --accent: #45e3c5;
  --warm: #ffc87a;
  --maxw: 1160px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at 12% 15%, #0d2840 0%, var(--bg) 35%),
    radial-gradient(circle at 88% 88%, #2a1f34 0%, var(--bg) 34%), var(--bg);
  color: var(--text);
  font-family: "Sora", sans-serif;
  scroll-behavior: smooth;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 2px 2px;
  opacity: .22;
  z-index: 0;
}

.wrap {
  width: min(var(--maxw), calc(100% - 2.6rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.topbar {
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  letter-spacing: .05em;
}
.brand span { color: var(--accent); }

nav { display: flex; gap: 1.2rem; }
nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: .93rem;
}
nav a:hover { color: var(--text); }

.kicker {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .72rem;
  font-weight: 700;
}

.hero {
  padding: 3.2rem 0 2.8rem;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.hero h1 {
  margin: .7rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  line-height: .95;
  letter-spacing: .02em;
  font-size: clamp(2.5rem, 6.3vw, 5.2rem);
}
.hero h1 em { color: var(--warm); font-style: normal; }

.lead {
  margin-top: 1rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 620px;
}

.hero-media img {
  width: 100%;
  border-radius: 1.15rem;
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px rgba(0,0,0,.45);
}

.hero-cta { margin-top: 1.35rem; display: flex; gap: .7rem; flex-wrap: wrap; }

.btn {
  border-radius: 999px;
  padding: .8rem 1.22rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .22s ease, opacity .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-main { background: linear-gradient(135deg, var(--accent), #70f6da); color: #001412; }
.btn-ghost { background: rgba(255,255,255,.03); border-color: var(--line); color: var(--text); }

section { padding: 2.9rem 0; }
.section-head h2 {
  margin: .45rem 0 0;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .03em;
  font-size: clamp(2rem, 4.8vw, 3.5rem);
}
.section-head p { color: var(--muted); margin-top: .6rem; }

.reels-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.reel-card {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: .7rem;
  background: var(--panel);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.reel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(126, 246, 221, .46);
  box-shadow: 0 16px 34px rgba(3, 10, 20, .45);
}
.reel-card h3 { margin: .75rem 0 .4rem; font-size: 1rem; }
.reel-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }

.reel-frame {
  position: relative;
  border-radius: .85rem;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #000;
}
.reel-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sound-toggle {
  position: absolute;
  right: .55rem;
  top: .55rem;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  color: #fff;
  background: rgba(0,0,0,.55);
  font-size: .78rem;
  padding: .3rem .62rem;
  cursor: pointer;
}

.portfolio-more {
  margin-top: 1.2rem;
  text-align: center;
}

.about-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}
.about-text,
.about-photo,
.ia-cards article,
.contact {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.2rem;
}
.about-text p { margin: 0; color: var(--muted); line-height: 1.7; }
.about-text ul { margin: .9rem 0 0; padding-left: 1rem; color: var(--text); display: grid; gap: .4rem; }
.about-photo img { width: 100%; border-radius: .85rem; display: block; }

.ia-cards {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.ia-cards h3 { margin: 0; font-size: 1rem; }
.ia-cards p { margin: .45rem 0 0; color: var(--muted); line-height: 1.6; }

.contact h2 {
  margin: .55rem 0 .65rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: .03em;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
}
.contact p { color: var(--muted); margin: 0; }
.contact-actions { margin-top: 1rem; display: flex; gap: .7rem; flex-wrap: wrap; }

.footer {
  color: #96a5c2;
  font-size: .86rem;
  padding: 1.4rem 0 2.2rem;
}

.motion-item {
  opacity: 0;
  transform: translateY(22px) scale(.985);
  filter: blur(5px);
  transition: opacity .75s ease, transform .75s ease, filter .75s ease;
  transition-delay: var(--motion-delay, 0ms);
}
.motion-item.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.scroll-float {
  will-change: transform;
  transition: transform .12s linear;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .motion-item,
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .scroll-float {
    transform: none !important;
    transition: none;
  }
}

@media (max-width: 1020px) {
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .reels-grid,
  .ia-cards { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .wrap { width: calc(100% - 1.5rem); }
  .reels-grid,
  .ia-cards { grid-template-columns: 1fr; }
}
