:root {
  --ink: #030806;
  --surface: #07100d;
  --surface-2: #0b1713;
  --white: #f2f4f7;
  --muted: #98a59f;
  --green: #00ff66;
  --aqua: #00ffcc;
  --cyan: #00fff7;
  --purple: #9b36d8;
  --deep-purple: #431871;
  --line: rgba(255, 255, 255, 0.12);
  --display: "Koulen", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}
body::selection { color: var(--ink); background: var(--green); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 99;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--green);
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-bg { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.site-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .09;
  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='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,255,102,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0,255,102,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.orb { position: absolute; width: 650px; aspect-ratio: 1; border-radius: 50%; filter: blur(170px); opacity: .18; }
.orb-green { top: -300px; right: -220px; background: var(--green); }
.orb-purple { top: 40%; left: -400px; background: var(--purple); opacity: .14; }

.site-header {
  width: min(1400px, calc(100% - 64px));
  height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.wordmark { font-family: var(--display); font-size: 28px; letter-spacing: 1px; line-height: 1; }
.wordmark span { color: var(--green); }
.nav { display: flex; gap: 38px; color: #c5cec9; font-size: 14px; }
.nav a, footer > a:last-child { transition: color .2s; }
.nav a:hover, footer > a:last-child:hover { color: var(--green); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--green);
  color: var(--green);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
}

.hero {
  position: relative;
  width: min(1400px, calc(100% - 64px));
  min-height: calc(100vh - 92px);
  margin: auto;
  padding: 78px 0 150px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--aqua);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 2px; background: var(--green); box-shadow: 0 0 12px var(--green); }
.hero h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
}
.hero h1 { margin-top: 24px; font-size: clamp(68px, 7.4vw, 124px); line-height: .82; letter-spacing: -2px; }
.hero h1 em { color: var(--green); font-style: normal; text-shadow: 0 0 34px rgba(0,255,102,.22); }
.hero-intro { max-width: 610px; margin: 32px 0 0; color: #aab5af; font-size: 18px; line-height: 1.75; }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 28px; }
.button {
  min-height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
  transition: transform .25s, box-shadow .25s;
}
.button:hover { transform: translateY(-4px); }
.button-primary { color: var(--ink); background: var(--green); box-shadow: 8px 8px 0 rgba(0,255,204,.17); }
.button-primary:hover { box-shadow: 12px 12px 0 rgba(0,255,204,.22); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid #718078; font-size: 13px; }
.text-link span { margin-left: 8px; color: var(--green); }
.hero-stats { display: flex; gap: 45px; margin-top: 62px; }
.hero-stats div { padding-left: 15px; border-left: 1px solid var(--line); display: grid; }
.hero-stats strong { font-family: var(--display); color: var(--green); font-size: 26px; font-weight: 400; line-height: 1; }
.hero-stats span { margin-top: 7px; color: #77847e; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }

.hero-visual { position: relative; width: 100%; max-width: 760px; justify-self: end; }
.visual-kicker {
  position: absolute;
  z-index: 2;
  top: 25px;
  left: -32px;
  padding: 10px 16px;
  background: var(--purple);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transform: rotate(-3deg);
}
.image-frame { position: relative; padding: 12px; border: 1px solid rgba(0,255,204,.42); background: rgba(0,255,204,.03); }
.image-frame::before { content: ""; position: absolute; inset: 28px -20px -20px 28px; z-index: -1; border: 1px solid rgba(155,54,216,.4); }
.image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.05);
}
.corner { position: absolute; z-index: 2; width: 22px; height: 22px; border-color: var(--green); }
.corner-tl { top: 5px; left: 5px; border-top: 3px solid; border-left: 3px solid; }
.corner-tr { top: 5px; right: 5px; border-top: 3px solid; border-right: 3px solid; }
.corner-bl { bottom: 5px; left: 5px; border-bottom: 3px solid; border-left: 3px solid; }
.corner-br { right: 5px; bottom: 5px; border-right: 3px solid; border-bottom: 3px solid; }
.scan-line { position: absolute; z-index: 1; left: 12px; right: 12px; top: 14%; height: 1px; background: var(--cyan); box-shadow: 0 0 16px 4px var(--cyan); opacity: .75; animation: scan 4s ease-in-out infinite; }
.live-pill { position: absolute; right: -20px; bottom: 28px; padding: 11px 15px; background: rgba(3,8,6,.9); border: 1px solid var(--line); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.live-pill i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.roar-stamp { position: absolute; bottom: -48px; left: -25px; width: 96px; aspect-ratio: 1; padding-top: 22px; border: 2px solid var(--green); border-radius: 50%; color: var(--green); font-family: var(--display); font-size: 23px; line-height: .75; text-align: center; transform: rotate(10deg); }
.roar-stamp span { font-family: var(--body); font-size: 8px; letter-spacing: 2px; }

.marquee { position: absolute; left: 50%; bottom: 25px; width: 100vw; overflow: hidden; border-block: 1px solid rgba(0,255,102,.18); background: rgba(0,255,102,.025); transform: translateX(-50%) rotate(-1.5deg); }
.marquee div { width: max-content; padding: 13px 0; color: #52625a; font-family: var(--display); font-size: 18px; letter-spacing: 4px; animation: marquee 28s linear infinite; }
.marquee span { margin: 0 28px; color: var(--green); }

.section-shell { width: min(1260px, calc(100% - 64px)); margin-inline: auto; }
.section-label { padding-bottom: 18px; border-bottom: 1px solid var(--line); color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.story { padding: 150px 0; }
.story-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 10%; padding-top: 70px; }
.story h2 { font-size: clamp(57px, 6.5vw, 104px); line-height: .92; }
.story h2 span { color: var(--green); }
.story-copy { max-width: 460px; align-self: center; color: var(--muted); font-size: 16px; line-height: 1.8; }
.story-copy .lead { color: var(--white); font-size: 21px; }
.story-rule { width: 100%; height: 1px; margin: 32px 0; background: linear-gradient(90deg, var(--green), transparent); }
.story-copy .manifesto { color: var(--aqua); font-size: 14px; font-weight: 600; letter-spacing: .6px; text-transform: uppercase; }

.experience { padding-bottom: 150px; }
.experience-card { display: grid; grid-template-columns: .85fr 1.15fr; gap: 9%; padding: clamp(35px, 6vw, 82px); border: 1px solid rgba(0,255,102,.24); background: linear-gradient(135deg, rgba(0,255,102,.06), rgba(155,54,216,.05)); box-shadow: 14px 14px 0 rgba(155,54,216,.08); }
.experience-heading h2 { max-width: 450px; margin: 24px 0; font-size: clamp(52px, 5vw, 80px); line-height: .92; }
.experience-heading > p:last-child { max-width: 450px; color: var(--muted); line-height: 1.75; }
.feature-list article { display: grid; grid-template-columns: 42px 1fr 25px; gap: 20px; padding: 27px 0; border-bottom: 1px solid var(--line); }
.feature-list article:first-child { padding-top: 0; }
.feature-list article:last-child { border-bottom: 0; }
.feature-number { color: var(--green); font-family: var(--display); font-size: 18px; }
.feature-list h3 { margin: 0 0 7px; font-family: var(--display); font-size: 27px; font-weight: 400; letter-spacing: .5px; text-transform: uppercase; }
.feature-list p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.feature-arrow { color: var(--green); }

.identity-quote { width: min(1100px, calc(100% - 64px)); margin: 40px auto 190px; text-align: center; }
.identity-quote p { margin: 0 0 8px; color: #65736c; font-size: 14px; letter-spacing: 4px; text-transform: uppercase; }
.identity-quote h2 { font-size: clamp(70px, 9vw, 150px); line-height: 1; }
.identity-quote span { color: transparent; -webkit-text-stroke: 2px var(--green); text-shadow: 0 0 40px rgba(0,255,102,.16); }

.launch { position: relative; margin-bottom: 80px; padding: 110px 40px; overflow: hidden; background: var(--green); color: var(--ink); text-align: center; }
.launch::before, .launch::after { content: "ROAR"; position: absolute; color: rgba(3,8,6,.06); font-family: var(--display); font-size: 250px; line-height: 1; }
.launch::before { top: -50px; left: -40px; transform: rotate(-10deg); }
.launch::after { right: -40px; bottom: -80px; transform: rotate(8deg); }
.launch-inner { position: relative; z-index: 1; }
.launch .eyebrow { justify-content: center; color: var(--ink); }
.launch .eyebrow span { background: var(--ink); box-shadow: none; }
.launch h2 { margin: 25px 0 20px; font-size: clamp(60px, 7vw, 108px); line-height: .88; }
.launch h2 span { color: var(--deep-purple); }
.launch p:not(.eyebrow) { max-width: 560px; margin: 0 auto 34px; font-size: 17px; line-height: 1.7; }
.button-dark { color: var(--white); background: var(--ink); box-shadow: 8px 8px 0 rgba(67,24,113,.3); }

footer { width: min(1400px, calc(100% - 64px)); margin: auto; padding: 35px 0 50px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; color: #748078; font-size: 12px; }
footer .wordmark { color: var(--white); }

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

@keyframes scan { 0%, 100% { top: 14%; opacity: .25; } 50% { top: 84%; opacity: .9; } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { justify-self: center; margin: 20px 25px 30px; }
  .story-layout, .experience-card { grid-template-columns: 1fr; }
  .story-copy { margin-top: 40px; }
  .feature-list { margin-top: 50px; }
}

@media (max-width: 620px) {
  .site-header, .hero, .section-shell, .identity-quote, footer { width: min(100% - 32px, 1400px); }
  .site-header { height: 76px; }
  .wordmark { font-size: 23px; }
  .nav-cta { padding: 9px 12px; font-size: 10px; }
  .hero { min-height: auto; padding: 55px 0 125px; }
  .hero h1 { font-size: clamp(56px, 18vw, 80px); }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .text-link { align-self: flex-start; }
  .hero-stats { gap: 15px; justify-content: space-between; }
  .hero-stats div { padding-left: 9px; }
  .hero-visual { margin-inline: 12px; }
  .visual-kicker { left: -10px; }
  .live-pill { right: -8px; }
  .roar-stamp { left: -8px; }
  .story { padding: 100px 0; }
  .story-layout { padding-top: 45px; }
  .experience { padding-bottom: 110px; }
  .experience-card { padding: 38px 24px; box-shadow: 8px 8px 0 rgba(155,54,216,.08); }
  .feature-list article { grid-template-columns: 32px 1fr; }
  .feature-arrow { display: none; }
  .identity-quote { margin-bottom: 120px; }
  .identity-quote span { -webkit-text-stroke-width: 1px; }
  .launch { width: 100%; margin-bottom: 50px; padding: 85px 18px; }
  .launch h2 { font-size: 56px; }
  footer { align-items: flex-start; flex-direction: column; gap: 16px; }
  footer p { margin: 0; }
}

@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; }
}
/* Banner color alignment + full-screen-safe artwork sizing */
:root {
    --banner-sky: #10bde0;
    --banner-lime: #8cff00;
    --banner-purple: #9b36d8;
    --banner-red: #ff1717;
    --banner-cream: #fffde8;
}

.hero {
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr) !important;
}

.hero::before {
    background:
        radial-gradient(circle at 78% 20%, rgba(16, 189, 224, 0.24), transparent 32%),
        radial-gradient(circle at 88% 72%, rgba(140, 255, 0, 0.18), transparent 28%),
        radial-gradient(circle at 18% 18%, rgba(155, 54, 216, 0.2), transparent 30%),
        radial-gradient(circle at 45% 85%, rgba(255, 23, 23, 0.1), transparent 24%);
}

.hero-visual {
    width: min(100%, 820px) !important;
    max-width: 820px !important;
    justify-self: end !important;
}

.image-frame {
    background:
        linear-gradient(135deg, rgba(16, 189, 224, 0.24), rgba(140, 255, 0, 0.14)),
        rgba(3, 10, 9, 0.78);
    border-color: rgba(16, 189, 224, 0.86);
    box-shadow:
        0 0 0 1px rgba(140, 255, 0, 0.36),
        0 28px 80px rgba(0, 0, 0, 0.48),
        0 0 46px rgba(16, 189, 224, 0.22);
}

.image-frame::before {
    border-color: rgba(140, 255, 0, 0.8);
}

.image-frame::after {
    border-color: rgba(155, 54, 216, 0.5);
}

.image-frame img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: min(68vh, 640px) !important;
    aspect-ratio: 16 / 9 !important;
    object-fit: contain !important;
    object-position: center !important;
    background: var(--banner-sky);
}

.proof-ribbon {
    background: linear-gradient(90deg, var(--banner-purple), #b846ff);
    color: var(--banner-cream);
}

.status-badge {
    border-color: rgba(16, 189, 224, 0.48);
    background: rgba(4, 14, 14, 0.82);
}

.status-badge::before {
    background: var(--banner-lime);
    box-shadow: 0 0 18px rgba(140, 255, 0, 0.9);
}

.orbital-mark {
    border-color: var(--banner-lime);
    color: var(--banner-lime);
    box-shadow: 0 0 28px rgba(140, 255, 0, 0.32);
}

.eyebrow,
.section-kicker,
.accent-word {
    color: var(--banner-lime);
}

.btn-primary,
.cta-card {
    background: linear-gradient(135deg, var(--banner-lime), var(--banner-sky));
}

.btn-secondary {
    border-color: rgba(16, 189, 224, 0.52);
    color: var(--banner-cream);
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr !important;
    }

    .hero-visual {
        justify-self: center !important;
        width: min(100%, 760px) !important;
    }

    .image-frame img {
        max-height: none !important;
    }
}

@media (max-width: 560px) {
    .hero-visual {
        width: 100% !important;
    }

    .image-frame {
        padding: 8px;
    }

    .proof-ribbon,
    .status-badge,
    .orbital-mark {
        transform: scale(0.82);
    }
}

/* Full-page banner vibe: cyan sky, lime type energy, purple sticker accents, red confetti sparks */
:root {
  --ink: #04100f;
  --surface: #06201f;
  --surface-2: #0a2b2d;
  --white: #fffde8;
  --muted: #b7d9d7;
  --green: #8cff00;
  --aqua: #10bde0;
  --cyan: #14dfff;
  --purple: #9b36d8;
  --deep-purple: #431871;
  --red-pop: #ff1717;
  --pink-pop: #ff16b8;
  --line: rgba(20, 223, 255, 0.22);
}

body {
  background:
    radial-gradient(circle at 78% 8%, rgba(16, 189, 224, 0.34), transparent 30vw),
    radial-gradient(circle at 14% 12%, rgba(155, 54, 216, 0.28), transparent 28vw),
    radial-gradient(circle at 92% 66%, rgba(140, 255, 0, 0.16), transparent 24vw),
    linear-gradient(135deg, #03100d 0%, #062423 42%, #071113 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 28%, var(--pink-pop) 0 4px, transparent 5px),
    radial-gradient(circle at 86% 34%, var(--red-pop) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 80%, var(--green) 0 4px, transparent 5px),
    radial-gradient(circle at 35% 72%, var(--purple) 0 5px, transparent 6px);
  opacity: 0.38;
  filter: drop-shadow(0 0 12px rgba(20, 223, 255, 0.22));
}

.site-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 223, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 255, 0, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.grid {
  background-image:
    linear-gradient(rgba(16, 189, 224, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 255, 0, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
}

.orb-green {
  background: var(--cyan);
  opacity: 0.24;
}

.orb-purple {
  background: var(--purple);
  opacity: 0.22;
}

.site-header {
  border-bottom-color: rgba(20, 223, 255, 0.28);
  background: linear-gradient(90deg, rgba(16, 189, 224, 0.08), rgba(155, 54, 216, 0.05));
  backdrop-filter: blur(14px);
}

.wordmark span,
.nav a:hover,
footer > a:last-child:hover {
  color: var(--green);
  text-shadow: 0 0 18px rgba(140, 255, 0, 0.36);
}

.nav-cta {
  border-color: var(--cyan);
  color: var(--white);
  background: linear-gradient(135deg, rgba(16, 189, 224, 0.22), rgba(155, 54, 216, 0.26));
  box-shadow: 4px 4px 0 rgba(140, 255, 0, 0.2);
}

.hero {
  overflow: visible;
}

.hero-copy {
  position: relative;
}

.hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -34px -28px auto -28px;
  height: 58%;
  border: 1px solid rgba(20, 223, 255, 0.18);
  background: linear-gradient(135deg, rgba(16, 189, 224, 0.08), rgba(155, 54, 216, 0.08));
  box-shadow: 12px 12px 0 rgba(140, 255, 0, 0.06);
}

.eyebrow {
  color: var(--green);
}

.eyebrow span {
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(20, 223, 255, 0.75);
}

.hero h1 {
  color: var(--white);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.55), 0 0 36px rgba(20, 223, 255, 0.14);
}

.hero h1 em {
  color: var(--green);
  text-shadow: 4px 4px 0 #001716, 0 0 30px rgba(140, 255, 0, 0.42);
}

.hero-intro,
.story-copy,
.feature-list p,
.experience-heading > p:last-child {
  color: var(--muted);
}

.button-primary {
  color: #06110d;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 8px 8px 0 rgba(155, 54, 216, 0.42);
}

.button-primary:hover {
  box-shadow: 12px 12px 0 rgba(255, 23, 23, 0.28);
}

.text-link {
  border-bottom-color: rgba(20, 223, 255, 0.55);
  color: var(--white);
}

.text-link span,
.hero-stats strong,
.feature-number,
.feature-arrow,
.section-label,
.story h2 span,
.marquee span {
  color: var(--green);
}

.hero-stats div {
  border-left-color: rgba(20, 223, 255, 0.36);
}

.visual-kicker {
  background: linear-gradient(90deg, var(--purple), #b846ff);
  color: var(--white);
  box-shadow: 6px 6px 0 rgba(140, 255, 0, 0.22);
}

.image-frame {
  background:
    linear-gradient(135deg, rgba(16, 189, 224, 0.28), rgba(140, 255, 0, 0.12)),
    rgba(4, 16, 15, 0.9);
  border-color: rgba(20, 223, 255, 0.9);
}

.corner {
  border-color: var(--white);
  filter: drop-shadow(0 0 8px rgba(20, 223, 255, 0.72));
}

.scan-line {
  background: linear-gradient(90deg, transparent, var(--green), var(--cyan), transparent);
  box-shadow: 0 0 18px 5px rgba(20, 223, 255, 0.65);
}

.live-pill {
  background: linear-gradient(90deg, rgba(3, 8, 6, 0.92), rgba(16, 189, 224, 0.24));
  border-color: rgba(20, 223, 255, 0.45);
  color: var(--white);
}

.roar-stamp {
  border-color: var(--green);
  color: var(--green);
  background: rgba(4, 16, 15, 0.74);
  box-shadow: 0 0 28px rgba(140, 255, 0, 0.28);
}

.marquee {
  border-block-color: rgba(20, 223, 255, 0.24);
  background: linear-gradient(90deg, rgba(16, 189, 224, 0.1), rgba(155, 54, 216, 0.08), rgba(140, 255, 0, 0.08));
}

.marquee div {
  color: rgba(255, 253, 232, 0.42);
}

.section-label {
  border-bottom-color: rgba(20, 223, 255, 0.24);
}

.story,
.experience,
.identity-quote {
  position: relative;
}

.story::before,
.experience::before,
.identity-quote::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 8% 4%;
  border-radius: 40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(16, 189, 224, 0.14), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(155, 54, 216, 0.12), transparent 30%);
}

.story-rule {
  background: linear-gradient(90deg, var(--green), var(--cyan), transparent);
}

.story-copy .lead {
  color: var(--white);
}

.story-copy .manifesto {
  color: var(--cyan);
}

.experience-card {
  border-color: rgba(20, 223, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(16, 189, 224, 0.16), rgba(155, 54, 216, 0.12) 48%, rgba(140, 255, 0, 0.08)),
    rgba(4, 16, 15, 0.72);
  box-shadow: 14px 14px 0 rgba(140, 255, 0, 0.12), 0 26px 80px rgba(0, 0, 0, 0.32);
}

.feature-list article {
  border-bottom-color: rgba(20, 223, 255, 0.22);
}

.feature-list h3 {
  color: var(--white);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.36);
}

.identity-quote p {
  color: var(--cyan);
}

.identity-quote span {
  -webkit-text-stroke-color: var(--green);
  text-shadow: 0 0 44px rgba(140, 255, 0, 0.28);
}

.launch {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 23, 23, 0.22), transparent 22%),
    radial-gradient(circle at 78% 26%, rgba(155, 54, 216, 0.26), transparent 25%),
    linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 -1px 0 rgba(20, 223, 255, 0.35), 0 36px 100px rgba(16, 189, 224, 0.2);
}

.launch h2 span {
  color: var(--deep-purple);
  text-shadow: 3px 3px 0 rgba(255, 253, 232, 0.32);
}

.button-dark {
  background: #04100f;
  box-shadow: 8px 8px 0 rgba(155, 54, 216, 0.42);
}

footer {
  border-top-color: rgba(20, 223, 255, 0.28);
  background: linear-gradient(90deg, rgba(16, 189, 224, 0.05), rgba(155, 54, 216, 0.05));
}

@media (max-width: 980px) {
  .hero {
    overflow: hidden;
  }

  .hero-copy::before {
    inset: -22px -18px auto -18px;
  }
}

/* Layout containment fix: keep every section/footer inside the viewport */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  position: relative;
}

.site-header,
.hero,
.section-shell,
.identity-quote,
footer {
  width: min(1180px, calc(100% - 48px));
  max-width: calc(100% - 48px);
  margin-left: auto;
  margin-right: auto;
}

.hero,
.story-layout,
.experience-card,
footer {
  min-width: 0;
}

.hero > *,
.story-layout > *,
.experience-card > *,
footer > * {
  min-width: 0;
}

.story-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
}

.experience-card {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.hero h1,
.story h2,
.experience-heading h2,
.identity-quote h2,
.launch h2 {
  max-width: 100%;
  overflow-wrap: normal;
}

.story h2 {
  font-size: clamp(48px, 5.5vw, 92px);
}

.story-copy {
  width: 100%;
  max-width: 460px;
  justify-self: end;
}

.story-copy p {
  max-width: 100%;
}

.marquee {
  max-width: 100vw;
}

footer {
  overflow: hidden;
  gap: 24px;
}

footer p {
  text-align: center;
}

footer > a:last-child {
  white-space: nowrap;
}

@media (max-width: 980px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header,
  .hero,
  .section-shell,
  .identity-quote,
  footer {
    width: min(100% - 36px, 760px);
    max-width: calc(100% - 36px);
  }

  .story-layout,
  .experience-card {
    grid-template-columns: 1fr;
  }

  .story-copy {
    justify-self: start;
    max-width: 680px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer p {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section-shell,
  .identity-quote,
  footer {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }

  .story h2 {
    font-size: clamp(42px, 15vw, 64px);
  }
}

.hero {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr) !important;
}

.hero-visual,
.image-frame,
.image-frame img {
  max-width: 100% !important;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr !important;
  }
}

/* Clean client-facing polish pass: banner colors used as accents, not chaos */
:root {
  --ink: #04100f;
  --surface: #071817;
  --surface-2: #0b2425;
  --white: #fffde8;
  --muted: #b8cdca;
  --green: #8cff00;
  --aqua: #10bde0;
  --cyan: #13d6f2;
  --purple: #9b36d8;
  --deep-purple: #431871;
  --red-pop: #ff1717;
  --pink-pop: #ff16b8;
  --line: rgba(19, 214, 242, 0.18);
}

html,
body {
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(circle at 74% 8%, rgba(16, 189, 224, 0.22), transparent 34vw),
    radial-gradient(circle at 12% 34%, rgba(155, 54, 216, 0.14), transparent 30vw),
    linear-gradient(135deg, #030b0a 0%, #061514 45%, #06100f 100%);
}

body::before {
  opacity: 0.08;
}

.site-bg::before {
  opacity: 0.55;
}

.grid {
  background-image:
    linear-gradient(rgba(19, 214, 242, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 255, 0, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
}

.site-header,
.hero,
.section-shell,
.identity-quote,
footer {
  width: min(1500px, calc(100% - 72px));
  max-width: calc(100% - 72px);
}

.site-header {
  height: 92px;
  padding-inline: 0;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(19, 214, 242, 0.2);
}

.nav {
  color: rgba(255, 253, 232, 0.74);
}

.nav-cta {
  background: rgba(16, 189, 224, 0.12);
  border-color: var(--cyan);
  box-shadow: 4px 4px 0 rgba(140, 255, 0, 0.22);
}

.hero {
  min-height: calc(100vh - 92px);
  padding: clamp(54px, 6vh, 82px) 0 96px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr) !important;
  gap: clamp(42px, 5vw, 84px);
  align-items: center;
  overflow: visible;
}

.hero-copy::before {
  content: none;
}

.eyebrow {
  color: var(--green);
}

.hero h1 {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(58px, 5vw, 96px);
  line-height: 0.9;
  letter-spacing: -1px;
  text-shadow: 4px 4px 0 rgba(0, 0, 0, 0.52);
}

.hero h1 em {
  color: var(--green);
  text-shadow: 4px 4px 0 #001716, 0 0 24px rgba(140, 255, 0, 0.28);
}

.hero-intro {
  max-width: 560px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  margin-top: 34px;
}

.button-primary {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 8px 8px 0 rgba(155, 54, 216, 0.28);
}

.hero-stats {
  margin-top: 48px;
}

.hero-visual {
  width: min(100%, 760px) !important;
  max-width: 760px !important;
  justify-self: end !important;
}

.image-frame {
  padding: 10px;
  border-color: rgba(19, 214, 242, 0.8);
  background:
    linear-gradient(135deg, rgba(16, 189, 224, 0.12), rgba(140, 255, 0, 0.06)),
    rgba(3, 12, 11, 0.76);
  box-shadow:
    0 0 0 1px rgba(140, 255, 0, 0.2),
    0 24px 70px rgba(0, 0, 0, 0.42);
}

.image-frame::before {
  inset: 18px -16px -16px 18px;
  border-color: rgba(140, 255, 0, 0.48);
}

.image-frame::after {
  content: none;
}

.image-frame img {
  max-height: none !important;
  background: var(--banner-sky);
}

.visual-kicker {
  top: 28px;
  left: -28px;
  background: var(--purple);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.26);
}

.live-pill {
  right: -10px;
  bottom: 24px;
}

.roar-stamp {
  bottom: -42px;
  left: -20px;
}

.marquee {
  background: rgba(16, 189, 224, 0.035);
  border-block-color: rgba(140, 255, 0, 0.16);
}

.story {
  padding: 120px 0;
}

.story::before,
.experience::before,
.identity-quote::before {
  opacity: 0.42;
}

.story-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(40px, 6vw, 90px);
}

.story h2 {
  font-size: clamp(54px, 5.2vw, 92px);
  line-height: 0.92;
}

.story-copy {
  justify-self: end;
  max-width: 500px;
}

.experience {
  padding-bottom: 125px;
}

.experience-card {
  border-color: rgba(19, 214, 242, 0.26);
  background:
    linear-gradient(135deg, rgba(16, 189, 224, 0.08), rgba(155, 54, 216, 0.07)),
    rgba(4, 16, 15, 0.7);
  box-shadow: 10px 10px 0 rgba(140, 255, 0, 0.08);
}

.identity-quote {
  margin-bottom: 150px;
}

.launch {
  background:
    radial-gradient(circle at 78% 20%, rgba(155, 54, 216, 0.18), transparent 28%),
    linear-gradient(135deg, var(--green), var(--cyan));
}

footer {
  padding: 34px 0 46px;
  background: transparent;
  border-top: 1px solid rgba(19, 214, 242, 0.2);
  overflow: visible;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: 1fr !important;
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero h1 {
    max-width: 760px;
  }

  .hero-visual {
    justify-self: center !important;
    width: min(100%, 820px) !important;
    max-width: 820px !important;
  }
}

@media (max-width: 980px) {
  .site-header,
  .hero,
  .section-shell,
  .identity-quote,
  footer {
    width: min(100% - 36px, 820px);
    max-width: calc(100% - 36px);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-copy {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section-shell,
  .identity-quote,
  footer {
    width: calc(100% - 28px);
    max-width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .hero-visual {
    margin-inline: 0;
  }
}
