@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-Book.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Suisse Intl";
  src: url("assets/fonts/SuisseIntl-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  --black: #141416;
  --pure-black: #000;
  --white: #fff;
  --muted-white: rgba(255, 255, 255, 0.72);
  --muted-black: rgba(20, 20, 22, 0.58);
  --soft: #f6f6f8;
  --blue: #2844ff;
  --purple: #9e00ff;
  --section-pad: 64px;
  --block-inset: 70px;
  --radius: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--black);
  font-family: "Suisse Intl", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

.char-wrap {
  display: inline;
}

.char {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.4s ease, filter 0.4s ease;
}

.char.is-visible {
  opacity: 1;
  filter: blur(0px);
}

main section,
.site-footer {
  scroll-margin-top: 72px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 20px;
  padding-top: max(12px, env(safe-area-inset-top));
  color: var(--black);
  transition: color 240ms ease, background-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
}

.site-header.is-dark {
  color: var(--white);
}

.site-header.is-dark .header-request {
  background: var(--white);
  color: var(--black);
}

.site-header .button {
  min-height: 48px;
  padding: 8px 24px;
}

.brand {
  justify-self: start;
  font-size: 18px;
  font-weight: 500;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav a,
.nav-dropdown {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 24px;
  background: transparent;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.desktop-nav a:hover,
.nav-dropdown:hover {
  background: rgba(128, 128, 128, 0.14);
}

.desktop-nav a.is-active {
  background: rgba(128, 128, 128, 0.14);
}

.nav-request {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 24px;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  transition: background 0.2s;
}

.nav-request:hover {
  background: rgba(128, 128, 128, 0.14);
}

.nav-dropdown {
  gap: 9px;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.button {
  min-height: 56px;
  padding: 12px 24px;
  border-radius: 28px;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  font-weight: 450;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--pure-black);
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-muted {
  background: rgba(128, 128, 128, 0.12);
  color: currentColor;
}

.button-dark-muted {
  background: #28282e;
  color: var(--white);
}

.grid-button {
  width: 48px;
  height: 48px;
  display: grid;
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  place-content: center;
  gap: 4px;
  border-radius: 50%;
  background: rgba(128, 128, 128, 0.12);
  color: currentColor;
  cursor: pointer;
}

.grid-button span {
  border: 2px solid currentColor;
}

.mobile-menu-label,
.mobile-menu {
  display: none;
}

.section-dark {
  background: var(--black);
  color: var(--white);
}

.section-light {
  background: var(--white);
  color: var(--black);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-purple {
  background: var(--purple);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  place-items: center;
  padding: 104px 40px 72px;
  text-align: center;
  overflow: hidden;
}

.hero-waitlist-note {
  margin-top: 20px;
  font-size: 15px;
  color: var(--muted-black);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-canvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  opacity: 0.5;
}

.hero-content {
  width: min(1200px, 100%);
}

.eyebrow {
  font-size: 24px;
  line-height: 32px;
}

.hero h1 {
  max-width: 1100px;
  margin: 32px auto 48px;
  font-size: 72px;
  line-height: 72px;
  font-weight: 500;
  visibility: hidden;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.intro-panel {
  position: relative;
  min-height: 100vh;
  background: var(--white);
  isolation: isolate;
}

.intro-panel::before,
.company-section::before,
.system-intro::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: var(--block-inset);
  bottom: 0;
  left: var(--block-inset);
  content: "";
  will-change: left, right;
}

.intro-panel::before {
  background: var(--black);
}

.company-section::before {
  background: var(--blue);
}

.intro-panel-inner {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 320px 147px 90px;
  color: var(--white);
  font-size: 72px;
  line-height: 72px;
  font-weight: 500;
}

.mission {
  min-height: 664px;
  padding: 120px 64px;
}

.mission-copy {
  width: min(791px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  gap: 24px;
  font-size: 24px;
  line-height: 32px;
}

.section-frame {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-right: 147px;
  padding-left: 147px;
}

.company-section {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: var(--white);
  color: var(--white);
  isolation: isolate;
}

.company-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 90px;
}

.company-content .eyebrow,
.system-intro .eyebrow {
  font-size: 32px;
  line-height: 40px;
}

.block-title-wrap {
  flex: 1;
  display: flex;
  align-items: center;
}

.company-content h2 {
  max-width: 1745px;
  font-size: 60px;
  line-height: 64px;
  font-weight: 500;
}

.partners-section {
  padding: 120px 0 192px;
  overflow: hidden;
}

.partners-copy {
  width: min(800px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  gap: 48px;
  font-size: 24px;
  line-height: 32px;
}

.ticker {
  margin-top: 120px;
  overflow: hidden;
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 80px;
  animation: ticker 34s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker span {
  white-space: nowrap;
  font-size: 42px;
  line-height: 48px;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.system-intro {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background: var(--white);
  color: var(--white);
  isolation: isolate;
}

.system-intro::before {
  background: var(--purple);
}

.system-intro .section-frame {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 90px;
  padding-bottom: 90px;
  color: var(--white);
}

.system-intro h2 {
  max-width: 1745px;
  font-size: 60px;
  line-height: 64px;
  font-weight: 500;
}

.small-button {
  align-self: flex-start;
}

.agents-section {
  padding: 104px 0 120px;
}

.agents-heading {
  margin: 0 auto 80px;
  font-size: 60px;
  line-height: 64px;
  font-weight: 500;
  text-align: center;
}

.cards-scroller {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.cards-scroller::-webkit-scrollbar {
  display: none;
}

.cards-scroller.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.cards-track {
  width: max-content;
  display: flex;
  gap: 32px;
  padding: 0 64px;
}

.agent-card {
  --card-hover-bg: #0000fe;
  --card-hover-title: #fff;
  --card-hover-text: rgba(255, 255, 255, 0.76);
  --card-hover-label-bg: #141417;
  --card-hover-label-color: #fff;
  --card-hover-button-bg: #000;
  --card-hover-button-color: #fff;
  width: 640px;
  min-width: 640px;
  height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 56px;
  background: var(--soft);
  color: var(--black);
  transition: background-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.agent-card:hover {
  background: var(--card-hover-bg);
  color: var(--card-hover-title);
}

.agent-card:nth-child(2) {
  --card-hover-bg: #4ff01f;
  --card-hover-title: #141417;
  --card-hover-text: rgba(15, 15, 18, 0.56);
}

.agent-card:nth-child(3) {
  --card-hover-bg: #09f9f9;
  --card-hover-title: #141417;
  --card-hover-text: rgba(15, 15, 18, 0.56);
}

.agent-card:nth-child(4) {
  --card-hover-bg: #ffee00;
  --card-hover-title: #141417;
  --card-hover-text: rgba(15, 15, 18, 0.56);
}

.agent-card:nth-child(5) {
  --card-hover-bg: #000;
  --card-hover-title: #fff;
  --card-hover-text: #cfcfd4;
  --card-hover-label-bg: #fff;
  --card-hover-label-color: #141417;
  --card-hover-button-bg: #fff;
  --card-hover-button-color: #141417;
}

.agent-label {
  width: fit-content;
  margin-bottom: 28px;
  padding: 4px 8px;
  background: var(--black);
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
}

.agent-card h3 {
  max-width: 528px;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}

.agent-card p {
  max-width: 528px;
  margin-top: 0;
  margin-bottom: 16px;
  color: var(--muted-black);
  font-size: 24px;
  line-height: 32px;
  transition: color 240ms ease;
}

.agent-card:hover p {
  color: var(--card-hover-text);
}

.card-button {
  align-self: flex-start;
  min-width: 178px;
  margin-top: auto;
  background: #e9e9ed;
  color: var(--black);
}

.agent-card:hover .agent-label {
  background: var(--card-hover-label-bg);
  color: var(--card-hover-label-color);
}

.agent-card:hover .card-button {
  background: var(--card-hover-button-bg);
  color: var(--card-hover-button-color);
}

.stats-section {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  background: #4e5156 url("assets/cover5.avif") center / cover no-repeat;
  color: var(--white);
}

.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 22, 0.66);
  z-index: 0;
}

.stats-section > * {
  position: relative;
  z-index: 1;
}

.stats-intro {
  position: absolute;
  top: 72px;
  left: 50%;
  width: min(760px, calc(50% - 80px));
  font-size: 32px;
  line-height: 40px;
}

.stats-intro p + p {
  margin-top: 24px;
  color: var(--muted-white);
}

.stats-grid {
  position: absolute;
  right: 0;
  bottom: 64px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 0 88px;
}

.stat {
  display: grid;
  gap: 36px;
}

.stat strong {
  font-size: clamp(92px, 8vw, 120px);
  line-height: 1;
  font-weight: 500;
}

.stat span {
  font-size: 24px;
  line-height: 32px;
}

.comparison-section {
  position: relative;
  min-height: 900px;
  padding: 80px 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.comparison-eyebrow {
  font-size: 60px;
  line-height: 64px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  text-align: center;
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
}

.comparison-grid {
  width: 100%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  align-items: start;
}

.comparison-divider {
  background: rgba(255, 255, 255, 0.12);
  align-self: stretch;
  margin: 0 64px;
}

.comparison-column {
  padding: 0 48px;
}

.comparison-reactive {
  padding-left: 0;
}

.comparison-augmented {
  padding-right: 0;
}

.comparison-column h2 {
  font-weight: 600;
}

.comparison-reactive h2 {
  color: #b8b8b8;
  font-size: 42px;
  line-height: 48px;
  font-weight: 500;
}

.comparison-augmented h2 {
  font-size: 42px;
  line-height: 48px;
  font-weight: 500;
  color: var(--white);
}

.comparison-column ul {
  display: grid;
  gap: 18px;
  margin-top: 48px;
  padding: 0;
  list-style: none;
  color: #b8b8b8;
  font-size: 24px;
  line-height: 1.3;
}

.comparison-augmented ul {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 48px;
}

.cta-section {
  min-height: 900px;
  display: grid;
  place-items: center;
  padding: 80px 20px;
  background: var(--white);
  transition: background-color 350ms ease;
}

.cta-button {
  width: min(880px, calc(100vw - 40px));
  min-height: 316px;
  padding: 40px;
  border-radius: 160px;
  background: var(--pure-black);
  color: var(--white);
  cursor: pointer;
  font-size: 40px;
  line-height: 48px;
  font-weight: 500;
  transition: background-color 350ms ease, color 350ms ease;
}

.cta-hover {
  display: none;
}

.cta-button:hover ~ .cta-section,
.cta-section:has(.cta-button:hover) {
  background: var(--blue);
}

.cta-button:hover {
  background: var(--white);
  color: var(--black);
}

.cta-button:hover .cta-default {
  display: none;
}

.cta-button:hover .cta-hover {
  display: inline;
}

.site-footer {
  padding: 56px 64px 40px;
  background: var(--pure-black);
  color: var(--white);
}

.footer-simple {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand {
  font-size: 20px;
  font-weight: 500;
}

.footer-statement {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 20px;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.reveal {
  opacity: 1;
  transform: none;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 1023px) {
  :root {
    --block-inset: 8px;
  }

  main section,
  .site-footer {
    scroll-margin-top: 56px;
  }

  .site-header {
    min-height: 56px;
    display: flex;
    justify-content: space-between;
    padding: 8px;
    padding-top: max(8px, env(safe-area-inset-top));
  }

  .desktop-nav,
  .header-request,
  .header-contact,
  .header-actions {
    display: none;
  }

  .mobile-menu-label {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 16px;
    border-radius: 24px;
    background: rgba(128, 128, 128, 0.12);
    grid-column: 3;
    justify-self: end;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .grid-button {
    width: 40px;
    height: 40px;
  }

  .mobile-menu {
    position: absolute;
    top: calc(56px + max(0px, env(safe-area-inset-top) - 8px));
    right: 0;
    left: 0;
    display: grid;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    color: var(--black);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 240ms ease, opacity 240ms ease;
  }

  .mobile-menu.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: calc(100svh - 56px);
    padding: 96px 20px 56px;
  }

  .eyebrow {
    font-size: 20px;
    line-height: 28px;
  }

  .hero h1 {
    margin: 24px auto 40px;
    font-size: 40px;
    line-height: 44px;
  }

  .button-row {
    flex-wrap: wrap;
  }

  .button {
    min-height: 56px;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 24px;
  }

  .intro-panel {
    min-height: 100vh;
  }

  .intro-panel-inner {
    min-height: 100vh;
    padding: 240px 20px 76px;
    font-size: 40px;
    line-height: 44px;
  }

  .mission {
    min-height: auto;
    padding: 80px 20px;
  }

  .mission-copy,
  .partners-copy {
    width: auto;
    margin-left: 0;
    font-size: 20px;
    line-height: 28px;
  }

  .section-frame {
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }

  .company-section {
    min-height: 100vh;
    padding: 0;
  }

  .company-content {
    min-height: 100vh;
    justify-content: flex-start;
    padding-top: 90px;
    padding-bottom: 64px;
  }

  .company-content h2 {
    margin-top: 48px;
    font-size: 28px;
    line-height: 40px;
  }

  .company-content .eyebrow,
  .system-intro .eyebrow {
    font-size: 24px;
    line-height: 32px;
  }

  .partners-section {
    padding: 80px 0 152px;
  }

  .partners-copy {
    padding: 0 20px;
    gap: 40px;
  }

  .ticker {
    margin-top: 80px;
  }

  .ticker-track {
    gap: 48px;
  }

  .ticker span {
    font-size: 28px;
    line-height: 34px;
  }

  .system-intro {
    min-height: 100vh;
    padding: 0;
  }

  .system-intro .section-frame {
    min-height: 100vh;
    justify-content: space-between;
    padding-top: 90px;
    padding-bottom: 64px;
  }

  .block-title-wrap {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .small-button {
    margin-top: 0;
    align-self: flex-start;
  }

  .system-intro h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .agents-section {
    padding: 88px 0 72px;
  }

  .agents-heading {
    width: calc(100% - 40px);
    margin-bottom: 40px;
    padding: 0;
    font-size: 40px;
    line-height: 40px;
  }

  .cards-track {
    gap: 16px;
    padding: 0 20px;
  }

  .agent-card {
    width: 300px;
    min-width: 300px;
    height: 420px;
    min-height: 0;
    padding: 24px;
  }

  .agent-card h3 {
    font-size: 20px;
    line-height: 28px;
  }

  .agent-card p {
    font-size: 20px;
    line-height: 28px;
  }

  .stats-section {
    min-height: 760px;
  }

  .stats-intro {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    padding: 48px 20px 0;
    font-size: 24px;
    line-height: 32px;
  }

  .stats-intro p + p {
    margin-top: 16px;
  }

  .stats-grid {
    bottom: 40px;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
  }

  .stat {
    gap: 8px;
  }

  .stat strong {
    font-size: 72px;
    line-height: 80px;
  }

  .stat span {
    font-size: 20px;
    line-height: 28px;
  }

  .comparison-section {
    min-height: auto;
    padding: 80px 20px 64px;
    align-items: flex-start;
  }

  .comparison-eyebrow {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    font-size: 32px;
    line-height: 38px;
    text-align: left;
    margin-bottom: 48px;
  }

  .comparison-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .comparison-divider {
    height: 1px;
    width: 100%;
    margin: 40px 0;
    align-self: auto;
  }

  .comparison-column {
    padding: 0;
  }

  .comparison-reactive h2,
  .comparison-augmented h2 {
    font-size: 32px;
    line-height: 38px;
  }

  .comparison-column ul,
  .comparison-augmented ul {
    margin-top: 24px;
    gap: 12px;
    font-size: 18px;
    line-height: 1.4;
  }

  .cta-section {
    min-height: 620px;
    padding: 48px 20px;
  }

  .cta-button {
    width: 100%;
    min-height: 220px;
    padding: 32px;
    border-radius: 112px;
    font-size: 28px;
    line-height: 36px;
  }

  .site-footer {
    padding: 64px 20px 32px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-title,
  .footer-grid a {
    font-size: 16px;
  }

  .footer-statement {
    margin: 72px 0 40px;
    font-size: 24px;
    line-height: 32px;
  }

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

/* ── Access page ── */
.access-page {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.access-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 20, 22, 0.06);
  color: var(--black);
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s;
}

.access-close:hover {
  background: rgba(20, 20, 22, 0.12);
}

.access-page.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.access-content {
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.access-eyebrow {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-black);
  margin: 0;
}

.access-title {
  font-size: 52px;
  line-height: 56px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
}

.access-desc {
  font-size: 18px;
  line-height: 28px;
  color: var(--muted-black);
  margin: 0;
}

.access-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.access-input-row {
  display: flex;
  width: 100%;
  gap: 8px;
}

.access-input {
  flex: 1;
  height: 56px;
  min-height: 56px;
  padding: 16px 18px;
  border: 1.5px solid rgba(20, 20, 22, 0.16);
  border-radius: 100px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.access-input::placeholder {
  color: var(--muted-black);
}

.access-input:focus {
  border-color: var(--black);
}

.access-input.is-error {
  border-color: #e53e3e;
}

.access-error-msg {
  font-size: 13px;
  color: #e53e3e;
  margin: 0;
  align-self: flex-start;
  padding-left: 18px;
}

.access-submit {
  height: 52px;
  padding: 0 28px;
  white-space: nowrap;
  flex-shrink: 0;
  position: relative;
}

.access-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Confetti particles */
.confetti-particle {
  position: fixed;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  animation: confetti-fly 0.9s ease-out forwards;
}

@keyframes confetti-fly {
  0%   { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--tx), var(--ty)) scale(0) rotate(var(--tr)); opacity: 0; }
}

.access-note {
  font-size: 13px;
  color: var(--muted-black);
  margin: 0;
}

.access-success {
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

@media (max-width: 600px) {
  .access-page {
    padding: max(80px, env(safe-area-inset-top)) 24px max(48px, env(safe-area-inset-bottom));
    align-items: center;
    min-height: 100dvh;
  }

  .access-content {
    gap: 16px;
  }

  .access-title {
    font-size: 32px;
    line-height: 38px;
  }

  .access-desc {
    font-size: 15px;
    line-height: 24px;
  }

  .access-input-row {
    flex-direction: column;
    gap: 10px;
  }

  .access-input {
    width: 100%;
    border-radius: 100px;
    height: 56px !important;
  }

  .access-submit {
    width: 100%;
    border-radius: 100px;
  }
}
