:root {
  /* 60-30-10: canvas 60%, ink/white structure 30%, green accent 10% */
  --canvas: #f5f5f3;
  --card: #ffffff;
  --ink: #121113;
  --ink-soft: #56555a;
  --muted: #6e6d74;
  --accent: #00c805;
  --accent-ink: #0a7a4b;
  --border: rgba(18, 17, 19, 0.10);
  --border-strong: rgba(18, 17, 19, 0.16);
  --radius-card: 20px;
  --radius-control: 999px;
  --font-body: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --space-section: clamp(72px, 10vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: rgba(18, 17, 19, 0.05);
  border-radius: 6px;
  padding: 0.08em 0.3em;
}

/* Header */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px;
}

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

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 15px;
  letter-spacing: -0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.nav-pills a {
  border-radius: var(--radius-control);
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 550;
  padding: 8px 14px;
  transition: background 140ms ease, color 140ms ease;
}

.nav-pills a:hover {
  background: rgba(18, 17, 19, 0.06);
  color: var(--ink);
}

/* Type */

h1, h2, h3 {
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

.lede {
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.55;
  max-width: 34rem;
}

.fine-print {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.fine-print a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Buttons */

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-control);
  background: rgba(18, 17, 19, 0.07);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1;
  padding: 0 22px;
  transition: background 140ms ease, transform 140ms ease;
}

.button:hover {
  background: rgba(18, 17, 19, 0.12);
}

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

.button.primary,
.button.primary.live {
  background: var(--ink);
  color: #fff;
}

.button.primary:hover,
.button.primary.live:hover {
  background: #2a292d;
}

.button.accent {
  background: var(--accent);
  color: var(--ink);
}

.button.accent:hover {
  background: #00b505;
}

.button.secondary {
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--border-strong);
}

.button.secondary:hover {
  background: rgba(18, 17, 19, 0.05);
}

.button.pending {
  cursor: not-allowed;
  background: rgba(18, 17, 19, 0.05);
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 26px 0 18px;
}

/* Sections */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: var(--space-section) 24px 0;
}

.section.narrow {
  max-width: 760px;
}

.section-heading {
  max-width: 560px;
  margin-bottom: 44px;
}

.section-heading h2,
.section.narrow h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.12;
}

.section.narrow > p:not(.eyebrow):not(.fine-print) {
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 36rem;
}

/* Hero */

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(56px, 9vw, 110px) 24px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow {
  justify-content: center;
}

.hero h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  font-weight: 600;
  max-width: 13.5em;
}

.hero .lede {
  margin: 22px auto 0;
}

.hero .cta-row {
  justify-content: center;
  margin: 30px 0 14px;
}

.boundary {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  max-width: 34rem;
  margin: 8px auto 0;
}

/* Pricing */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 24px 24px;
}

.offer-card.featured {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.offer-badge {
  align-self: flex-start;
  border-radius: var(--radius-control);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  margin-bottom: 16px;
  background: rgba(18, 17, 19, 0.06);
  color: var(--ink-soft);
}

.offer-card.featured .offer-badge {
  background: var(--accent);
  color: var(--ink);
}

.offer-card.muted-card .offer-badge {
  background: rgba(18, 17, 19, 0.05);
  color: var(--muted);
}

.offer-card h3 {
  font-size: 19px;
  line-height: 1.2;
}

.offer-tagline {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0 0;
  min-height: 42px;
}

.offer-card.featured .offer-tagline {
  color: rgba(255, 255, 255, 0.72);
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 4px;
}

.offer-price strong {
  font-size: 34px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.offer-price span {
  color: var(--muted);
  font-size: 13px;
}

.offer-card.featured .offer-price span {
  color: rgba(255, 255, 255, 0.6);
}

.offer-card ul {
  list-style: none;
  margin: 14px 0 22px;
  padding: 0;
  flex: 1;
}

.offer-card li {
  position: relative;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  padding: 5px 0 5px 24px;
}

.offer-card.featured li {
  color: rgba(255, 255, 255, 0.82);
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent-ink);
  border-bottom: 2px solid var(--accent-ink);
  transform: rotate(-45deg);
}

.offer-card.featured li::before {
  border-color: var(--accent);
}

.offer-card.muted-card li::before {
  border-color: var(--muted);
}

.offer-card .button {
  width: 100%;
}

.offer-card.muted-card {
  background: transparent;
  border-style: dashed;
}

.offer-note {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 10px 0 0;
  text-align: center;
}

.offer-note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.offer-card.featured .offer-note {
  color: rgba(255, 255, 255, 0.55);
}

.offer-card.featured .offer-note a {
  color: rgba(255, 255, 255, 0.8);
}

/* Numbered outcome rows */

.routine-list {
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.routine-row {
  display: grid;
  grid-template-columns: 64px 240px 1fr;
  gap: 18px;
  align-items: baseline;
  border-bottom: 1px solid var(--border);
  padding: 22px 4px;
}

.routine-row span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 13px;
}

.routine-row h3 {
  font-size: 17px;
  font-weight: 600;
}

.routine-row p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* Artifact windows */

.artifact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.window {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 10px 14px;
}

.window-bar::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  box-shadow: 14px 0 0 var(--border-strong), 28px 0 0 var(--border-strong);
  margin-right: 24px;
}

.window pre {
  margin: 0;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  overflow-x: auto;
  white-space: pre;
}

.window pre b {
  color: var(--ink);
  font-weight: 600;
}

.window pre i {
  color: var(--accent-ink);
  font-style: normal;
}

.window-caption {
  color: var(--muted);
  font-size: 12.5px;
  padding: 0 16px 14px;
  margin: 0;
}

/* Safety strip */

.rules-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.rules-row span {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 550;
  padding: 9px 16px;
}

/* FAQ */

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

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

.faq-list summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  padding: 18px 4px;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 400;
}

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

.faq-list details p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 38rem;
  padding: 0 4px;
}

/* Forms */

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 8px;
}

.stacked-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 18px 0 8px;
  max-width: 34rem;
}

.stacked-form label {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.inline-form input[type="email"],
.stacked-form input[type="email"],
.stacked-form select,
.stacked-form textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 11px 14px;
  min-width: 0;
}

.inline-form input[type="email"] {
  flex: 1 1 240px;
  border-radius: var(--radius-control);
}

.inline-form input:focus,
.stacked-form input:focus,
.stacked-form select:focus,
.stacked-form textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}

.stacked-form textarea {
  resize: vertical;
}

.stacked-form .button {
  align-self: flex-start;
  margin-top: 6px;
}

/* Content pages (equities, explainer, legal) */

.content-page .lede {
  max-width: 38rem;
}

.content-page h1 {
  font-size: clamp(32px, 5vw, 52px);
  max-width: 16em;
}

.legal-page h1 {
  font-size: clamp(30px, 4.5vw, 44px);
}

.legal-page h2 {
  font-size: 22px;
  margin-top: 40px;
}

.legal-page h3 {
  font-size: 16.5px;
  margin-top: 22px;
}

.legal-page p {
  color: var(--ink-soft);
  line-height: 1.6;
}

.legal-page ul {
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 10px 0 0;
  padding-left: 22px;
}

.legal-page ul li {
  margin-bottom: 7px;
}

.legal-page table {
  border-collapse: collapse;
  font-size: 14px;
  margin: 16px 0 6px;
  width: 100%;
}

.legal-page th,
.legal-page td {
  border-bottom: 1px solid var(--border);
  padding: 10px;
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.legal-page td {
  color: var(--ink-soft);
}

.legal-page th {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Delivery / utility pages */

.delivery-page {
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
}

.delivery-page .section {
  padding-top: clamp(56px, 8vw, 96px);
}

.delivery-page h1 {
  font-size: clamp(28px, 4vw, 40px);
}

/* Footer */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1120px;
  margin: var(--space-section) auto 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  padding: 26px 24px 40px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-links a:hover {
  color: var(--ink);
}

/* Responsive */

@media (max-width: 900px) {
  .offer-grid,
  .artifact-row {
    grid-template-columns: 1fr;
  }

  .routine-row {
    grid-template-columns: 48px 1fr;
  }

  .routine-row p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    text-align: left;
    align-items: flex-start;
  }

  .hero .eyebrow,
  .hero .cta-row {
    justify-content: flex-start;
  }

  .hero .cta-row .button {
    width: 100%;
  }

  .boundary {
    margin-left: 0;
  }
}

/* Logo strip */

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-top: 40px;
}

.logo-strip-label {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 600;
}

.logo-item img {
  width: 17px;
  height: 17px;
  opacity: 0.7;
}

/* Demo video */

.demo-video {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: 0 30px 80px rgba(18, 17, 19, 0.10);
}

/* Split section + review board */

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: center;
}

.split h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.12;
}

.split .side-copy p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.55;
  max-width: 26rem;
}

.board {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(18, 17, 19, 0.08);
}

.board-row {
  display: grid;
  grid-template-columns: 84px 84px 1fr 86px 104px;
  gap: 12px;
  align-items: center;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  padding: 13px 16px;
}

.board-row:first-of-type {
  border-top: 0;
}

.board-tag {
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 0;
  background: rgba(18, 17, 19, 0.06);
  color: var(--ink-soft);
}

.board-row .tkr {
  font-family: var(--font-mono);
  font-weight: 600;
}

.board-row .det {
  color: var(--ink-soft);
}

.board-row .lag {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 12px;
}

.board-act {
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  min-height: 30px;
  background: rgba(18, 17, 19, 0.07);
  color: var(--ink);
}

.board-act.done {
  background: rgba(0, 200, 5, 0.14);
  color: var(--accent-ink);
}

.board-foot {
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  padding: 10px 16px;
}

@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .board-row {
    grid-template-columns: 80px 76px 1fr 92px;
  }

  .board-row .lag {
    display: none;
  }
}

/* Waitlist card */

.waitlist-card {
  background: var(--ink);
  border-radius: var(--radius-card);
  color: #fff;
  padding: clamp(32px, 5vw, 52px);
}

.waitlist-card .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.waitlist-card h2 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.12;
}

.waitlist-card .sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 30rem;
}

.waitlist-card .fine-print {
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
}

.pill-form {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: var(--radius-control);
  padding: 6px 6px 6px 0;
  max-width: 480px;
  margin-top: 26px;
  transition: box-shadow 140ms ease;
}

.pill-form:focus-within {
  box-shadow: 0 0 0 3px rgba(0, 200, 5, 0.4);
}

.pill-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 0 18px;
}

.pill-form input::placeholder {
  color: var(--muted);
}

.pill-form .button {
  flex: none;
}

.waitlist-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  font-size: 16px;
  font-weight: 600;
}

.waitlist-success .tick {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  font-size: 14px;
  flex: none;
}

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

/* Entrance motion (no-motion-first) */

@media (prefers-reduced-motion: no-preference) {
  [data-reveal],
  [data-reveal-group] > * {
    opacity: 0;
    transform: translateY(20px);
    transition:
      opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
      transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  [data-reveal].in,
  [data-reveal-group].in > * {
    opacity: 1;
    transform: none;
  }

  [data-reveal-group].in > *:nth-child(2) { transition-delay: 0.1s; }
  [data-reveal-group].in > *:nth-child(3) { transition-delay: 0.2s; }
  [data-reveal-group].in > *:nth-child(4) { transition-delay: 0.3s; }
  [data-reveal-group].in > *:nth-child(5) { transition-delay: 0.4s; }
  [data-reveal-group].in > *:nth-child(6) { transition-delay: 0.5s; }

  .hero > * {
    opacity: 0;
    transform: translateY(16px);
    animation: hero-in 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .hero > :nth-child(1) { animation-delay: 0.05s; }
  .hero > :nth-child(2) { animation-delay: 0.16s; }
  .hero > :nth-child(3) { animation-delay: 0.28s; }
  .hero > :nth-child(4) { animation-delay: 0.4s; }
  .hero > :nth-child(5) { animation-delay: 0.52s; }
  .hero > :nth-child(6) { animation-delay: 0.64s; }

  @keyframes hero-in {
    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* Public-data desk grid */

.pd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pd-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.pd-card summary {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
}

.pd-card summary::-webkit-details-marker {
  display: none;
}

.pd-card summary img {
  border-radius: 6px;
  flex: none;
}

.pd-t {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pd-t b {
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.pd-t i {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
}

.pd-card summary em {
  margin-left: auto;
  color: var(--muted);
  font-style: normal;
  font-size: 18px;
  font-weight: 400;
  transition: transform 160ms ease;
}

.pd-card[open] summary em {
  transform: rotate(45deg);
}

.pd-card p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  padding: 0 18px 16px 58px;
  max-width: 34rem;
}

@media (max-width: 900px) {
  .pd-grid {
    grid-template-columns: 1fr;
  }
}

/* Board avatars and ticker logos */

.board-who {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 650;
  min-width: 0;
}

.board-who img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}

.tkr {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.tkr img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  flex: none;
}

.offer-card .included-line {
  margin-top: 4px;
  padding-top: 11px;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 600;
}

.offer-card .included-line::before {
  border-color: var(--accent);
}

.value-stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 8px 0 18px;
  font-size: 14px;
  color: var(--ink-soft);
}

.value-stack strong {
  color: var(--ink);
}

.value-stack .plus {
  color: var(--accent-ink);
  font-weight: 700;
}

.value-stack .eq {
  margin-left: auto;
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}

/* Value table (itemized anchor) */

.value-table {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin: 10px 0 18px;
  background: var(--card);
}

.vt-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
}

.vt-row:first-child {
  border-top: 0;
}

.vt-row span:last-child {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.vt-total {
  background: var(--ink);
  color: #fff;
  font-weight: 650;
  font-size: 16px;
}

.vt-total span:last-child {
  color: #fff;
}

.vt-total s {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 400;
  margin-right: 8px;
}

/* Delivery auto-download success banner */

.download-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 200, 5, 0.08);
  border: 1px solid rgba(0, 200, 5, 0.32);
  border-radius: 14px;
  padding: 16px 18px;
  margin: 24px 0 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.download-banner .dl-check {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  background: var(--accent);
  color: #0b2b0c;
  font-size: 15px;
  font-weight: 700;
}

/* Hero cycling agent logo */

.hero-cycle {
  display: inline-flex;
  align-items: center;
  vertical-align: baseline;
}

.hero-cycle .hc-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.26em;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.hero-cycle img {
  width: 0.78em;
  height: 0.78em;
  border-radius: 0.16em;
}

.hero-cycle b {
  font-weight: inherit;
}

/* Tighter how-it-works (follows the hero closely; centered, compact heading) */

.how-section {
  padding-top: clamp(40px, 5vw, 64px);
}

.how-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 24px;
}

.how-head h2 {
  font-size: clamp(26px, 3.4vw, 34px);
  line-height: 1.12;
}

.how-head .eyebrow {
  justify-content: center;
}
