*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #080c18; --cyan: #00d4e0; --cyan-glow: rgba(0,212,224,.25);
  --white: #fff; --gray: #8b92a5; --muted: #3d4459;
  --border: rgba(255,255,255,.07); --border2: rgba(255,255,255,.04);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--bg); color: var(--white); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%; height: 64px;
  background: rgba(8,12,24,.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-mark { display: flex; align-items: center; }
.nav-mark svg { width: 48px; height: 40px; }
.nav-name { font-size: 20px; font-weight: 300; letter-spacing: -0.5px; color: #fff; }
.nav-name em { font-style: normal; font-weight: 600; }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray); font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.btn-demo { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid var(--border); color: #fff; padding: 8px 18px; border-radius: 100px; font-size: 14px; font-weight: 500; text-decoration: none; transition: all .2s; }
.btn-demo:hover { background: rgba(255,255,255,.1); }
.demo-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1}50%{opacity:.4} }

/* ── HERO ── */
#hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 100px 6% 60px; text-align: center; position: relative; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-content { position: relative; z-index: 1; max-width: 740px; }
.announce-pill { display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--border); color: var(--gray); padding: 7px 16px; border-radius: 100px; font-size: 13px; margin-bottom: 48px; }
.a-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); animation: pulse 2s infinite; }
h1 { font-size: clamp(36px,5vw,64px); font-weight: 500; line-height: 1.08; letter-spacing: -2.5px; margin-bottom: 24px; }
.hero-sub { font-size: 18px; color: var(--gray); line-height: 1.7; font-weight: 300; max-width: 500px; margin: 0 auto 44px; }
.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 72px; }
.btn-primary { display: flex; align-items: center; gap: 8px; background: var(--cyan); color: #050810; padding: 13px 28px; border-radius: 100px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all .2s; box-shadow: 0 0 32px rgba(0,212,224,.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 48px rgba(0,212,224,.45); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: #fff; padding: 13px 28px; border-radius: 100px; font-size: 15px; text-decoration: none; transition: all .2s; }
.btn-outline:hover { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04); }
.scroll-cue { font-size: 10px; font-weight: 600; letter-spacing: 3px; color: var(--muted); text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-cue::after { content:''; width:1px; height:28px; background: linear-gradient(var(--muted),transparent); }
.logo-bar { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; margin-top: 56px; padding-top: 36px; border-top: 1px solid var(--border2); width: 100%; }
.lb-label { font-size: 11px; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-right: 28px; }
.lb-items { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lb-badge { font-size: 11px; font-weight: 600; color: var(--cyan); letter-spacing: 0.5px; padding: 5px 14px; border-radius: 100px; border: 1px solid rgba(0,212,224,.25); background: rgba(0,212,224,.06); }

/* ── SCROLL STORY ── */
#story { position: relative; }
.story-sticky {
  position: sticky; top: 0; height: 100vh; z-index: 10;
  pointer-events: none; overflow: hidden;
}
#story-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.story-prog {
  position: absolute; top: 80px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 0; z-index: 20;
}
.sp-n { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 1px; transition: color .4s; }
.sp-n.on { color: var(--cyan); }
.sp-l { width: 56px; height: 1px; background: var(--muted); margin: 0 10px; position: relative; overflow: hidden; }
.sp-l::after { content:''; position:absolute; left:-100%; top:0; width:100%; height:100%; background: var(--cyan); transition: left .6s ease; }
.sp-l.on::after { left: 0; }
.story-text-overlay {
  position: absolute; bottom: 10%; left: 0; right: 0;
  text-align: center; z-index: 20; padding: 0 8%;
}
.story-label {
  font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px; transition: color .6s;
}
.story-headline {
  font-size: clamp(24px,3.5vw,48px); font-weight: 400; letter-spacing: -1.5px;
  line-height: 1.1; max-width: 640px; margin: 0 auto 12px;
  transition: all .5s;
}
.story-desc {
  font-size: 15px; color: var(--gray); font-weight: 300; max-width: 480px;
  margin: 0 auto; line-height: 1.65; transition: all .5s;
}
.story-panels { position: relative; z-index: 5; }
.story-panel { height: 80vh; }

/* ── SECTIONS ── */
section { padding: 96px 6%; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); margin-bottom: 16px; }
.sec-h2 { font-size: clamp(28px,3vw,44px); font-weight: 400; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 16px; }
.sec-sub { font-size: 17px; color: var(--gray); line-height: 1.7; font-weight: 300; max-width: 520px; margin-bottom: 56px; }

/* ── SERVICES ── */
#services { background: rgba(13,17,32,.5); }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.svc-cell { padding: 28px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background .2s; }
.svc-cell:hover { background: rgba(0,212,224,.04); }
.svc-cell:nth-child(4n) { border-right: none; }
.svc-cell:nth-child(n+5) { border-bottom: none; }
.svc-icon { font-size: 20px; margin-bottom: 12px; color: var(--cyan); }
.svc-cell h4 { font-size: 14px; font-weight: 600; margin-bottom: 5px; }
.svc-cell p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── PACKAGES ── */
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border-radius: 20px; overflow: hidden; margin-top: 56px; }
.pkg { background: var(--bg); padding: 40px 28px; position: relative; transition: background .25s; }
.pkg:hover { background: rgba(13,17,32,.9); }
.pkg.featured { background: rgba(0,212,224,.04); }
.pkg-pop { position: absolute; top: 18px; right: 18px; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cyan); background: rgba(0,212,224,.1); border: 1px solid rgba(0,212,224,.25); padding: 3px 10px; border-radius: 4px; }
.pkg-tier { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); font-weight: 600; margin-bottom: 10px; }
.pkg-name { font-size: 22px; font-weight: 500; letter-spacing: -.5px; margin-bottom: 4px; }
.pkg-desc { font-size: 13px; color: var(--gray); margin-bottom: 12px; font-weight: 300; }
.pkg-price { font-size: 14px; color: var(--white); margin-bottom: 24px; font-weight: 300; }
.pkg-price strong { font-weight: 600; font-size: 18px; }
.pkg-div { height: 1px; background: var(--border); margin-bottom: 22px; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pkg-list li { display: flex; gap: 10px; font-size: 13px; color: var(--gray); align-items: flex-start; }
.pkg-list li::before { content:''; width:14px; height:14px; border-radius:50%; flex-shrink:0; margin-top:1px; border:1px solid rgba(0,212,224,.35); background:rgba(0,212,224,.08) url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%2300d4e0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center; }
.btn-pkg { display:block; width:100%; padding:12px; border-radius:100px; font-size:14px; font-weight:500; text-align:center; text-decoration:none; transition:all .2s; border:1px solid var(--border); background:transparent; color:#fff; }
.btn-pkg:hover { border-color:rgba(255,255,255,.2); background:rgba(255,255,255,.04); }
.btn-pkg.cta { background:var(--cyan); border-color:var(--cyan); color:#050810; font-weight:600; box-shadow:0 0 20px rgba(0,212,224,.25); }
.btn-pkg.cta:hover { box-shadow:0 0 32px rgba(0,212,224,.4); transform:translateY(-1px); }

/* ── METRICS ── */
#metrics { text-align: center; }
.met-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border-radius: 20px; overflow: hidden; margin-top: 56px; }
.met-cell { background: var(--bg); padding: 44px 24px; transition: background .2s; }
.met-cell:hover { background: rgba(0,212,224,.04); }
.met-val { font-size: clamp(38px,4vw,54px); font-weight: 500; letter-spacing: -2px; line-height: 1; margin-bottom: 10px; }
.met-val .c { color: var(--cyan); }
.met-desc { font-size: 13px; color: var(--gray); }

/* ── TESTIMONIALS / SOCIAL PROOF ── */
#testimonials { border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); }
.t-inner { max-width: 700px; margin: 0 auto; }

/* ── CTA ── */
#cta { padding: 130px 6%; }
.cta-box { max-width: 720px; margin: 0 auto; text-align: center; border: 1px solid rgba(0,212,224,.15); border-radius: 24px; padding: 72px 44px; background: rgba(0,212,224,.03); position: relative; overflow: hidden; }
.cta-box::before { content:''; position:absolute; top:0; left:50%; transform:translateX(-50%); width:50%; height:1px; background:linear-gradient(90deg,transparent,var(--cyan),transparent); }
.cta-box h2 { font-size: clamp(26px,3.5vw,44px); font-weight: 400; letter-spacing: -1.5px; margin-bottom: 14px; }
.cta-box p { font-size: 16px; color: var(--gray); max-width: 400px; margin: 0 auto 36px; line-height: 1.7; font-weight: 300; }
.cta-form { display: flex; flex-direction: column; gap: 12px; max-width: 400px; margin: 0 auto; text-align: left; }
.cta-form input, .cta-form textarea { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 10px; padding: 12px 16px; font-size: 14px; color: #fff; font-family: inherit; resize: vertical; }
.cta-form input:focus, .cta-form textarea:focus { outline: none; border-color: rgba(0,212,224,.4); }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border2); padding: 36px 6%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.ft-tag { font-size: 13px; color: var(--muted); margin-top: 4px; }
.ft-email { font-size: 14px; color: var(--cyan); text-decoration: none; }
.ft-email:hover { text-decoration: underline; }
.ft-copy { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* ── ANIMATIONS ── */
.fu { opacity: 0; transform: translateY(22px); transition: opacity .65s, transform .65s; }
.fu.in { opacity: 1; transform: translateY(0); }
.d1{transition-delay:.07s}.d2{transition-delay:.14s}.d3{transition-delay:.21s}.d4{transition-delay:.28s}

/* ── RESPONSIVE ── */
@media(max-width:960px){
  .nav-links{display:none}
  .svc-grid{grid-template-columns:1fr 1fr}
  .svc-cell:nth-child(4n){border-right:1px solid var(--border)}
  .svc-cell:nth-child(2n){border-right:none}
  .pkg-grid,.met-grid{grid-template-columns:1fr}
  footer{flex-direction:column;text-align:center}
}
@media(max-width:600px){
  .svc-grid{grid-template-columns:1fr}
  .svc-cell{border-right:none!important}
}
