/* ================================================================
   PostPoint — Theme
   Royal blue + gold palette. Fraunces (serif) + Satoshi (sans).
   Named tokens: --royal, --gold, --navy for future changes.
   ================================================================ */

:root {
  /* Primary palette */
  --royal: #1E3A8A;
  --royal-dark: #162C6B;
  --gold: #D4AF37;
  --gold-light: #E8C94A;
  --navy: #0F1E47;

  /* Backgrounds */
  --bg-light: #FAFAF7;
  --bg-dark: #0F1E47;

  /* Text */
  --text-dark: #0F1E47;
  --text-light: #FAFAF7;
  --text-muted-dark: rgba(15, 30, 71, 0.55);
  --text-muted-light: rgba(250, 250, 247, 0.6);

  /* Neutrals */
  --white: #FFFFFF;
  --border-light: rgba(15, 30, 71, 0.1);
  --border-dark: rgba(250, 250, 247, 0.1);

  --nav-height: 64px;
}

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

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

/* ================================================================
   Navigation
   ================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: rgba(15, 30, 71, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  z-index: 100;
}

.nav-logo {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--text-light);
  letter-spacing: -0.5px;
  font-weight: 700;
}

.nav-tagline {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.45);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.nav-cta {
  display: inline-block;
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-light);
}

/* ================================================================
   Hero — full-bleed image with gradient overlay
   ================================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 60px) 52px 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero/hero-storefront.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 26, 64, 0.92) 0%,
    rgba(30, 58, 138, 0.82) 50%,
    rgba(14, 26, 64, 0.88) 100%
  );
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding-bottom: 6px;
}

.hero-headline {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  color: var(--text-light);
  margin-bottom: 28px;
  letter-spacing: -1.5px;
  font-weight: 700;
}

.hero-sub {
  font-size: 17px;
  color: rgba(250, 250, 247, 0.78);
  line-height: 1.68;
  max-width: 520px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  display: flex;
  flex-direction: column;
  padding-right: 36px;
}

.stat-num {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  font-weight: 600;
}

.stat-label {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.55);
  line-height: 1.3;
  max-width: 90px;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(212, 175, 55, 0.2);
  margin-right: 36px;
  flex-shrink: 0;
}

/* Hero CTA button */
.hero-cta {
  display: inline-block;
  margin-top: 48px;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.hero-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.4);
}

/* ================================================================
   Hero — Sample postcard capture form
   ================================================================ */
.hero-sample-capture {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.sample-caption {
  font-size: 13px;
  color: rgba(250, 250, 247, 0.55);
  margin-bottom: 14px;
  line-height: 1.45;
}

.sample-input-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sample-input {
  flex: 1;
  min-width: 200px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 3px;
  color: var(--text-light);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.sample-input::placeholder {
  color: rgba(250, 250, 247, 0.35);
}

.sample-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.sample-btn {
  padding: 11px 22px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.sample-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-1px);
}

.sample-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sample-feedback {
  margin-top: 10px;
  font-size: 13px;
  min-height: 18px;
}

.sample-feedback--success {
  color: #6ee7a3;
}

.sample-feedback--error {
  color: #fca5a5;
}

/* ================================================================
   /sample page
   ================================================================ */
.sample-page {
  min-height: 100vh;
  background: var(--bg-light);
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 100px;
}

.sample-page-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 52px;
}

.sample-page-headline {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sample-page-sub {
  font-size: 17px;
  color: var(--text-muted-dark);
  max-width: 560px;
  margin-bottom: 56px;
  line-height: 1.65;
}

/* Postcard mocks */
.postcard-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.postcard-mock {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(15, 30, 71, 0.13);
}

.postcard-mock img {
  width: 100%;
  display: block;
  aspect-ratio: 6/4;
  object-fit: cover;
}

.postcard-label {
  text-align: center;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted-dark);
}

/* Sample page capture form */
.sample-page-form-wrap {
  background: var(--navy);
  border-radius: 14px;
  padding: 48px;
  text-align: center;
}

.sample-page-form-title {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.sample-page-form-desc {
  font-size: 15px;
  color: rgba(250, 250, 247, 0.6);
  margin-bottom: 28px;
  line-height: 1.55;
}

.sample-page-input-row {
  display: flex;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.sample-page-input {
  flex: 1;
  min-width: 220px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 4px;
  color: var(--text-light);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.sample-page-input::placeholder {
  color: rgba(250, 250, 247, 0.35);
}

.sample-page-input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
}

.sample-page-btn {
  padding: 13px 28px;
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.sample-page-btn:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.sample-page-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.sample-page-feedback {
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
}

.sample-page-feedback--success { color: #6ee7a3; }
.sample-page-feedback--error { color: #fca5a5; }

/* ================================================================
   Pipeline Card (hero right column)
   ================================================================ */
.pipeline-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 28px;
  backdrop-filter: blur(16px);
}

.pipeline-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.4);
  margin-bottom: 24px;
}

.pipeline-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}

.pipeline-step--outcome {
  background: rgba(212, 175, 55, 0.08);
  margin: 0 -12px;
  padding: 12px 12px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.step-num {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1.5;
  min-width: 24px;
}

.step-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 2px;
}

.step-desc {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.5);
  line-height: 1.4;
}

.pipeline-arrow {
  width: 1px;
  height: 16px;
  background: rgba(212, 175, 55, 0.15);
  margin-left: 11px;
}

/* ================================================================
   Section defaults
   ================================================================ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-dark);
  line-height: 1.12;
  letter-spacing: -0.5px;
  max-width: 640px;
  font-weight: 700;
}

.section-body {
  font-size: 17px;
  color: var(--text-muted-dark);
  line-height: 1.65;
  max-width: 540px;
  margin-top: 18px;
}

/* ================================================================
   Differentiators — deep navy section
   ================================================================ */
.differentiators {
  padding: 110px 0;
  background: var(--bg-dark);
}

.differentiators .section-label { color: var(--gold); }
.differentiators .section-headline { color: var(--text-light); }
.differentiators .section-body { color: var(--text-muted-light); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 52px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: 12px;
  overflow: hidden;
}

.diff-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.06);
  padding: 40px;
  transition: background 0.2s ease;
}

.diff-card:hover {
  background: rgba(212, 175, 55, 0.05);
}

.diff-icon {
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0.9;
}

.diff-card h3 {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 12px;
  font-weight: 600;
}

.diff-card p {
  font-size: 14px;
  color: rgba(250, 250, 247, 0.52);
  line-height: 1.65;
}

/* ================================================================
   How It Works — image + numbered steps
   ================================================================ */
.how-it-works {
  padding: 110px 0;
  background: var(--bg-light);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.how-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(15, 30, 71, 0.14);
  position: relative;
}

.how-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.how-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  pointer-events: none;
}

.how-content .section-label { margin-bottom: 12px; }

.how-steps {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.how-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.how-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--royal);
  color: var(--text-light);
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.25);
}

.how-step-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.how-step-body p {
  font-size: 14px;
  color: var(--text-muted-dark);
  line-height: 1.55;
}

/* ================================================================
   In Action — hero-mailbox.jpg section
   ================================================================ */
.in-action {
  padding: 0;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.in-action-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero/hero-mailbox.jpg');
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

.in-action-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 26, 64, 0.91) 0%,
    rgba(30, 58, 138, 0.75) 55%,
    rgba(14, 26, 64, 0.55) 100%
  );
}

.in-action-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 52px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.in-action-text h2 {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-light);
  line-height: 1.12;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 20px;
}

.in-action-text p {
  font-size: 17px;
  color: rgba(250, 250, 247, 0.72);
  line-height: 1.65;
  max-width: 440px;
}

.in-action-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 36px;
  backdrop-filter: blur(12px);
  text-align: center;
}

.in-action-stat .big-num {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

.in-action-stat .big-label {
  font-size: 16px;
  color: rgba(250, 250, 247, 0.7);
  line-height: 1.4;
}

/* ================================================================
   Testimonials
   ================================================================ */
.testimonials {
  padding: 110px 0;
  background: var(--royal);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.05);
  pointer-events: none;
}

.testimonials::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -40px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.04);
  pointer-events: none;
}

.testimonials .section-inner {
  position: relative;
  z-index: 1;
}

.testimonials .section-label { color: var(--gold); }

.testimonials .section-headline {
  color: var(--text-light);
  max-width: 480px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 12px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.testimonial-quote {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-light);
  font-style: italic;
  font-weight: 400;
  flex: 1;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 40px;
  color: var(--gold);
  line-height: 0;
  vertical-align: -16px;
  margin-right: 4px;
  opacity: 0.8;
}

.testimonial-attribution {
  border-top: 1px solid rgba(212, 175, 55, 0.12);
  padding-top: 20px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 13px;
  color: rgba(250, 250, 247, 0.5);
}

.testimonial-disclaimer {
  text-align: center;
  margin-top: 36px;
  font-size: 12px;
  color: rgba(250, 250, 247, 0.3);
  font-style: italic;
}

/* ================================================================
   Manifesto (blockquote)
   ================================================================ */
.manifesto {
  padding: 110px 52px;
  background: var(--navy);
}

.manifesto-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(22px, 3.5vw, 34px);
  color: var(--text-light);
  line-height: 1.35;
  font-style: italic;
  letter-spacing: -0.3px;
  margin-bottom: 36px;
  font-weight: 400;
}

.manifesto-quote::before {
  content: '\201C';
  color: var(--gold);
  opacity: 0.7;
}

.manifesto-quote::after {
  content: '\201D';
  color: var(--gold);
  opacity: 0.7;
}

.manifesto-detail {
  font-size: 16px;
  color: var(--text-muted-light);
  line-height: 1.7;
}

.manifesto-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 32px auto;
  opacity: 0.5;
}

/* ================================================================
   Closing CTA
   ================================================================ */
.closing {
  padding: 110px 52px;
  background: var(--bg-light);
}

.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 58px);
  color: var(--text-dark);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  font-weight: 700;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-muted-dark);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto;
}

.closing-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 40px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.25);
}

.closing-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 175, 55, 0.35);
}

/* ================================================================
   Footer — royal blue bg, gold link accents
   ================================================================ */
.footer {
  padding: 48px 52px;
  background: var(--navy);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 4px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(250, 250, 247, 0.4);
}

.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.footer-links a {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-meta {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.25);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(250, 250, 247, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-column: 1 / -1;
}

/* ================================================================
   Process timeline (kept, but now styled with royal + gold)
   ================================================================ */
.process {
  padding: 110px 0;
  background: var(--bg-light);
  display: none; /* replaced by How It Works section */
}

/* ================================================================
   Responsive
   ================================================================ */
@media (max-width: 1024px) {
  .how-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .in-action-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 32px);
    padding-left: 24px;
    padding-right: 24px;
  }

  .diff-grid {
    grid-template-columns: 1fr;
  }

  .nav { padding: 0 24px; }
  .section-inner { padding: 0 24px; }
  .how-inner { padding: 0 24px; }
  .in-action-inner { padding: 60px 24px; }
  .manifesto { padding: 80px 24px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 36px 24px; }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider { display: none; }
  .stat { padding-right: 0; }

  .nav-tagline { display: none; }
}

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 34px; }
  .closing-headline { font-size: 28px; }
  .in-action-stat .big-num { font-size: 48px; }
}

/* ================================================================
   /naming — Brand finalist comparison page
   ================================================================ */

.naming-body {
  background: var(--navy);
  min-height: 100vh;
  /* Extra bottom padding so sticky footer never overlaps last hero */
  padding-bottom: 80px;
}

/* ---- Page header ---- */
.naming-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.naming-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 52px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.naming-back {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.naming-back:hover { opacity: 1; }

.naming-header-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.6);
  margin-bottom: 2px;
}

.naming-header-h1 {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.3px;
  margin: 0;
}

.naming-header-meta {
  margin-left: auto;
  font-size: 12px;
  color: rgba(250, 250, 247, 0.38);
  white-space: nowrap;
}

/* ---- Option label strip ---- */
.naming-option-label-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 52px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.naming-option-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.naming-domain-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.naming-domain-badge--available {
  background: rgba(110, 231, 163, 0.1);
  border: 1px solid rgba(110, 231, 163, 0.3);
  color: #6ee7a3;
}

.naming-domain-badge--taken {
  background: rgba(252, 165, 165, 0.1);
  border: 1px solid rgba(252, 165, 165, 0.25);
  color: #fca5a5;
}

/* ---- Hero mockup block ---- */
.naming-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.naming-hero-overlay {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Reuse the royal blue gradient overlay logic from .hero-bg::after */
.naming-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 26, 64, 0.93) 0%,
    rgba(30, 58, 138, 0.83) 50%,
    rgba(14, 26, 64, 0.89) 100%
  );
}

.naming-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 60px 52px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  align-items: center;
}

/* Big Fraunces wordmark — gold on royal blue */
.naming-hero-wordmark {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 24px;
}

.naming-hero-tagline {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(250, 250, 247, 0.82);
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 44px;
  font-style: italic;
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-weight: 400;
}

/* Stats row mirrors homepage .hero-stats exactly */
.naming-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
}

/* CTA row */
.naming-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.naming-cta-primary {
  display: inline-block;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.3px;
  cursor: default;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.naming-cta-secondary {
  font-size: 13px;
  color: rgba(250, 250, 247, 0.5);
}

.naming-hero-right {
  /* inherits .pipeline-card styles from the shared section above */
}

/* ---- Gold divider between options ---- */
.naming-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}

.naming-divider-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
  opacity: 0.4;
  margin: 12px 0;
}

/* ---- Sticky vote bar ---- */
.naming-vote-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 30, 71, 0.97);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(16px);
  z-index: 200;
  padding: 14px 24px;
}

.naming-vote-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.naming-vote-prompt {
  font-size: 14px;
  font-weight: 700;
  color: rgba(250, 250, 247, 0.6);
  white-space: nowrap;
  flex-shrink: 0;
}

.naming-vote-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.naming-vote-btn {
  padding: 11px 24px;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.5);
  color: var(--gold);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.naming-vote-btn:hover:not(:disabled) {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  transform: translateY(-1px);
}

.naming-vote-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---- Vote confirmed overlay ---- */
.naming-confirmed {
  position: fixed;
  inset: 0;
  background: rgba(15, 30, 71, 0.92);
  backdrop-filter: blur(12px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}

.naming-confirmed-box {
  background: var(--navy);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 52px 64px;
  text-align: center;
  max-width: 480px;
}

.naming-confirmed-check {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.naming-confirmed-title {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.naming-confirmed-sub {
  font-size: 15px;
  color: rgba(250, 250, 247, 0.55);
  line-height: 1.5;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .naming-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px;
  }

  .naming-header-inner { padding: 14px 24px; }
  .naming-header-meta { display: none; }
  .naming-option-label-wrap { padding: 20px 24px 10px; }
  .naming-divider { padding: 0 24px; }
  .naming-vote-inner { flex-direction: column; align-items: flex-start; gap: 10px; }

  .naming-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .naming-hero-wordmark { font-size: 44px; }
  .naming-vote-btn { font-size: 12px; padding: 10px 14px; }
  .naming-confirmed-box { padding: 36px 28px; }
}

/* ================================================================
   /postmaster — Brand Preview Page
   POSTMASTER wordmark + taglines + side-by-side comparison + decision CTA
   ================================================================ */

.pm-body {
  background: var(--navy);
  min-height: 100vh;
}

/* ---- Page header ---- */
.pm-header {
  background: var(--navy);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}

.pm-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 52px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.pm-back {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.pm-back:hover { opacity: 1; }

.pm-header-center { flex: 1; }

.pm-header-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.6);
  margin-bottom: 2px;
}

.pm-header-h1 {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.3px;
  margin: 0;
}

.pm-header-meta {
  margin-left: auto;
  font-size: 12px;
  color: rgba(250, 250, 247, 0.38);
  white-space: nowrap;
}

/* ---- Hero section ---- */
.pm-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pm-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/hero/hero-storefront.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.pm-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 26, 64, 0.94) 0%,
    rgba(30, 58, 138, 0.85) 50%,
    rgba(14, 26, 64, 0.92) 100%
  );
}

.pm-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 80px 52px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

/* Wordmark lockup */
.pm-wordmark-wrap {
  margin-bottom: 48px;
}

.pm-wordmark-svg {
  width: 100%;
  max-width: 520px;
  display: block;
  overflow: visible;
}

.pm-wordmark-sub {
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.55);
  margin-top: 18px;
}

/* Tagline candidates — stacked, rotating highlight */
.pm-taglines {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.pm-tagline {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 6px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.4s ease;
  cursor: default;
}

.pm-tagline--active {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.07);
}

.pm-tagline-mark {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  opacity: 0.5;
  min-width: 20px;
  transition: opacity 0.4s ease;
}

.pm-tagline--active .pm-tagline-mark {
  opacity: 1;
}

.pm-tagline-text {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 17px;
  color: rgba(250, 250, 247, 0.5);
  font-style: italic;
  line-height: 1.4;
  flex: 1;
  transition: color 0.4s ease;
}

.pm-tagline--active .pm-tagline-text {
  color: var(--text-light);
}

.pm-tagline-note {
  font-size: 11px;
  color: rgba(212, 175, 55, 0.5);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pm-tagline--active .pm-tagline-note {
  opacity: 1;
}

/* Stats row */
.pm-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

/* Hero CTA row */
.pm-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pm-cta-primary {
  display: inline-block;
  padding: 15px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.3px;
  cursor: default;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.pm-cta-secondary {
  font-size: 13px;
  color: rgba(250, 250, 247, 0.5);
}

/* ---- Section utilities ---- */
.pm-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  padding-bottom: 6px;
}

.pm-section-label--light {
  color: rgba(212, 175, 55, 0.7);
  border-bottom-color: rgba(212, 175, 55, 0.2);
}

.pm-section-headline {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text-light);
  line-height: 1.1;
  letter-spacing: -0.5px;
  font-weight: 700;
  margin-bottom: 16px;
}

.pm-section-sub {
  font-size: 17px;
  color: rgba(250, 250, 247, 0.6);
  line-height: 1.65;
  max-width: 560px;
}

/* ---- Side-by-side comparison ---- */
.pm-compare {
  padding: 100px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.pm-compare-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 52px;
}

.pm-compare-header {
  margin-bottom: 56px;
}

.pm-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.pm-compare-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pm-compare-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pm-compare-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pm-compare-chip--current {
  background: rgba(250, 250, 247, 0.08);
  border: 1px solid rgba(250, 250, 247, 0.15);
  color: rgba(250, 250, 247, 0.55);
}

.pm-compare-chip--new {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--gold);
}

.pm-compare-name-tag {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.3px;
}

/* Hero mock — half-width treatment */
.pm-mock {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.pm-mock-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.pm-mock-bg--storefront {
  background-image: url('/images/hero/hero-storefront.jpg');
}

.pm-mock-bg--mailbox {
  background-image: url('/images/hero/hero-mailbox.jpg');
}

.pm-mock-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 26, 64, 0.93) 0%,
    rgba(30, 58, 138, 0.82) 55%,
    rgba(14, 26, 64, 0.88) 100%
  );
  z-index: 1;
}

.pm-mock-inner {
  position: relative;
  z-index: 2;
  padding: 36px;
  width: 100%;
}

.pm-mock-wordmark {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 12px;
}

.pm-mock-wordmark--postpoint {
  color: var(--gold);
}

.pm-mock-wordmark-svg-wrap {
  margin-bottom: 12px;
}

.pm-mock-tagline {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(250, 250, 247, 0.75);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 260px;
}

.pm-mock-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pm-mock-stat {
  display: flex;
  flex-direction: column;
}

.pm-mock-stat-num {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
}

.pm-mock-stat-label {
  font-size: 11px;
  color: rgba(250, 250, 247, 0.45);
  line-height: 1.3;
}

.pm-mock-stat-div {
  width: 1px;
  height: 32px;
  background: rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.pm-mock-btn {
  display: inline-block;
  padding: 11px 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.3px;
  cursor: default;
}

/* Challenger card gets a gold glow treatment to signal it as the focus */
.pm-compare-card--right .pm-mock {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 0 40px rgba(212, 175, 55, 0.1), 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* ---- Rationale bullets ---- */
.pm-rationale {
  padding: 100px 0;
  background: var(--royal);
  border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.pm-rationale-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 52px;
}

.pm-rationale-bullets {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 48px;
}

.pm-bullet {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.pm-bullet-num {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  min-width: 28px;
  padding-top: 4px;
  opacity: 0.7;
}

.pm-bullet-body h3 {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.pm-bullet-body p {
  font-size: 16px;
  color: rgba(250, 250, 247, 0.62);
  line-height: 1.7;
  max-width: 620px;
}

/* ---- Decision CTA ---- */
.pm-decision {
  padding: 110px 52px;
  background: var(--navy);
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.pm-decision-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pm-decision-headline {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text-light);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  font-weight: 700;
}

.pm-decision-sub {
  font-size: 17px;
  color: rgba(250, 250, 247, 0.55);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 48px;
}

.pm-decision-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pm-decision-btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 3px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
}

.pm-decision-btn--lock {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.pm-decision-btn--lock:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.45);
}

.pm-decision-btn--keep {
  background: transparent;
  color: rgba(250, 250, 247, 0.6);
  border: 1px solid rgba(250, 250, 247, 0.18);
}

.pm-decision-btn--keep:hover {
  border-color: rgba(250, 250, 247, 0.35);
  color: var(--text-light);
}

.pm-decision-note {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.28);
  margin-top: 8px;
}

/* ---- Footer ---- */
.pm-footer {
  padding: 28px 52px;
  background: var(--navy);
  border-top: 1px solid rgba(212, 175, 55, 0.08);
}

.pm-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pm-footer-brand {
  font-family: 'Fraunces', 'DM Serif Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(250, 250, 247, 0.4);
}

.pm-footer-meta {
  font-size: 12px;
  color: rgba(250, 250, 247, 0.28);
}

.pm-footer-link {
  color: var(--gold);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.pm-footer-link:hover { opacity: 1; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .pm-compare-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 900px) {
  .pm-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px;
  }

  .pm-header-inner { padding: 14px 24px; }
  .pm-header-meta { display: none; }
  .pm-compare-inner { padding: 0 24px; }
  .pm-rationale-inner { padding: 0 24px; }
  .pm-decision { padding: 80px 24px; }
  .pm-footer { padding: 24px; }
  .pm-wordmark-svg { max-width: 380px; }
}

@media (max-width: 600px) {
  .pm-mock { min-height: 300px; }
  .pm-mock-inner { padding: 24px; }
  .pm-decision-btns { flex-direction: column; align-items: center; }
  .pm-decision-btn { width: 100%; max-width: 320px; text-align: center; }
  .pm-wordmark-svg { max-width: 280px; }
}
