/* =====================================================================
 Boulevard landing. Premium redesign.
 Dark canvas, gold accent, serif display headlines (Fraunces), Inter body.
 Inspired by modern premium product pages: Linear, Vercel, Apple.
 ===================================================================== */

:root {
 --bg: #0a0a0c;
 --bg-2: #0d0d10;
 --bg-elev: #111114;
 --surface: #15151a;
 --surface-2: #1c1c22;
 --surface-3: #23232a;
 --text: #ffffff;
 --muted: rgba(255, 255, 255, 0.66);
 --dim: rgba(255, 255, 255, 0.44);
 --faint: rgba(255, 255, 255, 0.28);
 --border: rgba(255, 255, 255, 0.08);
 --border-strong: rgba(255, 255, 255, 0.16);
 --gold: #c8ae7a;
 --gold-hi: #e3cb98;
 --gold-deep: #a48a5c;
 --gold-glow: rgba(200, 174, 122, 0.18);
 --gold-glow-strong: rgba(200, 174, 122, 0.35);

 --serif: "Fraunces", ui-serif, Georgia, serif;
 --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

 /* LIGHT-SURFACE PALETTE
    Used by .section-light. Same Boulevard cream that surrounds the chrome
    logo on the app icon. Pairs with --ink for dark text on cream.
    Introducing cream sections breaks the all-dark monotony and gives the
    eye a rest. */
 --cream: #f0e8d7;
 --cream-deep: #e6dcc6;
 --ink: #1a1408;
 --ink-muted: rgba(26, 20, 8, 0.66);
 --ink-dim: rgba(26, 20, 8, 0.44);
 --ink-border: rgba(26, 20, 8, 0.10);
 --ink-border-strong: rgba(26, 20, 8, 0.22);

 --nav-h: 68px;
 --radius-sm: 10px;
 --radius-md: 16px;
 --radius-lg: 22px;
 --radius-xl: 28px;

 --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; padding: 0; }
a { text-decoration: none; color: inherit; transition: color .18s var(--ease), opacity .18s var(--ease); }
::selection { background: var(--gold-glow-strong); color: var(--gold-hi); }

.text-gold { color: var(--gold); }
.text-gold-italic { color: var(--gold); font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }

.container {
 width: 100%;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 32px;
}
@media (max-width: 640px) {
 .container { padding: 0 20px; }
}

/* =====================================================================
 EYEBROW
 ===================================================================== */

.eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 color: var(--dim);
 font-size: 11.5px;
 font-weight: 600;
 letter-spacing: 3.2px;
 text-transform: uppercase;
 margin: 0 0 18px;
}
.eyebrow-gold { color: var(--gold); }
.eyebrow-gold::before {
 content: "";
 width: 18px;
 height: 1px;
 background: currentColor;
 opacity: 0.7;
}

/* Warning eyebrow. Used in hero. Pulsing gold dot + "Heads up" text. */
.eyebrow-warning { color: var(--gold); letter-spacing: 2.8px; }
.warn-dot {
 display: inline-block;
 width: 8px;
 height: 8px;
 border-radius: 999px;
 background: var(--gold);
 box-shadow: 0 0 0 4px rgba(200, 174, 122, 0.18);
 animation: warn-pulse 1.8s ease-in-out infinite;
}
@keyframes warn-pulse {
 0%, 100% { box-shadow: 0 0 0 4px rgba(200, 174, 122, 0.18); }
 50% { box-shadow: 0 0 0 7px rgba(200, 174, 122, 0.06); }
}

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

.nav {
 position: sticky;
 top: 0;
 z-index: 80;
 height: var(--nav-h);
 background: rgba(10, 10, 12, 0.72);
 backdrop-filter: saturate(160%) blur(20px);
 -webkit-backdrop-filter: saturate(160%) blur(20px);
 border-bottom: 1px solid var(--border);
}
.nav-inner {
 height: 100%;
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 32px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
}
@media (max-width: 640px) { .nav-inner { padding: 0 20px; } }

.brand {
 display: inline-flex;
 align-items: center;
 gap: 12px;
}
.brand-mark {
 width: 36px;
 height: 36px;
 background: url('/icons/logo-transparent-128.png') center / contain no-repeat;
 display: inline-block;
 /* Text inside the span is the accessible name. Visually hidden. */
 text-indent: -9999em;
 overflow: hidden;
 flex-shrink: 0;
 filter: drop-shadow(0 4px 14px rgba(200, 174, 122, 0.18));
}
.brand-word {
 color: var(--text);
 font-family: var(--serif);
 font-weight: 600;
 font-size: 18px;
 letter-spacing: -0.3px;
}

.nav-menu {
 display: flex;
 align-items: center;
 gap: 32px;
}
.nav-menu a {
 color: var(--muted);
 font-size: 14px;
 font-weight: 500;
 letter-spacing: 0.1px;
}
.nav-menu a:hover { color: var(--text); }
.nav-menu .nav-cta {
 color: #1a1408;
 background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 100%);
 padding: 9px 16px;
 border-radius: 999px;
 font-weight: 600;
 letter-spacing: 0;
 box-shadow: 0 6px 18px rgba(200, 174, 122, 0.22);
}
.nav-menu .nav-cta:hover {
 filter: brightness(1.06);
 transform: translateY(-1px);
}

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

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

.hero {
 position: relative;
 padding: 96px 0 120px;
 overflow: hidden;
}
.hero-bg {
 position: absolute;
 inset: -300px 0 auto 0;
 top: -260px;
 height: 1000px;
 background:
 radial-gradient(40% 50% at 70% 40%, var(--gold-glow) 0%, transparent 60%),
 radial-gradient(45% 55% at 25% 65%, rgba(140, 100, 200, 0.06) 0%, transparent 60%);
 pointer-events: none;
 z-index: 0;
}
.hero-grid {
 position: absolute;
 inset: 0;
 background-image:
 linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
 linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
 background-size: 56px 56px;
 mask-image: radial-gradient(60% 50% at 50% 30%, #000 0%, transparent 80%);
 -webkit-mask-image: radial-gradient(60% 50% at 50% 30%, #000 0%, transparent 80%);
 pointer-events: none;
 z-index: 0;
}

.hero-container {
 position: relative;
 z-index: 1;
 display: grid;
 grid-template-columns: 1.05fr 1fr;
 gap: 80px;
 align-items: center;
}

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

.hero-title {
  font-family: var(--sans);
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 800;
  letter-spacing: -3.2px;
  line-height: 0.98;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero-title em, .hero-title i {
  color: var(--gold);
  font-style: normal; /* italic was a Fraunces vestige — same Inter weight reads cleaner. */
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

/* "Free download" line under the CTAs — replaces the old multi-bullet
   trust strip. One line, gold dot, says exactly what matters. */
.hero-freetag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 24px 0 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--muted);
}
.hero-freetag .dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 174, 122, 0.14);
}

/* Three-line "You might..." headline. Smaller than the single-line
   variant so all three statements fit cleanly and each one reads as a
   complete idea on its own row. */
.hero-title-stack {
  font-size: clamp(36px, 5.2vw, 64px);
  letter-spacing: -1.6px;
  line-height: 1.06;
  text-wrap: pretty;
}
.hero-title-stack .line {
  display: block;
  margin-bottom: 6px;
}
.hero-title-stack .line:last-child { margin-bottom: 0; }
.hero-title-stack em { color: var(--gold); font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }
@media (max-width: 640px) {
  .hero-title-stack { font-size: 30px; letter-spacing: -0.9px; line-height: 1.1; }
}

.hero-tag {
 font-size: clamp(16px, 1.4vw, 18px);
 color: var(--muted);
 margin: 0 0 36px;
 max-width: 520px;
 line-height: 1.6;
}

.cta-row {
 display: flex;
 align-items: center;
 flex-wrap: wrap;
 gap: 14px;
 margin: 0 0 32px;
}
.cta-row-center { justify-content: center; }

.badge {
 display: inline-block;
 border-radius: 8px;
 transition: transform .2s var(--ease), filter .2s var(--ease), box-shadow .2s var(--ease);
}
.badge svg {
 width: 168px;
 height: auto;
 display: block;
}
.badge:hover {
 transform: translateY(-2px);
 filter: brightness(1.08);
 box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

/* Store badges, not shipped yet — dimmed with a "Coming soon" pill. */
.badge-soon {
 position: relative;
 cursor: default;
}
.badge-soon svg {
 opacity: 0.4;
 filter: grayscale(1);
}
.badge-soon:hover {
 transform: none;
 filter: none;
 box-shadow: none;
}
.soon-tag {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 padding: 4px 11px;
 border-radius: 999px;
 background: rgba(18, 18, 22, 0.94);
 border: 1px solid var(--border-strong);
 color: var(--text);
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 0.3px;
 white-space: nowrap;
 pointer-events: none;
}

/* Web player is the live CTA — gold ring to make it the focal point. */
.badge-primary {
 border-radius: 10px;
 box-shadow: 0 0 0 2px var(--gold), 0 10px 30px rgba(200, 174, 122, 0.3);
}
.badge-primary:hover {
 transform: translateY(-2px);
 filter: brightness(1.06);
 box-shadow: 0 0 0 2px var(--gold-hi), 0 14px 36px rgba(200, 174, 122, 0.42);
}

.hero-strip {
 list-style: none;
 margin: 0;
 padding: 0;
 display: flex;
 flex-wrap: wrap;
 gap: 22px 26px;
 font-size: 13.5px;
 color: var(--dim);
}
.hero-strip li {
 display: inline-flex;
 align-items: center;
 gap: 9px;
}
.dot {
 width: 6px;
 height: 6px;
 border-radius: 999px;
 background: var(--gold);
 box-shadow: 0 0 8px var(--gold-glow-strong);
}

/* Hero phone stack */
.hero-visual {
 position: relative;
 height: 620px;
 display: flex;
 align-items: center;
 justify-content: center;
}
.hero-glow {
 position: absolute;
 width: 540px;
 height: 540px;
 border-radius: 50%;
 background: radial-gradient(50% 50% at 50% 50%, var(--gold-glow-strong) 0%, transparent 70%);
 filter: blur(20px);
 z-index: 0;
}
.phone-stack {
 position: relative;
 width: 320px;
 height: 100%;
 z-index: 1;
}
/* The source images are 553x1200 marketing tiles with a cream card around
 a phone at (62,261)-(489,1186). 428x926 of pure device. The container
 is set to that exact aspect, and the image inside is absolute-positioned
 and scaled so the phone region fills the container precisely. The cream
 tile, BOULEVARD wordmark, and marketing headline are all clipped out. */
.phone {
 position: relative;
 /* Aspect matches the extracted raw screens (~950 x 2109 = 0.450). */
 aspect-ratio: 950 / 2109;
 border-radius: 38px;
 overflow: hidden;
 /* Subtle CSS-only "screen on a device" treatment: dark drop shadow
    suggests depth, inset highlight gives it a faint phone-bezel rim,
    inset bottom shadow grounds it. No baked-in phone photo any more. */
 box-shadow:
 0 30px 60px -10px rgba(0, 0, 0, 0.6),
 0 18px 36px -12px rgba(0, 0, 0, 0.45),
 inset 0 0 0 1.5px rgba(255, 255, 255, 0.10),
 inset 0 1px 0 rgba(255, 255, 255, 0.18);
 background: #000;
 transition: transform .4s var(--ease);
}
.phone img {
 /* Raw extracted app screens (already cropped to the phone screen rect).
    No over-zoom, no positioning tricks — just fit-cover the frame. */
 width: 100%;
 height: 100%;
 max-width: none;
 object-fit: cover;
 object-position: center top;
 display: block;
}
.phone-stack .phone {
 position: absolute;
 width: 260px;
}
.phone-back-left {
 top: 60px;
 left: -110px;
 transform: rotate(-9deg);
 filter: brightness(0.72) saturate(0.9);
 z-index: 1;
}
.phone-back-right {
 top: 60px;
 right: -110px;
 transform: rotate(9deg);
 filter: brightness(0.72) saturate(0.9);
 z-index: 1;
}
.phone-front {
 top: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 280px !important;
 z-index: 2;
 border-radius: 36px;
}
.phone-stack:hover .phone-back-left { transform: rotate(-12deg) translateX(-8px); }
.phone-stack:hover .phone-back-right { transform: rotate(12deg) translateX(8px); }

@media (max-width: 960px) {
 .hero { padding: 64px 0 80px; }
 .hero-container {
 grid-template-columns: 1fr;
 gap: 56px;
 text-align: center;
 }
 .hero-copy { margin: 0 auto; }
 .hero-strip { justify-content: center; }
 .cta-row { justify-content: center; }
 .hero-visual { height: 520px; }
}
@media (max-width: 640px) {
 .hero { padding: 48px 0 64px; }
 .badge svg { width: 150px; }
 .hero-visual { height: 440px; }
 .phone-stack { width: 240px; }
 .phone-stack .phone { width: 200px; }
 .phone-front { width: 220px !important; }
 .phone-back-left { left: -80px; }
 .phone-back-right { right: -80px; }
}

/* =====================================================================
 GENRE MARQUEE
 ===================================================================== */

.marquee {
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
 background: var(--bg-2);
 overflow: hidden;
 padding: 22px 0;
 mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
 -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track {
 display: inline-flex;
 white-space: nowrap;
 align-items: center;
 gap: 24px;
 animation: marquee 42s linear infinite;
 font-family: var(--serif);
 font-weight: 400;
 font-style: italic;
 font-size: 18px;
 color: var(--faint);
}
.marquee-track span:not(:nth-child(2n)) { color: var(--muted); }
@keyframes marquee {
 0% { transform: translateX(0); }
 100% { transform: translateX(-50%); }
}

/* =====================================================================
 SECTION TITLES (shared)
 ===================================================================== */

.section-title {
 font-family: var(--sans);
 font-size: clamp(32px, 4.4vw, 56px);
 font-weight: 800;
 letter-spacing: -1.4px;
 line-height: 1.05;
 margin: 0 0 16px;
 max-width: 18ch;
}
.section-sub {
 color: var(--muted);
 font-size: 17px;
 max-width: 580px;
 margin: 0 0 48px;
 line-height: 1.55;
}

/* =====================================================================
 FEATURES
 ===================================================================== */

.features {
 padding: 120px 0 80px;
 position: relative;
}
.features-intro {
 text-align: center;
 margin-bottom: 80px;
}
.features-intro .section-title { margin-left: auto; margin-right: auto; }
.features-intro .section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.features-intro .eyebrow { justify-content: center; }
.features-intro .eyebrow::before { display: none; }

.feature {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 80px;
 align-items: center;
 padding: 60px 0;
 border-top: 1px solid var(--border);
}
.feature:first-of-type { border-top: 0; }
.feature-reverse .feature-copy { order: 2; }
.feature-reverse .feature-visual { order: 1; }

.feature-copy { max-width: 520px; }
.feature-title {
 font-family: var(--sans);
 font-size: clamp(28px, 3.4vw, 44px);
 font-weight: 800;
 letter-spacing: -1.2px;
 line-height: 1.05;
 margin: 0 0 18px;
}
.feature-body {
 color: var(--muted);
 font-size: 17px;
 line-height: 1.6;
 margin: 0 0 22px;
}
.feature-bullets {
 list-style: none;
 padding: 0;
 margin: 0;
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.feature-bullets li {
 position: relative;
 padding-left: 26px;
 color: var(--text);
 font-size: 15px;
}
.feature-bullets li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 9px;
 width: 14px;
 height: 1px;
 background: var(--gold);
}

.feature-visual {
 display: flex;
 justify-content: center;
 align-items: center;
 min-height: 480px;
 position: relative;
}
.feature-visual::before {
 content: "";
 position: absolute;
 width: 340px;
 height: 340px;
 border-radius: 50%;
 background: radial-gradient(50% 50% at 50% 50%, var(--gold-glow) 0%, transparent 70%);
 filter: blur(10px);
 z-index: 0;
}
.feature-visual .phone {
 position: relative;
 z-index: 1;
 width: 260px;
}
.phone-tilt-r { transform: rotate(5deg); }
.phone-tilt-l { transform: rotate(-5deg); }

@media (max-width: 880px) {
 .features { padding: 80px 0 40px; }
 .features-intro { margin-bottom: 48px; }
 .feature {
 grid-template-columns: 1fr;
 gap: 48px;
 padding: 48px 0;
 }
 .feature-reverse .feature-copy { order: 1; }
 .feature-reverse .feature-visual { order: 2; }
 .feature-copy { margin: 0 auto; text-align: center; }
 .feature-copy .eyebrow { justify-content: center; }
 .feature-copy .eyebrow::before { display: none; }
 .feature-bullets li { text-align: left; }
 .feature-bullets { max-width: 280px; margin: 0 auto; }
 .feature-visual { min-height: 380px; }
 .feature-visual .phone { width: 220px; }
}

/* =====================================================================
 LIVE PLAYER
 ===================================================================== */

.player {
 padding: 100px 0;
 border-top: 1px solid var(--border);
 background: var(--bg-2);
}

.tracks {
 display: grid;
 grid-template-columns: 1fr;
 gap: 12px;
}
@media (min-width: 720px) {
 .tracks { grid-template-columns: 1fr 1fr; gap: 14px; }
}

.track-skeleton {
 height: 92px;
 border-radius: 16px;
 background: linear-gradient(90deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
 background-size: 200% 100%;
 animation: shimmer 1.6s linear infinite;
 border: 1px solid var(--border);
}
@keyframes shimmer {
 0% { background-position: 100% 0; }
 100% { background-position: -100% 0; }
}

.track {
 display: flex;
 align-items: center;
 gap: 16px;
 padding: 12px 16px 12px 12px;
 text-align: left;
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: 16px;
 width: 100%;
 transition: background .18s var(--ease), border-color .18s var(--ease), transform .12s var(--ease);
}
.track:hover {
 background: var(--surface-2);
 border-color: var(--border-strong);
 transform: translateY(-1px);
}
.track:active { transform: scale(0.995); }

.track-cover {
 width: 68px;
 height: 68px;
 border-radius: 12px;
 background-color: var(--surface-2);
 background-size: cover;
 background-position: center;
 position: relative;
 flex-shrink: 0;
 overflow: hidden;
}
.track-rank {
 position: absolute;
 top: 6px;
 left: 6px;
 font-size: 10px;
 font-weight: 700;
 letter-spacing: 1px;
 color: #fff;
 padding: 2px 6px;
 background: rgba(0, 0, 0, 0.6);
 border-radius: 999px;
 font-variant-numeric: tabular-nums;
}
.track-play, .track-pause {
 position: absolute;
 inset: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 100%);
 opacity: 0;
 transition: opacity .18s var(--ease);
}
.track:hover .track-play { opacity: 1; }
.track.is-playing .track-pause { opacity: 1; }
.track.is-playing .track-play { opacity: 0; }
.track:hover.is-playing .track-play { opacity: 0; }

.track-meta { min-width: 0; flex: 1; }
.track-title {
 color: var(--text);
 font-size: 15.5px;
 font-weight: 600;
 letter-spacing: -0.2px;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}
.track-sub {
 color: var(--muted);
 font-size: 13px;
 margin-top: 2px;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}
.track.is-playing { border-color: var(--gold); }
.track.is-playing .track-title { color: var(--gold-hi); }

@media (max-width: 640px) {
 .player { padding: 72px 0; }
 .track-cover { width: 60px; height: 60px; }
 .track { padding: 10px 14px 10px 10px; gap: 14px; }
}

/* =====================================================================
 HOW IT WORKS
 ===================================================================== */

.how {
 padding: 120px 0;
 background: var(--bg);
 border-top: 1px solid var(--border);
}

.steps {
 list-style: none;
 padding: 0;
 margin: 48px 0 0;
 display: grid;
 grid-template-columns: 1fr;
 gap: 18px;
 counter-reset: step;
}
@media (min-width: 880px) {
 .steps { grid-template-columns: repeat(3, 1fr); gap: 22px; }
}

.steps li {
 background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 36px 30px 32px;
 position: relative;
 overflow: hidden;
 transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.steps li:hover {
 border-color: var(--border-strong);
 transform: translateY(-2px);
}
.steps li::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 1px;
 background: linear-gradient(90deg, transparent, var(--gold-glow-strong), transparent);
 opacity: 0.6;
}
.step-num {
 display: inline-block;
 font-family: var(--serif);
 font-size: 13px;
 font-weight: 600;
 letter-spacing: 2px;
 color: var(--gold);
 margin-bottom: 22px;
 font-variant-numeric: tabular-nums;
}
.steps h3 {
 margin: 0 0 10px;
 font-family: var(--sans);
 font-size: 24px;
 font-weight: 700;
 letter-spacing: -0.6px;
 line-height: 1.1;
}
.steps p {
 margin: 0;
 color: var(--muted);
 font-size: 15px;
 line-height: 1.6;
}

@media (max-width: 640px) {
 .how { padding: 72px 0; }
}

/* =====================================================================
   LIGHT-SECTION MODIFIER (cream surface, dark text)
   Apply to a <section> to flip its palette. Used on .define and other
   sections that benefit from visual break + maximum readability.
   ===================================================================== */

.section-light {
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
}
.section-light .eyebrow { color: var(--gold-deep); }
.section-light .eyebrow-gold { color: var(--gold-deep); }
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: var(--ink); }
.section-light em,
.section-light .text-gold-italic { color: var(--gold-deep); }
.section-light p { color: var(--ink-muted); }
.section-light strong { color: var(--ink); }
.section-light a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-decoration-color: rgba(164, 138, 92, 0.40);
  text-underline-offset: 3px;
}
.section-light a:hover { color: var(--ink); }
.section-light .define-facts {
  background: var(--ink-border);
  border-color: var(--ink-border-strong);
}
.section-light .define-facts > div { background: var(--cream-deep); }
.section-light .define-facts dt { color: var(--gold-deep); }
.section-light .define-facts dd { color: var(--ink); }
.section-light .define-facts dd a { color: var(--gold-deep); }

/* =====================================================================
   DEFINE BLOCK ("What is Boulevard?")
   Shaped like a Wikipedia / answer-box card. Google snippets and AI
   answer engines lift this kind of structured Q&A verbatim.
   ===================================================================== */

.define {
  padding: 90px 0;
  /* Background + borders come from .section-light when paired. */
}
.define-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.define-inner .eyebrow { justify-content: center; margin-bottom: 22px; }
.define-inner .eyebrow::before { display: none; }

.define-answer {
  font-family: var(--sans);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.18;
  color: var(--text);
  margin: 0 auto 26px;
  max-width: 22ch;
  text-wrap: balance;
}
.define-answer em { color: var(--gold); font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }

.define-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 36px;
}
.define-body strong { color: var(--text); font-weight: 600; }

.define-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  margin: 0 auto;
  max-width: 720px;
}
.define-facts > div {
  background: var(--surface);
  padding: 14px 18px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  align-items: baseline;
}
.define-facts dt {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}
.define-facts dd {
  margin: 0;
  font-size: 14.5px;
  color: var(--text);
}
.define-facts dd a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(200,174,122,0.4); text-underline-offset: 3px; }
.define-facts dd a:hover { color: var(--gold-hi); }
@media (max-width: 720px) {
  .define { padding: 64px 0; }
  .define-facts { grid-template-columns: 1fr; }
  .define-facts > div { grid-template-columns: 1fr; gap: 4px; }
}

/* =====================================================================
 COMPARISON TABLE (Boulevard vs Spotify)
 ===================================================================== */

.compare {
 padding: 120px 0 100px;
 background: var(--bg);
 border-top: 1px solid var(--border);
}
.compare .section-title { max-width: 22ch; }
.compare em { color: var(--gold); font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }

.compare-wrap {
 margin-top: 40px;
 background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 overflow: hidden;
}
.compare-table {
 width: 100%;
 border-collapse: collapse;
 font-size: 15px;
}
.compare-table th,
.compare-table td {
 padding: 14px 18px;
 text-align: left;
 vertical-align: middle;
 border-bottom: 1px solid var(--border);
}
.compare-table thead th {
 background: var(--surface-2);
 font-family: var(--sans);
 font-size: 17px;
 font-weight: 700;
 letter-spacing: -0.3px;
 color: var(--text);
 text-transform: none;
}
.compare-table thead .th-us {
 color: var(--gold-hi);
 background: linear-gradient(180deg, rgba(200,174,122,0.10), rgba(200,174,122,0.04));
}
.compare-table tbody th {
 font-weight: 600;
 color: var(--text);
 font-size: 14.5px;
 background: rgba(255,255,255,0.015);
 width: 32%;
}
.compare-table tbody td {
 color: var(--muted);
}
.compare-table tbody .td-us {
 color: var(--text);
 background: rgba(200,174,122,0.04);
 font-weight: 500;
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-foot {
 margin: 20px 0 0;
 color: var(--dim);
 font-size: 13.5px;
 max-width: 760px;
}
.compare-foot em { color: var(--gold); font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }

@media (max-width: 720px) {
 .compare { padding: 80px 0 64px; }
 .compare-table { font-size: 13.5px; }
 .compare-table th, .compare-table td { padding: 11px 12px; }
 .compare-table thead th { font-size: 15px; }
 .compare-table tbody th { width: 38%; }
}

/* =====================================================================
 ARTICLES TEASER
 ===================================================================== */

.articles-teaser {
 padding: 120px 0 100px;
 background: var(--bg);
 border-top: 1px solid var(--border);
}
.articles-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 22px;
 margin-top: 40px;
}
.article-card {
 display: flex;
 flex-direction: column;
 background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 28px 26px;
 text-decoration: none;
 color: var(--text);
 transition: border-color .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.article-card:hover {
 border-color: var(--border-strong);
 transform: translateY(-3px);
 background: linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
}
.article-tag {
 font-size: 11px;
 font-weight: 600;
 letter-spacing: 2.5px;
 text-transform: uppercase;
 color: var(--gold);
 margin: 0 0 16px;
}
.article-card h3 {
 font-family: var(--sans);
 font-size: 22px;
 font-weight: 700;
 letter-spacing: -0.6px;
 line-height: 1.15;
 margin: 0 0 12px;
 color: var(--text);
}
.article-sub {
 font-size: 14.5px;
 color: var(--muted);
 line-height: 1.55;
 margin: 0 0 22px;
 flex: 1;
}
.article-link {
 font-size: 14px;
 font-weight: 600;
 color: var(--gold);
 letter-spacing: 0.1px;
}
.article-card:hover .article-link { color: var(--gold-hi); }

.articles-foot {
 margin-top: 36px;
 display: flex;
 justify-content: center;
}

@media (max-width: 880px) {
 .articles-grid { grid-template-columns: 1fr; gap: 16px; }
 .articles-teaser { padding: 80px 0 64px; }
}

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

.faq-foot {
 margin: 32px 0 0;
 color: var(--dim);
 font-size: 14.5px;
}
.faq-foot a {
 color: var(--gold);
 text-decoration: underline;
 text-decoration-color: rgba(200, 174, 122, 0.4);
 text-underline-offset: 3px;
}
.faq-foot a:hover { color: var(--gold-hi); }

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

.pricing {
 padding: 80px 0;
 background: var(--bg-2);
 border-top: 1px solid var(--border);
 border-bottom: 1px solid var(--border);
}
.pricing-row {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 22px;
 max-width: 880px;
}
.price-card {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-lg);
 padding: 32px 28px;
 transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.price-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.price-card-premium {
 background:
 linear-gradient(180deg, rgba(200, 174, 122, 0.06) 0%, rgba(200, 174, 122, 0.00) 60%),
 var(--surface);
 border-color: rgba(200, 174, 122, 0.30);
}
.price-card .eyebrow { margin-bottom: 12px; }
.price-card-premium .eyebrow::before { display: none; }
.price-card .eyebrow:not(.eyebrow-gold)::before { display: none; }
.price-amount {
 font-family: var(--sans);
 font-size: 38px;
 font-weight: 700;
 letter-spacing: -1.2px;
 margin: 0 0 22px;
 line-height: 1;
}
.price-amount span {
 font-size: 14px;
 color: var(--dim);
 font-weight: 400;
 letter-spacing: 0;
 margin-left: 6px;
 font-family: var(--sans);
}
.price-list {
 list-style: none;
 padding: 0;
 margin: 0 0 24px;
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.price-list li {
 position: relative;
 padding-left: 24px;
 color: var(--muted);
 font-size: 14.5px;
}
.price-list li::before {
 content: "";
 position: absolute;
 left: 0;
 top: 8px;
 width: 12px;
 height: 1px;
 background: var(--gold);
}
.ghost-cta, .solid-cta {
 display: inline-flex;
 align-items: center;
 gap: 6px;
 padding: 11px 18px;
 border-radius: 999px;
 font-size: 14px;
 font-weight: 600;
 letter-spacing: 0;
 transition: all .18s var(--ease);
}
.ghost-cta {
 color: var(--text);
 border: 1px solid var(--border-strong);
 background: var(--surface-2);
}
.ghost-cta:hover {
 border-color: var(--gold);
 color: var(--gold-hi);
}
.solid-cta {
 color: #1a1408;
 background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 100%);
 box-shadow: 0 8px 22px rgba(200, 174, 122, 0.25);
}
.solid-cta:hover {
 filter: brightness(1.06);
 transform: translateY(-1px);
}

@media (max-width: 720px) {
 .pricing { padding: 56px 0; }
 .pricing-row { grid-template-columns: 1fr; gap: 14px; }
 .price-card { padding: 26px 22px; }
}

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

.faq {
 padding: 120px 0;
 background: var(--bg);
}
.faq .section-title { margin-bottom: 48px; }

.faq-list {
 display: flex;
 flex-direction: column;
 gap: 0;
 max-width: 820px;
 border-top: 1px solid var(--border);
}
.faq-list details {
 border-bottom: 1px solid var(--border);
 padding: 22px 0;
 cursor: pointer;
}
.faq-list summary {
 list-style: none;
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 24px;
 font-family: var(--sans);
 font-size: 19px;
 font-weight: 700;
 letter-spacing: -0.4px;
 color: var(--text);
 position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
 content: "+";
 font-family: var(--sans);
 font-size: 22px;
 font-weight: 300;
 color: var(--gold);
 transition: transform .25s var(--ease);
 line-height: 1;
}
.faq-list details[open] summary::after {
 transform: rotate(45deg);
}
.faq-list details p {
 margin: 14px 0 4px;
 color: var(--muted);
 font-size: 15.5px;
 line-height: 1.65;
 max-width: 680px;
}
.faq-list details p a {
 color: var(--gold);
 text-decoration: underline;
 text-decoration-color: rgba(200, 174, 122, 0.4);
 text-underline-offset: 3px;
}
.faq-list details p a:hover { color: var(--gold-hi); }

@media (max-width: 640px) {
 .faq { padding: 80px 0; }
 .faq-list summary { font-size: 16px; }
}

/* =====================================================================
 DOWNLOAD CTA
 ===================================================================== */

.download {
 position: relative;
 padding: 140px 0;
 text-align: center;
 overflow: hidden;
 border-top: 1px solid var(--border);
}
.download-bg {
 position: absolute;
 inset: 0;
 background:
 radial-gradient(50% 60% at 50% 50%, var(--gold-glow-strong) 0%, transparent 60%),
 radial-gradient(35% 40% at 20% 80%, rgba(140, 100, 200, 0.06) 0%, transparent 60%);
 pointer-events: none;
 z-index: 0;
}
.download-inner { position: relative; z-index: 1; }
.download .eyebrow { justify-content: center; }
.download .eyebrow::before { display: none; }

.cta-title {
 font-family: var(--sans);
 font-size: clamp(40px, 6.5vw, 80px);
 font-weight: 800;
 letter-spacing: -2px;
 line-height: 1.0;
 margin: 0 0 22px;
 max-width: 16ch;
 margin-left: auto;
 margin-right: auto;
}
.cta-sub {
 font-size: 17px;
 color: var(--muted);
 margin: 0 auto 40px;
 max-width: 480px;
}

@media (max-width: 640px) {
 .download { padding: 96px 0; }
}

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

.footer {
 border-top: 1px solid var(--border);
 background: var(--bg-2);
 padding: 60px 0 32px;
 color: var(--dim);
 font-size: 14px;
}
.footer-inner {
 display: grid;
 grid-template-columns: 1.2fr 2fr;
 gap: 48px;
 padding-bottom: 40px;
 border-bottom: 1px solid var(--border);
}
.footer-brand { max-width: 320px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-tag {
 font-family: var(--serif);
 font-style: italic;
 font-size: 16px;
 color: var(--muted);
 margin: 0;
}

.footer-cols {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 28px;
}
.footer-col {
 display: flex;
 flex-direction: column;
 gap: 10px;
}
.footer-col h4 {
 margin: 0 0 6px;
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 2.5px;
 text-transform: uppercase;
 color: var(--text);
}
.footer-col a {
 color: var(--muted);
 font-size: 14px;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 flex-wrap: wrap;
 gap: 12px;
 padding-top: 22px;
 color: var(--faint);
 font-size: 13px;
 letter-spacing: 0.1px;
}

@media (max-width: 880px) {
 .footer-inner { grid-template-columns: 1fr; gap: 32px; }
 .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 480px) {
 .footer-cols { grid-template-columns: 1fr; }
}

/* =====================================================================
 STICKY NOW-PLAYING PILL
 ===================================================================== */

.np {
 position: fixed;
 left: 50%;
 transform: translateX(-50%);
 bottom: 18px;
 z-index: 90;
 display: flex;
 align-items: center;
 gap: 14px;
 padding: 8px 10px 8px 8px;
 background: rgba(20, 20, 24, 0.88);
 backdrop-filter: blur(22px);
 -webkit-backdrop-filter: blur(22px);
 border: 1px solid var(--border-strong);
 border-radius: 999px;
 width: min(calc(100vw - 24px), 440px);
 box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
}
.np-cover {
 width: 44px;
 height: 44px;
 border-radius: 999px;
 background-color: var(--surface-2);
 background-size: cover;
 background-position: center;
 flex-shrink: 0;
}
.np-meta { flex: 1; min-width: 0; }
.np-title {
 color: var(--text);
 font-size: 14px;
 font-weight: 600;
 letter-spacing: -0.1px;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}
.np-sub {
 color: var(--muted);
 font-size: 12px;
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}
.np-btn {
 width: 42px;
 height: 42px;
 border-radius: 999px;
 background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 100%);
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 transition: filter .15s var(--ease), transform .15s var(--ease);
}
.np-btn:hover { filter: brightness(1.08); transform: scale(1.04); }
.np-next {
 width: 34px;
 height: 34px;
 border-radius: 999px;
 background: transparent;
 display: flex;
 align-items: center;
 justify-content: center;
 flex-shrink: 0;
 transition: filter .15s var(--ease), transform .15s var(--ease);
}
.np-next:hover { filter: brightness(1.4); transform: scale(1.08); }

/* =====================================================================
 LEGAL DOC PAGES (privacy / terms / delete-account)
 ===================================================================== */

.page { background: var(--bg); }
.doc { padding: 80px 0 100px; }
.doc h1 {
 font-family: var(--sans);
 font-size: 44px;
 font-weight: 800;
 letter-spacing: -1.4px;
 margin: 0 0 8px;
}
.doc .meta { color: var(--dim); font-size: 13px; margin: 0 0 40px; }
.doc h2 {
 font-family: var(--sans);
 font-size: 22px;
 font-weight: 800;
 letter-spacing: -0.4px;
 margin: 40px 0 12px;
 color: var(--text);
}
.doc p, .doc li {
 font-size: 16px;
 color: var(--muted);
 line-height: 1.7;
}
.doc strong { color: var(--text); }
.doc ul { padding-left: 22px; }
.doc a {
 color: var(--gold);
 text-decoration: underline;
 text-decoration-color: rgba(200, 174, 122, 0.4);
 text-underline-offset: 3px;
}
.doc a:hover { color: var(--gold-hi); }
.doc code {
 background: var(--surface);
 padding: 2px 8px;
 border-radius: 4px;
 font-size: 13.5px;
 color: var(--gold);
 font-family: ui-monospace, Menlo, monospace;
}

/* =====================================================================
 ARTICLE PAGES (/articles/*)
 ===================================================================== */

.article-page { background: var(--bg); }
.article-page main { padding: 80px 0 100px; }

.crumb {
 font-size: 13px;
 color: var(--dim);
 margin: 0 0 22px;
 letter-spacing: 0.2px;
}
.crumb a { color: var(--muted); }
.crumb a:hover { color: var(--gold); }
.crumb .sep { color: var(--faint); margin: 0 8px; }

.article-head { max-width: 760px; margin: 0 auto 56px; }
.article-eyebrow {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 2.6px;
 color: var(--gold);
 text-transform: uppercase;
 margin: 0 0 18px;
}
.article-eyebrow::before {
 content: "";
 width: 18px;
 height: 1px;
 background: currentColor;
 opacity: 0.7;
}
.article-title {
 font-family: var(--sans);
 font-size: clamp(34px, 5vw, 56px);
 font-weight: 800;
 letter-spacing: -1.4px;
 line-height: 1.05;
 margin: 0 0 22px;
 text-wrap: balance;
}
.article-title em, .article-title i { color: var(--gold); font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }
.article-deck {
 font-size: 19px;
 line-height: 1.55;
 color: var(--muted);
 margin: 0 0 24px;
 max-width: 680px;
}
.article-meta {
 display: flex;
 flex-wrap: wrap;
 gap: 18px;
 color: var(--dim);
 font-size: 13.5px;
 border-top: 1px solid var(--border);
 padding-top: 18px;
}
.article-meta strong { color: var(--text); font-weight: 600; }

.article-body {
 max-width: 760px;
 margin: 0 auto;
 font-size: 17px;
 line-height: 1.75;
 color: var(--muted);
}
.article-body > * { margin: 0 0 20px; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body em { color: var(--text); }
.article-body a {
 color: var(--gold);
 text-decoration: underline;
 text-decoration-color: rgba(200, 174, 122, 0.4);
 text-underline-offset: 3px;
 transition: color .15s var(--ease);
}
.article-body a:hover { color: var(--gold-hi); }

.article-body h2 {
 font-family: var(--sans);
 font-size: clamp(26px, 3.2vw, 36px);
 font-weight: 700;
 letter-spacing: -0.8px;
 line-height: 1.15;
 color: var(--text);
 margin: 56px 0 16px;
}
.article-body h2 em, .article-body h2 i { color: var(--gold); font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }
.article-body h3 {
  font-family: var(--sans);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text);
  margin: 36px 0 12px;
  text-wrap: balance;
}
.article-body h3 em, .article-body h3 i { color: var(--gold); font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }

.article-body ul, .article-body ol {
 padding-left: 22px;
}
.article-body li {
 margin: 0 0 8px;
}
.article-body ul li::marker { color: var(--gold); }
.article-body ol li::marker { color: var(--gold); font-weight: 600; }

.article-body blockquote {
 border-left: 3px solid var(--gold);
 padding: 6px 0 6px 22px;
 margin: 32px 0;
 font-family: var(--serif);
 font-style: italic;
 font-size: 22px;
 line-height: 1.4;
 color: var(--text);
}

.article-body table {
 width: 100%;
 border-collapse: collapse;
 border: 1px solid var(--border);
 border-radius: var(--radius-md);
 overflow: hidden;
 font-size: 15px;
 margin: 28px 0;
 background: var(--surface);
}
.article-body table thead th {
 background: var(--surface-2);
 font-family: var(--serif);
 font-size: 16px;
 font-weight: 500;
 letter-spacing: -0.2px;
 color: var(--text);
 text-align: left;
 padding: 12px 14px;
 border-bottom: 1px solid var(--border);
}
.article-body table tbody th {
 font-weight: 600;
 color: var(--text);
 text-align: left;
 padding: 12px 14px;
 background: rgba(255, 255, 255, 0.015);
 border-bottom: 1px solid var(--border);
 width: 28%;
}
.article-body table tbody td {
 padding: 12px 14px;
 border-bottom: 1px solid var(--border);
 vertical-align: top;
}
.article-body table tbody tr:last-child th,
.article-body table tbody tr:last-child td { border-bottom: 0; }
.article-body table .col-us {
 color: var(--gold-hi);
 background: linear-gradient(180deg, rgba(200,174,122,0.10), rgba(200,174,122,0.04));
}
.article-body table .td-us {
 color: var(--text);
 background: rgba(200,174,122,0.04);
 font-weight: 500;
}

.article-body .callout {
 background: linear-gradient(180deg, rgba(200,174,122,0.06) 0%, rgba(200,174,122,0.00) 80%);
 border: 1px solid rgba(200, 174, 122, 0.20);
 border-radius: var(--radius-md);
 padding: 20px 22px;
 margin: 28px 0;
}
.article-body .callout strong { color: var(--gold-hi); }
.article-body .callout p:last-child { margin-bottom: 0; }

.article-body .quick {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-md);
 padding: 22px 24px;
 margin: 28px 0 36px;
}
.article-body .quick h3 {
 margin: 0 0 12px;
 font-size: 15px;
 font-weight: 700;
 letter-spacing: 2px;
 text-transform: uppercase;
 color: var(--gold);
}
.article-body .quick p { margin: 0; color: var(--text); font-size: 17px; line-height: 1.55; }

.article-toc {
 background: var(--surface);
 border: 1px solid var(--border);
 border-radius: var(--radius-md);
 padding: 20px 24px;
 margin: 0 0 40px;
}
.article-toc h4 {
 margin: 0 0 10px;
 font-size: 12px;
 font-weight: 600;
 letter-spacing: 2.5px;
 text-transform: uppercase;
 color: var(--gold);
}
.article-toc ol {
 margin: 0;
 padding-left: 22px;
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 4px 28px;
}
.article-toc li { font-size: 14.5px; margin: 0; }
.article-toc a { color: var(--muted); text-decoration: none; }
.article-toc a:hover { color: var(--gold); }
@media (max-width: 640px) {
 .article-toc ol { grid-template-columns: 1fr; }
}

.article-cta {
 margin: 60px 0 40px;
 padding: 40px 32px;
 text-align: center;
 background:
 radial-gradient(50% 80% at 50% 0%, rgba(200,174,122,0.18) 0%, transparent 60%),
 var(--surface);
 border: 1px solid rgba(200, 174, 122, 0.20);
 border-radius: var(--radius-lg);
}
.article-cta h3 {
 font-family: var(--sans);
 font-size: 28px;
 font-weight: 700;
 letter-spacing: -0.8px;
 line-height: 1.1;
 margin: 0 0 12px;
 color: var(--text);
}
.article-cta h3 em { color: var(--gold); font-style: normal; font-family: inherit; font-weight: inherit; letter-spacing: inherit; }
.article-cta p { color: var(--muted); margin: 0 0 22px; font-size: 16px; }

.article-related {
 max-width: 1100px;
 margin: 60px auto 0;
}
.article-related h3 {
 font-family: var(--sans);
 font-size: 22px;
 font-weight: 700;
 letter-spacing: -0.4px;
 color: var(--text);
 margin: 0 0 22px;
}

@media (max-width: 640px) {
 .article-page main { padding: 56px 0 72px; }
 .article-head { margin-bottom: 36px; }
 .article-body { font-size: 16px; }
 .article-body h2 { margin: 40px 0 12px; }
 .article-body h3 { margin: 28px 0 10px; }
 .article-cta { padding: 28px 22px; }
 .article-cta h3 { font-size: 22px; }
}

/* =====================================================================
   AUTHOR BIO BLOCK at end of every article (E-E-A-T signal)
   ===================================================================== */

.author-bio {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 26px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-elev) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 48px 0 24px;
}
.author-bio .author-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: url('/icons/logo-transparent-128.png') center / contain no-repeat;
  filter: drop-shadow(0 4px 14px rgba(200, 174, 122, 0.18));
}
.author-bio-name {
  margin: 0 0 6px;
  font-size: 14.5px;
  color: var(--text);
}
.author-bio-name em {
  color: var(--gold);
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
}
.author-bio-text {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.article-meta a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(200, 174, 122, 0.4);
  text-underline-offset: 3px;
}
.article-meta a:hover { color: var(--gold-hi); }
.article-meta em { color: var(--dim); font-style: normal; }

/* =====================================================================
   PILLAR PAGES (hub-and-spoke)
   ===================================================================== */

.pillar-page .article-title { max-width: 24ch; }
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0 40px;
}
@media (max-width: 720px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* Wordmark used by legal pages. Small "boulevard" at top */
.wordmark {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 color: var(--text);
 font-family: var(--serif);
 font-size: 18px;
 font-weight: 600;
 letter-spacing: -0.3px;
}
.wordmark::before {
 content: "";
 width: 32px;
 height: 32px;
 background: url('/icons/logo-transparent-128.png') center / contain no-repeat;
 display: inline-block;
 flex-shrink: 0;
 filter: drop-shadow(0 4px 14px rgba(200, 174, 122, 0.18));
}
.wordmark:hover { color: var(--gold-hi); }

/* Site header for legal pages */
.site-header { padding: 24px 0; border-bottom: 1px solid var(--border); }
