/* EBITDAswag — Homepage stylesheet
   Design system tokens + section styles
*/

:root {
  --ink: #f4f1e8;          /* paper / off-white */
  --ink-muted: #a8a294;
  --ink-dim: #6b6757;
  --bg: #0a0e1a;           /* navy-black */
  --bg-deep: #060912;      /* deeper black */
  --bg-card: #11151f;
  --bg-elev: #161b27;
  --line: rgba(244, 241, 232, 0.12);
  --line-strong: rgba(244, 241, 232, 0.28);
  --gold: #c9a44c;
  --gold-bright: #e6c069;
  --term-green: #9bb59b;
  --term-red: #d97070;
  --term-amber: #d4a574;

  --display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --body: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1400px;
  --pad-x: clamp(20px, 4vw, 56px);
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ─────────────────── Utility ─────────────────── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.mono { font-family: var(--mono); letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.eyebrow .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(201,164,76,0.5); }
  50% { opacity: 0.5; box-shadow: 0 0 0 4px rgba(201,164,76,0); }
}

.h-display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
  text-wrap: balance;
}

/* ─────────────────── Top bar (Bloomberg-ish) ─────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 9, 18, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.topbar-strip {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}
.topbar-strip span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-strip .live-dot { width: 6px; height: 6px; background: var(--term-green); border-radius: 50%; animation: pulse-green 1.6s ease-in-out infinite; }
@keyframes pulse-green { 0%,100%{ opacity:1 } 50%{ opacity: 0.4 } }
.topbar-strip .gain { color: var(--term-green); }
.topbar-strip .loss { color: var(--term-red); }

.topnav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: flex; align-items: baseline; gap: 8px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 22px;
}
.brand .swag { color: var(--gold); }
.brand .ticker-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  border: 1px solid var(--line-strong);
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 4px;
  align-self: center;
}
.topnav .links {
  display: flex; gap: 28px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.topnav .links a { color: var(--ink); opacity: 0.85; transition: opacity .15s; }
.topnav .links a:hover { opacity: 1; color: var(--gold); }
.topnav .actions { display: flex; gap: 12px; align-items: center; }
.icon-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 2px;
  position: relative;
  font-family: var(--mono);
  font-size: 12px;
}
.icon-btn .badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--bg);
  font-family: var(--mono); font-weight: 700;
  font-size: 10px; line-height: 1;
  padding: 3px 5px; border-radius: 999px;
}
@media (max-width: 880px) {
  .topnav .links { display: none; }
}

/* ─────────────────── Buttons ─────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: none;
  border-radius: 2px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--gold); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--bg); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn .arrow { display: inline-block; transition: transform .15s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ─────────────────── HERO ─────────────────── */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(64px, 9vw, 128px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  /* subtle scanline / grid */
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,241,232,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,241,232,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 80%);
}
.hero-meta {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.hero-meta .pill {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  display: inline-flex; align-items: center; gap: 8px;
}
.hero-meta .pill .dot { width: 6px; height: 6px; background: var(--term-green); border-radius: 50%; animation: pulse-green 1.6s ease-in-out infinite; }

.hero-headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.86;
  letter-spacing: -0.045em;
  margin: 0;
}
.hero-headline .line2 { color: var(--gold); display: block; }
.hero-headline .strike-through {
  position: relative;
  display: inline-block;
}
.hero-headline .strike-through::after {
  content: ""; position: absolute;
  left: -2%; right: -2%;
  top: 52%;
  height: 0.08em;
  background: var(--ink);
  transform: rotate(-1.5deg);
}

.hero-sub {
  margin-top: clamp(24px, 3.5vw, 36px);
  max-width: 640px;
  font-family: var(--body);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: var(--ink-muted);
  text-wrap: pretty;
}
.hero-sub b { color: var(--ink); font-weight: 600; }

.hero-ctas {
  margin-top: clamp(28px, 4vw, 40px);
  display: flex; gap: 12px; flex-wrap: wrap;
}

.hero-stats {
  margin-top: clamp(48px, 7vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-stat {
  padding: 20px 0;
  border-right: 1px solid var(--line);
  font-family: var(--mono);
}
.hero-stat:last-child { border-right: 0; }
.hero-stat .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.hero-stat .num .accent { color: var(--gold); }
.hero-stat .lbl {
  margin-top: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2) { border-right: 0; }
  .hero-stat:nth-child(1), .hero-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* ─────────────────── Section header pattern ─────────────────── */
.section { padding: clamp(64px, 10vw, 128px) 0; border-bottom: 1px solid var(--line); position: relative; }
.section-light { background: var(--ink); color: var(--bg); border-bottom-color: rgba(0,0,0,0.08); }
.section-light .eyebrow { color: rgba(0,0,0,0.55); }
.section-light .eyebrow .dot { background: var(--bg); }

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.section-head .title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 12px 0 0;
  text-wrap: balance;
}
.section-head .lede {
  max-width: 560px;
  color: var(--ink-muted);
  font-size: clamp(15px, 1.3vw, 17px);
  margin-top: 12px;
}
.section-light .section-head .lede { color: rgba(0,0,0,0.6); }
.section-head .right { text-align: right; align-self: end; }
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
  .section-head .right { text-align: left; }
}

/* ─────────────────── TICKER ─────────────────── */
.ticker-section {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0;
  overflow: hidden;
}
.ticker-row {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-family: var(--mono);
  font-size: 14px;
}
.ticker-row:last-child { border-bottom: 0; }
.ticker-label {
  flex-shrink: 0;
  background: var(--bg);
  color: var(--ink);
  padding: 6px 12px;
  margin-left: var(--pad-x);
  margin-right: 16px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 2px;
}
.ticker-label .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
.ticker-track {
  display: inline-flex;
  gap: 48px;
  animation: ticker-scroll 70s linear infinite;
  flex-shrink: 0;
}
.ticker-row.reverse .ticker-track { animation-direction: reverse; animation-duration: 90s; }
.ticker-quote { display: inline-flex; align-items: center; gap: 14px; }
.ticker-quote .arrow-up { color: var(--term-green); font-weight: 700; }
.ticker-quote .quote-text { color: var(--bg); }
.ticker-quote .attrib { color: rgba(0,0,0,0.55); margin-left: 12px; font-size: 12px; }
.ticker-quote .sep { color: rgba(0,0,0,0.25); }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────────── ORIGIN ─────────────────── */
.origin {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 880px) {
  .origin { grid-template-columns: 1fr; }
}
.origin-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 12px 0 24px;
}
.origin-copy h2 em { font-style: normal; color: var(--gold); }
.origin-copy p {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.6;
  color: var(--ink-muted);
  margin: 0 0 18px;
  max-width: 56ch;
  text-wrap: pretty;
}
.origin-copy p b { color: var(--ink); font-weight: 600; }
.origin-copy .iykyk {
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
}
.origin-copy .iykyk::before {
  content: "// "; color: var(--gold);
}

.origin-photo {
  position: relative;
  border: 1px solid var(--line);
}
.origin-photo img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: contrast(1.05) saturate(0.95); }
.origin-photo .photo-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink);
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
}
.origin-photo .photo-meta .frame-no { color: var(--gold); }
.origin-photo .corner {
  position: absolute; width: 18px; height: 18px;
  border: 1px solid var(--gold);
}
.origin-photo .corner.tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.origin-photo .corner.tr { top: 8px; right: 8px; border-left: 0; border-bottom: 0; }
.origin-photo .corner.bl { bottom: 8px; left: 8px; border-right: 0; border-top: 0; }
.origin-photo .corner.br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

/* ─────────────────── PRODUCTS ─────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 1100px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative;
  cursor: pointer;
  transition: background .2s;
}
.product-card:hover { background: var(--bg-card); }
.product-img {
  aspect-ratio: 1 / 1;
  background: #ece8df;
  position: relative;
  overflow: hidden;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--bg); color: var(--ink);
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 2px;
  font-weight: 600;
}
.product-tag.new { background: var(--gold); color: var(--bg); }
.product-tag.hot { background: var(--term-red); color: var(--ink); }
.product-tag.low { background: var(--bg); color: var(--gold); border: 1px solid var(--gold); }

.product-meta {
  padding: 18px 18px 22px;
}
.product-meta .row1 {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.product-meta .name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.product-meta .price {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink);
}
.product-meta .desc {
  margin-top: 6px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.45;
}
.product-meta .ticker-line {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-dim);
  display: flex; gap: 12px; align-items: center;
}
.product-meta .ticker-line .delta { color: var(--term-green); }
.product-meta .ticker-line .delta.down { color: var(--term-red); }

/* ─────────────────── YOU MIGHT NEED grid (shareable cards) ─────────────────── */
.ymn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 760px) { .ymn-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .ymn-grid { grid-template-columns: repeat(5, 1fr); } }

.ymn-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 24px 22px 60px;
  aspect-ratio: 4 / 5;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s, background .2s;
  overflow: hidden;
}
.ymn-card:hover { border-color: var(--gold); transform: translateY(-2px); background: var(--bg-elev); }
.ymn-card .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 18px;
}
.ymn-card .text {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.ymn-card .text em { font-style: normal; color: var(--gold); }
.ymn-card .footer {
  position: absolute; left: 22px; right: 22px; bottom: 18px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-dim);
}
.ymn-card .footer .share {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink-muted);
}
.ymn-card:hover .footer .share { color: var(--gold); }
.ymn-card .corner {
  position: absolute; width: 8px; height: 8px;
  border: 1px solid var(--gold);
  opacity: 0;
  transition: opacity .2s;
}
.ymn-card:hover .corner { opacity: 1; }
.ymn-card .corner.tl { top: 6px; left: 6px; border-right:0; border-bottom: 0; }
.ymn-card .corner.tr { top: 6px; right: 6px; border-left:0; border-bottom: 0; }
.ymn-card .corner.bl { bottom: 6px; left: 6px; border-right:0; border-top: 0; }
.ymn-card .corner.br { bottom: 6px; right: 6px; border-left:0; border-top: 0; }

/* ─────────────────── VALUE PROPS ─────────────────── */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .values { grid-template-columns: 1fr; } }
.value {
  padding: 36px 0 36px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.value:last-child { border-right: 0; padding-right: 0; }
.value:not(:first-child) { padding-left: 32px; }
@media (max-width: 880px) {
  .value { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 0; }
  .value:not(:first-child) { padding-left: 0; }
  .value:last-child { border-bottom: 0; }
}
.value .icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  color: var(--gold);
}
.value h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.value p {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}
.value p b { color: var(--ink); font-weight: 600; }
.value .badge {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─────────────────── UGC / WILD ─────────────────── */
.wild-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
@media (max-width: 880px) { .wild-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .wild-grid { grid-template-columns: repeat(2, 1fr); } }
.wild-tile {
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
}
.wild-tile.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
@media (max-width: 880px) {
  .wild-tile.wide { grid-column: span 2; }
}
.wild-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.wild-tile:hover img { transform: scale(1.05); }
.wild-tile .handle {
  position: absolute; left: 12px; bottom: 12px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink);
  background: rgba(10, 14, 26, 0.7);
  padding: 4px 8px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

/* ─────────────────── EMAIL CAPTURE ─────────────────── */
.email {
  background: var(--ink);
  color: var(--bg);
  padding: clamp(64px, 10vw, 128px) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.email::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 100% 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at 50% 50%, black 50%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 50%, transparent 90%);
}
.email-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .email-inner { grid-template-columns: 1fr; } }
.email h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 16px 0 0;
}
.email p { color: rgba(0,0,0,0.65); font-size: clamp(15px, 1.3vw, 17px); margin-top: 18px; max-width: 50ch; }
.email .eyebrow { color: rgba(0,0,0,0.55); }
.email .eyebrow .dot { background: var(--bg); }

.email-form {
  display: flex; flex-direction: column; gap: 14px;
}
.email-form .input-row {
  display: flex; align-items: stretch;
  border: 1px solid var(--bg);
  background: var(--ink);
}
.email-form input {
  flex: 1;
  background: transparent;
  border: 0; outline: 0;
  padding: 18px 18px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--bg);
}
.email-form input::placeholder { color: rgba(0,0,0,0.4); }
.email-form button {
  background: var(--bg); color: var(--ink);
  border: 0;
  padding: 0 24px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
}
.email-form button:hover { background: var(--gold); color: var(--bg); }
.email-form .fineprint {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.55);
}
.email-form .ok {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--bg);
  background: var(--gold);
  padding: 10px 14px;
  letter-spacing: 0.1em;
}

/* ─────────────────── FAQ ─────────────────── */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
}
@media (max-width: 880px) { .faq { grid-template-columns: 1fr; gap: 24px; } }
.faq h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin: 12px 0 0;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(17px, 1.7vw, 22px);
  letter-spacing: -0.01em;
  cursor: pointer;
}
.faq-q .num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-right: 16px;
  flex-shrink: 0;
}
.faq-q .plus {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: transform .2s, border-color .2s, background .2s;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 14px;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); background: var(--gold); border-color: var(--gold); color: var(--bg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 0 28px 0;
  margin: 0;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 64ch;
}

/* ─────────────────── FOOTER ─────────────────── */
.footer {
  background: var(--bg-deep);
  padding: 80px 0 32px;
}
.footer-tagline {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 12vw, 200px);
  letter-spacing: -0.045em;
  line-height: 0.86;
  margin: 0 0 64px;
  color: var(--ink);
}
.footer-tagline em { font-style: normal; color: var(--gold); }
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
@media (max-width: 880px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-cols h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 16px;
  font-weight: 600;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-cols a { font-size: 14px; color: var(--ink); }
.footer-cols a:hover { color: var(--gold); }
.footer-meta {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  text-transform: uppercase;
}
.footer-disclaimer {
  margin-top: 24px;
  font-family: var(--body);
  font-size: 12px;
  color: var(--ink-dim);
  max-width: 90ch;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.55;
}

/* small screen tightening */
@media (max-width: 520px) {
  .topbar-strip { padding: 8px 0; }
  .topbar-strip .hide-sm { display: none; }
}
