/* ============================================================================
   ClipAd — Marketing system
   Loaded AFTER theme.css. Adds the Stripe-inspired site chrome (nav, footer,
   buttons, gradient heroes) and every new section + page component.
   Reuses theme.css tokens; extends them below.
   ========================================================================== */

:root {
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1200px;
  --max-wide: 1280px;
  --green: #2E7D5B;
  --green-soft: rgba(46,125,91,0.12);
  --gold: #E9A23B;
  --shadow-sm: 0 1px 2px rgba(45,26,18,0.06), 0 2px 6px rgba(45,26,18,0.04);
  --shadow-md: 0 4px 14px rgba(45,26,18,0.08), 0 10px 30px rgba(45,26,18,0.06);
  --shadow-lg: 0 12px 40px rgba(45,26,18,0.12), 0 24px 70px rgba(45,26,18,0.10);
  --gradient-warm: linear-gradient(120deg, #8B3A1A 0%, #C4622D 38%, #E07B45 68%, #E9A23B 100%);
  --gradient-soft: linear-gradient(135deg, rgba(196,98,45,0.10), rgba(233,162,59,0.06) 60%, transparent);
}

/* --- base helpers ---------------------------------------------------------- */
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 48px; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.text-center { text-align: center; }
.muted { color: var(--fg-muted); }
.serif { font-family: 'Season Serif', 'Cormorant Garamond', Georgia, serif; }
.lead { font-size: 18px; line-height: 1.7; color: var(--fg-muted); }
section { position: relative; }

.display-1 { font-family: 'Season Serif', 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: clamp(40px, 5.2vw, 68px); line-height: 1.06; letter-spacing: -0.02em; color: var(--heading); }
.display-2 { font-family: 'Season Serif', 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: clamp(32px, 4vw, 50px); line-height: 1.12; letter-spacing: -0.01em; color: var(--heading); }
.display-1 em, .display-2 em { font-style: italic; color: var(--accent); }

/* --- buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 15px; font-weight: 600; line-height: 1;
  padding: 13px 22px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 4px 14px rgba(196,98,45,0.30); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 8px 22px rgba(196,98,45,0.36); }
.btn-dark { background: var(--surface-dark); color: #fff; }
.btn-dark:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost { background: rgba(196,98,45,0.08); color: var(--accent); }
.btn-ghost:hover { background: rgba(196,98,45,0.14); }
.btn-outline { background: transparent; color: var(--fg); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-white { background: #fff; color: var(--surface-dark); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-block { display: flex; width: 100%; }
.btn .arrow { transition: transform .15s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.linkA { color: var(--accent); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.linkA:hover { gap: 9px; }

/* --- pills / badges -------------------------------------------------------- */
.pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px; background: rgba(196,98,45,0.08); color: var(--accent); border: 1px solid var(--border); }
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 3px var(--green-soft); }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
.badge-green { background: var(--green-soft); color: var(--green); }
.badge-accent { background: rgba(196,98,45,0.12); color: var(--accent); }
.badge-muted { background: var(--surface); color: var(--fg-muted); }

/* ============================================================================
   SITE NAV — sticky, translucent, with hover mega-menus (Stripe-inspired)
   ========================================================================== */
.site-nav { position: sticky; top: 0; z-index: 200; background: rgba(245,240,235,0.82); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.site-nav-inner { max-width: var(--max-wide); margin: 0 auto; padding: 0 32px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand .brand-name { font-family: 'Season Serif', 'Cormorant Garamond', serif; font-weight: 700; font-size: 21px; color: var(--heading); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link { display: inline-flex; align-items: center; gap: 5px; font-size: 14.5px; font-weight: 500; color: var(--fg); background: none; border: none; cursor: pointer; padding: 9px 14px; border-radius: 9px; text-decoration: none; font-family: inherit; transition: color .15s, background .15s; }
.nav-link:hover { color: var(--accent); background: rgba(196,98,45,0.06); }
/* "+" affordance for dropdown items — rotates to "×" when the menu opens */
.nav-link .nav-plus { position: relative; width: 8.8px; height: 8.8px; flex-shrink: 0; opacity: .6; transition: transform .2s ease, opacity .2s ease; }
.nav-link .nav-plus::before, .nav-link .nav-plus::after { content: ''; position: absolute; background: currentColor; border-radius: 1px; }
.nav-link .nav-plus::before { left: 0; right: 0; top: 50%; height: 1.6px; transform: translateY(-50%); }
.nav-link .nav-plus::after { top: 0; bottom: 0; left: 50%; width: 1.6px; transform: translateX(-50%); }
.nav-item:hover .nav-link .nav-plus, .nav-item:focus-within .nav-link .nav-plus { transform: rotate(45deg); opacity: 1; }

.nav-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); min-width: 480px; background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 14px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
.nav-menu::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.nav-item:hover .nav-menu, .nav-item:focus-within .nav-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-menu.menu-left { left: 0; transform: translateX(0) translateY(8px); }
.nav-item:hover .nav-menu.menu-left, .nav-item:focus-within .nav-menu.menu-left { transform: translateX(0) translateY(0); }
.nav-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav-menu-grid.single { grid-template-columns: 1fr; }
.menu-card { display: flex; gap: 12px; padding: 12px; border-radius: 12px; text-decoration: none; transition: background .15s; }
.menu-card:hover { background: var(--surface); }
.menu-ico { flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px; background: rgba(196,98,45,0.10); display: flex; align-items: center; justify-content: center; }
.menu-ico svg { width: 18px; height: 18px; }
.menu-copy h5 { font-size: 14px; font-weight: 600; color: var(--heading); margin-bottom: 2px; }
.menu-copy p { font-size: 12.5px; color: var(--fg-muted); line-height: 1.4; }
.nav-menu-foot { margin-top: 8px; padding: 12px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.nav-menu-foot span { font-size: 13px; color: var(--fg-muted); }

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-signin { font-size: 14.5px; font-weight: 500; color: var(--fg); text-decoration: none; padding: 9px 12px; border-radius: 9px; }
.nav-signin:hover { color: var(--accent); }

/* mobile nav (checkbox hack, no JS) */
.nav-toggle { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav-burger span { width: 22px; height: 2px; background: var(--fg); border-radius: 2px; transition: .2s; }

/* ============================================================================
   PAGE HERO (gradient) — used by interior pages
   ========================================================================== */
.page-hero { padding: 84px 0 64px; position: relative; overflow: hidden; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin: 18px 0 18px; }
.page-hero .lead { max-width: 600px; }
.page-hero-center { text-align: center; }
.page-hero-center .lead { margin-left: auto; margin-right: auto; }
.page-hero-center .hero-actions { justify-content: center; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero-glow { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-glow::before { content: ''; position: absolute; width: 720px; height: 720px; right: -180px; top: -260px; background: radial-gradient(circle, rgba(196,98,45,0.14), transparent 62%); }
.hero-glow::after { content: ''; position: absolute; width: 520px; height: 520px; left: -160px; bottom: -260px; background: radial-gradient(circle, rgba(233,162,59,0.10), transparent 65%); }

/* a bold full-gradient hero band (creators/brands top) */
.gradient-band { background: var(--gradient-warm); color: #fff; position: relative; overflow: hidden; }
.gradient-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% -10%, rgba(255,255,255,0.18), transparent 45%); pointer-events: none; }
.gradient-band .eyebrow { color: rgba(255,255,255,0.85); }
.gradient-band h1, .gradient-band .display-1, .gradient-band .display-2 { color: #fff; }
.gradient-band h1 em { color: #ffe9d6; }
.gradient-band .lead { color: rgba(255,255,255,0.92); }

/* ============================================================================
   GENERIC SECTION SCAFFOLD
   ========================================================================== */
.sec { padding: 92px 0; }
.sec-sm { padding: 64px 0; }
.sec-tint { background: var(--surface); }
.sec-dark { background: var(--surface-dark); color: rgba(255,255,255,0.92); }
.sec-dark .section-headline, .sec-dark h2, .sec-dark h3 { color: #fff; }
.sec-dark .lead, .sec-dark p { color: rgba(255,255,255,0.72); }
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head h2 { font-family: 'Season Serif', 'Cormorant Garamond', serif; font-size: clamp(32px, 3.6vw, 46px); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; color: var(--heading); margin: 14px 0 16px; }
.sec-head p { font-size: 17px; color: var(--fg-muted); line-height: 1.7; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* --- logo cloud ------------------------------------------------------------ */
.logo-cloud { padding: 44px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logo-cloud p { text-align: center; font-size: 13px; color: var(--fg-muted); margin-bottom: 26px; letter-spacing: 0.02em; }
.logo-row { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; }
.logo-row .logo { font-family: 'Season Serif', serif; font-weight: 700; font-size: 22px; color: var(--fg-muted); opacity: 0.55; letter-spacing: 0.02em; transition: opacity .2s; }
.logo-row .logo:hover { opacity: 0.9; }

/* --- stats band ------------------------------------------------------------ */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--bg); }
.stat-cell { padding: 36px 28px; border-right: 1px solid var(--border); }
.stat-cell:last-child { border-right: none; }
.stat-cell .big { font-family: 'Season Serif', serif; font-weight: 700; font-size: 44px; line-height: 1; color: var(--accent); }
.stat-cell .lbl { font-size: 14px; color: var(--fg-muted); margin-top: 10px; line-height: 1.4; }

/* --- feature rows (alternating) ------------------------------------------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 56px 0; }
.feature-row.flip .feature-copy { order: 2; }
.feature-copy h3 { font-family: 'Season Serif', serif; font-size: 30px; font-weight: 700; line-height: 1.2; color: var(--heading); margin: 12px 0 14px; }
.feature-copy p { font-size: 16px; color: var(--fg-muted); line-height: 1.7; margin-bottom: 18px; }
.feature-checks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-checks li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: var(--fg); }
.feature-checks .ck { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: rgba(196,98,45,0.12); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.feature-art { background: var(--gradient-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; min-height: 320px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }

/* --- creators hero collage (main photo + two floating stat cards) --------- */
.hero-collage { position: relative; display: block; }
.hero-collage .collage-main { display: block; width: 90%; margin: 0 auto; height: auto; border-radius: 16px; box-shadow: 0 22px 50px rgba(45,26,18,0.30); }
.hero-collage .collage-card { position: absolute; height: auto; border-radius: 13px; box-shadow: 0 16px 38px rgba(45,26,18,0.26); }
.hero-collage .collage-card--payout { top: -32%; right: -2%; width: 36%; }
.hero-collage .collage-card--audience { bottom: -32%; left: -2%; width: 31%; }
@media (max-width: 860px) {
  .hero-collage .collage-main { width: 82%; }
  .hero-collage .collage-card--payout { width: 40%; top: -20%; right: 0; }
  .hero-collage .collage-card--audience { width: 35%; bottom: -20%; left: 0; }
}

/* --- generic card grid ----------------------------------------------------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(196,98,45,0.3); }
.card-tint { background: var(--surface); }
.card .card-ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(196,98,45,0.10); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card h4 { font-family: 'Season Serif', serif; font-size: 20px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.card p { font-size: 14.5px; color: var(--fg-muted); line-height: 1.6; }
/* Brand-safety section: borderless cards + headings matched to the body copy (size + font). */
.brand-safety .card { border: 0; }
.brand-safety .card h4 { font-size: 14.5px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
/* Home pricing cards: headings in the body font; heading + description both at 14.5px. */
.home-pricing .card h4 { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; font-size: 14.5px; }
.home-pricing .card p { font-size: 14.5px; }

/* --- AI engine showcase ---------------------------------------------------- */
.ai-mock { background: #1A120D; border-radius: 16px; padding: 22px; border: 1px solid rgba(196,98,45,0.25); width: 100%; box-shadow: var(--shadow-lg); }
.ai-mock-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ai-mock-top .t { font-size: 12px; color: rgba(255,255,255,0.5); font-weight: 500; }
.ai-track { position: relative; height: 64px; background: rgba(255,255,255,0.05); border-radius: 8px; overflow: hidden; display: flex; }
.ai-seg { flex: 1; border-right: 2px solid #1A120D; position: relative; background: linear-gradient(180deg, rgba(196,98,45,0.35), rgba(196,98,45,0.12)); }
.ai-seg:last-child { border-right: none; }
.ai-seg.hot { background: linear-gradient(180deg, rgba(233,162,59,0.5), rgba(196,98,45,0.2)); }
.ai-cut { position: absolute; top: 0; bottom: 0; width: 2px; background: var(--gold); }
.ai-scores { display: flex; gap: 6px; margin-top: 12px; }
.ai-chip { flex: 1; background: rgba(255,255,255,0.05); border-radius: 6px; padding: 8px; text-align: center; }
.ai-chip .s { font-size: 15px; font-weight: 700; color: var(--accent-light); }
.ai-chip .l { font-size: 9px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* Clip engine ('#ai') — product image scaled to match the copy height */
#ai .container { max-width: 1300px; padding: 0 36px; }
#ai .feature-row { grid-template-columns: 1fr 1.68fr; gap: 44px; }
/* Frameless illustration treatment: strip the .feature-art card so the image sits
   directly on the page. Opaque illustrations (#ai) get a rounded card + shadow;
   transparent PNGs in a .feature-art.bare float as-is (their shadows are baked in). */
#ai .feature-art, .feature-art.bare { background: none; border: none; box-shadow: none; padding: 0; min-height: 0; }
#ai .ai-engine-img { display: block; width: 100%; height: auto; border-radius: 14px; box-shadow: 0 18px 44px rgba(45,26,18,0.16); }
.feature-art.bare img { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
  #ai .container { padding: 0 22px; }
  #ai .feature-row { grid-template-columns: 1fr; gap: 32px; }
}

/* --- tabbed dual flow (creators / brands) ---------------------------------- */
.tabs { display: inline-flex; padding: 5px; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; gap: 4px; }
.tab-btn { border: none; background: none; font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--fg-muted); padding: 10px 22px; border-radius: 999px; cursor: pointer; transition: .15s; }
.tab-btn.active { background: var(--accent); color: #fff; box-shadow: 0 3px 10px rgba(196,98,45,0.3); }
/* Stack both flow panels in one grid cell so switching crossfades with no height jump */
.flow-panels { display: grid; }
.flow-panel { grid-area: 1 / 1; opacity: 0; visibility: hidden; transform: translateY(12px); pointer-events: none; transition: opacity .4s ease, transform .4s ease, visibility 0s linear .4s; }
.flow-panel.is-active { opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition: opacity .4s ease, transform .4s ease, visibility 0s; }
/* Staggered entrance for the steps of the panel becoming active */
.flow-panel .flow-step { opacity: 0; transform: translateY(10px); transition: opacity .45s ease, transform .45s ease; }
.flow-panel.is-active .flow-step { opacity: 1; transform: none; }
.flow-panel.is-active .flow-step:nth-child(1) { transition-delay: .08s; }
.flow-panel.is-active .flow-step:nth-child(2) { transition-delay: .15s; }
.flow-panel.is-active .flow-step:nth-child(3) { transition-delay: .22s; }
.flow-panel.is-active .flow-step:nth-child(4) { transition-delay: .29s; }
@media (prefers-reduced-motion: reduce) {
  .flow-panel, .flow-panel .flow-step { transition: opacity .15s ease; transform: none; }
}
.flow-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 44px; counter-reset: fstep; }
.flow-step { position: relative; padding-top: 18px; }
.flow-step .fn { font-family: 'Season Serif', serif; font-size: 15px; font-weight: 700; color: #fff; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.flow-step h5 { font-size: 16px; font-weight: 600; color: var(--heading); margin-bottom: 7px; }
.flow-step p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }
.flow-step::after { content: ''; position: absolute; top: 35px; left: 46px; right: -9px; height: 1px; background: var(--border); }
.flow-step:last-child::after { display: none; }

/* --- creator spotlight ----------------------------------------------------- */
.spot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.spot-card { display: flex; flex-direction: column; }
/* The creator image IS the card: a tall portrait gradient that fills the full height,
   with a dark gradient at the bottom carrying the testimonial in white. */
.spot-photo { position: relative; aspect-ratio: 3 / 4; background: var(--gradient-warm); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; transition: transform .18s, box-shadow .18s; }
.spot-card:hover .spot-photo { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.spot-photo .spot-img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.spot-photo::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 62%; z-index: 1; background: linear-gradient(to top, rgba(20,12,8,0.92), rgba(20,12,8,0.55) 45%, transparent); pointer-events: none; }
.spot-photo .quote { position: relative; z-index: 2; margin: 0; color: #fff; font-size: 14.5px; line-height: 1.5; font-style: italic; text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
/* Attribution sits below the card image. */
.spot-foot { padding: 14px 4px 0; }
.spot-foot .nm-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.spot-foot .nm { font-size: 17px; font-weight: 700; color: var(--heading); }
.spot-foot .rev { font-size: 16px; font-weight: 700; color: var(--fg-muted); white-space: nowrap; }
.spot-foot .hd { font-size: 13px; color: var(--fg-muted); margin-top: 3px; }

/* --- testimonials ---------------------------------------------------------- */
/* Line-separated grid (Vercel-style): cells divided by single thin rules — no gaps,
   no radius, no fills. Quote sits at the top of each cell; the attribution is pinned
   to the bottom so every cell's by-line aligns. Grid carries the top+left edge; each
   cell adds its right+bottom, so all internal/outer lines stay a single 1px. */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.quote-card { display: flex; flex-direction: column; min-height: 300px; padding: 40px; background: transparent; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); border-radius: 0; }
.quote-card .qq { font-family: 'Season Serif', serif; font-size: 21px; line-height: 1.45; color: var(--heading); margin-bottom: 28px; }
.quote-by { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-by .av { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 16px; flex-shrink: 0; }
.quote-by .nm { font-size: 14px; font-weight: 600; color: var(--heading); }
.quote-by .rl { font-size: 12.5px; color: var(--fg-muted); }

/* --- map / reach ----------------------------------------------------------- */
.reach-wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.reach-list { display: flex; flex-direction: column; gap: 14px; }
.reach-row { display: flex; align-items: center; gap: 14px; }
.reach-row .flag { width: 34px; height: 34px; border-radius: 8px; background: var(--surface); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.reach-row .nm { font-size: 15px; font-weight: 600; color: var(--heading); width: 120px; }
.reach-bar { flex: 1; height: 8px; background: var(--surface); border-radius: 4px; overflow: hidden; }
.reach-bar i { display: block; height: 100%; background: var(--gradient-warm); border-radius: 4px; }
.reach-row .ct { font-size: 13px; color: var(--fg-muted); width: 56px; text-align: right; }
.reach-chart { display: block; width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--border); }

/* --- pricing --------------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; position: relative; }
.price-card.featured { border-color: var(--accent); box-shadow: var(--shadow-md); }
.price-card.featured::before { content: 'Most popular'; position: absolute; top: -12px; left: 32px; background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; }
.price-card .pname { font-family: 'Season Serif', serif; font-size: 22px; font-weight: 700; color: var(--heading); }
.price-card .pdesc { font-size: 14px; color: var(--fg-muted); margin: 6px 0 20px; min-height: 40px; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-amt .n { font-family: 'Season Serif', serif; font-size: 46px; font-weight: 700; color: var(--heading); line-height: 1; }
.price-amt .u { font-size: 14px; color: var(--fg-muted); }
.price-note { font-size: 13px; color: var(--fg-muted); margin-bottom: 22px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--fg); }
.price-feats .ck { flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; background: rgba(196,98,45,0.12); display: flex; align-items: center; justify-content: center; margin-top: 1px; }

.compare { width: 100%; border-collapse: collapse; margin-top: 16px; }
.compare th, .compare td { text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.compare thead th { font-family: 'Season Serif', serif; font-size: 17px; color: var(--heading); }
.compare td.c, .compare th.c { text-align: center; }
.compare tbody tr:hover { background: var(--surface); }
.compare .yes { color: var(--green); font-weight: 700; }
.compare .no { color: var(--fg-muted); opacity: 0.5; }

/* --- FAQ accordion (details/summary, no JS) -------------------------------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; padding: 22px 4px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 17px; font-weight: 600; color: var(--heading); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq summary .pm::before, .faq summary .pm::after { content: ''; position: absolute; background: var(--accent); border-radius: 2px; transition: .2s; }
.faq summary .pm::before { top: 10px; left: 3px; right: 3px; height: 2px; }
.faq summary .pm::after { left: 10px; top: 3px; bottom: 3px; width: 2px; }
.faq details[open] summary .pm::after { transform: rotate(90deg); opacity: 0; }
.faq details > div { padding: 0 4px 24px; font-size: 15.5px; color: var(--fg-muted); line-height: 1.7; max-width: 680px; }

/* --- CTA band -------------------------------------------------------------- */
.cta-band { background: var(--gradient-warm); border-radius: 28px; padding: 64px; text-align: center; position: relative; overflow: hidden; color: #fff; }
.cta-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 15% 120%, rgba(255,255,255,0.16), transparent 45%); pointer-events: none; }
.cta-band h2 { font-family: 'Season Serif', serif; font-size: clamp(30px, 3.6vw, 46px); font-weight: 700; color: #fff; line-height: 1.15; margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 17px; max-width: 540px; margin: 0 auto 28px; position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }

/* --- demo strip ------------------------------------------------------------ */
.demo-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.demo-tile { display: flex; align-items: center; gap: 18px; padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); text-decoration: none; transition: .18s; }
.demo-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(196,98,45,0.3); }
.demo-tile .dico { width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-warm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.demo-tile .dthumb { width: 72px; height: 72px; border-radius: 14px; object-fit: cover; object-position: center; flex-shrink: 0; display: block; }
.demo-tile h4 { font-size: 18px; font-weight: 700; color: var(--heading); margin-bottom: 3px; }
.demo-tile p { font-size: 13.5px; color: var(--fg-muted); }
.demo-tile .go { margin-left: auto; color: var(--accent); font-weight: 700; font-size: 20px; }

/* ============================================================================
   DIRECTORY (public creators)
   ========================================================================== */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; align-items: center; }
.chip { font-size: 13px; font-weight: 600; padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg); color: var(--fg-muted); cursor: pointer; transition: .15s; text-decoration: none; }
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.dir-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dir-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; transition: .18s; }
.dir-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(196,98,45,0.3); }
.dir-top { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.dir-av { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: #fff; font-size: 19px; flex-shrink: 0; }
.dir-name { font-size: 16px; font-weight: 700; color: var(--heading); display: flex; align-items: center; gap: 6px; }
.dir-handle { font-size: 13px; color: var(--accent); }
.dir-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0; }
.dir-tag { font-size: 11.5px; font-weight: 600; padding: 3px 9px; border-radius: 6px; background: var(--surface); color: var(--fg-muted); }
.dir-stats { display: flex; gap: 18px; border-top: 1px solid var(--border); padding-top: 14px; }
.dir-stats .v { font-size: 15px; font-weight: 700; color: var(--heading); }
.dir-stats .k { font-size: 11px; color: var(--fg-muted); }
.verified { color: var(--green); display: inline-flex; }

/* ============================================================================
   CAMPAIGNS BOARD
   ========================================================================== */
.camp-list { display: flex; flex-direction: column; gap: 16px; }
.camp-card { display: grid; grid-template-columns: 52px 1fr auto; gap: 18px; align-items: center; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; transition: .18s; }
.camp-card:hover { box-shadow: var(--shadow-md); border-color: rgba(196,98,45,0.3); }
.camp-logo { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Season Serif', serif; font-weight: 700; color: #fff; font-size: 20px; }
.camp-body h4 { font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 5px; }
.camp-body .brand-line { font-size: 13px; color: var(--fg-muted); margin-bottom: 10px; }
.camp-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.camp-right { text-align: right; }
.camp-budget { font-family: 'Season Serif', serif; font-size: 24px; font-weight: 700; color: var(--accent); }
.camp-budget span { font-size: 12px; color: var(--fg-muted); font-weight: 400; }

/* ============================================================================
   BLOG
   ========================================================================== */
.blog-feat { display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; padding: 40px; margin-bottom: 48px; }
.blog-feat .art { height: 280px; border-radius: var(--radius); background: var(--gradient-warm); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; text-decoration: none; transition: .18s; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-art { height: 168px; background: var(--gradient-soft); position: relative; }
.post-art .tag { position: absolute; top: 14px; left: 14px; }
.post-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.post-body h4 { font-family: 'Season Serif', serif; font-size: 20px; font-weight: 700; color: var(--heading); line-height: 1.25; margin-bottom: 10px; }
.post-body p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; flex: 1; }
.post-meta { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 12.5px; color: var(--fg-muted); }

/* --- prose (blog post + legal) --------------------------------------------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: 'Season Serif', serif; font-size: 30px; font-weight: 700; color: var(--heading); margin: 44px 0 16px; letter-spacing: -0.01em; }
.prose h3 { font-family: 'Season Serif', serif; font-size: 22px; font-weight: 700; color: var(--heading); margin: 32px 0 12px; }
.prose p { font-size: 17px; line-height: 1.8; color: var(--fg); margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { font-size: 17px; line-height: 1.8; color: var(--fg); margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { color: var(--heading); }
.prose blockquote { border-left: 3px solid var(--accent); padding: 6px 0 6px 22px; margin: 24px 0; font-family: 'Season Serif', serif; font-size: 22px; font-style: italic; color: var(--heading); }
.prose hr { border: none; border-top: 1px solid var(--border); margin: 36px 0; }
.prose-lead { font-size: 20px; line-height: 1.7; color: var(--fg-muted); margin-bottom: 28px; }

.legal-meta { font-size: 14px; color: var(--fg-muted); margin-bottom: 8px; }
.toc { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 36px; }
.toc h5 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 12px; }
.toc ol { margin-left: 18px; }
.toc a { font-size: 14.5px; color: var(--fg); text-decoration: none; line-height: 2; }
.toc a:hover { color: var(--accent); }

/* ============================================================================
   CASE STUDIES
   ========================================================================== */
.cs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.cs-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; background: var(--bg); transition: .18s; }
.cs-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cs-top { padding: 32px; background: var(--gradient-warm); color: #fff; }
.cs-top .logo { font-family: 'Season Serif', serif; font-weight: 700; font-size: 22px; margin-bottom: 18px; }
.cs-top .big { font-family: 'Season Serif', serif; font-size: 40px; font-weight: 700; line-height: 1.1; }
.cs-top .big span { display: block; font-size: 15px; font-weight: 400; opacity: 0.85; margin-top: 6px; }
.cs-bottom { padding: 24px 32px 30px; }
.cs-bottom h4 { font-size: 18px; font-weight: 700; color: var(--heading); margin-bottom: 8px; }
.cs-bottom p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 36px 0; }
.metric-box { text-align: center; padding: 28px 18px; background: var(--surface); border-radius: var(--radius); }
.metric-box .v { font-family: 'Season Serif', serif; font-size: 40px; font-weight: 700; color: var(--accent); line-height: 1; }
.metric-box .k { font-size: 13px; color: var(--fg-muted); margin-top: 8px; }
.metric-row-square .metric-box { aspect-ratio: 1 / 1; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(231, 213, 188, 0.38); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.45); box-shadow: 0 8px 32px rgba(58, 40, 28, 0.12); }

/* ============================================================================
   ABOUT
   ========================================================================== */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.timeline { max-width: 760px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 22px 0; border-top: 1px solid var(--border); }
.tl-item .yr { font-family: 'Season Serif', serif; font-size: 22px; font-weight: 700; color: var(--accent); }
.tl-item h4 { font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 5px; }
.tl-item p { font-size: 14.5px; color: var(--fg-muted); line-height: 1.6; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.team-card { text-align: center; }
.team-photo { aspect-ratio: 1; border-radius: var(--radius); background: var(--gradient-warm); display: flex; align-items: center; justify-content: center; font-family: 'Season Serif', serif; font-size: 44px; font-weight: 700; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.team-card .nm { font-size: 16px; font-weight: 700; color: var(--heading); }
.team-card .rl { font-size: 13px; color: var(--accent); }

/* ============================================================================
   HELP CENTER
   ========================================================================== */
.help-search { max-width: 560px; margin: 0 auto; position: relative; }
.help-search input { width: 100%; padding: 16px 20px 16px 50px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg); font-family: inherit; font-size: 16px; box-shadow: var(--shadow-sm); }
.help-search input:focus { outline: none; border-color: var(--accent); }
.help-search .ic { position: absolute; left: 20px; top: 50%; transform: translateY(-50%); opacity: .5; }
.help-cat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.help-cat { display: block; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; text-decoration: none; transition: .18s; }
.help-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.help-cat h4 { font-size: 17px; font-weight: 700; color: var(--heading); margin: 12px 0 6px; }
.help-cat p { font-size: 13.5px; color: var(--fg-muted); }
.help-cat .n { font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 12px; }

/* help index hero must let the search dropdown overflow; keep the glow clipped
   to the hero by moving the clip onto the glow element itself */
.help-hero { overflow: visible; }
.help-hero .hero-glow { overflow: hidden; }

/* help search — live results dropdown */
.help-search-results { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 8px; z-index: 30; text-align: left; max-height: 60vh; overflow-y: auto; }
.hsr-item { display: block; padding: 12px 14px; border-radius: 10px; text-decoration: none; transition: background .12s; }
.hsr-item:hover, .hsr-item:focus { background: var(--surface); }
.hsr-cat { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.hsr-title { display: block; font-size: 15px; font-weight: 600; color: var(--heading); }
.hsr-ex { display: block; font-size: 13px; color: var(--fg-muted); margin-top: 2px; line-height: 1.5; }
.hsr-empty { padding: 16px 14px; font-size: 14px; color: var(--fg-muted); }
.hsr-empty a { color: var(--accent); }

/* breadcrumb */
.crumb { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13.5px; color: var(--fg-muted); }
.crumb a { color: var(--fg-muted); text-decoration: none; font-weight: 600; }
.crumb a:hover { color: var(--accent); }
.crumb [aria-current="page"] { color: var(--heading); font-weight: 600; }
.crumb-sep { opacity: 0.5; }

/* category + article two-column layout */
.help-layout { display: grid; grid-template-columns: 250px 1fr; gap: 48px; align-items: start; }
.help-side { position: sticky; top: 92px; }
.help-side-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.help-side-nav { display: flex; flex-direction: column; gap: 2px; }
.help-side-nav a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 9px 12px; border-radius: 9px; font-size: 14px; color: var(--fg); text-decoration: none; line-height: 1.4; transition: background .12s, color .12s; }
.help-side-nav a:hover { background: var(--surface); color: var(--heading); }
.help-side-nav a.active { background: rgba(196,98,45,0.10); color: var(--accent); font-weight: 600; }
.help-side-n { font-size: 12px; color: var(--fg-muted); flex-shrink: 0; }
.help-side-nav a.active .help-side-n { color: var(--accent); }

/* article list on a category page */
.help-art-count { font-size: 13px; color: var(--fg-muted); margin-bottom: 16px; }
.help-art-list { display: flex; flex-direction: column; gap: 12px; }
.help-art { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); text-decoration: none; transition: transform .16s, box-shadow .16s, border-color .16s; }
.help-art:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: rgba(196,98,45,0.3); }
.help-art-body h3 { font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 5px; }
.help-art-body p { font-size: 14.5px; color: var(--fg-muted); line-height: 1.55; }
.help-art-meta { display: inline-block; font-size: 12px; color: var(--accent); font-weight: 600; margin-top: 9px; }
.help-art-arrow { font-size: 20px; color: var(--accent); flex-shrink: 0; transition: transform .16s; }
.help-art:hover .help-art-arrow { transform: translateX(3px); }

/* article body subheadings — one step down from the shared .prose h2 scale */
.help-main .prose h2 { font-size: 21px; margin: 40px 0 10px; }

/* was-this-helpful widget — plain row, no card fill or border */
.help-feedback { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--border); }
.help-feedback-q { font-size: 15px; font-weight: 600; color: var(--heading); }
.help-feedback-btns { display: flex; gap: 10px; }
.help-feedback-btns button { padding: 8px 20px; border: 1px solid var(--border); border-radius: 999px; background: var(--bg); font-family: inherit; font-size: 14px; font-weight: 600; color: var(--fg); cursor: pointer; transition: .14s; }
.help-feedback-btns button:hover { border-color: var(--accent); color: var(--accent); }
.help-feedback-thanks { font-size: 15px; font-weight: 600; color: var(--accent); }

/* prev / next pager */
.help-pager { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.help-pager-link { display: flex; flex-direction: column; gap: 4px; padding: 18px 22px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); text-decoration: none; transition: border-color .16s, box-shadow .16s; }
.help-pager-link:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.help-pager-link.next { text-align: right; }
.help-pager-dir { font-size: 12px; font-weight: 600; color: var(--accent); }
.help-pager-title { font-size: 15px; font-weight: 600; color: var(--heading); line-height: 1.4; }

/* ============================================================================
   CONTACT
   ========================================================================== */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--heading); margin-bottom: 7px; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 10px; background: var(--bg); font-family: inherit; font-size: 15px; color: var(--fg); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196,98,45,0.10); }
.form-field textarea { min-height: 130px; resize: vertical; }
.form-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-side .ci { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-side .ci .ico { width: 42px; height: 42px; border-radius: 12px; background: rgba(196,98,45,0.10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-side .ci h5 { font-size: 15px; font-weight: 700; color: var(--heading); margin-bottom: 3px; }
.contact-side .ci p { font-size: 14px; color: var(--fg-muted); line-height: 1.5; }

/* ============================================================================
   CAREERS / PRESS / CHANGELOG / STATUS / REFERRAL / PARTNERS
   ========================================================================== */
.job-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 26px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg); margin-bottom: 14px; text-decoration: none; transition: .18s; }
.job-row:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.job-row h4 { font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 5px; }
.job-meta { font-size: 13px; color: var(--fg-muted); display: flex; gap: 14px; }

.press-row { display: flex; gap: 22px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.press-row .date { font-size: 13px; color: var(--fg-muted); width: 130px; flex-shrink: 0; }
.press-row h4 { font-size: 18px; font-weight: 700; color: var(--heading); margin-bottom: 6px; }
.kit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.kit-tile { aspect-ratio: 16/10; border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; background: var(--surface); }

.log-item { display: grid; grid-template-columns: 160px 1fr; gap: 32px; padding: 30px 0; border-top: 1px solid var(--border); }
.log-item .when { font-size: 14px; color: var(--fg-muted); }
.log-item .when .ver { display: inline-block; margin-top: 8px; font-family: 'Season Serif', serif; font-size: 18px; font-weight: 700; color: var(--accent); }
.log-item h3 { font-size: 21px; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.log-item ul { margin-left: 18px; }
.log-item li { font-size: 15px; color: var(--fg-muted); line-height: 1.7; }

.status-banner { display: flex; align-items: center; gap: 14px; padding: 22px 26px; border-radius: var(--radius); background: var(--green-soft); border: 1px solid rgba(46,125,91,0.2); margin-bottom: 32px; }
.status-banner .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-soft); }
.status-banner h3 { font-size: 18px; color: var(--green); font-weight: 700; }
.status-row { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border: 1px solid var(--border); border-radius: 10px; margin-bottom: 10px; background: var(--bg); }
.status-row .op { font-size: 13px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 7px; }
.uptime-bars { display: flex; gap: 2px; margin-top: 8px; }
.uptime-bars i { width: 5px; height: 26px; border-radius: 2px; background: var(--green); opacity: 0.85; }
.uptime-bars i.down { background: var(--accent-dark); }

.steps-num { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.step-num-card .n { font-family: 'Season Serif', serif; font-size: 54px; font-weight: 700; color: rgba(196,98,45,0.25); line-height: 1; }
.step-num-card h4 { font-size: 18px; font-weight: 700; color: var(--heading); margin: 6px 0 8px; }
.step-num-card p { font-size: 14.5px; color: var(--fg-muted); line-height: 1.6; }

/* ============================================================================
   SITE FOOTER — multi-column
   ========================================================================== */
.site-footer { background: var(--surface-dark); color: rgba(255,255,255,0.65); padding: 72px 0 36px; }
.site-footer .container { max-width: var(--max-wide); }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.foot-brand .brand-name { font-family: 'Season Serif', serif; font-weight: 700; font-size: 22px; color: #fff; }
.foot-brand p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; margin: 14px 0 20px; max-width: 280px; }
.foot-social { display: flex; gap: 10px; }
.foot-social a { width: 36px; height: 36px; border-radius: 9px; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; transition: .15s; }
.foot-social a:hover { background: var(--accent); }
.foot-col h6 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 16px; font-weight: 700; }
.foot-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.70); text-decoration: none; margin-bottom: 11px; transition: .15s; }
.foot-col a:hover { color: var(--accent-light); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; gap: 16px; flex-wrap: wrap; }
.foot-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.foot-bottom .legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-bottom .legal-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; }
.foot-bottom .legal-links a:hover { color: var(--accent-light); }

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1000px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .flow-step::after { display: none; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 880px) {
  .container, .container-wide { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta .nav-signin { display: none; }
  .site-nav.open .nav-links { display: flex; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--border); padding: 12px; gap: 2px; box-shadow: var(--shadow-lg); }
  .site-nav.open .nav-menu { position: static; opacity: 1; visibility: visible; pointer-events: auto; transform: none; min-width: 0; box-shadow: none; border: none; padding: 0 0 8px 14px; }
  .nav-menu-grid { grid-template-columns: 1fr; }
  .feature-row, .feature-row.flip { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.flip .feature-copy { order: 0; }
  .grid-2, .grid-3, .grid-4, .spot-grid, .quote-grid, .price-grid, .dir-grid, .blog-grid, .cs-grid, .values-grid, .help-cat-grid, .demo-strip, .steps-num, .kit-grid { grid-template-columns: 1fr; }
  .reach-wrap, .contact-wrap, .blog-feat { grid-template-columns: 1fr; gap: 28px; }
  .help-layout { grid-template-columns: 1fr; gap: 28px; }
  .help-side { position: static; }
  .help-pager { grid-template-columns: 1fr; }
  .help-pager-link.next { text-align: left; }
  .sec { padding: 64px 0; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .cta-band { padding: 44px 26px; }
  .tl-item { grid-template-columns: 70px 1fr; gap: 18px; }
  .log-item { grid-template-columns: 1fr; gap: 10px; }
  .camp-card { grid-template-columns: 44px 1fr; }
  .camp-right { grid-column: 2; text-align: left; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .stats-band { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; }
  .foot-grid { grid-template-columns: 1fr; }
  .display-1 { font-size: 38px; }
}

/* ============================================================================
   HELP-CENTER PEEK DRAWER
   Slide-in panel that loads a help article (public/js/help-peek.js) while the
   current article stays in place. Reuses .prose / .help-pager / theme tokens.
   Sits above the sticky nav (z-index 200). Non-modal: page stays scrollable.
   ========================================================================== */
#help-peek-backdrop {
  position: fixed; inset: 0; z-index: 940;
  background: rgba(31, 22, 16, 0.18);
  opacity: 0; visibility: hidden;
  transition: opacity .2s ease, visibility 0s linear .2s;
}
#help-peek-backdrop.open { opacity: 1; visibility: visible; transition: opacity .2s ease; }

#help-peek {
  position: fixed; top: 0; right: 0; z-index: 950;
  height: 100vh; height: 100dvh;
  width: min(560px, 100vw - 24px);
  display: flex; flex-direction: column;
  background: var(--bg);
  border-left: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform .26s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
#help-peek[hidden] { display: none; }            /* beat #id specificity over [hidden] */
#help-peek.open { transform: translateX(0); }

.help-peek-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 22px; flex-shrink: 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.help-peek-crumb {
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fg-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.help-peek-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.help-peek-full { font-size: 13px; font-weight: 600; color: var(--accent); text-decoration: none; white-space: nowrap; }
.help-peek-full:hover { text-decoration: underline; text-underline-offset: 3px; }
.help-peek-close {
  background: none; border: none; cursor: pointer; padding: 4px;
  font-size: 17px; line-height: 1; color: var(--fg-muted);
  border-radius: 8px; transition: color .14s, background .14s;
}
.help-peek-close:hover { color: var(--heading); background: var(--surface); }

.help-peek-body { flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 26px 28px 48px; }
.help-peek-back {
  display: inline-block; background: none; border: none; cursor: pointer; padding: 0;
  margin-bottom: 16px; font-family: inherit; font-size: 13.5px; font-weight: 600; color: var(--accent);
}
.help-peek-back:hover { text-decoration: underline; text-underline-offset: 3px; }
.help-peek-title {
  font-family: 'Season Serif', serif; font-size: 27px; font-weight: 700; line-height: 1.25;
  color: var(--heading); letter-spacing: -0.01em; margin: 0 0 20px;
}
.help-peek-loading { color: var(--fg-muted); font-size: 15px; }

/* the peeked body reuses .prose, but fills the narrower column + matches the
   article page's smaller in-body h2 scale (.help-main .prose h2) */
.help-peek-body .prose { max-width: none; margin: 0; }
.help-peek-body .prose h2 { font-size: 20px; margin: 30px 0 10px; }
.help-peek-body .prose h3 { font-size: 18px; margin: 24px 0 10px; }
.help-peek-body .prose p,
.help-peek-body .prose li { font-size: 16px; }
.help-peek-body .prose-lead { font-size: 18px; margin-bottom: 22px; }
.help-peek-pager { grid-template-columns: 1fr; margin-top: 36px; }
.help-peek-pager .help-pager-link.next { text-align: left; }
/* these set display via their class, so [hidden] needs to win explicitly */
.help-peek-back[hidden], .help-peek-pager[hidden] { display: none; }

#help-peek :focus-visible,
.help-peek-close:focus-visible,
.help-peek-back:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* phones: dock to the bottom as a sheet (matches the .help-layout 880 breakpoint) */
@media (max-width: 880px) {
  #help-peek {
    top: auto; right: 0; bottom: 0; left: 0;
    width: 100%; height: min(88vh, 100%);
    transform: translateY(100%);
    border-left: none; border-top: 1px solid var(--border);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  #help-peek.open { transform: translateY(0); }
  .help-peek-head { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  #help-peek, #help-peek-backdrop { transition: none; }
}
