/* ============================================================
   Trinity Cadence — Fractional COO LP
   Refined SaaS register, light-mode primary, single accent
   ============================================================ */

:root {
  /* Color tokens — light primary */
  --bg-base: #FAFAF9;
  --bg-surface: #FFFFFF;
  --bg-sunken: #F2F2F0;
  --bg-elevated: #FFFFFF;
  --border: rgba(10, 10, 11, 0.08);
  --border-hi: rgba(10, 10, 11, 0.18);
  --border-faint: rgba(10, 10, 11, 0.04);
  --text-1: #0A0A0B;
  --text-2: #52525B;
  --text-3: #8A8A93;

  /* Sub-brand accent: Cadence electric violet, tuned for AA on light */
  --accent: #5B3CE6;
  --accent-hi: #4A2DCC;
  --accent-lo: rgba(91, 60, 230, 0.10);
  --accent-ink: rgba(91, 60, 230, 0.35);

  /* Type */
  --font-sans: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', 'JetBrains Mono', ui-monospace, monospace;

  /* Fluid type scale */
  --fs-h1: clamp(2rem, 4.8vw + 0.5rem, 5.5rem);
  --fs-h2: clamp(1.75rem, 2.4vw + 0.75rem, 3rem);
  --fs-h3: clamp(1.0625rem, 0.4vw + 1rem, 1.25rem);
  --fs-body-lg: clamp(1rem, 0.3vw + 0.95rem, 1.125rem);
  --fs-body: clamp(0.9375rem, 0.2vw + 0.9rem, 1.0625rem);
  --fs-mono: 0.8125rem;

  /* Layout */
  --container: 1200px;
  --gutter-x: 32px;
  --section-y: clamp(72px, 9vw, 128px);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-card: 0 1px 0 rgba(10, 10, 11, 0.04), 0 8px 24px -12px rgba(10, 10, 11, 0.10);
  --shadow-lift: 0 1px 0 rgba(10, 10, 11, 0.05), 0 24px 56px -20px rgba(10, 10, 11, 0.18), 0 4px 16px -6px rgba(10, 10, 11, 0.08);
}

/* ============================================================
   Reset / base
   ============================================================ */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg-base);
  color: var(--text-1);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #fff; }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   Layout primitives
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter-x);
  position: relative;
}

@media (max-width: 640px) {
  :root { --gutter-x: 20px; }
}

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 249, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
  color: var(--text-1);
}

.wordmark-trinity { color: var(--text-1); font-weight: 500; }
.wordmark-cadence { color: var(--text-1); font-weight: 600; }

.wordmark-mark {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.wordmark-mark-sm { width: 22px; height: 22px; }

.wordmark-sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.wordmark-sm { font-size: 0.9375rem; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 150ms ease-out;
}

.site-nav a:hover { color: var(--text-1); }
.site-nav a[aria-current="page"] { color: var(--text-1); }

.nav-cta {
  padding: 8px 14px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-sm);
  color: var(--text-1) !important;
  transition: background 150ms ease-out, border-color 150ms ease-out;
}

.nav-cta:hover {
  background: rgba(10, 10, 11, 0.04);
  border-color: rgba(10, 10, 11, 0.28);
}

@media (max-width: 720px) {
  .site-nav a:not(.nav-cta) { display: none; }
}

/* ============================================================
   Typography
   ============================================================ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 28px;
}

.eyebrow-mark { color: var(--accent); margin-right: 4px; }

.hero-headline,
.section-headline {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text-1);
}

.hero-headline {
  font-size: var(--fs-h1);
  line-height: 1;
  max-width: 24ch;
}

.hero-headline-accent {
  color: var(--accent);
  font-style: normal;
  position: relative;
  white-space: nowrap;
}

.section-headline {
  font-size: var(--fs-h2);
  line-height: 1.06;
  letter-spacing: -0.022em;
  max-width: 24ch;
}

.section-headline-center { margin-inline: auto; }

.section-headline-md {
  font-size: clamp(1.375rem, 1.6vw + 0.75rem, 2rem);
  max-width: 38ch;
  letter-spacing: -0.018em;
}

.section-head { margin-bottom: 56px; }
.section-head-center { text-align: center; }
.section-head-center .eyebrow { display: inline-block; }

.hero-sub,
.section-lede {
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  font-weight: 400;
}

.section-head .section-lede { margin-top: 24px; max-width: 56ch; }
.section-lede-muted { color: var(--text-3); }

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.005em;
  transition: background 180ms ease-out, transform 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out;
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hi); }
.btn-primary:active { transform: translateY(1px); }

.btn-outline {
  background: transparent;
  color: var(--text-1);
  border-color: var(--border-hi);
}
.btn-outline:hover { background: rgba(10, 10, 11, 0.04); border-color: rgba(10, 10, 11, 0.28); }

.btn-ghost {
  background: transparent;
  color: var(--text-2);
}
.btn-ghost:hover { color: var(--text-1); }

.btn-block { width: 100%; }

.btn-arrow { transition: transform 200ms ease-out; }
.btn:hover .btn-arrow { transform: translateX(2px); }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  padding-top: clamp(64px, 7vw, 96px);
  padding-bottom: var(--section-y);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-grid {
  position: absolute;
  inset: -40px 0 0 0;
  background-image:
    radial-gradient(rgba(91, 60, 230, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 80%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 80%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -180px;
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(91, 60, 230, 0.22) 0%, rgba(91, 60, 230, 0.08) 35%, transparent 65%);
  filter: blur(8px);
}

.hero-bg::after {
  content: "";
  position: absolute;
  bottom: -260px;
  left: -160px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(91, 60, 230, 0.14) 0%, rgba(91, 60, 230, 0.04) 40%, transparent 70%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 72px;
  }
}

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

.hero-headline + .hero-sub { margin-top: 28px; max-width: 56ch; }

.hero-actions {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-meta {
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-3);
  letter-spacing: 0.01em;
  flex-wrap: wrap;
}

.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); display: inline-block; }
.hero-meta-sep { width: 1px; height: 12px; background: var(--border-hi); }

@media (max-width: 480px) {
  .hero-meta-sep { display: none; }
  .hero-meta { gap: 6px 16px; }
}

/* ============================================================
   HERO PREVIEW CARD (Cadence dashboard mock)
   ============================================================ */

.hero-preview {
  position: relative;
  perspective: 2000px;
}

.preview-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
  font-feature-settings: "ss01", "cv11", "tnum";
  color: var(--text-1);
  transform: rotate(-0.4deg);
}

@media (min-width: 980px) {
  .preview-card { transform: rotate(-0.6deg); }
}

.preview-card-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, #FCFCFB, var(--bg-elevated));
}

.preview-card-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.preview-card-dot {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  display: inline-block;
}

.preview-card-title {
  color: var(--text-1);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.preview-card-tag {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.preview-card-tabs {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.8125rem;
  color: var(--text-3);
  margin-top: 2px;
}

.preview-tab {
  position: relative;
  padding-bottom: 8px;
  font-weight: 500;
}

.preview-tab-active {
  color: var(--text-1);
}

.preview-tab-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.preview-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 22px 20px;
  background: var(--bg-elevated);
}

.preview-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.preview-block-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.preview-block-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-3);
}

.preview-block-status {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.preview-status-up {
  color: var(--accent);
  background: var(--accent-lo);
  border: 1px solid var(--accent-ink);
}

.preview-sparkline {
  width: 100%;
  height: 56px;
  color: var(--accent);
}

.preview-ticks {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.preview-block-split {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border-faint);
}

.preview-anchor {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.preview-anchor-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 0.8125rem;
}

.preview-anchor-label {
  color: var(--text-1);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.preview-anchor-pct {
  font-family: var(--font-mono);
  color: var(--text-2);
  font-size: 0.75rem;
}

.preview-anchor-bar {
  position: relative;
  height: 6px;
  background: rgba(10, 10, 11, 0.06);
  border-radius: 100px;
  overflow: hidden;
}

.preview-anchor-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--accent);
  border-radius: 100px;
}

.preview-block-list {
  padding-top: 18px;
  border-top: 1px solid var(--border-faint);
}

.preview-list-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}

.preview-list-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-3);
}

.preview-list-count {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-2);
}

.preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.preview-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--text-1);
  letter-spacing: -0.005em;
}

.preview-check {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1px solid var(--border-hi);
  flex-shrink: 0;
  position: relative;
}

.preview-list-item.done .preview-check {
  background: var(--accent);
  border-color: var(--accent);
}

.preview-list-item.done .preview-check::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.preview-list-item.done {
  color: var(--text-2);
  text-decoration: line-through;
  text-decoration-color: var(--text-3);
  text-decoration-thickness: 1px;
}

.preview-card-foot {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-sunken);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.8125rem;
}

.preview-foot-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  flex-shrink: 0;
}

.preview-foot-msg {
  color: var(--text-2);
  letter-spacing: -0.005em;
}

/* ============================================================
   PROBLEM section
   ============================================================ */

.problem {
  padding-block: var(--section-y);
  border-top: 1px solid var(--border);
}

.problem-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

@media (min-width: 880px) {
  .problem-inner {
    grid-template-columns: 220px 1fr;
    gap: 88px;
  }
}

.problem-label .eyebrow { margin: 0; }

@media (min-width: 880px) {
  .problem-label .eyebrow { position: sticky; top: 96px; }
}

.problem-body { max-width: 760px; }
.problem-body .section-lede { margin-top: 24px; max-width: 56ch; }

.problem-list {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
}

.problem-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.problem-list li:last-child { border-bottom: 1px solid var(--border); }

.problem-list-num {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-3);
  letter-spacing: 0.02em;
  padding-top: 4px;
}

.problem-list h3 {
  font-size: var(--fs-h3);
  font-weight: 500;
  letter-spacing: -0.012em;
  margin: 0 0 8px;
  color: var(--text-1);
}

.problem-list p {
  margin: 0;
  color: var(--text-2);
  max-width: 56ch;
  font-size: var(--fs-body);
  line-height: 1.6;
}

/* ============================================================
   INCLUDED section
   ============================================================ */

.included {
  padding-block: var(--section-y);
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(91, 60, 230, 0.05) 0%, transparent 60%),
    var(--bg-surface);
  border-block: 1px solid var(--border);
  position: relative;
}

.included::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 760px) {
  .included-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

.incl-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 200ms ease-out, transform 200ms ease-out, box-shadow 200ms ease-out;
}

.incl-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.incl-card-head { display: flex; flex-direction: column; gap: 10px; }

.incl-card-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-3);
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.incl-card-tag-accent {
  color: var(--accent);
  border-color: var(--accent-ink);
  background: var(--accent-lo);
}

.incl-card-title {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--text-1);
}

.incl-card-desc {
  margin: 0;
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.55;
  max-width: 38ch;
}

.incl-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.incl-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-1);
  line-height: 1.45;
  letter-spacing: -0.005em;
}

.incl-bullet {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  margin-top: 9px;
  flex-shrink: 0;
}

/* ============================================================
   PROOF / STATS
   ============================================================ */

.proof {
  padding-block: var(--section-y);
}

.proof-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border-block: 1px solid var(--border);
}

@media (min-width: 760px) {
  .proof-grid { grid-template-columns: repeat(3, 1fr); }
}

.proof-stat {
  background: var(--bg-base);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.proof-number {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 4vw + 1rem, 3.75rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-1);
}

.proof-label {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 32ch;
}

/* ============================================================
   PRICING
   ============================================================ */

.pricing {
  padding-block: var(--section-y);
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

.pricing-grid {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 760px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pricing-grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .pricing-grid-3 { grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
}

/* the "Recommended: Standard tier..." caption below the 3-card grid */
.pricing-note {
  margin: 36px auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-2);
  padding: 18px 22px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-md);
}
.pricing-note strong { color: var(--text-1); font-weight: 600; }

.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: border-color 200ms ease-out;
}

.price-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 56px -20px rgba(91, 60, 230, 0.30), 0 4px 16px -6px rgba(91, 60, 230, 0.18);
  position: relative;
}

.price-card-featured::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  background: var(--accent);
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
}

.price-card-flag {
  position: absolute;
  top: -12px;
  left: 32px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--accent);
  padding: 5px 12px;
  border-radius: 100px;
  line-height: 1.2;
  box-shadow: 0 4px 10px -2px rgba(91, 60, 230, 0.40);
}

.price-card-head { display: flex; flex-direction: column; gap: 10px; }

.price-card-tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-3);
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.price-card-tagline {
  margin: 0;
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.5;
  max-width: 38ch;
}

.price-card-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-feature-settings: "tnum";
  color: var(--text-1);
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-3);
}

.price-number {
  font-size: clamp(2.5rem, 3vw + 1rem, 3.25rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}

.price-period {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-3);
  margin-left: 4px;
}

.price-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--text-1);
  line-height: 1.45;
}

/* ============================================================
   BOOK / placeholder section
   ============================================================ */

.book {
  padding-block: var(--section-y);
  background: var(--bg-sunken);
  border-bottom: 1px solid var(--border);
}

.book-inner { max-width: 760px; }

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  padding-block: 56px;
  background: var(--bg-sunken);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-tag {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-3);
}

.footer-meta {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ============================================================
   Motion
   ============================================================ */

@media (prefers-reduced-motion: no-preference) {
  .hero .eyebrow,
  .hero-headline,
  .hero-sub,
  .hero-actions,
  .hero-meta {
    opacity: 0;
    transform: translateY(12px);
    animation: rise 600ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  }
  .hero .eyebrow      { animation-delay: 60ms; }
  .hero-headline      { animation-delay: 160ms; }
  .hero-sub           { animation-delay: 280ms; }
  .hero-actions       { animation-delay: 400ms; }
  .hero-meta          { animation-delay: 480ms; }

  .hero-preview {
    opacity: 0;
    transform: translateY(20px);
    animation: rise 800ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
    animation-delay: 360ms;
  }
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

/* ============================================================
   PAGE HERO (sub-pages)
   ============================================================ */

.page-hero {
  position: relative;
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}

.page-hero-inner { max-width: 880px; }

.page-hero-headline {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: -0.025em;
  font-size: clamp(1.875rem, 3.6vw + 0.5rem, 3.875rem);
  line-height: 1.04;
  margin: 0;
  color: var(--text-1);
  max-width: 26ch;
}

.page-hero-sub {
  margin: 24px 0 0;
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 56ch;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--text-3);
  text-transform: uppercase;
  margin-bottom: 28px;
}

.breadcrumb a { color: var(--text-3); transition: color 150ms ease-out; }
.breadcrumb a:hover { color: var(--text-1); }
.breadcrumb [aria-current="page"] { color: var(--text-1); }
.breadcrumb-sep { color: var(--text-3); opacity: 0.5; }

/* ============================================================
   SUMMARY (LP value summary)
   ============================================================ */

.summary {
  padding-block: var(--section-y);
  border-top: 1px solid var(--border);
}

.summary .section-headline { max-width: 28ch; margin-bottom: 56px; margin-top: 0; }
.summary .eyebrow { margin-bottom: 28px; }

.summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
}

@media (min-width: 760px) {
  .summary-grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}

.summary-grid p {
  margin: 0;
  font-size: var(--fs-body-lg);
  line-height: 1.6;
  color: var(--text-2);
}

/* ============================================================
   EXPLORE CARDS
   ============================================================ */

.explore {
  padding-block: var(--section-y);
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 760px) {
  .explore-grid { grid-template-columns: repeat(3, 1fr); }
}

.explore-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  color: var(--text-1);
  position: relative;
  transition: border-color 200ms ease-out, transform 200ms ease-out, box-shadow 200ms ease-out;
  min-height: 220px;
}

.explore-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 1px 0 rgba(91, 60, 230, 0.10), 0 16px 40px -16px rgba(91, 60, 230, 0.20);
}

.explore-card-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.explore-card-title {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.3;
  margin: 0;
  color: var(--text-1);
  max-width: 28ch;
}

.explore-card-desc {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
  max-width: 40ch;
}

.explore-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-3);
  transition: color 200ms ease-out, transform 200ms ease-out;
}

.explore-card:hover .explore-card-arrow {
  color: var(--accent);
  transform: translateX(2px);
}

/* ============================================================
   BOOK / CALENDLY PLACEHOLDER
   ============================================================ */

.book-inner-center { max-width: 880px; margin-inline: auto; text-align: center; }

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

.section-lede-center {
  text-align: center;
  margin: 24px auto 0;
  max-width: 60ch;
}

.calendly-placeholder { margin-top: 56px; }

.calendly-frame {
  background: var(--bg-elevated);
  border: 1px dashed var(--border-hi);
  border-radius: var(--radius-md);
  padding: clamp(48px, 6vw, 80px) 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--text-3);
  text-align: center;
}

.calendly-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-lo);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.calendly-label {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-2);
  letter-spacing: 0.01em;
}

.calendly-sub {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
}

/* ============================================================
   SPLIT TABLE
   ============================================================ */

.split { padding-block: var(--section-y); }

.split-table {
  margin-top: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-elevated);
}

.split-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  padding: 16px 24px;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.split-row:last-child { border-bottom: 0; }

.split-row-head {
  background: var(--bg-sunken);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-3);
  padding-block: 12px;
}

.split-row > [role="rowheader"] { font-weight: 500; color: var(--text-1); }

.split-cell-yes { color: var(--accent); font-weight: 500; }
.split-cell-partial { color: var(--text-2); }
.split-cell-no { color: var(--text-3); }

@media (max-width: 640px) {
  .split-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 4px 16px;
    padding: 14px 18px;
  }
  .split-row > [role="rowheader"] { grid-column: 1 / -1; margin-bottom: 4px; }
  .split-row-head > [role="rowheader"] { display: none; }
}

/* ============================================================
   TIMELINE
   ============================================================ */

.timeline { padding-block: var(--section-y); }

.timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  max-width: 880px;
}

.timeline-list::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: var(--border-hi);
}

.timeline-step {
  position: relative;
  padding-left: 56px;
  padding-bottom: 48px;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-marker {
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-base);
  z-index: 1;
}

.timeline-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(91, 60, 230, 0.16);
}

.timeline-when {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin: 0 0 8px;
}

.timeline-title {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--text-1);
  max-width: 32ch;
}

.timeline-desc {
  margin: 0 0 16px;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 60ch;
}

.timeline-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}

.timeline-bullets li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--text-3);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  padding-block: var(--section-y);
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

.faq-inner { max-width: 880px; margin: 0 auto; }

.faq-list { margin: 0; padding: 0; display: flex; flex-direction: column; }

.faq-item {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-q {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--text-1);
  margin: 0 0 10px;
}

.faq-a {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-2);
  max-width: 70ch;
}

.faq-a .link {
  color: var(--accent);
  border-bottom: 1px solid var(--accent-ink);
  transition: border-color 150ms ease-out;
}

.faq-a .link:hover { border-bottom-color: var(--accent); }

/* ============================================================
   NEXT-CTA
   ============================================================ */

.next-cta { padding-block: clamp(48px, 6vw, 88px); }

.next-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(32px, 4vw, 48px);
}

@media (min-width: 760px) {
  .next-cta-inner { grid-template-columns: 1fr auto; gap: 48px; }
}

.next-cta-inner .section-headline { max-width: 32ch; margin: 0; }
.next-cta-inner .eyebrow { margin-bottom: 14px; }

/* ============================================================
   FOOTER NAV
   ============================================================ */

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-3);
  transition: color 150ms ease-out;
}

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

@media (max-width: 760px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* ============================================================
   Calendly embed wrapper
   ============================================================ */
.calendly-embed {
  margin-top: 56px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.calendly-embed .calendly-inline-widget {
  width: 100%;
}
