/* ============================================
   GROFOMO — Landing Page
   Brand tokens from /clients/grofomo/style-guide/brand-config.json
============================================ */

@font-face {
  font-family: 'Syne';
  src: url('fonts/Syne-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('fonts/NHaasGroteskTXPro-55Rg.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('fonts/NHaasGroteskTXPro-65Md.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}

:root {
  --c-yellow: #FFEA00;
  --c-yellow-soft: #FFF6A8;
  --c-black: #080808;
  --c-bg: #FAFAF7;
  --c-surface: #FFFFFF;
  --c-surface-alt: #EFEFEA;
  --c-surface-deep: #2A2A2A;
  --c-text: #080808;
  --c-muted: #080808;
  --c-border: #D8D8D3;

  --f-display: 'Syne', 'Helvetica Neue', Arial, sans-serif;
  --f-body: 'Neue Haas Grotesk Text Pro', 'Helvetica Neue', Arial, sans-serif;

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --max-w: 1240px;

  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 8vw, 7rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Brand rule: no italics anywhere */
em, i, blockquote, cite, dfn, address { font-style: normal; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.display em {
  font-style: normal;
  color: var(--c-black);
  background: var(--c-yellow);
  padding: 0 0.18em 0.04em;
  display: inline-block;
  white-space: nowrap;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}
.h2 em {
  font-style: normal;
  background: var(--c-yellow);
  padding: 0 0.18em 0.04em;
}
.h2.light { color: var(--c-bg); }
.h2.light em { color: var(--c-black); }

.kicker {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.25rem;
}
.kicker.yellow { color: var(--c-yellow); }

.lede {
  margin-top: 1.5rem;
  max-width: 60ch;
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  color: var(--c-muted);
  line-height: 1.55;
}

.section-head { max-width: 760px; margin-bottom: 4rem; }
.section-head.dark { color: var(--c-bg); }
.section-head.dark .kicker { color: var(--c-yellow); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.03em;
  transition:
    transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.32s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-black);
  color: var(--c-yellow);
  border-color: var(--c-black);
}
.btn-primary:hover {
  background: var(--c-yellow);
  color: var(--c-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 0 -2px var(--c-black);
}
.btn-ghost {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border);
}
.btn-ghost:hover { border-color: var(--c-black); background: var(--c-surface); }
.btn-lg { padding: 1rem 1.6rem; font-size: 1.02rem; }
.btn-block { width: 100%; }

.link-quiet {
  font-size: 0.92rem;
  color: var(--c-muted);
}
.link-quiet:hover { color: var(--c-text); }

/* ============ NAV ============ */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--c-border);
}
.nav {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 28px; width: auto; }
.nav-links {
  display: flex;
  gap: 1.75rem;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  color: var(--c-text);
}
.nav-links a { color: var(--c-text); }
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-cta .link-quiet {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--c-text);
}

@media (max-width: 800px) {
  .nav-links { display: none; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5% auto auto;
  width: 60vw;
  max-width: 700px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--c-yellow) 0%, transparent 68%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--c-muted);
  margin-bottom: 2rem;
}
.eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--c-yellow);
  box-shadow: 0 0 0 3px rgba(255, 234, 0, 0.25);
}
.hero-sub {
  margin: 2rem auto 0;
  max-width: 38ch;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--c-muted);
  line-height: 1.5;
}
.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.social-proof {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.social-proof p {
  font-size: 0.92rem;
  color: var(--c-muted);
}
.avatars {
  display: flex;
  align-items: center;
}
.avatars .avatar { margin-left: -10px; }
.avatars .avatar:first-child { margin-left: 0; }
.avatars.big .avatar { width: 56px; height: 56px; font-size: 1.1rem; }

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-surface-alt);
  border: 2.5px solid var(--c-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 0.82rem;
  letter-spacing: 0;
  color: var(--c-black);
  object-fit: cover;
  overflow: hidden;
  flex-shrink: 0;
}
img.avatar { padding: 0; }
.avatar-md { width: 56px; height: 56px; font-size: 1.1rem; }

/* ============ PILLARS ============ */
.pillars {
  padding: var(--section-y) 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  background: var(--c-bg);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.pillar {
  padding: 2rem 1.5rem;
  background: var(--c-bg);
  transition: background 0.2s ease;
}
.pillar:hover { background: var(--c-surface); }
.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--c-yellow);
  display: grid;
  place-items: center;
  color: var(--c-black);
  margin-bottom: 1.5rem;
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}
.pillar p { font-size: 0.92rem; color: var(--c-muted); line-height: 1.5; }

@media (max-width: 1000px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pillar-grid { grid-template-columns: 1fr; }
}

/* ============ QUOTE STRIP ============ */
.quote-strip {
  background: var(--c-yellow);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.quote-inner {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}
.quote-mark {
  font-family: var(--f-display);
  font-size: 7rem;
  line-height: 0.7;
  color: var(--c-black);
}
.quote-strip blockquote {
  font-family: var(--f-display);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--c-black);
  max-width: 60ch;
}
.quote-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  grid-column: 2;
  font-size: 0.95rem;
}
.quote-meta strong { display: block; }
.quote-meta span { color: rgba(8, 8, 8, 0.7); font-size: 0.88rem; }

@media (max-width: 600px) {
  .quote-inner { grid-template-columns: 1fr; gap: 1rem; }
  .quote-mark { font-size: 4rem; }
  .quote-meta { grid-column: 1; }
}

/* ============ UI SECTION ============ */
.ui-section { padding: var(--section-y) 0; }

.ui-mock {
  background: var(--c-black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(8, 8, 8, 0.35);
  border: 1px solid var(--c-border);
}
.ui-mock-chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  background: #1c1c1c;
  border-bottom: 1px solid #2a2a2a;
}
.ui-mock-chrome span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3a3a3a;
}
.ui-mock-chrome span:first-child { background: #FF5F57; }
.ui-mock-chrome span:nth-child(2) { background: #FEBC2E; }
.ui-mock-chrome span:nth-child(3) { background: #28C840; }
.ui-mock-url {
  margin-left: 1.2rem;
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 0.78rem;
  color: #8a8a8a;
}
.ui-mock-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 460px;
  background: var(--c-bg);
}
.ui-sidebar {
  background: #f3f3ee;
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--c-border);
}
.ui-side-logo {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  color: var(--c-black);
}
.ui-sidebar ul li {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--c-muted);
  cursor: pointer;
}
.ui-sidebar ul li.active {
  background: var(--c-black);
  color: var(--c-yellow);
}
.ui-main { padding: 2rem; }
.ui-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ui-stat {
  padding: 1.25rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ui-stat-label { font-size: 0.78rem; color: var(--c-muted); }
.ui-stat-num {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  letter-spacing: -0.01em;
}
.ui-stat-trend {
  font-size: 0.78rem;
  color: var(--c-muted);
}
.ui-stat-trend.up { color: #1f7a3b; }

.ui-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.ui-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.ui-card h4 {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: -0.025em;
  margin-bottom: 0.85rem;
}
.ui-feed { display: flex; flex-direction: column; gap: 0.6rem; }
.ui-feed li {
  font-size: 0.88rem;
  color: var(--c-text);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.ui-tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  background: var(--c-surface-alt);
  color: var(--c-muted);
}
.ui-tag.yellow { background: var(--c-yellow); color: var(--c-black); }
.ui-tag.dark { background: var(--c-black); color: var(--c-yellow); }

@media (max-width: 800px) {
  .ui-mock-body { grid-template-columns: 1fr; min-height: auto; }
  .ui-sidebar { display: none; }
  .ui-stat-row { grid-template-columns: 1fr; }
  .ui-row { grid-template-columns: 1fr; }
}

/* ============ REPLACES SECTION ============ */
.replaces {
  background: var(--c-black);
  color: var(--c-bg);
  padding: var(--section-y) 0;
}
.replace-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.replace-cat {
  background: #131313;
  border: 1px solid #232323;
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.replace-cat:hover {
  border-color: var(--c-yellow);
  background: #1a1a14;
}
.replace-cat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-yellow);
  display: block;
  margin-bottom: 1rem;
}
.replace-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.replace-logos span {
  display: inline-block;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(250, 250, 247, 0.7);
  font-size: 0.85rem;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 234, 0, 0.7);
  text-decoration-thickness: 2px;
}
.replace-foot {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-align: center;
  color: var(--c-yellow);
}

@media (max-width: 900px) { .replace-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .replace-grid { grid-template-columns: 1fr; } }

/* ============ THREE COL ============ */
.three-col { padding: var(--section-y) 0; }
.three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.three-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.three-card h3 {
  font-family: var(--f-display);
  font-size: 1.45rem;
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.three-card p { font-size: 0.95rem; color: var(--c-muted); }

.three-visual {
  background: var(--c-bg);
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--c-border);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.three-visual-dark { background: var(--c-black); color: var(--c-bg); }

.badge-stripe {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.85rem;
  background: var(--c-black);
  color: var(--c-yellow);
  border-radius: 8px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.badge-stripe .ok { color: var(--c-yellow); }

.payout-mock {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  overflow: hidden;
}
.payout-row {
  display: flex;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--c-border);
}
.payout-row:last-child { border-bottom: none; }
.payout-row.total {
  background: var(--c-yellow);
  font-weight: 500;
}

.qr-mock {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.5rem;
  height: 100%;
}
.qr {
  width: 120px;
  height: 120px;
  background:
    linear-gradient(45deg, var(--c-yellow) 25%, transparent 25%),
    linear-gradient(-45deg, var(--c-yellow) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--c-yellow) 75%),
    linear-gradient(-45deg, transparent 75%, var(--c-yellow) 75%),
    var(--c-black);
  background-size: 16px 16px;
  background-position: 0 0, 0 8px, 8px -8px, -8px 0;
  border-radius: 8px;
  border: 4px solid var(--c-yellow);
}
.qr-meta { display: flex; flex-direction: column; gap: 0.35rem; }
.qr-meta span { font-size: 0.72rem; letter-spacing: 0.1em; color: rgba(250, 250, 247, 0.5); }
.qr-meta strong {
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0;
  text-transform: uppercase;
}
.ok-dot { color: var(--c-yellow) !important; letter-spacing: 0.08em; font-size: 0.75rem !important; }

.lineup-mock { display: flex; flex-direction: column; gap: 0.4rem; }
.lineup-row {
  display: grid;
  grid-template-columns: 56px 1fr 80px;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  font-size: 0.85rem;
}
.lineup-row span { color: var(--c-muted); font-variant-numeric: tabular-nums; }
.lineup-row strong { font-family: var(--f-display); font-size: 0.9rem; letter-spacing: 0.02em; }
.lineup-row em { font-style: normal; font-size: 0.72rem; color: var(--c-muted); text-transform: uppercase; letter-spacing: 0.08em; text-align: right; }
.lineup-row.hi { background: var(--c-yellow); border-color: var(--c-yellow); }
.lineup-row.hi span, .lineup-row.hi em { color: rgba(8, 8, 8, 0.6); }

@media (max-width: 900px) { .three-grid { grid-template-columns: 1fr; } }

/* ============ DEEP FEATURES ============ */
.deep-features { padding: var(--section-y) 0; background: var(--c-surface-alt); }
.deep-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--c-border);
}
.deep-row:last-child { border-bottom: none; }
.deep-row.reverse .deep-copy { order: 2; }
.deep-row.reverse .deep-visual { order: 1; }

.deep-copy h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.deep-copy p { color: var(--c-muted); margin-bottom: 1.25rem; }
.check-list { display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background: var(--c-yellow);
  color: var(--c-black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 3px;
}

/* Fee table */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.95rem;
}
.fee-table th, .fee-table td {
  padding: 0.9rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}
.fee-table thead th {
  background: var(--c-bg);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}
.fee-table tbody tr:last-child td { border-bottom: none; }
.fee-table .total-row { background: var(--c-yellow); }
.fee-table .total-row td { font-weight: 500; }
.fine { font-size: 0.85rem; color: var(--c-muted); margin-top: 1rem; }
.fine strong { color: var(--c-text); }

/* Calendar mock */
.cal-mock {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.cal-day {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.65rem 0;
  border-bottom: 1px dashed var(--c-border);
}
.cal-day:last-child { border-bottom: none; }
.cal-day span {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--c-muted);
}
.cal-day > div { display: contents; }
.cal-day .cal-pill {
  background: var(--c-surface-alt);
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  font-size: 0.82rem;
  display: inline-block;
  grid-column: 2;
  margin-bottom: 0.3rem;
  width: fit-content;
}
.cal-day.hi .cal-pill.big {
  background: var(--c-yellow);
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Contract mock */
.contract-mock {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.contract-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--c-border);
}
.contract-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--c-muted);
}
.contract-status {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  background: var(--c-yellow);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}
.contract-mock h5 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.contract-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--c-border);
  font-size: 0.92rem;
}
.contract-row:last-child { border-bottom: none; }
.contract-row span { color: var(--c-muted); }

@media (max-width: 900px) {
  .deep-row { grid-template-columns: 1fr; gap: 2rem; }
  .deep-row.reverse .deep-copy { order: 1; }
  .deep-row.reverse .deep-visual { order: 2; }
}

/* ============ TESTIMONIALS ============ */
.testimonials { padding: var(--section-y) 0; }
.t-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.t-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.t-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 0 -2px var(--c-black);
}
.t-card p {
  font-family: var(--f-display);
  font-style: normal;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.t-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.t-meta strong { display: block; font-size: 0.95rem; font-weight: 500; }
.t-meta span { font-size: 0.85rem; color: var(--c-muted); }

@media (max-width: 800px) { .t-grid { grid-template-columns: 1fr; } }

/* ============ PRICING ============ */
.pricing {
  padding: var(--section-y) 0;
  background: var(--c-yellow);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: "GROFOMO";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(8rem, 22vw, 22rem);
  color: rgba(8, 8, 8, 0.06);
  letter-spacing: -0.02em;
  pointer-events: none;
  line-height: 0.8;
}
.pricing-inner { position: relative; z-index: 1; display: flex; justify-content: center; }
.pricing-card {
  background: var(--c-surface);
  border: 2px solid var(--c-black);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 540px;
  width: 100%;
  box-shadow: 12px 12px 0 var(--c-black);
}
.badge-rose {
  display: inline-block;
  background: var(--c-black);
  color: var(--c-yellow);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.price-h {
  font-family: var(--f-display);
  font-size: 1.5rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--f-display);
  margin-bottom: 0.5rem;
}
.price .dollar { font-size: 1.8rem; line-height: 1; }
.price .amount {
  font-size: clamp(4rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.price .per { font-size: 1rem; font-family: var(--f-body); color: var(--c-muted); }
.price-sub { font-size: 0.92rem; color: var(--c-muted); margin-bottom: 2rem; }
.price-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.price-features li {
  font-size: 0.95rem;
  padding-left: 1.6rem;
  position: relative;
}
.price-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--c-black);
  font-weight: 700;
}
.price-fine { font-size: 0.82rem; color: var(--c-muted); text-align: center; margin-top: 1rem; }

.price-quote {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px dashed var(--c-border);
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0.85rem;
  align-items: start;
}
.price-quote p {
  font-family: var(--f-display);
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.3;
  grid-column: 2;
}
.price-quote-name {
  grid-column: 2;
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-top: 0.5rem;
}

@media (max-width: 600px) { .pricing-card { padding: 2rem; box-shadow: 6px 6px 0 var(--c-black); } }

/* ============ FAQ ============ */
.faq { padding: var(--section-y) 0; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 880px; }
.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.2s ease,
    background 0.2s ease;
}
.faq-item[open] {
  border-color: var(--c-black);
  background: var(--c-bg);
  transform: translateY(-4px);
  box-shadow: 0 12px 0 -2px var(--c-black);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  letter-spacing: -0.03em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-yellow);
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--c-black);
  top: 50%; left: 50%;
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-icon::after { width: 2px; height: 12px; transform: translate(-50%, -50%); transition: transform 0.2s ease; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-body {
  padding: 0 1.5rem 1.5rem;
  color: var(--c-muted);
  font-size: 0.98rem;
  line-height: 1.6;
  max-width: 75ch;
}

/* ============ OUTRO ============ */
.outro {
  padding: var(--section-y) 0;
  background: var(--c-black);
  color: var(--c-bg);
  text-align: center;
}
.outro-inner { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.outro .h2 { color: var(--c-bg); line-height: 1.12; }
.outro .h2 em { background: var(--c-surface-deep); color: var(--c-bg); }
.outro .avatar { border-color: var(--c-black); }
.outro-fine { font-size: 0.85rem; color: rgba(250, 250, 247, 0.55); }

/* Outro CTA: big, bold, yellow on black */
.outro .btn-primary {
  background: var(--c-yellow);
  color: var(--c-black);
  border-color: var(--c-yellow);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.035em;
  padding: 1.35rem 2.6rem;
}
.outro .btn-primary:hover {
  background: var(--c-bg);
  color: var(--c-black);
  border-color: var(--c-bg);
  box-shadow: 0 10px 0 -2px var(--c-yellow);
}

/* ============ FOOTER ============ */
.footer { background: var(--c-black); color: rgba(250, 250, 247, 0.7); padding: 4rem 0 2rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #222;
}
.footer-logo { height: 32px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; max-width: 28ch; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-cols h6 {
  font-family: var(--f-display);
  font-size: 1rem;
  letter-spacing: -0.025em;
  color: var(--c-yellow);
  margin-bottom: 1rem;
}
.footer-cols ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-cols a {
  font-size: 0.92rem;
  color: rgba(250, 250, 247, 0.7);
}
.footer-cols a:hover { color: var(--c-yellow); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
  font-size: 0.82rem;
  color: rgba(250, 250, 247, 0.5);
}

@media (max-width: 800px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; }
}
@media (max-width: 500px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   Syne Bold — applied to every display-font element
============================================ */
.display,
.h2,
.pillar h3,
.three-card h3,
.deep-copy h3,
.ui-card h4,
.contract-mock h5,
.price-h,
.faq-item summary,
.footer-cols h6,
.quote-strip blockquote,
.quote-mark,
.t-card p,
.price-quote p,
.replace-foot,
.lineup-row strong,
.qr-meta strong,
.ui-side-logo,
.ui-stat-num,
.price .amount,
.price .dollar,
.cal-day.hi .cal-pill.big,
.cal-day span {
  font-weight: 700;
}

/* The .display H1 wants a touch more presence */
.display { font-weight: 800; }
