@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700..900&family=Manrope:wght@400..800&display=swap");

:root {
  color-scheme: dark;
  --bg: #07111f;
  --bg-2: #0b1728;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-solid: #0f1b2d;
  --panel: #f8fbff;
  --panel-ink: #071225;
  --ink: #f7fbff;
  --muted: #a9b7c9;
  --soft: #718096;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --teal: #38f5d0;
  --teal-2: #0ea391;
  --violet: #8d7cff;
  --blue: #70a7ff;
  --rose: #ff6f91;
  --amber: #ffd166;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --max: 1180px;
  --display-font: Fraunces, Georgia, "Times New Roman", ui-serif, serif;
  --body-font: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(120deg, rgba(56, 245, 208, 0.1), transparent 30%),
    linear-gradient(240deg, rgba(141, 124, 255, 0.12), transparent 34%),
    var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  font-weight: 600;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body[data-theme="light"] {
  color-scheme: light;
  --bg: #fbf8ef;
  --bg-2: #e9f6e8;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --surface-solid: #fffdf6;
  --panel: #10211a;
  --panel-ink: #fbf8ef;
  --ink: #112019;
  --muted: #4b5b52;
  --soft: #66766e;
  --line: rgba(17, 32, 25, 0.14);
  --line-strong: rgba(17, 32, 25, 0.24);
  --teal: #087f6f;
  --teal-2: #0c9b88;
  --violet: #5b4ee8;
  --blue: #2563eb;
  --rose: #b83255;
  --amber: #d8ff63;
  --shadow: 0 26px 64px rgba(21, 35, 27, 0.12);
  background:
    linear-gradient(120deg, rgba(216, 255, 99, 0.38), transparent 34%),
    linear-gradient(250deg, rgba(190, 244, 225, 0.7), transparent 46%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

body[data-theme="light"]::before {
  background-image:
    linear-gradient(rgba(17, 32, 25, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 32, 25, 0.06) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background: linear-gradient(to bottom, rgba(7, 17, 31, 0.12), #07111f 82%);
}

body[data-theme="light"]::after {
  background:
    radial-gradient(circle at 22% 18%, rgba(216, 255, 99, 0.36), transparent 26%),
    linear-gradient(to bottom, rgba(251, 248, 239, 0.16), #fbf8ef 88%);
}

.cursor-dot,
.cursor-ring {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.custom-cursor,
  body.custom-cursor a,
  body.custom-cursor button,
  body.custom-cursor input,
  body.custom-cursor summary,
  body.custom-cursor [data-command] {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: block;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(-100px, -100px, 0);
    will-change: transform;
  }

  .cursor-dot {
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -4px;
    border-radius: 999px;
    background: var(--teal);
    box-shadow: 0 0 24px rgba(56, 245, 208, 0.78);
    transition: opacity 160ms ease, transform 80ms linear;
  }

  .cursor-ring {
    width: 38px;
    height: 38px;
    margin-top: -19px;
    margin-left: -19px;
    border: 1px solid rgba(56, 245, 208, 0.42);
    border-radius: 999px;
    background: rgba(56, 245, 208, 0.04);
    box-shadow: 0 0 44px rgba(112, 167, 255, 0.12);
    transition:
      width 180ms ease,
      height 180ms ease,
      margin 180ms ease,
      opacity 160ms ease,
      border-color 180ms ease,
      background 180ms ease;
  }

  body.cursor-ready .cursor-dot,
  body.cursor-ready .cursor-ring {
    opacity: 1;
  }

  body.cursor-hover .cursor-ring {
    width: 58px;
    height: 58px;
    margin-top: -29px;
    margin-left: -29px;
    border-color: rgba(112, 167, 255, 0.72);
    background: rgba(112, 167, 255, 0.1);
  }

  body.cursor-press .cursor-ring {
    width: 30px;
    height: 30px;
    margin-top: -15px;
    margin-left: -15px;
    background: rgba(56, 245, 208, 0.14);
  }
}

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  background: rgba(7, 17, 31, 0.7);
  backdrop-filter: blur(18px);
}

body[data-theme="light"] .site-header {
  background: rgba(251, 248, 239, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 850;
  letter-spacing: 0;
}

.brand span span {
  color: var(--teal);
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(56, 245, 208, 0.35);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(56, 245, 208, 0.95), rgba(112, 167, 255, 0.82));
  color: #06111f;
  box-shadow: 0 18px 36px rgba(56, 245, 208, 0.18);
}

body[data-theme="light"] .brand-mark {
  border-color: rgba(17, 32, 25, 0.18);
  background: #112019;
  color: #d8ff63;
  box-shadow: 0 18px 36px rgba(17, 32, 25, 0.14);
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--teal);
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(56, 245, 208, 0.35);
  border-radius: var(--radius);
  padding: 10px 16px;
  background: rgba(56, 245, 208, 0.1);
  color: var(--teal);
  font-size: 14px;
  font-weight: 850;
}

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

.theme-toggle {
  position: relative;
  display: inline-grid;
  width: 66px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(56, 245, 208, 0.52);
  box-shadow: 0 18px 38px rgba(56, 245, 208, 0.16);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(56, 245, 208, 0.26);
  outline-offset: 3px;
}

.theme-toggle__track {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: inherit;
  background:
    radial-gradient(circle at 76% 28%, rgba(141, 124, 255, 0.3), transparent 22%),
    linear-gradient(135deg, #07111f, #0f1b2d);
  padding: 4px;
  transition: background 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle__track::before {
  position: absolute;
  inset: 7px 12px auto auto;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow:
    -13px 11px 0 rgba(255, 255, 255, 0.22),
    8px 14px 0 rgba(255, 255, 255, 0.16);
  content: "";
  opacity: 1;
  transition: opacity 240ms ease;
}

.theme-toggle__thumb {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.92), transparent 0 18%, transparent 19%),
    linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 8px 18px rgba(56, 245, 208, 0.32);
  transform: translateX(30px);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle__icon {
  position: relative;
  z-index: 2;
  width: 16px;
  height: 16px;
  justify-self: center;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: color 220ms ease, opacity 220ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.theme-toggle__icon--sun {
  color: #06111f;
  opacity: 0.52;
}

.theme-toggle__icon--moon {
  color: #c8fff4;
  opacity: 1;
}

body[data-theme="light"] .header-cta {
  border-color: rgba(17, 32, 25, 0.22);
  background: #112019;
  color: #fbf8ef;
}

body[data-theme="light"] .theme-toggle {
  border-color: rgba(17, 32, 25, 0.16);
  box-shadow: 0 14px 30px rgba(17, 32, 25, 0.12);
}

body[data-theme="light"] .theme-toggle:hover {
  border-color: rgba(8, 127, 111, 0.38);
  box-shadow: 0 18px 36px rgba(8, 127, 111, 0.14);
}

body[data-theme="light"] .theme-toggle__track {
  background:
    radial-gradient(circle at 28% 30%, rgba(216, 255, 99, 0.9), transparent 22%),
    linear-gradient(135deg, #e8f7d7, #ddf5ee);
}

body[data-theme="light"] .theme-toggle__track::before {
  opacity: 0;
}

body[data-theme="light"] .theme-toggle__thumb {
  transform: translateX(0);
  background:
    radial-gradient(circle at 33% 30%, rgba(255, 255, 255, 0.96), transparent 0 20%, transparent 21%),
    linear-gradient(135deg, #d8ff63, #0c9b88);
  box-shadow: 0 8px 18px rgba(8, 127, 111, 0.24);
}

body[data-theme="light"] .theme-toggle__icon--sun {
  color: #112019;
  opacity: 1;
  transform: rotate(90deg);
}

body[data-theme="light"] .theme-toggle__icon--moon {
  color: #112019;
  opacity: 0.42;
  transform: rotate(-18deg);
}

.menu-button {
  display: none;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--ink);
}

body[data-theme="light"] .menu-button span {
  background: #112019;
}

.mobile-nav {
  display: none;
}

.section-grid,
.section,
.join-section,
.site-footer,
.logo-strip,
.command-marquee,
.launch-value-rail {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 24px;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 74px);
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.88fr);
  gap: 48px;
  align-items: center;
  padding-top: 50px;
  padding-bottom: 64px;
}

.hero::before {
  position: absolute;
  inset: 74px 0 auto 0;
  height: min(70svh, 720px);
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at calc(52% + (var(--mx, 0) * 1px)) calc(20% + (var(--my, 0) * 1px)), rgba(56, 245, 208, 0.18), transparent 24%),
    radial-gradient(circle at calc(80% - (var(--mx, 0) * 0.7px)) calc(40% - (var(--my, 0) * 0.7px)), rgba(112, 167, 255, 0.16), transparent 26%);
  opacity: 0.86;
}

.hero-copy {
  position: relative;
  z-index: 2;
  animation: heroCopyIn 780ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.eyebrow,
.kicker,
.card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px rgba(56, 245, 208, 0.12);
  animation: pulseDot 2200ms ease-in-out infinite;
}

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

h1,
h2,
h3 {
  letter-spacing: 0;
  font-family: var(--display-font);
}

h1 {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(52px, 7vw, 98px);
  line-height: 0.94;
  font-weight: 920;
}

body[data-theme="light"] h1 {
  max-width: 760px;
  font-size: clamp(58px, 8vw, 112px);
  line-height: 0.87;
  font-weight: 900;
}

.hero-lede {
  max-width: 720px;
  margin-top: 24px;
  color: #c6d4e7;
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.62;
}

body[data-theme="light"] .hero-lede {
  color: #2f4037;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.48;
}

.hero-actions,
.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.065);
}

body[data-theme="light"] .hero-proof span,
body[data-theme="light"] .eyebrow {
  background: rgba(255, 255, 255, 0.64);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 19px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #06111f;
  box-shadow: 0 20px 42px rgba(56, 245, 208, 0.2);
  background-size: 180% 180%;
  animation: ctaSheen 5s ease-in-out infinite;
}

body[data-theme="light"] .button.primary {
  background: #112019;
  color: #fbf8ef;
  box-shadow: 0 18px 34px rgba(17, 32, 25, 0.16);
  animation: none;
}

.button.secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.075);
  color: var(--ink);
}

body[data-theme="light"] .button.secondary {
  background: #e8f7d7;
  color: #112019;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  transform: translate3d(calc(var(--mx, 0) * -0.012px), calc(var(--my, 0) * -0.012px), 0);
  transition: transform 180ms ease-out;
}

.ai-status-card,
.phone-shell,
.dashboard-card,
.bento-card,
.step-card,
.use-case-grid article,
.comparison-card,
.faq-list details,
.link-grid a,
.beta-form {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

body[data-theme="light"] .ai-status-card,
body[data-theme="light"] .phone-shell,
body[data-theme="light"] .dashboard-card,
body[data-theme="light"] .bento-card,
body[data-theme="light"] .step-card,
body[data-theme="light"] .use-case-grid article,
body[data-theme="light"] .comparison-card,
body[data-theme="light"] .faq-list details,
body[data-theme="light"] .link-grid a,
body[data-theme="light"] .beta-form {
  background: rgba(255, 253, 246, 0.82);
}

.ai-status-card {
  position: absolute;
  top: 8px;
  right: 20px;
  z-index: 3;
  display: flex;
  width: min(88%, 360px);
  align-items: center;
  gap: 12px;
  border-radius: var(--radius);
  padding: 14px;
  animation: floatIn 820ms 220ms cubic-bezier(0.16, 1, 0.3, 1) both, softFloat 7s 1.2s ease-in-out infinite;
}

.spark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(56, 245, 208, 0.14);
  color: var(--teal);
  font-weight: 950;
  animation: sparkPulse 2200ms ease-in-out infinite;
}

.ai-status-card strong,
.ai-status-card small {
  display: block;
}

.ai-status-card small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.phone-shell {
  position: absolute;
  top: 96px;
  left: 0;
  width: 342px;
  border-radius: 30px;
  padding: 18px;
  transform: translate3d(calc(var(--mx, 0) * 0.015px), calc(var(--my, 0) * 0.01px), 0);
  animation: floatIn 900ms 80ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.phone-top,
.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.phone-top {
  justify-content: flex-start;
}

.avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(56, 245, 208, 0.13);
  color: var(--teal);
  font-weight: 900;
}

.phone-top strong,
.dashboard-head strong {
  display: block;
  font-size: 14px;
}

.phone-top small,
.dashboard-head small,
.metric-row small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
}

.chat-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
}

.bubble,
.receipt-card {
  max-width: 258px;
  border-radius: var(--radius);
  padding: 11px 12px;
  font-size: 13px;
  font-weight: 750;
  transform-origin: bottom right;
  animation: messageIn 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(500ms + (var(--message-index, 4) * 150ms));
}

.bubble.user {
  align-self: flex-end;
  background: rgba(56, 245, 208, 0.16);
  color: #dffdf8;
}

body[data-theme="light"] .bubble.user {
  background: #d8ff63;
  color: #112019;
}

.bubble.bot,
.receipt-card {
  align-self: flex-start;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.075);
  color: var(--muted);
}

body[data-theme="light"] .bubble.bot,
body[data-theme="light"] .receipt-card {
  background: #fffdf6;
  color: #3f5047;
}

.receipt-card {
  display: grid;
  gap: 7px;
  width: 214px;
  transform-origin: bottom left;
  --message-index: 4;
}

.receipt-card strong {
  color: var(--ink);
  font-size: 22px;
}

.receipt-card small {
  color: var(--muted);
}

.receipt-lines {
  display: grid;
  gap: 5px;
}

.receipt-lines span {
  display: block;
  height: 5px;
  border-radius: 5px;
  background: rgba(56, 245, 208, 0.18);
}

body[data-theme="light"] .receipt-lines span {
  background: rgba(8, 127, 111, 0.18);
}

.receipt-lines span:nth-child(2) {
  width: 72%;
}

.receipt-lines span:nth-child(3) {
  width: 46%;
}

.dashboard-card {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 2;
  width: 470px;
  border-radius: var(--radius);
  padding: 18px;
  transform: translate3d(calc(var(--mx, 0) * -0.018px), calc(var(--my, 0) * -0.012px), 0);
  animation: floatIn 900ms 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.dashboard-head span {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(56, 245, 208, 0.13);
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
}

body[data-theme="light"] .dashboard-head span {
  background: #e8f7d7;
  color: #087f6f;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.metric-row div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
}

body[data-theme="light"] .metric-row div,
body[data-theme="light"] .bar-chart,
body[data-theme="light"] .demo-shell {
  background: rgba(255, 253, 246, 0.72);
}

.metric-row strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.bar-chart {
  display: flex;
  height: 180px;
  align-items: end;
  gap: 12px;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.bar-chart span {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--teal), rgba(112, 167, 255, 0.78));
  height: var(--bar-height);
  transform-origin: bottom;
  animation: growBar 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.bar-chart span:nth-child(2) {
  animation-delay: 80ms;
}

.bar-chart span:nth-child(3) {
  animation-delay: 160ms;
}

.bar-chart span:nth-child(4) {
  animation-delay: 240ms;
}

.bar-chart span:nth-child(5) {
  animation-delay: 320ms;
}

.bar-chart span:nth-child(6) {
  animation-delay: 400ms;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  padding: 0;
}

.command-marquee {
  overflow: hidden;
  padding-top: 8px;
  padding-bottom: 18px;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: commandDrift 26s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(56, 245, 208, 0.18);
  border-radius: 999px;
  background: rgba(56, 245, 208, 0.08);
  color: #c8fff4;
  padding: 0 13px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

body[data-theme="light"] .marquee-track span {
  border-color: rgba(17, 32, 25, 0.14);
  background: #112019;
  color: #d8ff63;
}

.logo-strip div {
  padding: 26px 24px;
  background: rgba(255, 255, 255, 0.065);
}

body[data-theme="light"] .logo-strip div {
  background: #fffdf6;
}

.logo-strip small {
  display: block;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.logo-strip strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.launch-value-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  padding: 0;
}

.launch-value-rail article {
  min-height: 250px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

body[data-theme="light"] .launch-value-rail article {
  background: #ecf8e8;
}

.launch-value-rail article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(56, 245, 208, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

body[data-theme="light"] .launch-value-rail article:nth-child(2) {
  background: #ddf5ee;
}

.launch-value-rail article:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(255, 209, 102, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
}

body[data-theme="light"] .launch-value-rail article:nth-child(3) {
  background: #ffe7dc;
}

.launch-value-rail span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.launch-value-rail h2 {
  max-width: 330px;
  margin-top: 42px;
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.02;
  font-weight: 920;
}

body[data-theme="light"] .launch-value-rail h2 {
  max-width: 360px;
  font-size: clamp(31px, 3.5vw, 45px);
  line-height: 0.94;
}

.launch-value-rail p {
  max-width: 360px;
  margin-top: 14px;
  color: var(--muted);
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading h2,
.join-section h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 920;
}

body[data-theme="light"] .section-heading h2,
body[data-theme="light"] .join-section h2 {
  max-width: 760px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.94;
  font-weight: 900;
}

.section-heading p,
.join-section p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.purple {
  color: var(--violet);
}

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

.red {
  color: var(--rose);
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
}

.bento-card {
  min-height: 240px;
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.bento-card:hover,
.step-card:hover,
.use-case-grid article:hover,
.comparison-card:hover,
.link-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 245, 208, 0.32);
}

.bento-card.large {
  grid-row: span 2;
}

.bento-card.wide {
  grid-column: span 2;
  min-height: 180px;
}

.bento-card.accent {
  border-color: rgba(141, 124, 255, 0.35);
}

.bento-card h3 {
  margin-top: 18px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

body[data-theme="light"] .bento-card h3 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 0.96;
}

.bento-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.mini-terminal {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #06101d;
  padding: 18px;
}

body[data-theme="light"] .mini-terminal,
body[data-theme="light"] pre {
  background: #112019;
  color: #eaffb7;
}

.mini-terminal span {
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-terminal strong {
  color: #dffdf8;
}

.steps,
.use-case-grid,
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step-card,
.use-case-grid article,
.comparison-card {
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease;
}

.step-card span,
.icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(56, 245, 208, 0.12);
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.step-card h3,
.use-case-grid h3,
.comparison-card h3 {
  margin-top: 28px;
  font-size: 22px;
}

body[data-theme="light"] .step-card h3,
body[data-theme="light"] .use-case-grid h3,
body[data-theme="light"] .comparison-card h3,
body[data-theme="light"] .demo-output h3,
body[data-theme="light"] .faq-list summary {
  font-family: var(--display-font);
  line-height: 1;
}

.step-card p,
.use-case-grid p,
.comparison-card li {
  margin-top: 12px;
  color: var(--muted);
}

code {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 5px;
  background: rgba(56, 245, 208, 0.09);
  color: var(--teal);
  font-weight: 800;
}

.split-section,
.comparison-section,
.faq-section,
.demo-section {
  border-top: 1px solid var(--line);
}

.use-case-grid {
  grid-template-columns: repeat(4, 1fr);
}

.demo-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: var(--shadow);
}

.command-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.command-tabs button {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.command-tabs button:last-child {
  border-right: 0;
}

.command-tabs button.active {
  background: rgba(56, 245, 208, 0.12);
  color: var(--teal);
}

.demo-output {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 28px;
  align-items: center;
  padding: 30px;
}

.demo-output.is-changing {
  animation: demoSwap 260ms ease both;
}

.demo-output small {
  color: var(--soft);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-output h3 {
  margin-top: 8px;
  font-size: 30px;
}

.demo-output p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

pre {
  overflow: auto;
  margin: 0;
  border: 1px solid rgba(56, 245, 208, 0.22);
  border-radius: var(--radius);
  background: #040b14;
  color: #dffdf8;
  padding: 22px;
  font-size: 17px;
  font-weight: 800;
}

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

.comparison-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-left: 24px;
}

.comparison-card li::before {
  position: absolute;
  left: 0;
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--soft);
}

.comparison-card.highlight {
  border-color: rgba(56, 245, 208, 0.34);
  background: linear-gradient(180deg, rgba(56, 245, 208, 0.13), rgba(255, 255, 255, 0.065) 58%);
}

body[data-theme="light"] .comparison-card.highlight {
  background: #112019;
  color: #fbf8ef;
}

body[data-theme="light"] .comparison-card.highlight li,
body[data-theme="light"] .comparison-card.highlight p {
  color: #dce8df;
}

.comparison-card.highlight li::before {
  background: var(--teal);
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.link-grid a {
  border-radius: var(--radius);
  padding: 16px;
  color: var(--teal);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border-radius: var(--radius);
  padding: 0 22px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  max-width: 820px;
  padding-bottom: 22px;
  color: var(--muted);
}

.join-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 44px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 78px;
  padding-bottom: 78px;
}

body[data-theme="light"] .join-section {
  background: linear-gradient(135deg, rgba(216, 255, 99, 0.55), rgba(190, 244, 225, 0.65));
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  padding-left: max(24px, calc((100vw - var(--max)) / 2 + 24px));
}

.beta-form {
  border-radius: var(--radius);
  padding: 24px;
}

.beta-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.input-row {
  display: flex;
  gap: 10px;
}

.input-row input {
  min-width: 0;
  flex: 1;
  min-height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 0 14px;
  color: var(--ink);
  outline: none;
}

body[data-theme="light"] .input-row input {
  background: #fffdf6;
  color: #112019;
}

.input-row input::placeholder {
  color: var(--soft);
}

.input-row input:focus {
  border-color: rgba(56, 245, 208, 0.7);
  box-shadow: 0 0 0 3px rgba(56, 245, 208, 0.12);
}

.form-note {
  margin-top: 12px;
  color: var(--soft);
  font-size: 13px;
}

.form-note.success {
  color: var(--teal);
  font-weight: 800;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 680ms cubic-bezier(0.16, 1, 0.3, 1), transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes softFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes pulseDot {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(56, 245, 208, 0.12);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(56, 245, 208, 0);
  }
}

@keyframes sparkPulse {
  0%, 100% {
    box-shadow: inset 0 0 0 1px rgba(56, 245, 208, 0.08), 0 0 0 rgba(56, 245, 208, 0);
  }
  50% {
    box-shadow: inset 0 0 0 1px rgba(56, 245, 208, 0.22), 0 0 34px rgba(56, 245, 208, 0.22);
  }
}

@keyframes ctaSheen {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes growBar {
  from {
    transform: scaleY(0.08);
  }
  to {
    transform: scaleY(1);
  }
}

@keyframes demoSwap {
  0% {
    opacity: 0.65;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes commandDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 5px));
  }
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  padding-bottom: 40px;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer p {
  color: var(--muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    z-index: 30;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0b1728;
    padding: 8px;
    box-shadow: var(--shadow);
  }

  body[data-theme="light"] .mobile-nav {
    background: #fffdf6;
  }

  .mobile-nav.open {
    display: grid;
  }

  .mobile-nav a {
    padding: 13px 12px;
    border-radius: var(--radius);
    color: var(--muted);
    font-weight: 800;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .phone-shell {
    left: 0;
  }

  .dashboard-card {
    right: 0;
  }

  .bento-grid,
  .launch-value-rail,
  .steps,
  .use-case-grid,
  .link-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card.large,
  .bento-card.wide {
    grid-column: span 2;
    grid-row: auto;
  }

  .join-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-inline: 20px;
  }

  .section-grid,
  .section,
  .join-section,
  .site-footer,
  .command-marquee {
    padding-inline: 20px;
  }

  .hero {
    padding-top: 40px;
    padding-bottom: 50px;
  }

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

  body[data-theme="light"] h1 {
    font-size: clamp(56px, 18vw, 76px);
  }

  .hero-actions,
  .hero-actions .button,
  .input-row,
  .input-row .button {
    width: 100%;
  }

  .input-row {
    flex-direction: column;
  }

  .input-row input {
    width: 100%;
  }

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

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

  .ai-status-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-bottom: 14px;
  }

  .phone-shell {
    top: 86px;
    width: 100%;
    max-width: 330px;
  }

  .dashboard-card {
    bottom: 0;
    width: min(100%, 360px);
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .metric-row div:nth-child(3) {
    display: none;
  }

  .bar-chart {
    height: 120px;
  }

  .logo-strip,
  .bento-grid,
  .launch-value-rail,
  .bento-card.large,
  .bento-card.wide,
  .steps,
  .use-case-grid,
  .comparison-grid,
  .link-grid,
  .demo-output {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .command-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .command-tabs button:nth-child(2) {
    border-right: 0;
  }

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

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

  .launch-value-rail article {
    min-height: auto;
  }
}

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

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

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .marquee-track {
    animation: none;
  }
}
