:root {
  --bg: #070a11;
  --panel: #101522;
  --panel-soft: #151b2b;
  --ink: #f7f9ff;
  --muted: #aeb8ca;
  --line: rgba(255, 255, 255, 0.14);
  --lime: #caff4e;
  --cyan: #00e8c6;
  --pink: #ff4e7a;
  --violet: #8b7cff;
  --paper: #f6f7ef;
  --dark: #11141c;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -4rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: var(--bg);
  background: var(--lime);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 10, 17, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100% - 32px, var(--max));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 184px;
  height: auto;
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-links a,
.nav-links button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.82rem;
  color: rgba(247, 249, 255, 0.82);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links button:hover,
.nav-links button:focus-visible {
  color: var(--ink);
  background: rgba(202, 255, 78, 0.14);
  outline: 1px solid rgba(202, 255, 78, 0.45);
}

.nav-links .nav-cta {
  color: #07100b;
  background: var(--lime);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  position: absolute;
  left: 0;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(0, 232, 198, 0.2), transparent 26rem),
    radial-gradient(circle at 12% 75%, rgba(255, 78, 122, 0.16), transparent 24rem),
    linear-gradient(135deg, #070a11 0%, #111827 52%, #07100c 100%);
}

.hero-inner,
.section {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
  align-items: center;
  gap: 3.5rem;
  padding: 5.5rem 0 6.5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
.display {
  max-width: 920px;
  font-size: 6.6rem;
  line-height: 0.9;
  font-weight: 950;
}

h2 {
  font-size: 3.8rem;
  line-height: 0.98;
  font-weight: 950;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.25;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero .lead {
  font-size: 1.24rem;
}

.actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.08rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
  cursor: pointer;
}

.btn.primary {
  color: #07100b;
  background: var(--lime);
  border-color: var(--lime);
}

.btn.secondary {
  color: var(--ink);
  background: rgba(0, 232, 198, 0.12);
  border-color: rgba(0, 232, 198, 0.42);
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.watch-stage {
  position: absolute;
  inset: 1rem 0 0 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.watch-stage::before {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(202, 255, 78, 0.28);
  border-radius: 50%;
  content: "";
}

.watch-one,
.watch-two {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.5));
}

.watch-one {
  width: 62%;
  right: 22%;
  top: 5%;
}

.watch-two {
  width: 58%;
  right: -4%;
  bottom: 1%;
}

.hero-kpi {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: min(260px, 72%);
  padding: 1rem;
  color: var(--dark);
  background: var(--paper);
  border-radius: var(--radius);
}

.hero-kpi strong {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0c101a;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  color: var(--lime);
  font-weight: 950;
  text-transform: uppercase;
  animation: scroll 28s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: 5.5rem 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.proof-card,
.team-card,
.case-card,
.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.panel,
.proof-card,
.case-card {
  padding: 1.25rem;
}

.metric {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--lime);
  font-size: 2.4rem;
  line-height: 1;
  font-weight: 950;
}

.band {
  background: var(--paper);
  color: var(--dark);
}

.band .lead,
.band p {
  color: #475064;
}

.band .eyebrow {
  color: #177c6f;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.image-frame {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
  background: #0d111d;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.logo-row,
.partner-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: center;
}

.logo-row a,
.partner-row div {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.logo-row img,
.partner-row img {
  max-height: 44px;
  width: auto;
  filter: invert(1) grayscale(1);
  opacity: 0.86;
}

.band .partner-row div {
  background: white;
  border-color: rgba(0, 0, 0, 0.1);
}

.band .partner-row img {
  filter: none;
  opacity: 0.9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: stretch;
}

.team-card {
  overflow: hidden;
}

.band .team-card {
  border-color: rgba(8, 12, 22, 0.16);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(8, 12, 22, 0.08);
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
  object-position: center top;
  background: #e7ebef;
  border-bottom: 1px solid rgba(8, 12, 22, 0.12);
}

.team-card div {
  padding: 1rem;
}

.band .team-card h3 {
  color: var(--dark);
}

.team-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.band .team-card p {
  color: #566075;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

.timeline-kicker {
  color: #177c6f;
  font-weight: 950;
}

.page-hero {
  padding: 5rem 0 3.5rem;
  background:
    radial-gradient(circle at 80% 8%, rgba(139, 124, 255, 0.18), transparent 25rem),
    linear-gradient(135deg, #080b12, #111827);
}

.page-hero .section {
  padding: 0;
}

.form-panel {
  padding: 1.2rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-status {
  min-height: 1.5rem;
  color: var(--lime);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #05070c;
}

.footer-inner {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem 0;
}

.footer-inner img {
  width: 160px;
  filter: invert(1);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.9rem;
}

.footer-links .btn {
  width: auto;
  min-width: 112px;
  white-space: nowrap;
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.blog-index-hero {
  background:
    radial-gradient(circle at 80% 16%, rgba(0, 232, 198, 0.2), transparent 28rem),
    radial-gradient(circle at 18% 70%, rgba(139, 124, 255, 0.16), transparent 24rem),
    linear-gradient(135deg, #070a11 0%, #101827 62%, #07100c 100%);
}

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

.blog-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.blog-card a {
  display: grid;
  height: 100%;
  grid-template-rows: auto 1fr;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card div {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem;
}

.blog-card h2 {
  font-size: 1.55rem;
  line-height: 1.05;
}

.blog-card p:not(.eyebrow) {
  color: var(--muted);
}

.blog-card span {
  margin-top: auto;
  color: var(--lime);
  font-size: 0.88rem;
  font-weight: 900;
}

.article-hero {
  padding: 5rem 0 3.2rem;
  background:
    radial-gradient(circle at 80% 8%, rgba(0, 232, 198, 0.18), transparent 28rem),
    linear-gradient(135deg, #070a11 0%, #111827 68%, #07100c 100%);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.article-hero h1 {
  max-width: 980px;
  font-size: 4.2rem;
}

.article-hero figure {
  margin: 0;
}

.article-hero img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-hero figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.article-meta span {
  padding: 0.45rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--lime);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
  font-weight: 900;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.33fr) minmax(0, 0.9fr);
  gap: 2rem;
  padding: 3.5rem 0 5rem;
}

.article-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 1rem;
}

.article-sidebar > div,
.article-sidebar nav {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.article-sidebar p,
.article-sidebar li {
  color: var(--muted);
  font-size: 0.92rem;
}

.article-sidebar ul {
  margin: 0;
  padding-left: 1.1rem;
}

.article-sidebar nav a {
  display: block;
  padding: 0.45rem 0;
  color: rgba(247, 249, 255, 0.84);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.94rem;
  font-weight: 800;
}

.article-body {
  min-width: 0;
  max-width: 860px;
}

.article-body h2 {
  font-size: 2.5rem;
}

.article-body h3 {
  margin-top: 1.6rem;
  margin-bottom: 0.55rem;
  color: var(--ink);
  font-size: 1.35rem;
}

.article-body p,
.article-body li {
  color: #d5dceb;
  font-size: 1.08rem;
}

.article-body p a {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.article-section,
.answer-card,
.takeaway-card,
.article-gallery,
.blog-infographic,
.faq-block,
.source-block {
  margin-bottom: 2rem;
}

.answer-card,
.takeaway-card,
.blog-infographic,
.source-block {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
}

.takeaway-card ul,
.source-block ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.blog-infographic {
  background:
    linear-gradient(180deg, rgba(202, 255, 78, 0.12), rgba(0, 232, 198, 0.05)),
    #0b111c;
}

.blog-infographic ol {
  display: grid;
  gap: 0.85rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.blog-infographic li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(202, 255, 78, 0.24);
  border-radius: var(--radius);
  background: rgba(3, 6, 12, 0.48);
}

.blog-infographic li span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #07100b;
  background: var(--lime);
  font-weight: 950;
}

.blog-infographic strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.blog-infographic li p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.infographic-visual {
  margin: 1.2rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(202, 255, 78, 0.2);
  border-radius: var(--radius);
  background: rgba(3, 6, 12, 0.5);
}

.infographic-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.infographic-visual figcaption {
  padding: 0.75rem 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.article-gallery > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.article-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.article-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-gallery figcaption {
  padding: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.faq-block details {
  margin-bottom: 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.faq-block summary {
  min-height: 52px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq-block details p {
  margin: 0;
  padding: 0 1rem 1rem;
}

.source-block a {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.article-next {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 0.8rem;
    background: #080b12;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a,
  .nav-links button {
    justify-content: flex-start;
  }

  .hero-inner,
  .split-layout,
  .grid.two,
  .grid.three,
  .grid.four {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  h1,
  .display {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .hero-inner {
    padding-top: 4rem;
  }

  .hero-visual {
    min-height: 430px;
  }

  .logo-row,
  .partner-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-grid,
  .article-hero-grid,
  .article-layout,
  .article-gallery > div {
    grid-template-columns: 1fr;
  }

  .article-hero h1 {
    font-size: 3.45rem;
  }

  .article-sidebar {
    position: static;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 148px;
  }

  .hero-inner,
  .section {
    width: min(100% - 28px, var(--max));
  }

  h1,
  .display {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .article-hero {
    padding: 3.5rem 0 2.5rem;
  }

  .article-hero h1 {
    font-size: 2.85rem;
  }

  .article-body h2,
  .blog-card h2 {
    font-size: 2rem;
  }

  .article-body p,
  .article-body li {
    font-size: 1rem;
  }

  .blog-infographic li {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-kpi {
    width: auto;
    left: 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}
