/* ========================================================================
   Beard App — dark editorial, muscular, sales-focused
   Palette: obsidian black + warm bone + amber gold accent
   ======================================================================== */

:root {
  /* Palette */
  --ink:         #0b0906;    /* near-black, warm shadow */
  --ink-2:       #16110c;    /* slightly lifted */
  --ink-3:       #241b13;    /* card surface on dark */
  --line:        #2a221a;    /* hairline on dark */
  --paper:       #f4efe6;    /* warm cream */
  --paper-2:     #ece4d3;    /* subtle warm off-white */
  --bone:        #cfc4ae;    /* muted body on dark */
  --muted:       #877a63;    /* metadata */
  --amber:       #d69a4a;    /* primary accent — warm gold */
  --amber-2:     #b47b2a;    /* deeper amber for hovers */
  --amber-glow:  rgba(214, 154, 74, 0.28);
  --red:         #c8503a;    /* rare emphasis */

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Metrics */
  --wrap: 1240px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-lift: 0 24px 60px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.35);

  /* Motion */
  --ease: cubic-bezier(0.4, 0.14, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--paper);
  background: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* Typography helpers */
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  padding: 6px 12px;
  border: 1px solid rgba(214, 154, 74, 0.3);
  border-radius: 100px;
  background: rgba(214, 154, 74, 0.05);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 12px var(--amber-glow);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ======================================================================
   HEADER
   ====================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 9, 6, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
}
.brand svg { color: var(--amber); }
.brand-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.header-nav {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--bone);
}
.header-nav a { transition: color 0.2s var(--ease); }
.header-nav a:hover { color: var(--amber); }
@media (max-width: 800px) { .header-nav { display: none; } }

/* ======================================================================
   BUTTONS
   ====================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-sm { padding: 10px 16px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
  box-shadow: 0 6px 20px var(--amber-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:hover {
  background: var(--amber-2);
  border-color: var(--amber-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px var(--amber-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(244, 239, 230, 0.3);
}
.btn-ghost:hover {
  border-color: var(--paper);
  background: rgba(244, 239, 230, 0.06);
}

.btn-dark {
  background: var(--ink);
  color: var(--amber);
  border: 1.5px solid var(--amber);
}
.btn-dark:hover {
  background: var(--amber);
  color: var(--ink);
}

/* ======================================================================
   HERO
   ====================================================================== */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding: 100px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: 
    linear-gradient(to right, rgba(11,9,6,0.95) 0%, rgba(11,9,6,0.85) 40%, rgba(11,9,6,0.5) 65%, rgba(11,9,6,0.25) 100%),
    linear-gradient(to bottom, rgba(11,9,6,0.4) 0%, rgba(11,9,6,0.7) 100%),
    url('img/hero-beard.jpg') center right / cover no-repeat;
}
.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-copy { max-width: 720px; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 24px 0 24px;
  color: var(--paper);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--amber);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--bone);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-marks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  color: var(--bone);
}
.hero-marks li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-marks svg { color: var(--amber); flex-shrink: 0; }

/* ======================================================================
   TRUSTED STRIP
   ====================================================================== */
.strip {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.strip-wrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.strip-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--paper);
  letter-spacing: -0.02em;
  line-height: 1;
}
.strip-num .mini {
  font-size: 0.5em;
  color: var(--muted);
  font-weight: 500;
}
.strip-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip-divider {
  width: 1px;
  height: 44px;
  background: var(--line);
}
@media (max-width: 700px) {
  .strip-divider { display: none; }
  .strip-stat { flex: 1 1 40%; }
}

/* ======================================================================
   SECTIONS
   ====================================================================== */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
  border-top: 1px solid var(--line);
}
.section-dark { background: var(--ink-2); }
.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head .eyebrow { margin-bottom: 24px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--paper);
}
.section-sub {
  font-size: clamp(16px, 1.3vw, 18px);
  color: var(--bone);
  margin: 0;
  line-height: 1.55;
}

/* ======================================================================
   HOW IT WORKS
   ====================================================================== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: how;
}
.how-card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.how-card:hover {
  transform: translateY(-3px);
  border-color: var(--amber);
}
.how-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin-bottom: 24px;
}
.how-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--paper);
}
.how-card p {
  color: var(--bone);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 800px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   PROOF / BEFORE-AFTER
   ====================================================================== */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-grid-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
  margin: 0 auto;
}
.proof-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.proof-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.proof-pair figure {
  margin: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 3/4;
}
.proof-pair img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proof-pair figcaption {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(11, 9, 6, 0.7);
  padding: 4px 8px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.proof-pair figure:nth-child(2) figcaption {
  color: var(--amber);
  border: 1px solid rgba(214, 154, 74, 0.4);
}
.proof-card blockquote {
  margin: 0;
  padding: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--paper-2);
  border-left: 2px solid var(--amber);
  padding-left: 16px;
}
.proof-card cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}
@media (max-width: 900px) {
  .proof-grid { grid-template-columns: 1fr; }
}

/* ======================================================================
   AI TRY-IT PANEL
   ====================================================================== */
.ai-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .ai-shell { grid-template-columns: 1fr; }
}

.ai-panel {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.ai-panel-head { margin-bottom: 24px; }
.ai-panel-head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
  color: var(--paper);
}
.panel-sub {
  font-size: 14px;
  color: var(--bone);
  margin: 0;
}

.ai-upload { margin-bottom: 20px; }
.ai-drop {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  transition: all 0.2s var(--ease);
  cursor: pointer;
}
.ai-drop:hover, .ai-drop.dragover {
  border-color: var(--amber);
  background: rgba(214, 154, 74, 0.04);
}
.ai-icon { color: var(--muted); margin-bottom: 16px; }
.ai-drop:hover .ai-icon { color: var(--amber); }
.ai-drop-title {
  font-size: 15px;
  color: var(--paper);
  margin: 0 0 6px;
  font-weight: 500;
}
.link-btn {
  background: none;
  border: none;
  color: var(--amber);
  cursor: pointer;
  font: inherit;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ai-drop-note {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ai-preview {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--ink);
}
.ai-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ai-clear {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(11, 9, 6, 0.8);
  color: var(--paper);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  backdrop-filter: blur(4px);
}
.ai-clear:hover { background: var(--ink); }

.btn-spin {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(11,9,6,0.3);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.btn.loading .btn-label { opacity: 0; }
.btn.loading .btn-spin { display: block; position: absolute; }
@keyframes spin { to { transform: rotate(360deg); } }

.ai-result, .ai-detail {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.ai-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0 0;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ======================================================================
   PRICING
   ====================================================================== */
.section-pricing { background: var(--ink); }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 60px;
}
@media (max-width: 1000px) {
  .tiers { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
}
.tier {
  position: relative;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 154, 74, 0.4);
}
.tier-featured {
  background: linear-gradient(180deg, rgba(214, 154, 74, 0.08) 0%, var(--ink-2) 100%);
  border-color: var(--amber);
  box-shadow: 0 20px 60px rgba(214, 154, 74, 0.15);
  transform: translateY(-8px);
}
.tier-featured:hover { transform: translateY(-12px); }
.tier-flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 16px var(--amber-glow);
}
.tier-flag-alt {
  background: var(--ink);
  color: var(--amber);
  border: 1px solid var(--amber);
}
.tier-head { margin-bottom: 20px; }
.tier-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
  color: var(--paper);
}
.tier-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}
.tier-price {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 8px;
  line-height: 1;
  display: flex;
  align-items: baseline;
}
.tier-currency {
  font-size: 22px;
  color: var(--muted);
  margin-right: 2px;
}
.tier-num {
  font-size: 68px;
  letter-spacing: -0.03em;
}
.tier-cents {
  font-size: 22px;
  color: var(--bone);
  margin-left: 2px;
}
.tier-oneline {
  color: var(--bone);
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.5;
  min-height: 40px;
}
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--paper-2);
  border-bottom: 1px solid rgba(42, 34, 26, 0.5);
  line-height: 1.45;
}
.tier-features li:last-child { border-bottom: none; }
.tier-features svg {
  color: var(--amber);
  flex-shrink: 0;
  margin-top: 3px;
}
.tier-features strong { color: var(--paper); font-weight: 600; }
.tier-fine {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 12px 0 0;
  text-align: center;
}

.guarantee {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  max-width: 720px;
  margin: 0 auto;
}
.guarantee svg { color: var(--amber); flex-shrink: 0; }
.guarantee h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin: 0 0 4px;
  color: var(--paper);
}
.guarantee p {
  font-size: 14px;
  color: var(--bone);
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .guarantee { flex-direction: column; text-align: center; padding: 24px; }
}

/* ======================================================================
   KIT DETAIL SECTION
   ====================================================================== */
.section-kit { background: var(--ink-2); }
.kit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .kit-grid { grid-template-columns: 1fr; gap: 40px; }
}
.kit-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  width: 100%;
}
.kit-title {
  text-align: left;
  margin-top: 24px;
}
.kit-lede {
  font-size: 18px;
  color: var(--bone);
  line-height: 1.55;
  margin: 0 0 32px;
}
.kit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.kit-list li {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.kit-list li:last-child { border-bottom: 1px solid var(--line); }
.kit-list h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--paper);
}
.kit-list p {
  font-size: 14px;
  color: var(--bone);
  margin: 0;
  line-height: 1.55;
}

/* ======================================================================
   FAQ
   ====================================================================== */
.faq {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-top: 1px solid var(--line);
  padding: 24px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--paper);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 24px;
  color: var(--amber);
  transition: transform 0.2s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--bone);
  font-size: 15px;
  line-height: 1.6;
  margin: 12px 0 0;
  padding-right: 48px;
}

/* ======================================================================
   FINAL CTA
   ====================================================================== */
.cta-final {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: clamp(80px, 10vw, 120px) 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-final .section-title { margin: 0; }
.cta-final p {
  font-size: 18px;
  color: var(--bone);
  margin: 0 0 32px;
}

/* ======================================================================
   FOOTER
   ====================================================================== */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding-top: 60px;
}
.footer-wrap {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 40px;
}
@media (max-width: 700px) {
  .footer-wrap { grid-template-columns: 1fr; gap: 40px; }
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-tag {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 14px;
  color: var(--bone);
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--amber); }
.footer-btm {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.footer-btm-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}

/* ======================================================================
   STICKY MOBILE CTA
   ====================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
  display: none;
}
.sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 700;
  border-radius: 100px;
  box-shadow: 0 10px 32px rgba(0,0,0,0.4), 0 4px 12px var(--amber-glow);
  font-size: 15px;
  letter-spacing: -0.005em;
}
@media (max-width: 800px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 100px; }
  .hero { padding-bottom: 60px; }
}

/* ======================================================================
   RESPONSIVE POLISH
   ====================================================================== */
@media (max-width: 600px) {
  .hero { padding: 60px 0 80px; min-height: auto; }
  .hero-title { font-size: 44px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .header-wrap { padding: 12px 0; }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
