

@font-face { font-family: "Fira Sans"; font-weight: 400; font-style: normal; font-display: swap; src: url("assets/fonts/fira-sans-400.woff2") format("woff2"); }
@font-face { font-family: "Fira Sans"; font-weight: 500; font-style: normal; font-display: swap; src: url("assets/fonts/fira-sans-500.woff2") format("woff2"); }
@font-face { font-family: "Fira Sans"; font-weight: 600; font-style: normal; font-display: swap; src: url("assets/fonts/fira-sans-600.woff2") format("woff2"); }
@font-face { font-family: "Fira Sans"; font-weight: 700; font-style: normal; font-display: swap; src: url("assets/fonts/fira-sans-700.woff2") format("woff2"); }
@font-face { font-family: "Fira Sans"; font-weight: 400; font-style: italic; font-display: swap; src: url("assets/fonts/fira-sans-400-italic.woff2") format("woff2"); }

@font-face {
  font-family: "Area Inktrap";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/area-inktrap-bold.woff2") format("woff2");
}
@font-face {
  font-family: "Area Inktrap";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("assets/fonts/area-inktrap-black.woff2") format("woff2");
}
:root {

  --bg: #ffffff;
  --ink: #0a0312;
  --ink-soft: #3f3b4c;
  --brand: #6b6ce9;
  --brandLight: #6b6be978;
    --brand-soft: #b9baf6;
  --brand-ghost: #eff3fe;
  --purple-deep: #521695;
  --purple-block: #594fdc;
  --hero-bg: #0a0312;
  --hero-card: #11041f;

  --sec-hero-bg:    var(--hero-bg);
  --sec-screens-bg: var(--bg);
  --sec-trusted-bg: var(--hero-bg);
  --sec-cta-bg:     var(--purple-deep);
  --sec-faq-bg:     var(--bg);
  --sec-footer-bg:  var(--hero-bg);

  --font-display: "Area Inktrap", serif;
  --font-sans: "Fira Sans", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;

  --max-w: 1490px;
  --pad-x: clamp(20px, 4vw, 88px);
  --pad-section: clamp(56px, 8vw, 128px);
  --radius-block: 0px;
  --radius-card: 12px;
  --radius-media: 12px;
  --nav-h: 84px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);

  --hero-col-duration: 38s;
  --hero-col-delay-step: 1.6s;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  font-synthesis: none;
  line-height: 1.55;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; color: inherit; cursor: pointer; font: inherit; padding: 0; }
::selection { background: var(--brand); color: #fff; }

body::before {
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  content: "";
  inset: 0;
  mix-blend-mode: overlay;
  opacity: 0.03;
  pointer-events: none;
  position: fixed;
  z-index: 1000;
}

.g2g-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.4vw, 82px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
.g2g-title__accent { color: var(--brand); }
.g2g-title--ondark { color: #fff; }

.g2g-title--ondark .g2g-title__accent { color: var(--brand-soft); }

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  padding: 13px 26px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { font-size: 18px; padding: 17px 34px; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 10px 30px rgba(107, 108, 233, 0.35); }
.btn--primary:hover { background: #7d7eef; }
.btn--white { background: #fff; color: var(--purple-deep); }

.btn--ghost {
  border: 1px solid color-mix(in srgb, var(--brand-soft) 40%, transparent);
  color: #fff;
}
.btn--ghost:hover { border-color: var(--brand); }

html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
html.js .reveal.is-in { opacity: 1; transform: none; }

.hero-gallery__card {
  position: relative;
  transform: perspective(var(--tilt-perspective, 1100px)) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 200ms var(--ease);
  will-change: transform;
}

.hero-gallery__card::before {

  border-radius: inherit;
  content: "";
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 280ms var(--ease);
  z-index: 5;
}
.hero-gallery__card[data-tilted="true"]::before { opacity: 1; }

.g2g-lightbox {
  border-radius: var(--radius-media);
  box-shadow: 0 40px 90px rgba(5, 0, 20, 0.65);
  left: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: transform var(--hero-focus-ms, 420ms) var(--ease);
  will-change: transform;
  z-index: 120;
}
.g2g-scrim {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(23, 5, 55, 0.5);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity var(--hero-focus-ms, 420ms) var(--ease);
  z-index: 110;
}
.g2g-scrim.is-on { opacity: 1; pointer-events: auto; }

.g2g-lightbox--screen .screens__window {
  box-shadow: none;
  cursor: zoom-out;
  height: 100%;
  left: 0;
  position: static;
  transform: none;
  width: 100%;
}
.g2g-lightbox--screen .screens__window img {
  -webkit-mask-image: none;
  mask-image: none;
}

html.js [data-cascade] > * {
  opacity: 0;
  transform: translateY(var(--result-distance, 44px));
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  transition-delay: calc((var(--result-count, 5) - 1 - var(--card-index, 0)) * var(--result-stagger, 90ms));
}
html.js [data-cascade].is-in > * {
  opacity: 1;
  transform: none;
  transition-delay: calc(var(--card-index, 0) * var(--result-stagger, 90ms));
}

.hero__sr {
  border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute; white-space: nowrap; width: 1px; list-style: none;
}

.nav {
  align-items: center;
  background: var(--hero-bg);
  display: grid;

  grid-template-columns: 1fr auto 1fr;
  height: var(--nav-h);
  padding: 0 var(--pad-x);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav[data-scrolled] {
  border-bottom: 1px solid color-mix(in srgb, var(--brand-soft) 16%, transparent);
  box-shadow: 0 14px 34px rgba(5, 0, 20, 0.35);
}
.nav__logo { color: var(--brand); justify-self: start; }

.nav__logo img { height: clamp(24px, 2.2vw, 30px); width: auto; }

.nav__links-wrap { justify-self: center; min-width: 0; }
.nav__links {
  background: color-mix(in srgb, #fff 4%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand-soft) 20%, transparent);
  border-radius: 999px;
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 5px;
}
.nav__link {
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
  padding: 9px 18px;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease),
    background-color 0.2s var(--ease);
}
.nav__link:hover {
  background: color-mix(in srgb, var(--brand) 22%, transparent);
  color: #fff;
  opacity: 1;
}
.nav__link.is-active {
  background: color-mix(in srgb, var(--brand) 34%, transparent);
  color: #fff;
  opacity: 1;
}
.nav__right { align-items: center; display: flex; gap: 10px; justify-self: end; }

.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 10px 8px; }
.nav__burger span {
  background: #fff;
  border-radius: 2px;
  display: block;
  height: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
  width: 20px;
}
.nav[data-menu-open] .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav[data-menu-open] .nav__burger span:nth-child(2) { opacity: 0; }
.nav[data-menu-open] .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  background: var(--sec-hero-bg);
  border-radius: 0 0 var(--radius-block) var(--radius-block);

  height: calc(100vh - var(--nav-h));
  height: calc(100svh - var(--nav-h));
  min-height: 520px;
  overflow: clip;
  position: relative;
}
.hero__inner {
  display: grid;
  gap: clamp(24px, 4vw, 64px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  height: 100%;
  margin: 0 auto;
  max-width: var(--max-w);
  padding: clamp(24px, 3.5vw, 48px) var(--pad-x) 0;
  position: relative;
}
.hero__copy { align-self: center; min-width: 0; padding: clamp(24px, 4vw, 64px) 0; }
.hero__title {
  color: #fff;
  font-family: var(--font-display);

  font-size: clamp(40px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.06;
  margin: 0 0 clamp(24px, 3.2vw, 48px);
  max-width: 15ch;
  text-wrap: balance;
}
.hero__title-accent { color: var(--brand); }
.hero__actions { align-items: flex-end; display: flex; flex-direction: row; gap: 26px; }

.hero-gallery {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(3, 1fr);
  height: 100%;
  min-height: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #211e48 7%, #211e48 93%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0, #211e48 7%, #211e48 93%, transparent 100%);
  overflow: hidden;
  position: relative;
}
.hero-gallery__col { overflow: hidden; }
.hero-gallery__track {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
  animation-delay: calc(var(--col-index, 0) * var(--hero-col-delay-step));
  animation-duration: var(--hero-col-duration);
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.hero-gallery__col--up .hero-gallery__track { animation-name: hero-col-up; }
.hero-gallery__col--down .hero-gallery__track { animation-name: hero-col-down; }
.hero-gallery[data-paused] .hero-gallery__track { animation-play-state: paused; }

.hero-gallery[data-focused] .hero-gallery__track { animation-play-state: paused; }
.hero-gallery[data-focused] .hero-gallery__card {
  filter: blur(6px) brightness(0.55);
  opacity: 0.45;
}
.hero-gallery__card {
  transition: transform 200ms var(--ease), filter 300ms var(--ease), opacity 300ms var(--ease);
}

.hero-gallery[data-clickable] .hero-gallery__card { cursor: pointer; }
@keyframes hero-col-up   { from { transform: translateY(0); }        to { transform: translateY(calc(-50% - 7.5px)); } }
@keyframes hero-col-down { from { transform: translateY(calc(-50% - 7.5px)); } to { transform: translateY(0); } }

.hero-gallery__card {
  aspect-ratio: 228 / 269;
  border-radius: var(--radius-media);
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}
.hero-gallery__card img {
  height: 100%; object-fit: cover; width: 100%;
}
.hero-gallery__card::after {

  background: linear-gradient(180deg, rgba(10, 3, 18, 0.72) 0%, rgba(10, 3, 18, 0.28) 46%, rgba(10, 3, 18, 0) 72%);
  content: "";
  inset: 0;
  position: absolute;
}
.hero-gallery__label {
  color: #fff;
  font-size: clamp(13px, 1.25vw, 19px);
  font-weight: 700;
  left: 17px;
  position: absolute;
  top: 12px;
  z-index: 1;
}
.hero-gallery__card--text {
  background: var(--hero-card);
  padding: 17px;
}

.hero-gallery {

  --hero-icon-size: clamp(30px, 2.8vw, 44px);
  --hero-icon-gap: clamp(8px, 1vw, 14px);
}
.hero-gallery__card--icon {

  aspect-ratio: auto;

  border: 1px solid color-mix(in srgb, var(--brand-soft) 13%, transparent);
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent);
  display: flex;
  flex-direction: column;
  gap: var(--hero-icon-gap);
  justify-content: flex-start;
  min-height: clamp(150px, 13vw, 210px);
}
.hero-gallery__card--icon::after { content: none; }
.hero-gallery__card--icon .hero-gallery__icon {
  height: var(--hero-icon-size);
  object-fit: contain;
  width: var(--hero-icon-size);
}
.hero-gallery__card--icon .hero-gallery__label em {
  font-size: 0.8em;
  font-style: normal;
  font-weight: 500;
  opacity: 0.7;
}
.hero-gallery__card--icon .hero-gallery__text {
  margin: 0;
  text-shadow: none;
}
.hero-gallery__card--text .hero-gallery__label { position: static; }
.hero-gallery__text {
  color: var(--bg);
  font-size: clamp(12px, 1.1vw, 16px);
  text-shadow: 0px 1px 2px rgba(0,0,0,1);
  line-height: 1.45;
  margin: 10px 0 0;
}

.screens {

  --desk-h: clamp(440px, 46vw, 660px);
  --win-radius: 10px;
  --win-lift: -14px;
  --win-fade: 12%;
  --win-shadow: 0 18px 50px rgba(10, 3, 18, 0.18);
  --win-shadow-hover: 0 34px 80px rgba(10, 3, 18, 0.28);
  background: var(--sec-screens-bg);
}
.screens__inner {
  margin: 0 auto;
  max-width: var(--max-w);
  padding: var(--pad-section) var(--pad-x);
}
.screens__title {
  margin: 0 0 10px;
  text-align: center;
}
.screens__sub {
  color: var(--ink-soft);
  font-size: clamp(18px, 1.6vw, 22px);
  margin: 0 auto clamp(32px, 4.5vw, 60px);
  max-width: 52ch;
  text-align: center;
}

.screens__desk {
  height: var(--desk-h);
  position: relative;
}

.screens__desk::before {
  background:
    radial-gradient(58% 62% at 50% 52%, var(--brand-ghost) 0%, transparent 72%),
    radial-gradient(30% 34% at 22% 78%, color-mix(in srgb, var(--brand) 9%, transparent) 0%, transparent 70%),
    radial-gradient(26% 30% at 82% 24%, color-mix(in srgb, var(--brand) 7%, transparent) 0%, transparent 70%);
  content: "";
  inset: -6% -4%;
  position: absolute;
  z-index: 0;
}
.screens__window {
  border-radius: var(--win-radius);
  box-shadow: var(--win-shadow);
  cursor: zoom-in;
  left: var(--win-x, 0%);
  margin: 0;

  position: absolute;
  top: var(--win-y, 0%);
  transform: rotate(var(--win-rot, 0deg));
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  width: var(--win-w, 30%);
  will-change: transform;
  z-index: var(--win-z, 1);
}

.screens__window:hover, .screens__window:focus-visible {
  box-shadow: var(--win-shadow-hover);
  transform: rotate(0deg) translateY(var(--win-lift));
  z-index: 20;
}
.screens__window img {
  border-radius: 0 0 var(--win-radius) var(--win-radius);
  display: block;

  height: auto;
  width: 100%;

  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - var(--win-fade)), transparent);
  mask-image: linear-gradient(to bottom, #000 calc(100% - var(--win-fade)), transparent);
}

.screens__winbar {
  align-items: center;
  background: var(--win-bar, #fff);
  border-bottom: 1px solid rgba(10, 3, 18, 0.08);
  border-radius: var(--win-radius) var(--win-radius) 0 0;
  color: var(--win-ink, var(--ink-soft));
  display: flex;
  gap: 5px;
  padding: 9px 10px;
}
.screens__winbar i {
  background: currentColor;
  border-radius: 50%;
  height: 8px;
  opacity: 0.35;
  width: 8px;
}

.screens__chip {
  background: var(--brand);
  border-radius: 999px;
  bottom: 10px;
  box-shadow: 0 6px 18px rgba(107, 108, 233, 0.4);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  left: 12px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  position: absolute;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .screens__desk {
    display: flex;
    gap: 18px;
    height: auto;
    margin: 0 calc(-1 * var(--pad-x));
    overflow-x: auto;
    padding: 8px var(--pad-x) 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .screens__desk::-webkit-scrollbar { display: none; }
  .screens__window {
    align-self: flex-start;
    flex: 0 0 min(78vw, 420px);
    left: auto;
    position: relative;
    scroll-snap-align: center;
    top: auto;
    transform: none;
    width: auto;
  }
  .screens__window:hover { transform: none; }

  .screens__window img {
    height: clamp(240px, 56vw, 340px);
    object-fit: cover;
    object-position: top center;
  }
}

.trusted {
  background: var(--sec-trusted-bg);
  border-radius: var(--radius-block);
  overflow: clip;
  padding: clamp(48px, 6vw, 96px) 0 clamp(44px, 5vw, 84px);
  position: relative;
}
.trusted::before {

  content: "";
  inset: 0;
  position: absolute;
}

.trusted__title {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(28px, 4.05vw, 61px);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 auto clamp(40px, 5vw, 80px);
  max-width: 32ch;
  text-align: center;
}
.trusted__carousel { position: relative; }
.trusted__viewport { overflow: hidden; }
.trusted__track {
  display: flex;
  gap: clamp(14px, 1.6vw, 26px);
  list-style: none;
  margin: 5px;
  padding: 5px;
  width: max-content;
  will-change: transform;
}
.trusted__item { flex: 0 0 auto; }

.trusted__cover {
  border-radius: clamp(16px, 1.8vw, 26px);
  display: block;
  overflow: hidden;
  width: clamp(104px, 9.8vw, 148px);
}
.trusted__cover img { aspect-ratio: 1; height: auto; object-fit: cover; width: 100%; }

.faq { background: var(--sec-faq-bg); }
.faq__inner {
  display: grid;
  gap: clamp(32px, 5vw, 88px);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  margin: 0 auto;
  max-width: var(--max-w);
  padding: var(--pad-section) var(--pad-x);
}
.faq__head { align-self: start; position: sticky; top: calc(var(--nav-h) + 24px); }
.faq__title { margin: 0 0 18px; }
.faq__lede { color: var(--ink-soft); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.55; margin: 0; max-width: 44ch; }
.faq__lede a { color: var(--brand); font-weight: 600; }

.faq__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 clamp(20px, 2.5vw, 32px);
}
.faq__tab {
  border: 1px solid rgba(89, 79, 220, 0.25);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 16px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.faq__tab:hover { border-color: var(--brand); color: var(--brand); }
.faq__tab[aria-selected="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.faq__tab:focus-visible { box-shadow: 0 0 0 3px rgba(107, 108, 233, 0.35); outline: none; }
.faq__item { border-top: 1px solid rgba(89, 79, 220, 0.16); }
.faq__group .faq__item:last-child { border-bottom: 1px solid rgba(89, 79, 220, 0.16); }
.faq__q {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 700;
  gap: 18px;
  justify-content: space-between;
  list-style: none;
  padding: clamp(16px, 1.8vw, 22px) 0;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__item[open] .faq__q { color: var(--purple-block); }
.faq__chevron {
  border-bottom: 2.5px solid var(--brand);
  border-right: 2.5px solid var(--brand);
  flex: none;
  height: 9px;
  margin-right: 4px;
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
  width: 9px;
}
.faq__item[open] .faq__chevron { transform: rotate(225deg); }
.faq__a {
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 62ch;
  padding: 0 0 clamp(16px, 1.8vw, 22px);
}
@media (max-width: 900px) {
  .faq__inner { grid-template-columns: 1fr; }
  .faq__head { position: static; }
}

.cta-banner {

  --cta-art-max-h: clamp(220px, 26vw, 400px);
  background: var(--sec-cta-bg);
  border-radius: var(--radius-block) var(--radius-block) 0 0;
  overflow: clip;
  position: relative;
}
.cta-banner__inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 4vw, 72px);
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max-w);
  padding: clamp(56px, 7vw, 110px) var(--pad-x);
  position: relative;
}
.cta-banner__copy {
  display: grid;
  gap: 14px;
  justify-items: start;
}
.cta-banner__title { margin: 0; }
.cta-banner__subtitle {
  color: var(--brand-soft);
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 600;
  margin: 0 0 30px;
}
.cta-banner__art {
  height: auto;
  justify-self: center;
  max-height: var(--cta-art-max-h);
  width: auto;
}
@media (max-width: 820px) {
  .cta-banner__inner { grid-template-columns: 1fr; text-align: center; }
  .cta-banner__copy { justify-items: center; }
  .cta-banner__art { max-height: clamp(180px, 40vw, 260px); }
}

.footer { background: var(--sec-footer-bg); color: #fff; padding: clamp(40px, 5vw, 72px) var(--pad-x) 28px; }
.footer__inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 96px);
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max-w);
}
.footer__brand { align-items: start; display: grid; gap: 14px; }
.footer__logo { color: #fff; }

.footer__logo img { height: 38px; width: auto; }
.footer__tagline {
  color: #d9d5e6;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}
.footer__tagline span { color: var(--brand); }
.footer__nav { align-items: center; display: flex; flex-wrap: wrap; gap: 12px 28px; }
.footer__link { color: #cfc9e6; font-size: 15px; transition: color 0.2s var(--ease); }
.footer__link:hover { color: #fff; }
.footer__link--cta {
  border: 1px solid var(--brand);
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.footer__link--cta:hover { background: var(--brand); }
.footer__legal {
  align-items: center;
  border-top: 1px solid rgba(185, 186, 246, 0.18);
  color: #8f89ad;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px 28px;
  justify-content: space-between;
  margin: clamp(28px, 4vw, 48px) auto 0;
  max-width: var(--max-w);
  padding-top: 22px;
}
.footer__legal p { margin: 0; }
.footer__legal .footer__link { color: var(--brand-soft); font-size: 13px; }

.go-up {
  bottom: 26px;
  height: 52px;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 26px;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  transform: translateY(8px);
  width: 52px;
  z-index: 90;
}
.go-up.is-visible { opacity: 1; pointer-events: auto; transform: none; }

@media (max-width: 1080px) {

  .hero__inner { grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); }
  .hero__copy { padding-bottom: 0; }
}

@media (max-width: 720px) {

  .nav { column-gap: 10px; grid-template-columns: auto 1fr auto; }
  .nav__logo img { height: 22px; width: auto; }
  .nav__burger { display: inline-flex; }
  .nav__links-wrap {
    background: var(--hero-bg);
    bottom: 0;
    display: none;
    flex-direction: column;
    left: 0;
    padding: 4vh var(--pad-x) 0;

    position: fixed;
    right: 0;
    top: var(--nav-h);
    width: 100%;
  }
  .nav[data-menu-open] .nav__links-wrap {
    animation: g2g-menu-in 0.3s var(--ease);
    display: flex;
  }
  @keyframes g2g-menu-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: none; }
  }
  .nav__links { background: transparent; border: 0; flex-direction: column; gap: 2vh; padding: 0; }

  .nav__link {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(28px, 9vw, 40px);
    font-weight: 800;
    letter-spacing: -0.01em;
    padding: 4px 0;
  }
  .nav__link:hover { background: transparent; }
  .nav__link.is-active { background: transparent; color: var(--brand); }

  .nav__links-wrap::after {
    background: url("assets/megaphone-girl.webp") no-repeat bottom right / contain;
    content: "";
    flex: 1;
    margin-top: 3vh;
    min-height: 100px;
  }
  .nav__cta { font-size: 13px; padding: 9px 14px; }
  .hero__title { max-width: none; }
  .hero-gallery { gap: 10px; }
  .hero-gallery__track { gap: 10px; }
  @keyframes hero-col-up   { from { transform: translateY(0); } to { transform: translateY(calc(-50% - 5px)); } }
  @keyframes hero-col-down { from { transform: translateY(calc(-50% - 5px)); } to { transform: translateY(0); } }
  .trusted__title { max-width: 16ch; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-gallery__track { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
  .hero-gallery__card { transform: none; transition: none; }
  [data-cascade] > * {
    opacity: 1 !important; transform: none !important; transition: none;
  }
}

.pricing {

  --price-gap: clamp(14px, 1.6vw, 24px);
  --price-pad: clamp(20px, 2vw, 28px);
  --price-featured-bg: var(--purple-deep);
  background: var(--hero-bg);
}
.pricing__inner {
  margin: 0 auto;
  max-width: var(--max-w);
  padding: clamp(48px, 6vw, 96px) var(--pad-x) var(--pad-section);
}
.pricing__title {
  font-size: clamp(30px, 3.6vw, 56px);
  margin: 0 auto 14px;
  max-width: 26ch;
  text-align: center;
}
.pricing__sub {
  color: #d9d5e6;
  font-size: clamp(15px, 1.3vw, 18px);
  margin: 0 auto clamp(36px, 4.5vw, 64px);
  max-width: 62ch;
  text-align: center;
}
.pricing__grid {
  align-items: stretch;
  display: grid;
  gap: var(--price-gap);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  background: var(--hero-card);
  border: 1px solid color-mix(in srgb, var(--brand-soft) 13%, transparent);
  border-radius: var(--radius-card);
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: var(--price-pad);
}
.price-card__head { min-height: clamp(84px, 7vw, 104px); }
.price-card__name {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.01em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.price-card__tag {
  border: 1px solid color-mix(in srgb, var(--brand-soft) 45%, transparent);
  border-radius: 999px;
  color: var(--brand-soft);
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}
.price-card__pitch { color: #b7b1c6; font-size: 14px; line-height: 1.45; margin: 0; }
.price-card__price {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.6vw, 40px);
  font-weight: 800;
  line-height: 1;
  margin: 14px 0 6px;
}
.price-card__price em { font-family: var(--font-sans); font-size: 13px; font-style: normal; font-weight: 600; opacity: 0.7; }
.price-card__price span { font-family: var(--font-sans); font-size: 14px; font-weight: 600; opacity: 0.7; }
.price-card__seats {
  border-bottom: 1px solid color-mix(in srgb, var(--brand-soft) 13%, transparent);
  color: var(--brand-soft);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 16px;
  padding-bottom: 16px;
}
.price-card__features { display: grid; gap: 10px; list-style: none; margin: 0 0 22px; padding: 0; }
.price-card__features li {
  color: #d9d5e6;
  font-size: 14.5px;
  line-height: 1.4;
  padding-left: 26px;
  position: relative;
}

.price-card__features li::before {
  background: currentColor;
  color: var(--brand);
  content: "";
  height: 16px;
  left: 0;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.3-4-4 1.7-1.7 2.3 2.3 5-5 1.7 1.7-6.7 6.7z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm-1.2 14.3-4-4 1.7-1.7 2.3 2.3 5-5 1.7 1.7-6.7 6.7z'/></svg>") no-repeat center / contain;
  position: absolute;
  top: 2px;
  width: 16px;
}
.price-card__plus { color: #fff; font-weight: 700; }
.price-card__plus::before {
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm5 11h-4v4h-2v-4H7v-2h4V7h2v4h4v2z'/></svg>");
}
.price-card__cta { margin-top: auto; }

.price-card--featured {
  background: var(--price-featured-bg);
  border-color: color-mix(in srgb, #fff 22%, transparent);
}
.price-card--featured .price-card__tag { border-color: rgba(255, 255, 255, 0.5); color: #fff; }
.price-card--featured .price-card__pitch { color: rgba(255, 255, 255, 0.8); }
.price-card--featured .price-card__seats { border-color: rgba(255, 255, 255, 0.22); color: #fff; }
.price-card--featured .price-card__features li { color: #fff; }
.price-card--featured .price-card__features li::before { color: #fff; }

.pricing__expansions-label {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: clamp(28px, 3.5vw, 48px) 0 14px;
  text-align: center;
  text-transform: uppercase;
}
.pricing__expansions {
  display: grid;
  gap: var(--price-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pricing__expansion {
  align-items: center;
  background: var(--hero-card);
  border: 1px solid color-mix(in srgb, var(--brand-soft) 13%, transparent);
  border-radius: var(--radius-card);
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent);
  display: flex;
  gap: 18px;
  padding: 18px var(--price-pad);
}
.pricing__expansion h3 { color: #fff; font-size: 16px; margin: 0 0 3px; }
.pricing__expansion p { color: #b7b1c6; font-size: 13.5px; margin: 0; }

@media (max-width: 1180px) {
  .pricing__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card__head { min-height: 0; }
}
@media (max-width: 720px) {
  .pricing__grid, .pricing__expansions { grid-template-columns: 1fr; }
}

.book {
  background: var(--hero-bg);
  border-bottom: 1px solid color-mix(in srgb, var(--brand-soft) 13%, transparent);
  position: relative;
}
.book__inner {
  align-items: start;
  display: grid;
  gap: clamp(32px, 5vw, 96px);
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: var(--max-w);
  min-height: calc(100vh - var(--nav-h));
  padding: clamp(40px, 5.5vw, 88px) var(--pad-x) var(--pad-section);
  position: relative;
}
.book__eyebrow { color: var(--brand); font-size: 17px; font-weight: 700; letter-spacing: 0.06em; margin: 0 0 10px; text-transform: uppercase; }
.book__title { margin-bottom: 20px; }
.book__lede { color: #d9d5e6; font-size: clamp(16px, 1.4vw, 20px); margin: 0 0 38px; max-width: 52ch; }

.book__points { display: grid; gap: 14px; list-style: none; margin: 0 0 46px; padding: 0; }
.book__point {
  background: var(--hero-card);
  border: 1px solid color-mix(in srgb, var(--brand-soft) 13%, transparent);
  border-radius: var(--radius-card);
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent);
  display: flex;
  gap: 18px;
  padding: 16px 20px;
}
.book__point-num { color: var(--brand); font-family: var(--font-display); font-size: 26px; font-weight: 800; line-height: 1.15; }
.book__point h3 { color: #fff; font-size: 18px; font-weight: 700; margin: 0 0 4px; }
.book__point p { color: #b7b1c6; font-size: 15.5px; margin: 0; max-width: 46ch; }
.book__proof-label { color: rgba(255, 255, 255, 0.55); font-size: 13.5px; font-weight: 600; letter-spacing: 0.05em; margin: 0 0 16px; text-transform: uppercase; }

.book__form-col { display: grid; gap: clamp(24px, 3vw, 40px); }
.book__proof-logos { display: grid; gap: clamp(16px, 2.2vw, 26px) clamp(18px, 2.4vw, 32px); grid-template-columns: repeat(3, auto); justify-content: start; list-style: none; margin: 0; max-width: 100%; opacity: 0.9; padding: 0; align-items: center; justify-items: start; }
.book__proof-logos img { display: block; height: var(--logo-h, 32px); width: auto; }

.book-form {
  background: var(--hero-card);
  border: 1px solid color-mix(in srgb, var(--brand-soft) 13%, transparent);
  border-radius: var(--radius-card);
  box-shadow: inset 0 1px 0 color-mix(in srgb, #fff 8%, transparent);
  color: #fff;
  padding: clamp(24px, 3vw, 44px);
}
.book-form__title { font-family: var(--font-display); font-size: clamp(24px, 2.2vw, 34px); font-weight: 800; margin: 0 0 6px; }
.book-form__hint { color: #9a94ad; font-size: 13.5px; margin: 0 0 26px; }
.book-form__status { border-radius: 10px; font-size: 13.5px; font-weight: 600; margin: 14px 0 0; padding: 10px 14px; background: rgba(242, 91, 91, 0.14); color: #ff9d9d; }
.book-form__grid { display: grid; gap: 18px 14px; grid-template-columns: 1fr 1fr; margin-bottom: 20px; }
.book-form__field { display: grid; gap: 7px; margin: 0; }
.book-form__label { color: var(--brand-soft); display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.book-form__label em { color: #fff; font-style: normal; }
.book-form__hint em { color: #fff; font-style: normal; }
.book-form__field input,
.book-form__field select,
.book-form__field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(185, 186, 246, 0.35);
  border-radius: 10px;
  color: #fff;
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.book-form__field ::placeholder { color: rgba(255, 255, 255, 0.38); }
.book-form__field input:focus,
.book-form__field select:focus,
.book-form__field textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(107, 108, 233, 0.28);
  outline: none;
}
.book-form__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b9baf6' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 38px;
}
.book-form__field select option { background: var(--hero-card); color: #fff; }
.book-form__field textarea { min-height: 112px; resize: vertical; }
.book-form__group { border: 0; margin: 0 0 20px; min-width: 0; padding: 0; }
.book-form__group .book-form__label { margin-bottom: 10px; }
.book-form__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.book-form__pill { position: relative; }
.book-form__pill input { height: 1px; left: 8px; opacity: 0; position: absolute; top: 8px; width: 1px; }
.book-form__pill span {
  border: 1px solid rgba(185, 186, 246, 0.4);
  border-radius: 999px;
  color: #d9d5e6;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.book-form__pill span:hover { border-color: var(--brand); color: #fff; }
.book-form__pill input:checked + span { background: var(--brand); border-color: var(--brand); color: #fff; }
.book-form__pill input:focus-visible + span { box-shadow: 0 0 0 3px rgba(107, 108, 233, 0.35); }
.book-form__honeypot { left: -9999px; position: absolute; top: -9999px; }
.book-form__consent { align-items: start; color: #9a94ad; display: flex; font-size: 13px; gap: 10px; line-height: 1.5; margin: 6px 0 22px; }
.book-form__consent input { accent-color: var(--brand); flex: 0 0 auto; height: 16px; margin-top: 2px; width: 16px; }
.book-form__consent a { color: var(--brand-soft); text-decoration: underline; }
.book-form__submit { width: 100%; }
.book-form__success { padding: clamp(8px, 1.5vw, 18px) 0; }
.book-form__success-title { font-size: clamp(34px, 3.4vw, 52px); margin: 10px 0 16px; }
.book-form__success-lede { color: #d9d5e6; margin: 0 0 28px; max-width: 44ch; }

@media (max-width: 1080px) {
  .book__inner { grid-template-columns: 1fr; min-height: 0; }
  .book__proof-logos { gap: 14px 22px; max-width: 480px; }
  .book__proof-logos img { height: calc(var(--logo-h, 32px) * 0.82); }
}
@media (max-width: 720px) {
  .book__proof-logos { grid-template-columns: repeat(2, auto); }
  .book-form__grid { grid-template-columns: 1fr; }
  .book__points { gap: 18px; }
}
