/* AppointMe landing — production stylesheet.
   Locked to the "Obsidian / dark" direction from the design (the chosen default).
   Driven by data-attributes + --accent on <html>, mirroring the prototype's theme.css
   so the markup stays a faithful, pixel-level recreation. */

:root {
  --max-w: 1200px;
  --pad-x: clamp(20px, 4vw, 56px);
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --ease: cubic-bezier(.3, .7, .4, 1);
}

/* ── OBSIDIAN ──────────────────────────────────────────────── */
[data-direction="obsidian"] {
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --display-weight: 600;
  --display-tracking: -0.025em;
  --display-leading: 1.02;
  --display-size: clamp(40px, 6.4vw, 84px);
  --eyebrow-tt: uppercase;
  --eyebrow-tracking: 0.14em;
  --eyebrow-size: 11px;
  --eyebrow-weight: 600;
  --section-pad-y: clamp(80px, 10vw, 140px);
  --card-radius: 14px;
  --card-border-w: 1px;
}
[data-direction="obsidian"][data-mode="dark"] {
  --bg: #0a0a0f;
  --bg-soft: #0e0e15;
  --surface: #14141b;
  --raised: #1c1c26;
  --hover: #23232e;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-faint: #71717a;
  --border: rgba(255,255,255,0.08);
  --border-strong: rgba(255,255,255,0.14);
  --hairline: rgba(255,255,255,0.05);
  --shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 12px 32px rgba(0,0,0,0.5);
  --grain-opacity: 0.04;
  --accent-fg: #0a0a0f;
  --on-accent-fg: #0a0a0f;
}

/* ── Globals ───────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle film grain */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: var(--grain-opacity);
  mix-blend-mode: overlay;
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--display-weight);
  letter-spacing: var(--display-tracking);
  line-height: var(--display-leading);
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

::selection { background: var(--accent); color: var(--on-accent-fg); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  text-transform: var(--eyebrow-tt);
  letter-spacing: var(--eyebrow-tracking);
  font-size: var(--eyebrow-size);
  font-weight: var(--eyebrow-weight);
  color: var(--text-muted);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 30%, transparent);
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px; padding: 0 18px;
  border-radius: 10px;
  font-size: 15px; font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s var(--ease), background .15s, border-color .15s, color .15s;
  white-space: nowrap;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--on-accent-fg);
  font-weight: 600;
}
.btn-primary:hover {
  box-shadow: 0 8px 24px color-mix(in oklab, var(--accent) 40%, transparent);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--hover); }

.card {
  background: var(--surface);
  border: var(--card-border-w) solid var(--border);
  border-radius: var(--card-radius);
}

.hairline { background: var(--border); height: 1px; width: 100%; }

.mono { font-family: var(--font-mono); }

/* Section heading shared */
.section-head { margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-top: 10px;
}
.section-head .lede {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 18px;
  max-width: 60ch;
}

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

/* ── Logo ──────────────────────────────────────────────────── */
.lp-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 16px; color: var(--text); }
.lp-logo-mark { color: var(--accent); display: inline-flex; }

/* ── Nav ───────────────────────────────────────────────────── */
.lp-nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  background: color-mix(in oklab, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--hairline);
}
.lp-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.lp-nav-links { display: flex; gap: 28px; margin: 0; padding: 0; list-style: none; }
.lp-nav-links a {
  font-size: 14px; color: var(--text-muted);
  font-weight: 500;
  transition: color .15s;
  white-space: nowrap;
}
.lp-nav-links a:hover { color: var(--text); }
.lp-nav-actions { display: flex; align-items: center; gap: 10px; }
.lp-gh {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted); font-weight: 500;
  padding: 8px 12px; border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-mono);
}
.lp-gh:hover { background: var(--hover); color: var(--text); }
.lp-gh b { color: var(--text); font-family: var(--font-body); font-weight: 600; font-variant-numeric: tabular-nums; }
@media (max-width: 720px) {
  .lp-nav-links { display: none; }
}

/* ── Hero ──────────────────────────────────────────────────── */
.lp-hero { padding: clamp(48px, 7vw, 96px) 0 clamp(60px, 8vw, 120px); }
.lp-hero-inner { display: grid; gap: clamp(40px, 5vw, 64px); }
@media (min-width: 1040px) {
  .lp-hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr); align-items: center; }
}
.lp-hero-copy { max-width: 620px; }
.lp-hero h1 {
  font-size: var(--display-size);
  margin-top: 18px;
  word-break: normal;
  overflow-wrap: break-word;
}
.lp-hero h1 .em { color: var(--accent); }
.lp-hero .sub {
  margin-top: 22px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 56ch;
}
.lp-hero .actions {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.lp-hero-art { position: relative; min-width: 0; }

/* ── Inside (what's inside) ────────────────────────────────── */
.lp-inside { padding: var(--section-pad-y) 0; border-top: 1px solid var(--hairline); }

/* Highlights layout (numbered module cards) */
.lp-mh-list { display: flex; flex-direction: column; gap: 14px; }
.lp-mh-card {
  display: grid; grid-template-columns: 58px 1fr; column-gap: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 26px 30px;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}
.lp-mh-card:hover {
  border-color: color-mix(in oklab, var(--accent) 42%, var(--border));
  background: var(--bg-soft);
  transform: translateY(-1px);
}
.lp-mh-card .num {
  font-family: var(--font-mono); font-size: 28px; font-weight: 500;
  color: var(--text-faint); line-height: 1.15; letter-spacing: -0.02em;
}
.lp-mh-card .mh-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lp-mh-card h3 {
  font-family: var(--font-body); font-size: 19px; font-weight: 600;
  letter-spacing: -0.01em; line-height: 1.25;
}
.lp-mh-card .kind {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.02em;
  padding: 3px 10px; border-radius: 999px; white-space: nowrap;
  border: 1px solid color-mix(in oklab, currentColor 45%, transparent);
  background: color-mix(in oklab, currentColor 13%, transparent);
}
.lp-mh-card .kind[data-kind="Architecture"] { color: var(--accent); }
.lp-mh-card .kind[data-kind="Tenancy"]      { color: #2dd4bf; }
.lp-mh-card .kind[data-kind="Security"]     { color: #f59e0b; }
.lp-mh-card .kind[data-kind="Frontend"]     { color: #10b981; }
.lp-mh-card .kind[data-kind="Ops"]          { color: #94a3b8; }
.lp-mh-card .kind[data-kind="DX"]           { color: #38bdf8; }
.lp-mh-card p {
  margin-top: 10px; color: var(--text-muted);
  font-size: 14.5px; line-height: 1.55; max-width: 62ch;
}
.lp-mh-card .mh-foot { margin-top: 15px; }
.lp-mh-card .tech {
  font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint);
  display: inline-flex; align-items: center; gap: 8px;
}
.lp-mh-card .tech::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: 0.75;
}
@media (max-width: 560px) {
  .lp-mh-card { grid-template-columns: 1fr; row-gap: 12px; padding: 24px 22px; }
  .lp-mh-card .num { font-size: 22px; }
}

/* ── Free vs Paid comparison ───────────────────────────────── */
.lp-compare { padding: var(--section-pad-y) 0; border-top: 1px solid var(--hairline); }
.lp-compare-tbl {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.lp-compare-head {
  display: grid; grid-template-columns: minmax(0,1fr) 110px 110px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--hairline);
  align-items: center;
}
.lp-compare-head .colname {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: .1em;
}
.lp-compare-head .col {
  text-align: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase; letter-spacing: .12em;
}
.lp-compare-head .col b {
  display: block; font-family: var(--font-body); font-size: 15px;
  color: var(--text); font-weight: 600; letter-spacing: 0; text-transform: none;
  margin-bottom: 2px;
}
.lp-compare-cat {
  padding: 18px 24px 8px;
  font-family: var(--font-mono); font-size: 11px; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: .12em;
  background: var(--bg-soft);
  border-top: 1px solid var(--hairline);
}
.lp-compare-row {
  display: grid; grid-template-columns: minmax(0,1fr) 110px 110px;
  padding: 14px 24px;
  border-top: 1px solid var(--hairline);
  align-items: center;
  font-size: 14.5px;
}
.lp-compare-row .check { text-align: center; }
.lp-compare-row .yes {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent-fg);
}
.lp-compare-row .no {
  display: inline-block; width: 12px; height: 1.5px;
  background: var(--text-faint); opacity: .5;
}
.lp-compare-row .lbl {
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.02em; color: var(--text-muted);
  padding: 3px 9px; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg-soft);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .lp-compare-head, .lp-compare-row { grid-template-columns: minmax(0,1fr) 60px 60px; padding-left: 16px; padding-right: 16px; }
  /* Shrink the small mono captions so "Commercial" fits the 60px column (the
     bold Free/Paid labels keep their size via .col b). */
  .lp-compare-head .col { font-size: 9px; letter-spacing: .02em; }
}

/* ── Use cases ─────────────────────────────────────────────── */
.lp-uc { padding: var(--section-pad-y) 0; border-top: 1px solid var(--hairline); }
.lp-uc-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.lp-uc-card {
  padding: 32px;
  background: var(--surface);
  border: var(--card-border-w) solid var(--border);
  border-radius: var(--card-radius);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .2s var(--ease), box-shadow .2s;
}
.lp-uc-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.lp-uc-card .tag {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--accent);
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 18px;
}
.lp-uc-card h3 {
  font-size: 26px; font-weight: 600;
  line-height: 1.2; letter-spacing: -0.015em;
}
.lp-uc-card p { margin-top: 14px; color: var(--text-muted); font-size: 14.5px; line-height: 1.55; }
.lp-uc-card ul {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13.5px; color: var(--text-muted);
}
.lp-uc-card ul li {
  display: flex; align-items: center; gap: 10px;
}
.lp-uc-card ul li::before {
  content: ''; width: 14px; height: 14px; border-radius: 50%;
  background: color-mix(in oklab, var(--accent) 18%, transparent);
  flex-shrink: 0;
  position: relative;
}
.lp-uc-card ul li::after {
  content: ''; position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent);
  margin-left: 5px;
}

/* ── Pricing ───────────────────────────────────────────────── */
.lp-pricing { padding: var(--section-pad-y) 0; border-top: 1px solid var(--hairline); }
.lp-pricing-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.lp-tier {
  background: var(--surface);
  border: var(--card-border-w) solid var(--border);
  border-radius: var(--card-radius);
  padding: 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.lp-tier.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 20px 60px color-mix(in oklab, var(--accent) 20%, transparent);
}
.lp-tier .tag-pill {
  position: absolute; top: 20px; right: 20px;
  font-family: var(--font-mono); font-size: 10px;
  padding: 3px 7px; border-radius: 4px;
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  color: var(--accent);
  text-transform: uppercase; letter-spacing: .1em;
  font-weight: 600;
}
.lp-tier.featured .tag-pill {
  background: var(--accent); color: var(--on-accent-fg);
}
.lp-tier-name {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .14em;
  margin-bottom: 16px;
}
.lp-tier-price {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
}
.lp-tier-price .num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: var(--display-weight);
  letter-spacing: -0.03em; line-height: 1;
}
.lp-tier-price .was {
  font-family: var(--font-display);
  font-size: 30px; font-weight: var(--display-weight);
  letter-spacing: -0.02em; line-height: 1;
  color: var(--text-faint);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.lp-tier-sub { color: var(--text-muted); font-size: 13px; }
.lp-tier-launch {
  display: inline-flex; align-items: center; gap: 7px;
  margin-top: 12px;
  font-family: var(--font-mono); font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--accent);
  padding: 5px 11px; border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--accent) 45%, var(--border));
  background: color-mix(in oklab, var(--accent) 14%, var(--surface));
}
.lp-tier-launch .ld {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 28%, transparent);
}
.lp-tier-desc { margin-top: 12px; color: var(--text-muted); font-size: 14px; line-height: 1.5; min-height: 3em; }
.lp-tier .btn { margin-top: 24px; justify-content: center; }
.lp-tier-feats {
  list-style: none; padding: 0;
  margin: 24px 0 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--hairline);
  padding-top: 20px;
  font-size: 14px;
}
.lp-tier-feat {
  display: flex; align-items: flex-start; gap: 10px;
  color: var(--text-muted);
  line-height: 1.45;
}
.lp-tier-feat::before {
  content: ''; width: 14px; height: 14px;
  flex-shrink: 0; margin-top: 4px;
  background: var(--accent);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7.2 5.8 10 11 4.2' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><path d='M3 7.2 5.8 10 11 4.2' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>") center/contain no-repeat;
}
.lp-tier-foot {
  margin-top: 18px; padding-top: 16px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-faint); text-align: center;
}

/* ── Hire us ───────────────────────────────────────────────── */
.lp-hire {
  padding: clamp(56px, 7vw, 88px) 0;
  border-top: 1px solid var(--hairline);
}
.lp-hire-inner {
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 880px) {
  .lp-hire-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 64px;
  }
}
.lp-hire-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 14px;
}
.lp-hire-head h2 .em { color: var(--accent); }
.lp-hire-head .aside {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 38ch;
}
.lp-hire-body {
  display: flex; flex-direction: column;
  gap: 22px;
  padding-top: 4px;
}
.lp-hire-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  max-width: 56ch;
}
.lp-hire-services {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  list-style: none; padding: 0; margin: 0;
}
.lp-hire-chip {
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-muted);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  background: transparent;
  letter-spacing: .02em;
}
.lp-hire-row {
  margin-top: 6px;
  display: flex; align-items: center;
  gap: 18px; flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--hairline);
}
/* Styled as a .btn .btn-primary; this just adds the arrow slide on hover. */
.lp-hire-cta .arrow {
  transition: transform .2s var(--ease);
  color: inherit;
}
.lp-hire-cta:hover .arrow { transform: translateX(3px); }

/* ── FAQ ───────────────────────────────────────────────────── */
.lp-faq { padding: var(--section-pad-y) 0; border-top: 1px solid var(--hairline); }
.lp-faq-inner {
  display: grid; gap: 56px;
}
@media (min-width: 880px) {
  .lp-faq-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr); }
}
.lp-faq-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
}
.lp-faq-row {
  border-top: 1px solid var(--hairline);
}
.lp-faq-row:first-child { border-top: 0; }
.lp-faq-q {
  width: 100%; appearance: none; background: transparent; border: 0; color: inherit;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font: inherit; font-size: 16px; font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.lp-faq-q:hover { background: var(--bg-soft); }
.lp-faq-q .ic {
  flex-shrink: 0; width: 22px; height: 22px;
  border: 1px solid var(--border); border-radius: 50%;
  display: grid; place-items: center;
  font-size: 14px; color: var(--text-muted);
  transition: transform .2s, background .2s;
}
.lp-faq-row.open .lp-faq-q .ic {
  background: var(--accent); color: var(--on-accent-fg);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.lp-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s var(--ease);
}
.lp-faq-row.open .lp-faq-a { max-height: 400px; }
.lp-faq-a-inner {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ── Final CTA ─────────────────────────────────────────────── */
.lp-cta { padding: var(--section-pad-y) 0; border-top: 1px solid var(--hairline); }
.lp-cta-card {
  padding: clamp(48px, 7vw, 96px);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-cta-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, color-mix(in oklab, var(--accent) 16%, transparent), transparent 70%);
  pointer-events: none;
}
.lp-cta-card > * { position: relative; }
.lp-cta-card h2 {
  font-size: clamp(40px, 6vw, 72px);
  margin: 14px 0 0;
}
.lp-cta-card .sub {
  margin: 18px auto 0; max-width: 50ch;
  font-size: 18px; color: var(--text-muted);
}
.lp-cta-card .actions {
  margin-top: 32px;
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}

/* ── Footer ────────────────────────────────────────────────── */
.lp-foot { padding: 56px 0 40px; border-top: 1px solid var(--hairline); }
.lp-foot-inner {
  display: grid; gap: 40px;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
}
@media (max-width: 800px) {
  .lp-foot-inner { grid-template-columns: 1fr 1fr; }
  .lp-foot-brand { grid-column: 1 / -1; }
}
.lp-foot-brand p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 14px; max-width: 38ch;
}
.lp-foot h4 {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-faint);
  text-transform: uppercase; letter-spacing: .12em;
  font-weight: 500;
  margin-bottom: 16px;
}
.lp-foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.lp-foot ul a { color: var(--text-muted); }
.lp-foot ul a:hover { color: var(--text); }
.lp-foot-bot {
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-faint);
  letter-spacing: .04em;
  flex-wrap: wrap; gap: 12px;
}

/* ── Tech stack hero exhibit ───────────────────────────────── */
.ts-frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-family: var(--font-body);
  color: var(--text);
}
.ts-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid var(--hairline);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-faint);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.ts-head .l { display: flex; align-items: center; gap: 10px; }
.ts-head .l b { color: var(--text); font-weight: 600; letter-spacing: .04em; }
.ts-head .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.ts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
}
@media (max-width: 480px) {
  .ts-grid { grid-template-columns: repeat(2, 1fr); }
}
.ts-cell {
  --bc: var(--accent);
  position: relative;
  background: var(--surface);
  padding: 28px 18px 22px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 14px;
  min-height: 168px;
  overflow: hidden;
}
.ts-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, color-mix(in oklab, var(--bc) 22%, transparent), transparent 60%);
  pointer-events: none;
}
.ts-cell::after {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 38px; height: 2px;
  background: var(--bc);
  border-radius: 0 0 2px 2px;
}
.ts-logo {
  position: relative;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bc);
}
.ts-logo svg { width: 100%; height: 100%; display: block; }
.ts-meta {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px;
  text-align: center;
}
.ts-name {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}
.ts-ver {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-faint);
  letter-spacing: .06em;
}
.ts-role {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-faint);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ts-foot {
  display: flex; align-items: center; justify-content: flex-end;
  gap: 14px;
  padding: 14px 18px;
  border-top: 1px solid var(--hairline);
  background: var(--bg-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .04em;
  flex-wrap: wrap;
}
.ts-foot .r { color: var(--accent); font-weight: 600; }

/* ── "Coming soon" tier badge ──────────────────────────────── */
.lp-tier-soon {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent) 45%, transparent);
  background: color-mix(in oklab, var(--accent) 13%, transparent);
  padding: 2px 7px; border-radius: 999px;
  vertical-align: middle;
}

/* ── PRO waitlist dialog ───────────────────────────────────── */
.lp-wl {
  width: min(460px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--text);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lp-wl::backdrop {
  background: color-mix(in oklab, var(--bg) 72%, transparent);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Entry animation, gated by the reduced-motion block above. */
.lp-wl[open] { animation: wl-in .22s var(--ease); }
@keyframes wl-in {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.lp-wl-form { position: relative; margin: 0; }
.lp-wl-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  background: transparent; border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-muted);
  font-size: 20px; line-height: 1; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.lp-wl-close:hover { background: var(--hover); color: var(--text); }
.lp-wl-body, .lp-wl-done { padding: 32px; }
.lp-wl-body .eyebrow { margin-bottom: 14px; }
.lp-wl h2 {
  font-family: var(--font-display);
  font-size: 26px; font-weight: var(--display-weight);
  letter-spacing: -0.02em; line-height: 1.15;
  margin: 0;
}
.lp-wl-lede {
  margin: 12px 0 0;
  color: var(--text-muted); font-size: 14.5px; line-height: 1.55;
}
.lp-wl-field { display: block; margin-top: 18px; }
.lp-wl-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500; color: var(--text);
  margin-bottom: 7px;
}
.lp-wl-req { color: var(--accent); }
.lp-wl-opt {
  font-family: var(--font-mono); font-size: 10.5px;
  color: var(--text-faint); letter-spacing: .04em;
}
.lp-wl-field input,
.lp-wl-field textarea {
  width: 100%; box-sizing: border-box;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font: inherit; font-size: 15px;
  padding: 11px 13px;
  transition: border-color .15s, box-shadow .15s;
}
.lp-wl-field textarea { resize: vertical; min-height: 72px; line-height: 1.5; }
.lp-wl-field input::placeholder,
.lp-wl-field textarea::placeholder { color: var(--text-faint); }
.lp-wl-field input:focus,
.lp-wl-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 22%, transparent);
}
.lp-wl-field input[aria-invalid="true"] { border-color: #f87171; }
/* Honeypot — kept in the DOM but away from real users and AT. */
.lp-wl-hp {
  position: absolute; left: -9999px;
  width: 1px; height: 1px; overflow: hidden;
}
.lp-wl-error {
  margin: 16px 0 0; padding: 10px 13px;
  background: color-mix(in oklab, #f87171 14%, transparent);
  border: 1px solid color-mix(in oklab, #f87171 45%, transparent);
  border-radius: var(--radius);
  color: #fca5a5; font-size: 13.5px;
}
.lp-wl-actions { margin-top: 22px; }
.lp-wl-actions .btn { width: 100%; justify-content: center; }
.lp-wl-submit[aria-busy="true"] { opacity: .7; pointer-events: none; }
.lp-wl-fine {
  margin: 14px 0 0; text-align: center;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-faint); letter-spacing: .02em;
}
.lp-wl-done { text-align: center; }
.lp-wl-check {
  width: 52px; height: 52px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in oklab, var(--accent) 45%, transparent);
}
.lp-wl-done .lp-wl-actions { margin-top: 24px; }
