:root{
  --bg:#0b0d10;
  --panel:#11141a;
  --panel2:#0f1217;
  --text:#f5f5f7;
  --muted:#9b9b9f;
  --line:rgba(255,255,255,.10);
  --line2:rgba(255,255,255,.16);
  --radius:22px;
  --shadow:0 18px 50px rgba(0,0,0,.35);
}

*{margin:0;padding:0;box-sizing:border-box;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial}
html{scroll-behavior:smooth}
body{background:var(--bg);color:var(--text);-webkit-font-smoothing:antialiased;overflow-x:hidden}
a{color:inherit;text-decoration:none}
img,video{display:block;max-width:100%}

.container{width:min(1180px, calc(100% - 56px)); margin:0 auto;}
.container.narrow{width:min(860px, calc(100% - 56px)); margin:0 auto;}
.section{padding:120px 0;}
.section-alt{background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));}
.muted{color:var(--muted);}
.lead{font-size:18px; line-height:1.8; color:rgba(245,245,247,.9);}
.fine{font-size:12px; line-height:1.6;}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:32px;}
.section-head.tight{margin-bottom:18px;}
h1{font-size:64px; line-height:1.06; letter-spacing:-.6px;}
h2{font-size:38px; letter-spacing:-.4px;}
h3{font-size:16px; margin-bottom:10px;}
p{line-height:1.85}

/* NAV */
.nav{
  position:fixed; inset:0 0 auto 0;
  background:rgba(11,13,16,.68);
  backdrop-filter: blur(18px);
  border-bottom:1px solid var(--line);
  z-index:1000;
}
.nav-inner{
  height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 28px;
}
.logo{font-weight:700; letter-spacing:.2px;}
.nav-links{display:flex; align-items:center; gap:18px; font-size:13px;}
.nav-links a{opacity:.9}
.nav-links a:hover{opacity:1}
.nav-cta{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line2);
  background:rgba(255,255,255,.05);
}
.nav-secondary{padding:10px 14px; border-radius:999px; border:1px solid var(--line);}

.burger{
  display:none;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  align-items:center;
  justify-content:center;
  gap:6px;
  cursor:pointer;
}
.burger span{display:block;width:18px;height:2px;background:rgba(245,245,247,.9);border-radius:2px}

/* Mobile menu */
.mobile-menu{
  position:fixed; inset:76px 0 0 0;
  background:rgba(11,13,16,.96);
  backdrop-filter: blur(16px);
  border-top:1px solid var(--line);
  transform: translateY(-12px);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
  display:flex;
  flex-direction:column;
  padding:22px 22px;
  gap:12px;
}
.nav.is-open .mobile-menu{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.mobile-menu a{
  padding:14px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.02);
}
.mobile-cta{border-color:var(--line2); background:rgba(255,255,255,.06) !important;}
.mobile-cta.ghost{background:rgba(255,255,255,.02) !important;}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 20px;
  border-radius:999px;
  border:1px solid var(--line);
  transition:transform .22s ease, background .22s ease, border-color .22s ease;
  font-size:14px;
  user-select:none;
}
.btn:hover{transform:translateY(-2px); border-color:var(--line2);}
.btn.primary{background:rgba(255,255,255,.07); border-color:var(--line2);}
.btn.primary:hover{background:rgba(255,255,255,.10);}
.btn.ghost{background:rgba(255,255,255,.02);}
.btn.full{width:100%}

/* HERO (scroll story) */
.hero{height:320vh; position:relative; padding-top:76px;}
.hero-stage{
  position:sticky; top:76px;
  height:calc(100vh - 76px);
  overflow:hidden;
  border-bottom:1px solid var(--line);
}
.hero-video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transform:scale(1);
  filter:brightness(.62) contrast(1.05) saturate(1.05);
}
.hero-overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(65% 85% at 30% 20%, rgba(0,0,0,.15), rgba(0,0,0,.72)),
    linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.82));
}
.hero-start, .hero-slide{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  text-align:left;
  width:min(920px, calc(100% - 56px));
  z-index:5;
}
.hero-start .kicker{font-size:12px; letter-spacing:2px; text-transform:uppercase; color:rgba(245,245,247,.75); margin-bottom:14px;}
.hero-sub{font-size:18px; color:rgba(245,245,247,.78); max-width:720px; line-height:1.75;}
.hero-actions{margin-top:22px; display:flex; gap:12px; flex-wrap:wrap;}
.hero-hint{margin-top:18px; color:rgba(245,245,247,.55); font-size:12px; letter-spacing:2px; text-transform:uppercase;}

.hero-slide{opacity:0; text-align:left;}
.hero-slide h2{margin:10px 0 12px 0;}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  font-size:12px;
  color:rgba(245,245,247,.82);
}

/* Work */
.work-grid{display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-top:18px;}
.work-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:rgba(255,255,255,.02);
  box-shadow:var(--shadow);
}
.work-media{height:420px; overflow:hidden;}
.work-media video{width:100%; height:100%; object-fit:cover; transform:scale(1.02);}
.work-meta{padding:16px 16px 18px;}
.work-title{font-weight:700;}
.work-sub{color:var(--muted); font-size:13px; margin-top:6px;}

/* Strip CTA */
.strip{
  margin-top:26px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.02);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.strip-title{font-weight:700}
.strip-sub{color:var(--muted); margin-top:6px; font-size:13px;}

/* Cards */
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:18px;}
.card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.02);
  padding:22px;
}
.bullets{margin:12px 0 0 18px; color:var(--muted); line-height:1.9;}
.bullets li{margin:2px 0}

/* Two col */
.two-col{display:grid; grid-template-columns:1fr 1.2fr; gap:52px; align-items:center;}
.media img{
  border-radius:32px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.pill-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px;}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px;}

/* Steps */
.steps{display:grid; grid-template-columns:repeat(5,1fr); gap:14px; margin-top:18px;}
.step{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.02);
  padding:16px;
  display:flex;
  gap:12px;
}
.step-num{font-weight:800; color:rgba(245,245,247,.85)}
.step-body span{display:block; color:var(--muted); font-size:13px; line-height:1.6; margin-top:6px;}

/* Pricing */
.pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:18px;}
.price-card{
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.02);
  padding:22px;
  position:relative;
}
.price-card.featured{border-color:rgba(255,255,255,.18); background:rgba(255,255,255,.03)}
.badge{
  position:absolute; top:14px; right:14px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:6px 10px;
  font-size:11px;
  color:var(--muted);
  background:rgba(255,255,255,.02);
}
.price-top{display:flex; justify-content:space-between; gap:10px; align-items:flex-end;}
.price{font-weight:800; color:rgba(245,245,247,.95);}
.price-card ul{margin:14px 0 0 18px; color:var(--muted); line-height:1.9;}
.note{margin-top:18px; color:var(--muted); font-size:13px;}

/* FAQ (Apple-like smooth) */
.faq{display:grid; gap:12px;}
.faq-item{
  border:1px solid var(--line);
  border-radius:18px;
  background:rgba(255,255,255,.015);
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-weight:700;
  font-size:14px;
}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-icon{width:18px;height:18px;position:relative;opacity:.85;}
.faq-icon::before,.faq-icon::after{
  content:"";position:absolute;inset:0;margin:auto;background:rgba(245,245,247,.85);border-radius:2px;
}
.faq-icon::before{width:14px;height:2px;}
.faq-icon::after{width:2px;height:14px; transition:transform .25s ease;}
.faq-item[open] .faq-icon::after{transform:scaleY(0);}
.faq-content{
  height:0;
  overflow:hidden;
  padding:0 18px;
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
  transition:height .35s cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-content{padding-bottom:18px;}
.faq-item[open]{border-color:rgba(255,255,255,.14);}

/* Contact */
.contact-grid{display:grid; grid-template-columns:1fr 1.1fr; gap:18px; margin-top:12px;}
.contact-links{display:flex; flex-direction:column; gap:10px; margin-top:12px;}
.contact-links a{border-bottom:1px solid var(--line); width:fit-content; padding-bottom:3px; color:rgba(245,245,247,.92)}
.form{display:flex; flex-direction:column; gap:12px; margin-top:12px;}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:12px;}
input,textarea,select{
  width:100%;
  padding:14px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--text);
  outline:none;
}
select option{background:#0b0d10;color:var(--text)}
.checkbox{display:flex; gap:10px; align-items:flex-start; font-size:12px; color:var(--muted);}
.checkbox a{border-bottom:1px solid var(--line); padding-bottom:2px;}
.checkbox input{width:16px;height:16px;margin-top:2px}

/* Footer */
.footer{border-top:1px solid var(--line); padding:36px 0;}
.footer-inner{display:flex; align-items:flex-start; justify-content:space-between; gap:18px;}
.footer-brand{font-weight:800;}
.footer-links{display:flex; gap:18px;}
.footer-links a{color:rgba(245,245,247,.92); border-bottom:1px solid transparent}
.footer-links a:hover{border-bottom-color:var(--line);}

/* Legal pages */
.legal{
  padding-top:110px;
}
.legal .container{width:min(920px, calc(100% - 56px));}
.legal h1{font-size:44px;}
.legal h2{font-size:22px; margin-top:22px;}
.legal p, .legal li{color:rgba(245,245,247,.86)}
.legal a{border-bottom:1px solid var(--line); padding-bottom:2px}

/* Responsive */
@media (max-width: 1020px){
  .nav-links{display:none;}
  .burger{display:flex;}
  .hero{padding-top:76px;height:260vh;}
  h1{font-size:44px;}
  .work-grid{grid-template-columns:1fr;}
  .work-media{height:320px;}
  .grid-3{grid-template-columns:1fr;}
  .two-col{grid-template-columns:1fr; gap:26px;}
  .steps{grid-template-columns:1fr;}
  .pricing-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .grid-2{grid-template-columns:1fr;}
  .strip{flex-direction:column; align-items:flex-start;}
  .hero-stage{top:76px; height:calc(100vh - 76px);}
}
@media (max-width: 520px){
  .nav-inner{padding:0 18px;}
  .container{width:calc(100% - 36px);}
  .container.narrow{width:calc(100% - 36px);}
}