@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/IBMPlexMono-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/IBMPlexMono-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/IBMPlexMono-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

:root {
  --canvas: #0b0d10;
  --canvas-soft: #101318;
  --surface: #15181d;
  --surface-raised: #1b1f25;
  --surface-warm: #1d1b17;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7f8;
  --muted: #a6adb7;
  --quiet: #717985;
  --mint: #bfe3d0;
  --green: #32d06c;
  --green-dark: #123922;
  --blue: #4b90ff;
  --amber: #f0bd4f;
  --cyan: #65cad2;
  --negative: #ff6262;
  --sans: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shell: 1180px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 8%, rgba(50, 208, 108, 0.08), transparent 25%),
    radial-gradient(circle at 20% 30%, rgba(75, 144, 255, 0.06), transparent 28%);
  content: "";
  pointer-events: none;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--mint);
  color: #07100b;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--text);
  color: var(--canvas);
  font-weight: 600;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 240ms ease, border-color 240ms ease, backdrop-filter 240ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(11, 13, 16, 0.84);
  backdrop-filter: blur(20px) saturate(130%);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(191, 227, 208, 0.14);
  border-radius: 10px;
  background: #0b1513;
}

.brand-mark img {
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.desktop-nav a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--text);
  border-radius: 12px;
  background: var(--text);
  color: #0b0d10;
  cursor: pointer;
  font-weight: 600;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.button:active {
  transform: scale(0.98);
}

.button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.button-small {
  min-height: 42px;
  padding: 9px 14px;
  border-color: rgba(191, 227, 208, 0.35);
  background: rgba(191, 227, 208, 0.1);
  color: var(--mint);
  font-size: 0.86rem;
}

.button-hero {
  min-height: 56px;
  padding-inline: 22px;
  border: 0;
  background: linear-gradient(120deg, #bfe3d0 0%, #8cc9b1 100%);
  box-shadow: 0 12px 38px rgba(75, 155, 113, 0.16);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
}

.text-link span {
  color: var(--mint);
  transition: transform 160ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.hero {
  display: grid;
  min-height: 900px;
  padding-top: 142px;
  padding-bottom: 90px;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  gap: 9px;
  color: var(--mint);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(50, 208, 108, 0.1);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(3.6rem, 6.8vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.064em;
  line-height: 0.94;
}

.hero h1 span,
.section-heading h2 span,
.comparison-intro h2 span {
  color: #747c87;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-proof {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
}

.hero-visual::after {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 208, 108, 0.16), rgba(75, 144, 255, 0.07) 42%, transparent 72%);
  content: "";
  filter: blur(12px);
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(191, 227, 208, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 560px;
  height: 560px;
}

.orbit-two {
  width: 670px;
  height: 670px;
  border-color: rgba(75, 144, 255, 0.08);
}

.phone-frame {
  position: relative;
  width: min(390px, 88vw);
  height: 800px;
  overflow: hidden;
  border: 8px solid #050607;
  border-radius: 54px;
  background: #101216;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 34px 80px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(50, 208, 108, 0.08);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 45px;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 3;
  width: 108px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #020303;
}

.float-note {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 190px;
  padding: 14px 16px;
  gap: 1px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(20, 24, 29, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(16px);
}

.float-note strong {
  font-family: var(--mono);
  font-size: 1.42rem;
}

.float-note > span:last-child {
  color: var(--muted);
  font-size: 0.72rem;
}

.float-note-label {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.float-note-top {
  top: 118px;
  right: -52px;
}

.float-note-top strong {
  color: var(--green);
}

.float-note-bottom {
  bottom: 110px;
  left: -68px;
}

.signal-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0d1013;
}

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

.signal-grid p {
  margin: 0;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-align: center;
  text-transform: uppercase;
}

.signal-grid p:first-child {
  border-left: 1px solid var(--line);
}

.section {
  padding-block: 128px;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 64px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.comparison-intro h2,
.trust-copy h2,
.waitlist-copy h2,
.legal-hero h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  font-weight: 700;
  letter-spacing: -0.052em;
  line-height: 1;
}

.section-heading > p:last-child,
.comparison-intro > p:last-child,
.trust-copy > p,
.waitlist-copy > p {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.rhythm-track {
  position: relative;
  display: grid;
  margin-bottom: 28px;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.rhythm-track::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 25%;
  height: 2px;
  background: var(--green);
  content: "";
  transform: translateX(calc(var(--rhythm-index, 0) * 100%));
  transition: transform 400ms var(--ease);
}

.rhythm-step {
  display: grid;
  min-height: 190px;
  padding: 24px;
  align-content: space-between;
  border-right: 1px solid var(--line);
  color: var(--quiet);
  cursor: default;
  transition: background 260ms ease, color 260ms ease;
}

.rhythm-step:first-child {
  border-left: 1px solid var(--line);
}

.rhythm-step.is-active {
  background: linear-gradient(180deg, rgba(50, 208, 108, 0.07), transparent);
  color: var(--text);
}

.step-number,
.micro-label,
.illustrative-note,
.trust-index {
  font-family: var(--mono);
}

.step-number {
  color: var(--green);
  font-size: 0.72rem;
}

.rhythm-step h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
  font-weight: 600;
}

.rhythm-step p {
  margin-bottom: 0;
  color: var(--quiet);
  font-size: 0.88rem;
}

.rhythm-demo {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 20%, rgba(50, 208, 108, 0.1), transparent 34%),
    var(--surface);
  grid-template-columns: 1.1fr 0.9fr;
}

.demo-copy,
.demo-ledger {
  padding: 54px;
}

.demo-ledger {
  display: grid;
  align-content: center;
  border-left: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.12);
}

.micro-label {
  margin-bottom: 14px;
  color: var(--quiet);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.micro-label.mint {
  color: var(--green);
}

.micro-label.blue {
  color: var(--blue);
}

.micro-label.amber {
  color: var(--amber);
}

.micro-label.cyan {
  color: var(--cyan);
}

.demo-day {
  margin-bottom: 0;
  color: var(--muted);
}

.demo-amount {
  display: flex;
  margin-bottom: 18px;
  align-items: baseline;
  gap: 12px;
  font-family: var(--mono);
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.demo-amount small {
  color: var(--quiet);
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
}

.demo-note {
  min-height: 80px;
  color: var(--muted);
  line-height: 1.65;
}

.demo-controls {
  display: flex;
  margin: 28px 0 20px;
  gap: 8px;
}

.day-button {
  min-width: 54px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--quiet);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.day-button.is-active {
  border-color: rgba(50, 208, 108, 0.42);
  background: rgba(50, 208, 108, 0.1);
  color: var(--green);
}

.illustrative-note {
  margin: 0;
  color: var(--quiet);
  font-size: 0.65rem;
}

.demo-ledger > div {
  display: flex;
  padding: 18px 0;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.demo-ledger strong {
  color: var(--text);
  font-family: var(--mono);
  font-weight: 600;
}

.demo-ledger .demo-total {
  margin-top: 18px;
  padding: 20px;
  align-items: center;
  border: 1px solid rgba(50, 208, 108, 0.2);
  border-radius: 14px;
  background: rgba(50, 208, 108, 0.08);
  color: var(--text);
}

.demo-total strong {
  color: var(--green);
  font-size: 1.6rem;
}

.section-dark {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #080a0c;
}

.product-showcase {
  display: grid;
  overflow: hidden;
  min-height: 850px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--canvas-soft);
  grid-template-columns: 240px 1fr;
}

.showcase-tabs {
  display: flex;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.showcase-tab {
  display: flex;
  min-height: 56px;
  padding: 12px 14px;
  align-items: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--quiet);
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.showcase-tab span {
  font-family: var(--mono);
  font-size: 0.65rem;
}

.showcase-tab.is-active {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.showcase-stage {
  min-width: 0;
}

.showcase-panel {
  display: grid;
  min-height: 850px;
  padding: 58px 58px 0;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 56px;
  background:
    radial-gradient(circle at 78% 24%, rgba(75, 144, 255, 0.08), transparent 26%),
    radial-gradient(circle at 40% 85%, rgba(240, 189, 79, 0.06), transparent 28%);
}

.showcase-panel h3 {
  max-width: 480px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.showcase-panel .showcase-copy > p:not(.micro-label) {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.plain-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.plain-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: #c6cbd1;
  font-size: 0.92rem;
}

.plain-list li::before {
  margin-right: 10px;
  color: var(--green);
  content: "↳";
  font-family: var(--mono);
}

.showcase-panel > img {
  width: min(390px, 100%);
  max-height: 760px;
  align-self: end;
  justify-self: center;
  object-fit: cover;
  object-position: top;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

.comparison {
  display: grid;
  align-items: start;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
}

.comparison-intro {
  position: sticky;
  top: 130px;
}

.comparison-intro h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.6rem);
}

.comparison-grid {
  display: grid;
  gap: 18px;
}

.comparison-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.comparison-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.comparison-card li {
  display: grid;
  min-height: 64px;
  padding-block: 17px;
  align-items: center;
  grid-template-columns: 28px 1fr;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.comparison-card li:last-child {
  border-bottom: 0;
}

.comparison-card li span {
  font-family: var(--mono);
}

.old-way {
  opacity: 0.72;
}

.old-way li span {
  color: var(--negative);
}

.forktail-way {
  border-color: rgba(50, 208, 108, 0.22);
  background:
    linear-gradient(135deg, rgba(50, 208, 108, 0.07), transparent 46%),
    var(--surface);
}

.forktail-way li {
  color: var(--text);
}

.forktail-way li span {
  color: var(--green);
}

.trust-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 50%, rgba(101, 202, 210, 0.08), transparent 30%),
    #0e1115;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 90px;
}

.trust-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}

.trust-copy h2 {
  font-size: clamp(2.5rem, 4.7vw, 4.6rem);
}

.trust-copy .text-link {
  margin-top: 24px;
}

.trust-points {
  border-top: 1px solid var(--line);
}

.trust-points article {
  display: grid;
  padding: 34px 0;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.trust-index {
  color: var(--green);
  font-size: 0.7rem;
}

.trust-points h3 {
  margin-bottom: 10px;
  font-size: 1.26rem;
}

.trust-points p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  padding: 25px 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--text);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 600;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  color: var(--green);
  content: "+";
  font-family: var(--mono);
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 720px;
  margin: -4px 0 26px;
  color: var(--muted);
  line-height: 1.72;
}

.waitlist-section {
  padding: 80px 0 128px;
}

.waitlist-card {
  position: relative;
  display: grid;
  min-height: 600px;
  overflow: hidden;
  padding: 70px;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  border: 1px solid rgba(191, 227, 208, 0.2);
  border-radius: 38px;
  background:
    linear-gradient(130deg, rgba(50, 208, 108, 0.08), transparent 42%),
    #101418;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.waitlist-glow {
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 208, 108, 0.19), rgba(75, 144, 255, 0.07) 42%, transparent 70%);
  pointer-events: none;
}

.waitlist-copy,
.waitlist-flow {
  position: relative;
  z-index: 2;
}

.waitlist-copy h2 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

.waitlist-points {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 8px;
}

.waitlist-points span {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.waitlist-flow {
  min-height: 430px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 10, 12, 0.72);
  backdrop-filter: blur(18px);
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

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

.input-row input {
  width: 100%;
  min-height: 60px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.input-row input::placeholder {
  color: #626a75;
}

.input-row input:focus {
  border-color: rgba(75, 144, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(75, 144, 255, 0.1);
}

.button-submit {
  width: 100%;
  min-height: 58px;
  background: var(--mint);
}

.consent,
.step-copy,
.success-email {
  color: var(--quiet);
  font-size: 0.76rem;
  line-height: 1.6;
}

.consent {
  margin: 16px 0 0;
}

.consent a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-error {
  min-height: 22px;
  margin: 10px 0 0;
  color: #ff8a8a;
  font-size: 0.78rem;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.waitlist-step h3 {
  margin-bottom: 8px;
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.interest-grid {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.interest-grid label {
  display: block;
  cursor: pointer;
}

.interest-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.interest-grid span {
  display: flex;
  min-height: 64px;
  padding: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.8rem;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.interest-grid input:checked + span {
  border-color: rgba(50, 208, 108, 0.4);
  background: rgba(50, 208, 108, 0.1);
  color: var(--text);
}

.interest-grid input:focus-visible + span {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.interest-actions {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 18px;
}

.quiet-button {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.quiet-button:hover {
  color: var(--text);
}

.waitlist-success {
  display: grid;
  min-height: 350px;
  place-content: center;
  text-align: center;
}

.waitlist-success img {
  width: 92px;
  height: 92px;
  margin: 0 auto 22px;
  object-fit: cover;
  filter: drop-shadow(0 0 22px rgba(50, 208, 108, 0.2));
}

.waitlist-success > p:not(.micro-label) {
  max-width: 430px;
  margin-inline: auto;
  color: var(--muted);
}

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

.footer-grid {
  display: grid;
  padding-block: 68px;
  grid-template-columns: 1fr 180px 180px;
  gap: 50px;
}

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

.footer-grid > div > p {
  max-width: 380px;
  color: var(--quiet);
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-grid nav p {
  margin-bottom: 4px;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid nav a {
  color: var(--quiet);
  font-size: 0.88rem;
}

.footer-grid nav a:hover {
  color: var(--text);
}

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

.footer-bottom p {
  margin: 0;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.65rem;
}

/* Legal and support pages */
.legal-page {
  background: #0b0d10;
}

.legal-main {
  padding: 148px 0 120px;
}

.legal-hero {
  max-width: 900px;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--line);
}

.legal-hero .eyebrow {
  margin-bottom: 14px;
}

.legal-hero > p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.legal-layout {
  display: grid;
  padding-top: 54px;
  grid-template-columns: 220px minmax(0, 760px);
  gap: 76px;
}

.legal-nav {
  position: sticky;
  top: 112px;
  display: grid;
  align-self: start;
  gap: 7px;
}

.legal-nav p {
  margin-bottom: 8px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-nav a {
  padding: 6px 0;
  color: var(--quiet);
  font-size: 0.82rem;
}

.legal-nav a:hover {
  color: var(--text);
}

.legal-content section {
  padding: 0 0 42px;
  scroll-margin-top: 110px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 1.62rem;
  letter-spacing: -0.025em;
}

.legal-content h3 {
  margin: 28px 0 9px;
  font-size: 1.05rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-content a,
.support-card a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.data-table {
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  border-collapse: separate;
  border-spacing: 0;
}

.data-table th,
.data-table td {
  padding: 15px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  text-align: left;
  vertical-align: top;
}

.data-table th {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.data-table tr > *:last-child {
  border-right: 0;
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.legal-callout,
.support-card {
  padding: 22px;
  border: 1px solid rgba(50, 208, 108, 0.2);
  border-radius: 16px;
  background: rgba(50, 208, 108, 0.06);
}

.legal-callout p:last-child,
.support-card p:last-child {
  margin-bottom: 0;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-card h2 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.support-card p {
  color: var(--muted);
}

.oauth-page {
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(50, 208, 108, 0.09), transparent 28%),
    var(--canvas);
}

.oauth-card {
  width: min(100%, 560px);
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  text-align: center;
}

.oauth-card .brand {
  margin-bottom: 34px;
}

.oauth-card h1 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.oauth-card p {
  color: var(--muted);
}

.connection-loader {
  position: relative;
  width: 54px;
  height: 54px;
  margin: 0 auto 28px;
  border: 2px solid var(--line);
  border-radius: 50%;
}

.connection-loader::after {
  position: absolute;
  inset: -2px;
  border: 2px solid transparent;
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 900ms linear infinite;
  content: "";
}

.oauth-links {
  display: flex;
  margin-top: 30px;
  justify-content: center;
  gap: 18px;
}

.oauth-links a {
  color: var(--quiet);
  font-size: 0.8rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
}

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

@media (max-width: 1060px) {
  .hero {
    min-height: auto;
    padding-top: 150px;
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    margin-top: 10px;
  }

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

  .showcase-tabs {
    overflow-x: auto;
    flex-direction: row;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .showcase-tab {
    min-width: 160px;
  }

  .showcase-panel {
    min-height: 810px;
  }

  .comparison,
  .trust-grid,
  .faq-section,
  .waitlist-card {
    grid-template-columns: 1fr;
  }

  .comparison-intro,
  .trust-copy {
    position: static;
  }

  .waitlist-card {
    gap: 48px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .hero {
    padding-top: 122px;
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5.8rem);
  }

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

  .phone-frame {
    width: 336px;
    height: 690px;
  }

  .orbit-one {
    width: 440px;
    height: 440px;
  }

  .orbit-two {
    width: 540px;
    height: 540px;
  }

  .float-note-top {
    right: 0;
  }

  .float-note-bottom {
    left: 0;
  }

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

  .signal-grid p:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .signal-grid p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 92px;
  }

  .rhythm-track {
    grid-template-columns: 1fr 1fr;
  }

  .rhythm-track::before {
    display: none;
  }

  .rhythm-step {
    border-bottom: 1px solid var(--line);
  }

  .rhythm-step:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .rhythm-demo {
    grid-template-columns: 1fr;
  }

  .demo-ledger {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .showcase-panel {
    min-height: auto;
    padding: 44px 28px 0;
    grid-template-columns: 1fr;
  }

  .showcase-panel > img {
    width: min(350px, 86vw);
    max-height: 700px;
  }

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

  .footer-grid > div {
    grid-column: 1 / -1;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .legal-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    padding-bottom: 12px;
    gap: 18px;
    border-bottom: 1px solid var(--line);
  }

  .legal-nav p {
    display: none;
  }

  .legal-nav a {
    flex: 0 0 auto;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .data-table th,
  .data-table td {
    min-width: 190px;
  }

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

@media (max-width: 560px) {
  .header-inner .button-small {
    padding-inline: 11px;
    font-size: 0.76rem;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-proof {
    display: grid;
  }

  .hero-proof span {
    text-align: center;
  }

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

  .phone-frame {
    width: 300px;
    height: 650px;
    border-width: 6px;
    border-radius: 44px;
  }

  .phone-frame img {
    border-radius: 37px;
  }

  .float-note {
    width: 162px;
    padding: 11px 12px;
  }

  .float-note-top {
    top: 90px;
    right: -8px;
  }

  .float-note-bottom {
    bottom: 76px;
    left: -8px;
  }

  .signal-grid p {
    padding: 16px 10px;
    font-size: 0.6rem;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .comparison-intro h2,
  .trust-copy h2,
  .waitlist-copy h2,
  .legal-hero h1 {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
  }

  .rhythm-track {
    grid-template-columns: 1fr;
  }

  .rhythm-step {
    min-height: 150px;
  }

  .rhythm-step:nth-child(3) {
    border-left: 0;
  }

  .demo-copy,
  .demo-ledger {
    padding: 30px 22px;
  }

  .demo-controls {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .day-button {
    min-width: 0;
  }

  .showcase-tabs {
    padding: 14px;
  }

  .showcase-tab {
    min-width: 136px;
  }

  .comparison-card {
    padding: 24px;
  }

  .trust-points article {
    grid-template-columns: 34px 1fr;
  }

  .waitlist-section {
    padding-top: 24px;
  }

  .waitlist-card {
    padding: 34px 18px;
    border-radius: 26px;
  }

  .waitlist-flow {
    min-height: 420px;
    padding: 24px 18px;
  }

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

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

  .footer-grid {
    padding-block: 48px;
    gap: 36px;
  }

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

  .legal-main {
    padding-top: 118px;
  }

  .oauth-page {
    padding: 18px;
  }

  .oauth-card {
    padding: 34px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
