/* ─────────────────────────────────────────────────────────────
   Hello Radio — landing
   Mobbin's landing structure and dark palette (measured off
   mobbin.com 2026-07-22), our content. Tokens come from
   testing/styles/tokens.css with data-theme="dark" forced.
   ───────────────────────────────────────────────────────────── */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Lenis owns scrolling when active — native smooth would double-ease */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: var(--font-body);
  background: var(--page-bg); color: var(--text);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ── Landing light mode: Mobbin's white scheme (their landing default) ── */
:root:not([data-theme="dark"]) {
  --page-bg: #ffffff;
  --surface: #f5f5f4;
  --text: #141414;
  --text-secondary: #5c5c5c;
  --text-tertiary: #9a9a9a;
  --control-bg: #f2f2f1;
  --control-bg-hover: #e9e9e7;
  --divider: rgba(0, 0, 0, 0.08);
}

/* ── Nav: Mobbin's floating capsule, mark-only logo ── */
.lnav-wrap {
  position: sticky; top: 16px; z-index: 50;
  display: flex; justify-content: center; align-items: center; gap: 12px;
  padding: 16px 24px 0;
}
.lnav {
  width: min(640px, 100%); min-height: 62px; box-sizing: border-box;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--capsule-bg); border-radius: var(--radius-full);
  /* tight insets both ends: the logo badge nests into the left curve,
     the Join pill into the right, same 8px breathing room all around */
  padding: 8px;
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
}
:root:not([data-theme="dark"]) { --capsule-bg: rgba(243, 243, 242, 0.68); }
:root[data-theme="dark"] { --capsule-bg: rgba(32, 32, 32, 0.55); }

/* "Join for free": absent at top; past the hero CTA it slides in from the
   right and pushes the links (choreographed: the space opens on a spring,
   the pill itself lands a beat later — follow-through) */
.nav-join-wrap {
  display: grid; grid-template-columns: 0fr;
  margin-left: -30px; /* cancel the nav gap while collapsed */
  transition: grid-template-columns 0.45s var(--ease-spring),
              margin-left 0.45s var(--ease-spring);
}
.nav-join { min-width: 0; overflow: hidden; white-space: nowrap; }
.nav-join-wrap .nav-join {
  background: var(--text); color: var(--page-bg);
  padding: 14px 24px; border-radius: var(--radius-full);
  font-size: 16px; font-weight: 600; line-height: 1.15;
  opacity: 0; transform: translateX(20px) scale(0.92);
  transition: opacity 0.28s var(--ease-out),
              transform 0.45s var(--ease-spring);
}
.nav-join-wrap.show { grid-template-columns: 1fr; margin-left: 0; }
.nav-join-wrap.show .nav-join {
  opacity: 1; transform: none;
  transition-delay: 0.07s; /* the pill lands just after the space opens */
}
.logo { display: inline-flex; color: var(--text); }
.lnav nav { display: flex; align-items: center; gap: 30px; font-size: 16px; font-weight: 500; color: var(--text); }
.lnav nav a { transition: opacity var(--dur-fast); }
.lnav nav a:hover { opacity: 0.6; }
/* rides at the capsule's side, same glass */
.theme-btn {
  width: 46px; height: 46px; border-radius: 50%; border: none; flex-shrink: 0;
  background: var(--capsule-bg); color: var(--text-secondary);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  backdrop-filter: blur(18px) saturate(1.5);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: color var(--dur-fast), transform var(--dur-fast) var(--ease-spring);
}
.theme-btn:hover { color: var(--text); }
.theme-btn:active { transform: scale(0.9); }


/* ── Hero ── */
.hero { text-align: center; padding: 96px 24px 56px; }
.hero h1 {
  font-size: clamp(44px, 7vw, 84px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.02;
  opacity: 0; /* hero-intro.js reveals after arming the char flip */
  perspective: 900px;
}
.hero-line { display: block; transform-style: preserve-3d; }
.hero h1 .char {
  display: inline-block; transform-style: preserve-3d; will-change: transform;
}
.hero h1 .char > span { display: inline-block; }
.hero .sub, .closer .sub {
  margin-top: 22px; font-size: clamp(15px, 1.6vw, 19px);
  color: var(--text-secondary); line-height: 1.5;
}
.cta-row { margin-top: 34px; display: flex; gap: 14px; justify-content: center; }
.btn-primary, .btn-ghosted {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; border-radius: var(--radius-full);
  font-size: 15px; font-weight: 600;
  transition: transform var(--dur-fast) var(--ease-spring), opacity var(--dur-fast), background var(--dur-fast);
}
.btn-primary { background: var(--text); color: var(--page-bg); }
.btn-primary:hover { opacity: 0.9; }
.btn-primary:active { transform: scale(0.97); }
.btn-ghosted { background: var(--control-bg); color: var(--text); gap: 8px; }
.btn-ghosted:hover { background: var(--control-bg-hover); }

/* arrow-loop: arrow exits right, its twin sweeps in from the left */
.arrow-loop {
  position: relative; display: inline-block;
  width: 1.15em; height: 1.05em; overflow: hidden;
}
.arrow-loop span {
  position: absolute; inset: 0;
  transition: transform 0.35s var(--ease-spring);
}
.arrow-loop span:last-child { transform: translateX(-140%); }
.btn-ghosted:hover .arrow-loop span:first-child { transform: translateX(140%); }
.btn-ghosted:hover .arrow-loop span:last-child { transform: translateX(0); }

/* ── The wall: draggable track (MWG-088 refill effect) ── */
.wall-viewport {
  overflow: hidden; padding: 26px 0 36px;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.wall {
  display: flex; gap: 14px; align-items: flex-start;
  width: max-content; padding: 0 25px;
  cursor: grab; touch-action: pan-y;
}
.wall.dragging { cursor: grabbing; }
.wall .tile {
  width: 200px; flex-shrink: 0; border-radius: 14px; overflow: hidden;
  background: var(--surface);
  transform: translateY(var(--drift, 0));
}
.wall .tile img {
  width: 100%; display: block;
  user-select: none; -webkit-user-drag: none;
}
.wall .tile:nth-child(even) { --drift: 26px; }

/* ── The growing archive: stacked giant lines, floating brand tiles ── */
.library {
  position: relative; text-align: center;
  padding: clamp(120px, 16vw, 200px) 24px; overflow: hidden;
}
.kicker { color: var(--text); font-size: 20px; font-weight: 700; }
.kicker.soft { margin-top: 40px; color: var(--text-tertiary); font-size: 14px; font-weight: 400; }
.lib-line {
  font-size: clamp(44px, 6.8vw, 96px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.12;
  overflow: hidden;
  display: flex; justify-content: center;
}
.lib-line .letter { position: relative; display: inline-block; }
.lib-line .letter span:last-child { position: absolute; bottom: 100%; left: 0; }
.float-field { position: absolute; inset: 0; pointer-events: none; }
.ftile {
  position: absolute; width: 78px; height: 78px; border-radius: 22px;
  background: var(--page-bg); overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08), 0 16px 36px rgba(0,0,0,0.10);
  animation: floaty var(--fd, 7s) ease-in-out var(--fdel, 0s) infinite alternate;
}
.ftile img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes floaty {
  from { transform: translateY(-9px); }
  to { transform: translateY(11px); }
}
/* scatter, mirroring Mobbin's layout rhythm */
.ftile:nth-child(1)  { top: 8%;  left: 12%; --fd: 6.2s; }
.ftile:nth-child(2)  { top: 6%;  left: 33%; --fd: 7.4s; --fdel: 0.6s; }
.ftile:nth-child(3)  { top: 4%;  right: 14%; --fd: 6.8s; --fdel: 1.1s; }
.ftile:nth-child(4)  { top: 30%; left: 6%;  --fd: 7.8s; --fdel: 0.3s; }
.ftile:nth-child(5)  { top: 34%; right: 7%;  --fd: 6.4s; --fdel: 1.5s; }
.ftile:nth-child(6)  { bottom: 26%; left: 10%; --fd: 7.1s; --fdel: 0.9s; }
.ftile:nth-child(7)  { bottom: 30%; right: 12%; --fd: 6.6s; --fdel: 0.2s; }
.ftile:nth-child(8)  { bottom: 7%; left: 27%; --fd: 7.6s; --fdel: 1.3s; }
.ftile:nth-child(9)  { bottom: 5%; right: 30%; --fd: 6.9s; --fdel: 0.7s; }
.ftile:nth-child(10) { bottom: 9%; right: 8%;  --fd: 7.3s; --fdel: 1.8s; }
.ftile:nth-child(11) { top: 16%; left: 24%; --fd: 6.5s; --fdel: 0.4s; }
.ftile:nth-child(12) { top: 13%; right: 27%; --fd: 7.7s; --fdel: 1.0s; }
.ftile:nth-child(13) { top: 55%; left: 3.5%; --fd: 7.0s; --fdel: 1.6s; }
.ftile:nth-child(14) { top: 57%; right: 4%; --fd: 6.3s; --fdel: 0.5s; }
.ftile:nth-child(15) { bottom: 15%; left: 19%; --fd: 7.5s; --fdel: 1.2s; }
.ftile:nth-child(16) { bottom: 13%; right: 21%; --fd: 6.7s; --fdel: 0.8s; }
@media (prefers-reduced-motion: reduce) { .ftile { animation: none; } }

/* ── Sections shared ── */
.patterns, .split { padding: 96px 40px; max-width: 1140px; margin: 0 auto; }
.patterns h2, .split h2, .closer h2 {
  font-size: clamp(32px, 4.4vw, 52px); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.05; text-align: center;
}

/* ── Showcase: the dashboard framed as a product shot ── */
.showcase-frame {
  margin-top: 56px; border-radius: 32px;
  background: var(--surface); padding: clamp(20px, 4vw, 56px);
}
.showcase-app {
  background: var(--page-bg); border-radius: 22px;
  padding: clamp(20px, 3vw, 40px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 16px 48px rgba(0,0,0,0.08);
}
.sc-topbar { display: flex; align-items: center; gap: 22px; }
.sc-mark { display: inline-flex; color: var(--text); }
.sc-navlink { font-size: 14px; font-weight: 500; color: var(--text-tertiary); }
.sc-navlink.current { color: var(--text); font-weight: 600; }
.sc-search {
  flex: 1; max-width: 420px; margin: 0 auto;
  background: var(--control-bg); border-radius: var(--radius-full);
  padding: 10px 18px; font-size: 14px; color: var(--text-tertiary);
}
.sc-avatar {
  width: 30px; height: 30px; border-radius: 50%; margin-left: auto;
  background: linear-gradient(135deg, var(--accent), #7ac2ff);
}
.sc-cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; margin: 40px 0 8px;
}
.sc-col h4 { font-size: 13px; font-weight: 500; color: var(--text-secondary); margin-bottom: 12px; }
.sc-link {
  display: block; font-size: clamp(17px, 1.6vw, 21px); font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 8px; cursor: pointer;
  transition: opacity var(--dur-fast);
}
.sc-link:hover { opacity: 0.6; }
.sc-link.sc-more { color: var(--text-tertiary); }
.sc-toolrow {
  display: flex; align-items: center; gap: 22px;
  margin: 30px 0 20px; font-size: 13px; color: var(--text-tertiary);
}
.sc-toggle {
  background: var(--control-bg); border-radius: var(--radius-full);
  padding: 4px; display: inline-flex; gap: 2px;
}
.sc-toggle b, .sc-toggle span { padding: 5px 12px; border-radius: var(--radius-full); }
.sc-toggle b { background: var(--page-bg); color: var(--text); font-weight: 600; box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
.sc-tabs { display: inline-flex; gap: 18px; }
.sc-tabs b { color: var(--text); font-weight: 600; text-decoration: underline; text-underline-offset: 6px; }
.sc-filter { margin-left: auto; color: var(--text); font-weight: 500; }
.sc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sc-card {
  position: relative; background: var(--control-bg);
  border-radius: 16px; padding: 14px;
}
.sc-badge {
  position: absolute; top: 24px; left: 24px; z-index: 1;
  background: var(--page-bg); color: var(--text);
  font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: var(--radius-full);
}
.sc-card > img {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover;
  border-radius: 10px; display: block;
}
.sc-cardrow { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.sc-cardav { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }
.sc-cardnm { font-size: 13px; font-weight: 600; }
.sc-active {
  margin-left: auto; font-size: 11px; color: var(--active);
  background: var(--status-pill-bg); padding: 3px 9px; border-radius: var(--radius-full);
}

/* ── Bento: moat + automation in one ── */
.bento {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 56px;
}
.feature {
  background: var(--surface); border-radius: 18px; padding: 30px;
}
.feature h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.feature p { margin-top: 10px; color: var(--text-secondary); font-size: 15px; line-height: 1.55; }
.feature-accent {
  grid-column: 1 / -1;
  background: var(--accent); color: var(--prim-white);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 30px;
  align-items: start; padding: 38px 34px;
}
.feature-accent h3 { font-size: 24px; }
.feature-accent p { color: rgba(255, 255, 255, 0.85); max-width: 560px; }
.fa-left { display: flex; flex-direction: column; align-items: flex-start; }
.price-tag {
  margin-top: 18px; background: rgba(255, 255, 255, 0.16);
  color: var(--prim-white); font-size: 14px; font-weight: 600;
  padding: 8px 16px; border-radius: var(--radius-full);
}
/* the prompt itself, ready to hand to an agent */
.fa-prompt {
  background: rgba(0, 0, 0, 0.24); border-radius: 14px; padding: 20px 22px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
}
.fa-file {
  font-family: 'IBM Plex Mono', monospace; font-size: 11px;
  color: rgba(255, 255, 255, 0.55); letter-spacing: 0.02em;
}
.fa-prompt pre {
  font-family: 'IBM Plex Mono', monospace; font-size: 12.5px;
  line-height: 1.7; color: rgba(255, 255, 255, 0.92);
  margin: 0; white-space: pre-wrap; text-align: left;
}
.copy-prompt {
  border: none; cursor: pointer; min-width: 122px;
  background: var(--prim-white); color: var(--accent);
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  padding: 9px 18px; border-radius: var(--radius-full);
  transition: opacity var(--dur-fast), transform var(--dur-fast) var(--ease-spring);
}
.copy-prompt:hover { opacity: 0.9; }
.copy-prompt:active { transform: scale(0.95); }
/* label swap: out with a blur up, in from below on the spring */
.copy-prompt .lbl {
  display: inline-block;
  transition: opacity 0.14s var(--ease-out), filter 0.14s var(--ease-out),
              transform 0.32s var(--ease-spring);
}
.copy-prompt .lbl.out {
  opacity: 0; filter: blur(4px); transform: translateY(-7px) scale(0.95);
}
.copy-prompt .lbl.enter {
  transition: none;
  opacity: 0; filter: blur(4px); transform: translateY(8px) scale(0.95);
}
.copy-prompt.pulse { animation: copy-pulse 0.45s var(--ease-spring); }
@keyframes copy-pulse {
  0% { transform: scale(1); }
  35% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@media (max-width: 860px) { .feature-accent { grid-template-columns: 1fr; } }

/* ── Closer ── */
.closer { text-align: center; padding: 110px 24px 130px; }
.closer .btn-primary { margin-top: 34px; }

/* ── Footer ── */
.lfoot {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  padding: 26px 40px; font-size: 12px; color: var(--text-tertiary);
  box-shadow: 0 -1px 0 var(--divider);
}
.lfoot nav { display: flex; gap: 20px; }
.lfoot a {
  color: var(--text-secondary);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px; background-position: 0 100%; background-repeat: no-repeat;
  transition: background-size var(--dur-base) var(--ease-out);
}
.lfoot a:hover { background-size: 100% 1px; }

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; }
  .ftile:nth-child(n+7) { display: none; }
  .lnav { padding: 8px 8px 8px 20px; }
  .patterns, .split { padding: 72px 20px; }
  .sc-cols { grid-template-columns: repeat(2, 1fr); }
  .sc-grid { grid-template-columns: 1fr; }
  .sc-search { display: none; }
}

/* ── Request a brand ── */
.request { text-align: center; padding: 96px 24px 40px; }
.request h2 {
  font-size: clamp(30px, 4.4vw, 44px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.08;
}
.request .sub {
  margin: 14px auto 0; max-width: 480px;
  font-size: 16px; color: var(--text-secondary); line-height: 1.55;
}
.req-form {
  display: flex; justify-content: center; align-items: stretch;
  flex-wrap: wrap; gap: 10px; margin-top: 30px;
  transition: opacity var(--dur-base) var(--ease-out);
}
.req-form.sent { opacity: 0; pointer-events: none; height: 0; margin-top: 0; overflow: hidden; }
.req-input {
  font: inherit; font-size: 14px; color: var(--text);
  background: var(--capsule-bg); border: 0; outline: 0;
  border-radius: var(--radius-full); padding: 13px 20px; min-width: 210px;
  transition: box-shadow var(--dur-fast);
}
.req-input::placeholder { color: var(--text-tertiary); }
.req-input:focus { box-shadow: 0 0 0 2px var(--text) inset; }
.req-submit {
  display: inline-flex; align-items: center; gap: 8px;
  /* real <button>: kill the UA border/font so it matches the hero's <a> buttons */
  border: 0; appearance: none; -webkit-appearance: none; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; line-height: 1.15;
}
.req-submit:disabled { opacity: 0.55; pointer-events: none; }
.req-submit:hover .arrow-loop span:first-child { transform: translateX(140%); }
.req-submit:hover .arrow-loop span:last-child { transform: translateX(0); }
.req-note {
  margin-top: 22px; font-size: 15px; color: var(--text-secondary);
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-spring);
}
.req-note.show { opacity: 1; transform: none; }
.req-note.err { color: #c0392b; }

/* wide vector logos (e.g. Corona wordmark) letterbox instead of crop */
.ftile img[src$=".svg"] {
  object-fit: contain; background: #fff; padding: 14%; box-sizing: border-box;
}

/* ── Legal pages (/terms, /privacy) ── */
.legal { max-width: 640px; margin: 0 auto; padding: 120px 24px 100px; }
.legal h1 { font-size: clamp(32px, 4.5vw, 44px); font-weight: 800; letter-spacing: -0.02em; }
.legal .date { margin-top: 10px; font-size: 14px; color: var(--text-tertiary); }
.legal h2 { margin-top: 40px; font-size: 20px; font-weight: 700; }
.legal p { margin-top: 14px; font-size: 15.5px; line-height: 1.65; color: var(--text-secondary); }
.legal a { color: var(--text); text-decoration: underline; }

/* ── Pricing page ── */
.pricing { min-height: 60vh; }
.price-hero { text-align: center; padding: 110px 24px 10px; }
.price-hero h1 {
  font-size: clamp(40px, 6.4vw, 76px); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.04;
}
.price-hero .sub {
  margin: 18px auto 0; max-width: 520px;
  font-size: clamp(15px, 1.6vw, 19px); color: var(--text-secondary); line-height: 1.5;
}
.plans { padding: 34px 24px 10px; }
.bill-toggle {
  display: flex; gap: 4px; width: max-content; margin: 0 auto;
  background: var(--control-bg); border-radius: var(--radius-full); padding: 4px;
  overflow: hidden;
}
.bill-toggle button {
  border: 0; appearance: none; cursor: pointer;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--text-secondary); background: transparent;
  padding: 9px 20px; border-radius: var(--radius-full);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast);
}
.bill-toggle button.on { color: var(--page-bg); }
.bill-indicator { background: var(--text); border-radius: var(--radius-full); }
.bill-note {
  margin-top: 14px; text-align: center;
  font-size: 14px; color: var(--text-secondary);
}
.plan-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px; max-width: 880px; margin: 34px auto 0;
}
.plan {
  background: var(--surface); border-radius: 22px; padding: 28px;
  display: flex; flex-direction: column;
}
.plan-pro { background: var(--control-bg); }
.plan-head h3 {
  font-size: 24px; font-weight: 800; letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.pop-chip {
  font-size: 12px; font-weight: 600; letter-spacing: 0;
  background: var(--accent); color: var(--prim-white);
  border-radius: 999px; padding: 3px 10px;
}
.plan-for { margin-top: 4px; font-size: 14px; color: var(--text-secondary); }
.plan-price { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.plan-price .amt { font-size: 46px; font-weight: 800; letter-spacing: -0.03em; }
.plan-price .per { font-size: 13px; line-height: 1.35; color: var(--text-secondary); }
.plan-cta { margin-top: 22px; width: 100%; text-align: center; }
.plan .btn-ghosted {
  background: var(--page-bg);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
}
.plan .btn-ghosted:hover { background: var(--page-bg); opacity: 0.85; }
.plan-feats { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.plan-feats li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--text);
  transition: opacity var(--dur-base) var(--ease-out);
}
.plan-feats li svg { color: var(--text-secondary); flex-shrink: 0; }
.plan-feats li.muted { opacity: 0.45; }
.yr-chip {
  font-size: 11px; font-weight: 600; color: var(--text-secondary);
  background: var(--page-bg); border-radius: 999px; padding: 2px 8px;
}
.price-notes {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px; max-width: 880px; margin: 44px auto 0; padding: 0 24px;
  text-align: center;
}
.price-note h4 { font-size: 16px; font-weight: 700; }
.price-note p { margin: 8px auto 0; max-width: 340px; font-size: 14px; line-height: 1.55; color: var(--text-secondary); }
.note-link {
  display: inline-block; margin-top: 10px; font-size: 14px; font-weight: 600;
  color: var(--text);
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat;
}
/* ── Comparison table ── */
.compare { max-width: 880px; margin: 80px auto 0; padding: 0 24px; }
.compare h2 {
  text-align: center; font-size: clamp(26px, 3.6vw, 36px);
  font-weight: 800; letter-spacing: -0.02em; margin-bottom: 26px;
}
.compare-scroll { overflow-x: auto; scrollbar-width: thin; }
.compare table { width: 100%; min-width: 520px; border-collapse: collapse; }
.compare thead th {
  text-align: left; font-size: 15px; font-weight: 700;
  padding: 12px 16px;
}
.compare thead th:not(:first-child) { text-align: center; width: 160px; }
.compare tbody th {
  text-align: left; font-size: 14.5px; font-weight: 500; color: var(--text);
  padding: 13px 16px;
}
.compare tbody tr { box-shadow: 0 1px 0 var(--divider); }
.compare td { text-align: center; font-size: 14px; padding: 13px 16px; }
.compare td.yes svg { color: var(--active, #1d8348); }
.compare td.yes { color: var(--text); }
.compare td.no { color: var(--text-tertiary); }
.compare td.txt { color: var(--text-secondary); }

@media (max-width: 720px) {
  .plan-grid, .price-notes { grid-template-columns: 1fr; }
  .price-hero { padding-top: 90px; }
  .plan { padding: 22px; }
}

@media (max-width: 480px) {
  .lnav nav { gap: 16px; font-size: 15px; }
  .nav-join-wrap .nav-join { padding: 12px 16px; font-size: 14px; }
}

/* ── From inspiration to your next ad: looping feature clips ── */
.creation { padding: clamp(80px, 10vw, 140px) 24px; text-align: center; }
.creation h2 {
  font-size: clamp(30px, 4.4vw, 52px); font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.08;
}
.cr-figma {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; padding: 10px 20px;
  border-radius: var(--radius-full); background: #f4f4f3;
  font-size: 15px; font-weight: 600;
}
.cr-figma svg { flex: none; }
.cr-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; max-width: 1160px; margin: 48px auto 0;
}
.cr-media {
  border-radius: 20px; overflow: hidden; background: #f4f4f3;
}
.cr-media video { width: 100%; display: block; }
.cr-card h3 { margin-top: 18px; font-size: 18px; font-weight: 700; }
.cr-card p {
  margin: 8px auto 0; max-width: 320px;
  font-size: 14.5px; line-height: 1.55; color: var(--text-secondary);
}
@media (max-width: 900px) { .cr-grid { grid-template-columns: 1fr; max-width: 480px; } }

/* RULE (Edward): every interactive control shows the finger */
button, [role="button"], .pill, .btn-primary, .btn-ghosted, select, .nav-join { cursor: pointer; }
