:root {
  --ink: #05050a;
  --panel: #0b0c13;
  --panel-soft: #10111a;
  --white: #f5f7fb;
  --muted: #a4a7b4;
  --cyan: #00e7ff;
  --blue: #3366ff;
  --pink: #ff2aa6;
  --line: rgba(255,255,255,.12);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; top: -80px; left: 18px; z-index: 100; background: var(--white); color: #000; padding: 10px 16px; }
.skip-link:focus { top: 18px; }
.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  transition: background .25s, border-color .25s, height .25s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled { height: 70px; background: rgba(5,5,10,.86); backdrop-filter: blur(18px); border-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(0,231,255,.32)); }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-size: 18px; letter-spacing: .18em; }
.brand small { margin-top: 6px; font-size: 8px; letter-spacing: .22em; color: #c6c8d3; }
nav { display: flex; align-items: center; gap: 34px; }
nav a { color: #c7c9d3; text-decoration: none; font-size: 13px; letter-spacing: .08em; transition: color .2s; }
nav a:hover { color: var(--white); }
.header-cta { border: 1px solid rgba(255,255,255,.28); padding: 9px 17px; font-size: 12px; letter-spacing: .08em; text-decoration: none; border-radius: 3px; }
.header-cta:hover { border-color: var(--cyan); box-shadow: 0 0 20px rgba(0,231,255,.16); }

.hero {
  min-height: 920px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 540px);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 130px max(28px, calc((100vw - var(--max)) / 2)) 100px;
  isolation: isolate;
  background: radial-gradient(ellipse at 70% 40%, rgba(38,32,115,.17), transparent 46%);
}
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(0,231,255,.35), rgba(255,42,166,.35), transparent); }
.hero-copy { position: relative; z-index: 3; }
.eyebrow, .section-kicker { text-transform: uppercase; font-size: 11px; font-weight: 700; letter-spacing: .25em; color: #c9cbd5; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { display: inline-block; width: 34px; height: 1px; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin: 20px 0 26px; font-size: clamp(64px, 7.4vw, 112px); line-height: .86; letter-spacing: -.065em; text-transform: uppercase; font-weight: 900; }
h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1px rgba(245,247,251,.78); text-shadow: 0 0 34px rgba(0,231,255,.16); }
.hero-lead { max-width: 590px; color: #b8bbc7; font-size: clamp(17px, 1.6vw, 21px); line-height: 1.65; }
.power-words { display: flex; align-items: center; gap: 13px; margin: 32px 0; color: #edfaff; font-size: 11px; font-weight: 800; letter-spacing: .22em; }
.power-words b { width: 3px; height: 3px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 8px var(--pink); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 23px; border: 1px solid transparent; border-radius: 3px; color: #fff; font: inherit; font-size: 13px; font-weight: 750; letter-spacing: .055em; text-decoration: none; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(105deg, #0c93ff, #7645ff 54%, #e12eaf); box-shadow: 0 10px 34px rgba(85,52,255,.26), inset 0 1px rgba(255,255,255,.25); }
.button-primary:hover { box-shadow: 0 12px 40px rgba(0,231,255,.2), 0 12px 40px rgba(255,42,166,.2); }
.button-ghost { border-color: var(--line); background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.06); }
.play-icon { font-size: 10px; }
.microcopy { margin: 20px 0 0; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; color: #686b77; }

.hero-video-wrap { position: relative; z-index: 2; width: min(100%, 500px); justify-self: end; padding-bottom: 44px; }
.video-aura { position: absolute; inset: 8% -12% 15%; background: radial-gradient(ellipse, rgba(86,47,255,.25), rgba(255,42,166,.07) 45%, transparent 72%); filter: blur(25px); }
.video-shell { position: relative; overflow: hidden; width: min(100%, 410px); aspect-ratio: 9/16; margin: auto; background: #06060b; border: 1px solid rgba(134,103,255,.38); border-radius: 22px; box-shadow: 0 36px 100px rgba(0,0,0,.65), 0 0 70px rgba(61,50,198,.13); }
.video-shell::before { content: ""; position: absolute; z-index: 3; inset: 0; pointer-events: none; border-radius: inherit; background: linear-gradient(115deg, rgba(255,255,255,.13), transparent 18%, transparent 80%, rgba(0,231,255,.06)); }
.video-shell video { width: 100%; height: 100%; object-fit: cover; display: block; }
.sound-control { position: absolute; z-index: 6; right: 14px; bottom: 14px; display: flex; align-items: center; gap: 8px; color: #fff; border: 1px solid rgba(255,255,255,.27); border-radius: 99px; background: rgba(5,5,10,.74); backdrop-filter: blur(12px); padding: 9px 12px; font: inherit; font-size: 10px; letter-spacing: .09em; cursor: pointer; }
.sound-control:hover { border-color: var(--cyan); }
.video-tag { position: absolute; z-index: 5; left: 14px; top: 14px; display: flex; align-items: center; gap: 7px; padding: 7px 9px; border: 1px solid rgba(255,255,255,.18); background: rgba(5,5,10,.55); backdrop-filter: blur(10px); border-radius: 99px; font-size: 8px; letter-spacing: .18em; }
.video-tag span { width: 5px; height: 5px; border-radius: 50%; background: var(--pink); box-shadow: 0 0 9px var(--pink); animation: blink 1.3s infinite; }
.waveform { position: absolute; z-index: -1; left: -5%; right: -5%; bottom: 3px; height: 60px; display: flex; align-items: center; justify-content: center; gap: 8px; opacity: .8; }
.waveform::before, .waveform::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent); box-shadow: 0 0 14px rgba(0,231,255,.8); }
.waveform i { width: 2px; height: 22px; background: #e9fbff; box-shadow: 0 0 8px var(--cyan); transform: scaleY(.35); animation: wave 1.15s ease-in-out infinite alternate; }
.waveform i:nth-child(3n) { height: 45px; animation-delay: -.5s; }
.waveform i:nth-child(4n) { height: 32px; animation-delay: -.8s; }
.waveform i:nth-child(5n) { height: 55px; animation-delay: -.2s; background: #ffb0df; box-shadow: 0 0 8px var(--pink); }
.hero-beams { position: absolute; z-index: -1; inset: 0; overflow: hidden; opacity: .26; pointer-events: none; }
.hero-beams i { position: absolute; top: -20%; left: 70%; width: 2px; height: 110%; transform-origin: top; transform: rotate(28deg); background: linear-gradient(180deg, transparent, var(--cyan) 25%, transparent 80%); box-shadow: 0 0 18px var(--cyan); animation: sweep 8s ease-in-out infinite alternate; }
.hero-beams i:nth-child(2) { left: 78%; transform: rotate(-18deg); background: linear-gradient(180deg, transparent, var(--pink), transparent); animation-delay: -2s; }
.hero-beams i:nth-child(3) { left: 92%; transform: rotate(-34deg); animation-delay: -4s; }
.hero-beams i:nth-child(4) { left: 58%; transform: rotate(15deg); background: linear-gradient(180deg, transparent, var(--pink), transparent); animation-delay: -6s; }

.section-pad { padding: 130px max(28px, calc((100vw - var(--max)) / 2)); }
.statement { text-align: center; max-width: 1180px; margin: auto; }
.section-kicker { color: #8c90a0; }
.statement h2, .section-heading h2, .stage-copy h2, .contact h2 { font-size: clamp(42px, 5.4vw, 78px); line-height: 1.03; letter-spacing: -.045em; text-transform: uppercase; }
.statement h2 span, .stage-copy h2 span { color: transparent; -webkit-text-stroke: 1px rgba(245,247,251,.7); }
.statement > p:last-child { max-width: 700px; margin: 26px auto 0; color: var(--muted); font-size: 17px; }
.services { border-top: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.018), transparent 30%); }
.section-heading { max-width: var(--max); margin: 0 auto 56px; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-heading h2 { margin: 10px 0 0; font-size: clamp(42px, 4.6vw, 68px); }
.section-heading > p { max-width: 450px; margin: 0 0 10px; color: var(--muted); }
.service-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.service-card { min-height: 440px; position: relative; padding: 34px 28px; overflow: hidden; border-right: 1px solid var(--line); background: linear-gradient(160deg, rgba(255,255,255,.035), rgba(255,255,255,.006)); transition: background .25s, transform .25s; }
.service-card:last-child { border-right: 0; }
.service-card::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; transform: scaleX(0); transform-origin: left; background: linear-gradient(90deg, var(--cyan), var(--pink)); transition: transform .3s; }
.service-card:hover { background: linear-gradient(160deg, rgba(49,103,255,.10), rgba(255,42,166,.035)); transform: translateY(-4px); }
.service-card:hover::after { transform: scaleX(1); }
.service-number { position: absolute; top: 25px; right: 25px; font-size: 10px; letter-spacing: .18em; color: #626573; }
.service-icon { margin: 40px 0 55px; font-size: 32px; color: var(--cyan); text-shadow: 0 0 18px var(--cyan); }
.service-card:nth-child(3) .service-icon { color: var(--pink); text-shadow: 0 0 18px var(--pink); }
.service-card h3 { font-size: 21px; line-height: 1.2; }
.service-card p { color: var(--muted); font-size: 14px; }
.service-card ul { list-style: none; padding: 20px 0 0; margin: 25px 0 0; border-top: 1px solid var(--line); color: #d4d6df; font-size: 12px; }
.service-card li { margin-top: 7px; }
.service-card li::before { content: "+"; margin-right: 9px; color: var(--cyan); }

.stage-feature { min-height: 760px; position: relative; display: flex; align-items: center; padding: 90px max(28px, calc((100vw - var(--max)) / 2)); overflow: hidden; }
.stage-image { position: absolute; inset: 0; background: url('/assets/images/stage-climax.jpg') center/cover no-repeat; transform: scale(1.04); }
.stage-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,10,.97) 0%, rgba(5,5,10,.75) 42%, rgba(5,5,10,.1) 80%), linear-gradient(0deg, #05050a, transparent 30%, transparent 72%, #05050a); }
.stage-copy { position: relative; z-index: 2; max-width: 720px; }
.stage-copy h2 { margin: 16px 0 25px; }
.stage-copy p:not(.section-kicker) { max-width: 600px; color: #bec1cc; font-size: 17px; margin-bottom: 30px; }
.process { background: #07080d; }
.process-grid { max-width: var(--max); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; list-style: none; padding: 0; margin: auto; background: var(--line); border: 1px solid var(--line); }
.process-grid li { min-height: 290px; padding: 38px; background: #090a10; }
.process-grid li > span { color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: .18em; }
.process-grid h3 { margin: 55px 0 12px; font-size: 22px; }
.process-grid p { color: var(--muted); font-size: 14px; max-width: 320px; }

.contact { position: relative; min-height: 780px; display: grid; place-items: center; text-align: center; overflow: hidden; background: radial-gradient(circle at center, rgba(58,48,170,.13), transparent 48%); }
.contact::before { content: ""; position: absolute; width: 820px; height: 820px; border: 1px solid rgba(0,231,255,.14); border-radius: 50%; box-shadow: inset 0 0 100px rgba(255,42,166,.04), 0 0 100px rgba(0,231,255,.035); }
.contact::after { content: ""; position: absolute; width: 570px; height: 570px; border: 1px solid rgba(255,42,166,.12); border-radius: 50%; }
.contact-glow { position: absolute; width: 2px; height: 70%; background: linear-gradient(transparent, var(--cyan), var(--pink), transparent); box-shadow: 0 0 38px 10px rgba(0,231,255,.12); transform: rotate(74deg); }
.contact-inner { position: relative; z-index: 2; max-width: 800px; }
.contact-inner img { width: 130px; height: 130px; object-fit: contain; filter: drop-shadow(0 0 24px rgba(0,231,255,.35)); }
.contact h2 { margin: 14px 0 22px; }
.contact-inner > p:not(.section-kicker) { max-width: 620px; margin: 0 auto 30px; color: var(--muted); }
.button-large { min-height: 58px; padding: 0 30px; }
.contact-email { display: block; width: fit-content; margin: 22px auto 0; color: #b8bbc7; text-underline-offset: 5px; font-size: 13px; }
footer { max-width: var(--max); min-height: 120px; margin: auto; padding: 25px 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: #777a88; font-size: 11px; letter-spacing: .08em; }
.brand-small img { width: 42px; height: 42px; }
.brand-small strong { color: #eee; font-size: 14px; }
.brand-small small { font-size: 7px; }
.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes wave { to { transform: scaleY(1); } }
@keyframes blink { 50% { opacity: .35; } }
@keyframes sweep { to { transform: rotate(-20deg); } }

@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr 390px; gap: 40px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2) { border-right: 0; }
  .service-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  footer { padding-left: 28px; padding-right: 28px; }
}
@media (max-width: 760px) {
  .site-header { height: 68px; padding: 0 18px; }
  .site-header nav, .header-cta { display: none; }
  .brand img { width: 44px; height: 44px; }
  .hero { min-height: 0; display: flex; flex-direction: column; padding: 115px 20px 85px; gap: 55px; }
  .hero-copy { width: 100%; }
  h1 { font-size: clamp(54px, 18vw, 82px); }
  .hero-video-wrap { width: 100%; justify-self: center; }
  .video-shell { width: min(90vw, 380px); }
  .section-pad { padding: 90px 20px; }
  .statement h2, .stage-copy h2, .contact h2 { font-size: clamp(39px, 12vw, 58px); }
  .section-heading { display: block; margin-bottom: 35px; }
  .section-heading > p { margin-top: 18px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 370px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-card:last-child { border-bottom: 0; }
  .service-icon { margin: 25px 0 42px; }
  .stage-feature { min-height: 700px; padding: 80px 20px; align-items: end; }
  .stage-overlay { background: linear-gradient(0deg, rgba(5,5,10,.98) 5%, rgba(5,5,10,.68) 62%, rgba(5,5,10,.1)); }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid li { min-height: 245px; }
  .contact { min-height: 700px; }
  .contact::before { width: 650px; height: 650px; }
  .contact::after { width: 440px; height: 440px; }
  footer { padding: 40px 20px; flex-direction: column; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
