/* =========================================
   PLACEWAY — THEME CSS
   ========================================= */

:root {
  --bg: #F4F1EC;
  --bg-alt: #EAE6DE;
  --surface: #FFFFFF;
  --surface-2: #F9F7F4;
  --ink: #0D0D0D;
  --ink-2: #4A4A4A;
  --ink-3: #8A8A8A;
  --accent: #C97D2E;
  --accent-dark: #A56620;
  --accent-light: #F5DEB3;
  --green: #2D7A3A;
  --green-light: #E8F5E9;
  --border: #D9D4C9;
  --border-soft: #EBE7E0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.topbar {
  background: var(--ink);
  color: #fff;
  padding: 0 48px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #fff;
}
.tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  background: var(--ink);
  color: #fff;
  padding: 80px 48px 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,125,46,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-text { max-width: 580px; }
.overline {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 28px;
}
.lede {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-width: 500px;
}
.hero-stat {
  flex-shrink: 0;
  text-align: right;
  padding-top: 8px;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 96px;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.05em;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
  margin-top: 8px;
  text-align: right;
}
.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ── TRUSTBAR ── */
.trustbar {
  background: var(--bg-alt);
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.trustbar-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
}
.trust-logos {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.logo-pill {
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 20px;
  font-weight: 500;
}

/* ── SECTION HEADER ── */
.section-header {
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
}

/* ── MECHANICS ── */
.mechanics {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.mechanics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mech-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: 36px 32px 32px;
  position: relative;
}
.mech-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  transition: height 0.3s ease;
}
.mech-card:hover::before { height: 100%; }
.mech-icon {
  color: var(--accent);
  margin-bottom: 24px;
}
.mech-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--ink);
  opacity: 0.08;
  position: absolute;
  top: 24px; right: 28px;
  letter-spacing: -0.04em;
}
.mech-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.mech-card p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.65;
}

/* ── FOR PUBLISHERS ── */
.forpublishers {
  background: var(--bg-alt);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.fp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.fp-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.fp-desc {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.fp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fp-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
}
.fp-features svg { color: var(--green); flex-shrink: 0; }
.sdk-card {
  background: var(--ink);
  color: #fff;
  padding: 32px;
  border-radius: 4px;
}
.sdk-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  display: inline-block;
  margin-right: 8px;
}
.sdk-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.sdk-label {
  font-size: 13px;
  font-weight: 500;
}
.sdk-status {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.sdk-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sdk-metric { text-align: center; }
.sdk-metric-val {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.sdk-metric-key {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── FOR ENTERPRISES ── */
.forenterprises {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.fe-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.fe-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.fe-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 36px;
}
.fe-signals { display: flex; flex-direction: column; gap: 12px; }
.signal-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-2);
}
.signal-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.fe-cases { display: flex; flex-direction: column; gap: 16px; }
.cases-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.case-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
}
.case-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.case-card p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ── REWARDS ── */
.rewards {
  background: var(--ink);
  color: #fff;
  padding: 96px 48px;
}
.rewards-inner { max-width: 1200px; margin: 0 auto; }
.rewards .overline { color: var(--accent); }
.rewards h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 20px;
}
.rewards-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 56px;
}
.reward-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.reward-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  border-radius: 2px;
}
.reward-icon {
  color: var(--accent);
  margin-bottom: 16px;
}
.reward-item h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.reward-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ── COMPLIANCE ── */
.compliance {
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.comp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.comp-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.comp-desc {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 40px;
}
.comp-features { display: flex; flex-direction: column; gap: 28px; }
.comp-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
.comp-item p {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.65;
}
.compliance-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}
.cc-header {
  background: var(--ink);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
}
.cc-check {
  width: 28px; height: 28px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.cc-body { padding: 8px 0; }
.cc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border-soft);
}
.cc-row:last-child { border-bottom: none; }
.cc-key { font-size: 13px; color: var(--ink-2); }
.cc-val { font-size: 13px; font-weight: 600; }
.cc-val.green { color: var(--green); }

/* ── CLOSING ── */
.closing {
  background: var(--bg-alt);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1200px; margin: 0 auto; }
.closing h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}
.closing p {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}
.closing-cta p {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 56px 48px 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 48px;
}
.footer-brand .wordmark {
  display: block;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  max-width: 240px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li {
  font-size: 13px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.55);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  max-width: 1200px;
  margin: 0 auto;
}

/* ── ENTERPRISE SHARED ── */
.ent-nav {
  background: #0D0D0D;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 48px;
}
.ent-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  height: 52px;
}
.ent-nav-link {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.ent-nav-link:hover, .ent-nav-link.active {
  color: rgba(255,255,255,0.85);
  border-bottom-color: #C97D2E;
}
.ent-nav-link.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  color: #fff;
  padding-right: 32px;
  border-bottom-color: transparent;
  margin-right: 12px;
}
.ent-nav-link.wordmark:hover { color: #fff; }

/* Enterprise dark hero */
.ent-hero {
  background: #0D0D0D;
  color: #fff;
  padding: 80px 48px 72px;
  position: relative;
  overflow: hidden;
}
.ent-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,125,46,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,125,46,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.ent-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,125,46,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.ent-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ent-hero .overline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C97D2E;
  margin-bottom: 20px;
  font-weight: 500;
}
.ent-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
  max-width: 780px;
}
.ent-hero .lede {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}
.ent-hero-trust {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ent-badge {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 14px;
  border-radius: 20px;
}

/* Vertical cards section */
.vert-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.vert-section-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8A8A8A;
  margin-bottom: 40px;
}
.vert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.vert-card {
  background: #fff;
  border: 1px solid #D9D4C9;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.vert-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.vert-card-visual {
  background: #0D0D0D;
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vert-card-visual-label {
  position: absolute;
  bottom: 16px; left: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.vert-card-body {
  padding: 28px 32px 32px;
}
.vert-card-body .overline {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C97D2E;
  margin-bottom: 12px;
  font-weight: 500;
}
.vert-card-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #0D0D0D;
}
.vert-card-body p {
  font-size: 14px;
  color: #4A4A4A;
  line-height: 1.65;
  margin-bottom: 20px;
}
.vert-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.vert-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #4A4A4A;
}
.vert-feature-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #C97D2E;
  flex-shrink: 0;
}
.vert-price {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: #0D0D0D;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.vert-price-sub {
  font-size: 12px;
  color: #8A8A8A;
  margin-bottom: 20px;
}

/* Heatmap canvas */
.heat-canvas {
  width: 100%;
  height: 100%;
}

/* CTA Button */
.btn-primary {
  display: inline-block;
  background: #C97D2E;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: #A56620; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #C97D2E;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid #C97D2E;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: #C97D2E; color: #fff; }
.btn-ghost-white {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 3px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-white:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* Dark section */
.dark-section {
  background: #0D0D0D;
  color: #fff;
  padding: 80px 48px;
}
.dark-inner { max-width: 1200px; margin: 0 auto; }
.dark-section .overline {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C97D2E;
  margin-bottom: 20px;
}
.dark-section h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 16px;
}
.dark-section .desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 48px;
}

/* Feature grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 28px 24px;
  border-radius: 3px;
}
.feat-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.feat-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}
.feat-icon {
  width: 36px; height: 36px;
  background: rgba(201,125,46,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #C97D2E;
}

/* Sample data mock */
.sample-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.sample-header {
  margin-bottom: 48px;
}
.sample-header h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.sample-header p {
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.65;
  max-width: 560px;
}
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sample-metric {
  background: #fff;
  border: 1px solid #D9D4C9;
  border-radius: 4px;
  padding: 24px 24px 20px;
}
.sample-metric-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A8A8A;
  margin-bottom: 12px;
}
.sample-metric-value {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: #0D0D0D;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.sample-metric-sub {
  font-size: 12px;
  color: #8A8A8A;
}
.sample-bar {
  height: 6px;
  background: #EAE6DE;
  border-radius: 3px;
  margin-top: 12px;
  overflow: hidden;
}
.sample-bar-fill {
  height: 100%;
  background: #C97D2E;
  border-radius: 3px;
  transition: width 0.6s ease;
}

/* Heatmap visualization block */
.heat-block {
  background: #0D0D0D;
  border-radius: 4px;
  padding: 32px;
  margin-top: 40px;
}
.heat-block-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.heat-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, 24px);
  gap: 3px;
}
.heat-cell {
  border-radius: 2px;
  background: rgba(201,125,46,0.05);
  transition: background 0.2s;
}

/* Pricing grid */
.pricing-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.pricing-card {
  background: #fff;
  border: 1px solid #D9D4C9;
  border-radius: 4px;
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: #C97D2E;
  box-shadow: 0 0 0 1px #C97D2E;
}
.pricing-card-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C97D2E;
  margin-bottom: 8px;
  font-weight: 500;
}
.pricing-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #0D0D0D;
}
.pricing-card .price {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  letter-spacing: -0.04em;
  color: #0D0D0D;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .price span {
  font-size: 16px;
  color: #8A8A8A;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.pricing-card .price-desc {
  font-size: 12px;
  color: #8A8A8A;
  margin-bottom: 28px;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4A4A4A;
  line-height: 1.5;
}
.pricing-features li svg { color: #2D7A3A; flex-shrink: 0; margin-top: 1px; }

/* Request access form */
.access-form-section {
  padding: 80px 48px;
  max-width: 700px;
  margin: 0 auto;
}
.form-card {
  background: #fff;
  border: 1px solid #D9D4C9;
  border-radius: 4px;
  padding: 48px 48px 40px;
}
.form-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.form-card .form-sub {
  font-size: 14px;
  color: #8A8A8A;
  margin-bottom: 36px;
  line-height: 1.6;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0D0D0D;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #D9D4C9;
  border-radius: 3px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #0D0D0D;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C97D2E;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 60px 32px 48px; }
  .hero-content { flex-direction: column; }
  .hero-stat { text-align: left; }
  .stat-label { text-align: left; }
  .mechanics-grid { grid-template-columns: 1fr; }
  .fp-inner, .fe-inner, .comp-inner { grid-template-columns: 1fr; gap: 40px; }
  .reward-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .topbar, .hero, .mechanics, .forpublishers,
  .forenterprises, .rewards, .compliance, .closing, footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .reward-cards { grid-template-columns: 1fr; }
  .sdk-metrics { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}