/* ============================================================
   myflyers.ai — Coming Soon
   Brand foundation: Coral #E8573A · Teal #2EBDBD · Ink #0A0A0A · Paper #FAFAFA
   Type: Space Grotesk (display) · Inter (body) · JetBrains Mono (caption)
   ============================================================ */

:root {
  --coral: #E8573A;
  --coral-soft: #FFE6DD;
  --teal: #2EBDBD;
  --teal-soft: #D7F2F2;
  --ink: #0A0A0A;
  --paper: #FAFAFA;
  --gradient: linear-gradient(135deg, #E8573A 0%, #2EBDBD 100%);

  --bg: var(--paper);
  --bg-elev: #FFFFFF;
  --bg-tint: #F2F0EE;
  --fg: var(--ink);
  --fg-muted: #525252;
  --fg-faint: #A8A8A8;
  --border: #E8E4E0;
  --border-strong: #D6D1CB;

  --pad-section: 96px;
  --pad-section-x: clamp(24px, 5vw, 80px);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
}

[data-theme="dark"] {
  --bg: #0A0A0A;
  --bg-elev: #141414;
  --bg-tint: #1C1C1C;
  --fg: #FAFAFA;
  --fg-muted: #B3B3B3;
  --fg-faint: #6B6B6B;
  --border: #1F1F1F;
  --border-strong: #2A2A2A;
}

[data-density="compact"] {
  --pad-section: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { background: var(--bg); color: var(--fg); }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input { font-family: inherit; }

.mono { font-family: "JetBrains Mono", ui-monospace, monospace; letter-spacing: 0.06em; }

.page { min-height: 100vh; overflow-x: hidden; }

/* ───────────── Topnav ───────────── */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-section-x);
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.topnav-left { display: flex; align-items: center; gap: 14px; }
.topnav-right { display: flex; align-items: center; gap: 28px; }
.badge {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  padding: 4px 8px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  color: var(--fg-muted);
}
.nav-link {
  font-size: 13px;
  color: var(--fg-muted);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--fg); }
.nav-cta {
  font-size: 13px;
  font-weight: 500;
  color: white;
  padding: 9px 16px;
  border-radius: 999px;
  transition: transform 0.15s, filter 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.05); }

/* ───────────── Hero ───────────── */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) var(--pad-section-x) var(--pad-section);
  max-width: 1440px;
  margin: 0 auto;
}
.hero.stacked {
  grid-template-columns: 1fr;
  text-align: left;
}
.hero.stacked .hero-demo { max-width: 720px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: var(--fg-muted);
  margin-bottom: 28px;
}

.hero-h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: pretty;
}
.hero-em {
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-accent="teal"] .hero-em { background-image: linear-gradient(135deg, #2EBDBD 0%, #1A8FA8 100%); }
[data-accent="coral"] .hero-em { background-image: linear-gradient(135deg, #E8573A 0%, #C03A1F 100%); }

.hero-underline {
  position: relative;
  white-space: nowrap;
}
.hero-coda {
  display: inline-block;
  margin-top: 8px;
  font-style: italic;
  font-weight: 400;
  color: var(--fg-muted);
  font-size: 0.55em;
  letter-spacing: -0.01em;
}
.hero-underline::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: var(--coral);
  opacity: 0.85;
  border-radius: 4px;
}
[data-accent="teal"] .hero-underline::after { background: var(--teal); }
[data-accent="gradient"] .hero-underline::after { background: var(--gradient); }

.hero-sub {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 50ch;
  text-wrap: pretty;
}

.hero-cta-row { margin-top: 36px; }

/* live counter */
.live-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 10.5px;
  color: var(--fg-muted);
}
.dot-live {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34,197,94, 0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94, 0); }
}

/* ───────────── Demo stage (the magic visual) ───────────── */
.hero-demo { position: relative; }
.demo-stage {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: auto;
  gap: 18px;
  align-items: center;
  min-height: 460px;
  box-shadow: 0 30px 60px -30px rgba(10,10,10,0.18), 0 1px 0 rgba(10,10,10,0.02);
  overflow: hidden;
}
[data-theme="dark"] .demo-stage { box-shadow: 0 30px 60px -30px rgba(0,0,0,0.5); }

.demo-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(.2,.7,.3,1), opacity 0.4s, filter 0.4s;
}
.demo-card.shrunk {
  transform: scale(0.85) translateY(-8px);
  opacity: 0.4;
  filter: saturate(0.7);
}

.listing-photo {
  position: relative;
  height: 130px;
  background: #FFEFE4;
  overflow: hidden;
}
.listing-tag {
  position: absolute;
  top: 10px; left: 10px;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  background: var(--ink);
  color: var(--paper);
  padding: 4px 7px;
  border-radius: 4px;
}
.listing-meta { padding: 14px 16px 16px; }
.listing-addr {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.listing-row {
  margin-top: 6px;
  font-size: 12px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.listing-row .dot { color: var(--fg-faint); }

.demo-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.demo-flow.active { opacity: 1; }
.flow-line {
  width: 2px;
  height: 60px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.demo-flow.active .flow-line::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -100%;
  height: 100%;
  background: linear-gradient(180deg, transparent, var(--coral), transparent);
  animation: flow 1.2s ease-in-out infinite;
}
@keyframes flow {
  0% { top: -100%; }
  100% { top: 100%; }
}

.buyer { padding: 16px; display: flex; gap: 12px; align-items: flex-start; }
.buyer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
}
.buyer-meta { flex: 1; min-width: 0; }
.buyer-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.buyer-row {
  font-size: 11.5px;
  color: var(--fg-muted);
  margin-top: 3px;
}
.buyer-row.mono { font-size: 10px; letter-spacing: 0.05em; }
.buyer-tags {
  display: flex; gap: 4px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.buyer-tags span {
  font-size: 9.5px;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  padding: 3px 7px;
  background: var(--bg-tint);
  border-radius: 999px;
  color: var(--fg-muted);
}

/* The flyer that emerges from the merge */
.demo-flyer {
  position: absolute;
  inset: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: translateY(40px) scale(0.92);
  transition: opacity 0.6s cubic-bezier(.2,.7,.3,1), transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.demo-flyer.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.flyer-paper {
  width: min(320px, 80%);
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(10,10,10,0.35), 0 4px 12px rgba(10,10,10,0.08);
  border: 1px solid rgba(10,10,10,0.06);
  color: var(--ink);
}
.flyer-top {
  padding: 22px 22px 24px;
  color: white;
}
.flyer-eyebrow {
  font-size: 9px;
  letter-spacing: 0.16em;
  opacity: 0.85;
  margin-bottom: 12px;
}
.flyer-headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.flyer-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  border-top: 1px solid rgba(10,10,10,0.06);
}
.flyer-stat {
  padding: 14px 12px;
  border-right: 1px solid rgba(10,10,10,0.06);
  text-align: left;
}
.flyer-stat:last-child { border-right: none; }
.flyer-stat .label { font-size: 8px; letter-spacing: 0.12em; color: #888; }
.flyer-stat .value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-top: 4px;
  letter-spacing: -0.02em;
}
.flyer-stat .value .muted { color: #BBB; font-weight: 500; }
.flyer-stat .small { font-size: 8.5px; color: #999; margin-top: 2px; letter-spacing: 0.06em; }
.flyer-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  background: #FAFAFA;
  border-top: 1px solid rgba(10,10,10,0.06);
  font-size: 8.5px;
  color: #888;
  letter-spacing: 0.1em;
}

.demo-caption {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9.5px;
  color: var(--fg-faint);
  letter-spacing: 0.16em;
}

/* ───────────── Waitlist ───────────── */
.waitlist { display: flex; flex-direction: column; gap: 10px; }
.wl-roles {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--bg-tint);
  border-radius: 999px;
}
.wl-role {
  font-size: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--fg-muted);
  transition: background 0.15s, color 0.15s;
}
.wl-role.active {
  background: var(--bg-elev);
  color: var(--fg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.wl-input-row {
  display: flex;
  gap: 8px;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 5px 5px 5px 20px;
  max-width: 480px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.wl-input-row:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px color-mix(in oklch, var(--ink) 8%, transparent);
}
[data-theme="dark"] .wl-input-row:focus-within {
  border-color: var(--paper);
  box-shadow: 0 0 0 4px rgba(250,250,250,0.08);
}
.wl-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--fg);
  min-width: 0;
}
.wl-input::placeholder { color: var(--fg-faint); }
.wl-submit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 0.15s, filter 0.15s;
}
.wl-submit:hover { transform: translateY(-1px); filter: brightness(1.05); }
.wl-fine { font-size: 9.5px; color: var(--fg-faint); margin-top: 4px; }
.wl-err { font-size: 10px; color: var(--coral); }

.waitlist-done {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 14px;
  max-width: 480px;
}
.waitlist-done .check {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.wl-done-title { font-family: "Space Grotesk", sans-serif; font-size: 15px; font-weight: 600; }
.wl-done-sub { font-size: 9.5px; color: var(--fg-muted); margin-top: 3px; }

/* ───────────── Strip (what it does) ───────────── */
.strip {
  padding: var(--pad-section) var(--pad-section-x);
  border-top: 1px solid var(--border);
  max-width: 1440px;
  margin: 0 auto;
}
.strip-head { margin-bottom: 56px; max-width: 720px; }
.strip-eyebrow { font-size: 10.5px; color: var(--fg-muted); margin-bottom: 16px; }
.strip-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elev);
}
.strip-card {
  padding: 32px 28px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.strip-card:last-child { border-right: none; }
.strip-num {
  font-size: 11px;
  color: var(--fg-faint);
  margin-bottom: 24px;
}
.strip-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.strip-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.strip-tags {
  display: flex;
  gap: 6px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.strip-tags span {
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 4px 8px;
  background: var(--bg-tint);
  border-radius: 4px;
  color: var(--fg-muted);
}

/* ───────────── Who (quote + stats) ───────────── */
.who {
  padding: var(--pad-section) var(--pad-section-x);
  background: var(--ink);
  color: var(--paper);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
[data-theme="dark"] .who { background: #050505; }

.who-quote { max-width: 620px; }
.quote-mark {
  font-family: "Space Grotesk", sans-serif;
  font-size: 96px;
  line-height: 0.6;
  color: var(--coral);
  margin-bottom: 24px;
}
[data-accent="teal"] .quote-mark { color: var(--teal); }
[data-accent="gradient"] .quote-mark {
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.who-quote p {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-wrap: balance;
}
.who-attr {
  font-size: 10.5px;
  color: rgba(250,250,250,0.55);
  margin-top: 28px;
}
.who-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.who-stat { border-top: 1px solid rgba(250,250,250,0.12); padding-top: 16px; }
.who-stat:first-child { border-top: 1px solid rgba(250,250,250,0.25); }
.who-stat-n {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.who-stat-l {
  font-size: 10px;
  color: rgba(250,250,250,0.55);
  margin-top: 8px;
}

/* ───────── general flyer sample ───────── */
.lo-sample.general { padding: 24px; }
.lo-gen-prompt {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; color: #555;
}
.lo-gen-caret {
  width: 4px; height: 14px;
  display: inline-block;
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.lo-gen-divider {
  height: 1px;
  background: #EFEAE5;
  margin: 16px 0;
}
.lo-gen-eyebrow { font-size: 9px; letter-spacing: 0.14em; }
.lo-gen-headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 10px;
}
.lo-gen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-top: 18px;
}
.lo-gen-step {
  padding: 12px 10px;
  background: #FAF7F4;
  border-radius: 6px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
}
.lo-gen-step .mono {
  font-family: "JetBrains Mono", monospace;
  font-size: 8px;
  color: #999;
  letter-spacing: 0.12em;
  font-weight: 400;
  margin-bottom: 4px;
  display: block;
}

/* ───────── property site sample ───────── */
.lo-sample.propsite { padding: 0; }
.lo-prop-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  background: #F0EBE6;
  font-size: 9px;
  color: #777;
  border-bottom: 1px solid #E5DFD8;
}
.lo-prop-dot {
  width: 7px; height: 7px;
  background: #D5CDC4;
  border-radius: 50%;
}
.lo-prop-url { margin-left: 6px; letter-spacing: 0.04em; }
.lo-prop-hero { height: 130px; overflow: hidden; }
.lo-prop-meta { padding: 14px 16px 10px; }
.lo-prop-addr {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.lo-prop-row {
  display: flex; gap: 6px;
  margin-top: 4px;
  font-size: 9px;
  color: #777;
  letter-spacing: 0.06em;
}
.lo-prop-tabs {
  display: flex;
  gap: 16px;
  padding: 12px 16px 14px;
  border-top: 1px solid #EFEAE5;
  font-size: 9px;
  color: #999;
  letter-spacing: 0.1em;
}
.lo-prop-tabs span.active {
  border-bottom: 2px solid;
  padding-bottom: 4px;
  font-weight: 600;
}

/* ───────── open house sample ───────── */
.lo-sample.openhouse { padding: 0; }
.lo-open-band {
  padding: 22px 24px 28px;
  color: white;
}
.lo-open-eyebrow { font-size: 9px; letter-spacing: 0.16em; opacity: 0.9; margin-bottom: 12px; }
.lo-open-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.lo-open-body { padding: 18px 24px 22px; }
.lo-open-addr {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lo-open-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid #EFEAE5;
  border-bottom: 1px solid #EFEAE5;
}
.lo-open-stat {
  padding: 12px 8px;
  border-right: 1px solid #EFEAE5;
}
.lo-open-stat:last-child { border-right: none; }
.lo-open-stat .mono { font-size: 8px; letter-spacing: 0.12em; color: #999; margin-bottom: 4px; }
.lo-open-stat b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.lo-open-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}
.lo-open-qr {
  background: white;
  padding: 4px;
  border: 1px solid #EFEAE5;
  border-radius: 4px;
  display: inline-flex;
}
.lo-open-qr-label { font-size: 9px; color: #777; letter-spacing: 0.1em; line-height: 1.4; }

/* ───────── For Loan Officers ───────── */
.lo-section {
  padding: var(--pad-section) var(--pad-section-x);
  border-top: 1px solid var(--border);
  max-width: 1440px;
  margin: 0 auto;
}
.lo-head { max-width: 720px; margin-bottom: 56px; }
.lo-eyebrow { font-size: 10.5px; color: var(--fg-muted); margin-bottom: 16px; }
.lo-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.lo-h2-em {
  background-image: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}
.lo-sub {
  margin-top: 20px;
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 60ch;
  text-wrap: pretty;
}

.lo-tabs {
  display: flex;
  gap: 4px;
  padding: 6px;
  background: var(--bg-tint);
  border-radius: 999px;
  margin-bottom: 40px;
  overflow-x: auto;
  width: fit-content;
  max-width: 100%;
}
.lo-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--fg-muted);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.lo-tab.active {
  background: var(--bg-elev);
  color: var(--fg);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}
.lo-tab-num { font-size: 9px; color: var(--fg-faint); }
.lo-tab.active .lo-tab-num { color: var(--coral); }

.lo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 48px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  animation: lo-fade 0.4s ease;
}
@keyframes lo-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.lo-body-eyebrow { font-size: 10px; color: var(--fg-muted); margin-bottom: 14px; }
.lo-body-headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}
.lo-body-copy {
  margin-top: 16px;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.55;
}
.lo-body-list {
  list-style: none;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lo-body-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.lo-bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.lo-body-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.lo-sample {
  width: 100%;
  max-width: 360px;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(10,10,10,0.06);
  box-shadow: 0 30px 60px -25px rgba(10,10,10,0.25);
  color: var(--ink);
}
.lo-sample-band {
  padding: 28px 24px 32px;
  color: white;
}
.lo-sample-eyebrow { font-size: 9px; opacity: 0.85; letter-spacing: 0.14em; margin-bottom: 12px; }
.lo-sample-headline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.lo-sample-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
}
.lo-sample-people { display: flex; }
.lo-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--ink);
  border: 2px solid white;
}
.lo-avatar.overlap { margin-left: -10px; }
.lo-sample-meta { font-size: 9px; line-height: 1.6; color: #555; }

/* product flyer rows */
.lo-sample-rows { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.lo-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #EFEAE5;
  border-radius: 8px;
  background: #FCFAF7;
}
.lo-row.featured { border-width: 2px; background: white; }
.lo-row-tag { font-size: 9px; letter-spacing: 0.1em; color: #777; }
.lo-row-rate {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-align: center;
}
.lo-yr1 { font-size: 9px; color: #999; margin-left: 4px; font-weight: 400; }
.lo-row-mo { font-size: 10px; letter-spacing: 0.04em; color: #555; text-align: right; }
.lo-sample-disclosure {
  padding: 12px 20px 18px;
  font-size: 8px;
  letter-spacing: 0.08em;
  color: #999;
  text-align: center;
}

/* social */
.lo-sample.social {
  display: flex;
  gap: 8px;
  padding: 14px;
  background: var(--bg-tint);
  box-shadow: 0 30px 60px -30px rgba(10,10,10,0.2);
}
.lo-social-tile {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.lo-social-tile.primary {
  flex: 1.2;
  aspect-ratio: 1 / 1;
  padding: 18px;
  color: white;
}
.lo-social-eyebrow { font-size: 9px; opacity: 0.9; letter-spacing: 0.14em; }
.lo-social-rate {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.lo-social-rate span { font-size: 28px; }
.lo-social-foot { font-size: 9px; opacity: 0.85; letter-spacing: 0.12em; }
.lo-social-stack { flex: 0.8; display: flex; flex-direction: column; gap: 8px; }
.lo-social-tile.sm {
  flex: 1;
  background: white;
  padding: 8px;
  position: relative;
}
.lo-tile-label { font-size: 8px; color: #999; letter-spacing: 0.1em; }
.lo-tile-bg {
  flex: 1;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: var(--ink);
  margin-top: 4px;
}

/* daily */
.lo-sample.daily { padding: 18px 18px 14px; display: flex; flex-direction: column; gap: 8px; }
.lo-daily-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 8.5px; color: #777; letter-spacing: 0.12em;
  padding-bottom: 8px;
  border-bottom: 1px solid #EFEAE5;
}
.lo-daily-pulse { width: 7px; height: 7px; border-radius: 50%; }
.lo-daily-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed #EFEAE5;
}
.lo-daily-item:last-child { border-bottom: none; }
.lo-daily-tag {
  font-size: 8px;
  letter-spacing: 0.14em;
  padding: 4px 0;
  text-align: center;
  border: 1px solid #DCD5CD;
  border-radius: 3px;
  color: #777;
  font-weight: 500;
}
.lo-daily-content { min-width: 0; }
.lo-daily-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--ink);
}
.lo-daily-meta { font-size: 8px; color: #999; letter-spacing: 0.1em; margin-top: 3px; }
.lo-daily-spark.inline { margin-top: 4px; opacity: 0.85; }
.lo-daily-item.market .lo-daily-content { display: flex; flex-direction: column; gap: 2px; }

/* occasion */
.lo-sample.occasion { padding: 28px 24px; text-align: center; }
.lo-occasion-cake {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  font-weight: 700;
}
.lo-occasion-text { margin-top: 18px; }
.lo-occasion-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lo-occasion-sub { font-size: 9px; color: #777; letter-spacing: 0.1em; margin-top: 8px; }
.lo-occasion-foot {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #EFEAE5;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #555;
}

/* volume strip */
.lo-volume {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.lo-volume-stat {
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.lo-volume-stat:last-child { border-right: none; }
.lo-volume-stat:first-child { padding-left: 0; }
.lo-volume-n {
  font-family: "Space Grotesk", sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.lo-volume-l {
  font-size: 9.5px;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* ───────────── Integrations ───────────── */
.int-section {
  padding: var(--pad-section) var(--pad-section-x);
  background: var(--ink);
  color: var(--paper);
}
[data-theme="dark"] .int-section { background: #050505; }
.int-head { max-width: 720px; margin-bottom: 56px; }
.int-eyebrow {
  font-size: 10.5px;
  color: rgba(250,250,250,0.55);
  margin-bottom: 16px;
}
.int-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.int-sub {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(250,250,250,0.65);
  line-height: 1.55;
  max-width: 56ch;
  text-wrap: pretty;
}
.int-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.int-group {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 24px;
}
.int-group-head { margin-bottom: 18px; }
.int-group-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.int-group-note {
  font-size: 9.5px;
  color: rgba(250,250,250,0.5);
  margin-top: 6px;
}
.int-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.int-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
}
.int-item:first-child { border-top: none; }
.int-dot { width: 6px; height: 6px; border-radius: 50%; }
.int-name { color: rgba(250,250,250,0.92); }
.int-tag {
  font-size: 8.5px;
  letter-spacing: 0.12em;
  color: rgba(250,250,250,0.45);
  padding: 3px 7px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
}
.int-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: rgba(250,250,250,0.45);
}

/* ───────────── Wordmark picker ───────────── */.wm-section {
  padding: var(--pad-section) var(--pad-section-x);
  border-top: 1px solid var(--border);
  max-width: 1440px;
  margin: 0 auto;
}
.wm-picker-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}
.wm-picker-eyebrow {
  font-size: 10.5px;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.wm-picker-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.wm-picker-sub {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
  max-width: 44ch;
  text-wrap: pretty;
}
.wm-picker-label {
  font-size: 9.5px;
  color: var(--fg-faint);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wm-picker-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.wm-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.wm-picker-grid.lockups {
  grid-template-columns: repeat(2, 1fr);
}
.wm-tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 36px 28px 24px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  min-height: 160px;
}
.wm-tile.lockup-tile {
  min-height: 180px;
  padding: 40px 32px 28px;
}
.wm-tile:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.wm-tile.active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}
[data-theme="dark"] .wm-tile.active {
  border-color: var(--paper);
  box-shadow: 0 0 0 1px var(--paper);
}
.wm-tile-note {
  font-size: 9.5px;
  color: var(--fg-muted);
}

.wm-picker-darks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}
.wm-darks-tile {
  padding: 36px 32px 24px;
  background: var(--ink);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  min-height: 140px;
}
.wm-darks-tile.gradient-bg {
  background: linear-gradient(135deg, #E8573A 0%, #2EBDBD 100%);
}

/* ───────────── Sibling section ───────────── */
.sibling {
  padding: var(--pad-section) var(--pad-section-x);
  background: var(--bg-tint);
  border-top: 1px solid var(--border);
}
[data-theme="dark"] .sibling { background: var(--bg-elev); }

.sibling-inner { max-width: 1100px; margin: 0 auto; }
.sibling-eyebrow {
  font-size: 10.5px;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 48px;
}
.sibling-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.sibling-card {
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-height: 200px;
}
.sibling-name.myloaniq {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1;
}
.ml-my { color: var(--fg-faint); font-weight: 400; }
.ml-loan { color: var(--fg); font-weight: 700; margin-left: 3px; }
.ml-iq { color: var(--teal); font-weight: 700; margin-left: 2px; }

.sibling-tag {
  font-size: 10px;
  color: var(--fg-muted);
  margin-top: 16px;
  margin-bottom: 18px;
}
.sibling-card p {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
}
.sibling-x {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--fg-faint);
}
.sibling-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 10px;
  color: var(--fg-muted);
}

/* ───────────── Footer ───────────── */
.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px var(--pad-section-x);
  border-top: 1px solid var(--border);
  font-size: 11px;
  flex-wrap: wrap;
  gap: 16px;
}
.foot-left { display: flex; align-items: center; gap: 12px; }
.foot-tag { font-size: 9.5px; color: var(--fg-muted); }
.foot-mid { display: flex; align-items: center; gap: 14px; color: var(--fg-muted); }
.foot-mid a:hover { color: var(--fg); }
.foot-dot { color: var(--fg-faint); }
.foot-right { color: var(--fg-faint); font-size: 9.5px; }

/* ───────────── Responsive ───────────── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip-card { border-right: none; border-bottom: 1px solid var(--border); }
  .strip-card:last-child { border-bottom: none; }
  .who { grid-template-columns: 1fr; gap: 48px; }
  .sibling-row { grid-template-columns: 1fr; }
  .sibling-x { transform: rotate(90deg); justify-self: center; }
  .wm-picker-grid { grid-template-columns: 1fr; }
  .wm-picker-grid.lockups { grid-template-columns: 1fr; }
  .wm-picker-darks { grid-template-columns: 1fr; }
  .wm-picker-head { grid-template-columns: 1fr; gap: 16px; }
  .lo-body { grid-template-columns: 1fr; gap: 32px; padding: 32px; }
  .lo-volume { grid-template-columns: 1fr; gap: 24px; }
  .lo-volume-stat { border-right: none; padding-left: 0; }
  .int-grid { grid-template-columns: 1fr 1fr; }
  .topnav-right .nav-link { display: none; }
}
@media (max-width: 640px) {
  .int-grid { grid-template-columns: 1fr; }
}
