@charset "UTF-8";
/* BeautinAI — landings de segmento (barbearia / tatuagem)
   Tema theme-ink-gold: preto + dourado. Zero rose. */

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

html { scroll-behavior: smooth; }

/* Tokens canônicos (plano fase 3) + aliases de uso */
.theme-ink-gold {
  --ink-bg:      #0B0B0B;
  --ink-bg2:     #111111;
  --ink-surface: #1A1A1A;
  --ink-surface2:#222222;
  --gold:        #B8924A;
  --gold-mid:    #DFC08A;
  --gold-lt:     #F9F3E8;
  --gold-dim:    rgba(184, 146, 74, 0.14);
  --gold-line:   rgba(184, 146, 74, 0.28);
  --text:        #F3F0EB;
  --text2:       #D4CFC6;
  --muted:       #8C867E;
  --teal:        #3D8C7A;
  --teal-lt:     rgba(61, 140, 122, 0.16);
  --border:      rgba(223, 192, 138, 0.16);
  --border2:     rgba(255, 255, 255, 0.06);
  --shadow:      0 2px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg:   0 12px 48px rgba(0, 0, 0, 0.5);

  /* aliases curtos usados no restante do CSS */
  --bg:       var(--ink-bg);
  --bg2:      var(--ink-bg2);
  --surface:  var(--ink-surface);
  --surface2: var(--ink-surface2);

  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--ink-bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Atmosphere: gradientes + textura (não flat) */
.theme-ink-gold::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 12% -8%, rgba(184, 146, 74, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 40% at 92% 18%, rgba(184, 146, 74, 0.07), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(184, 146, 74, 0.05), transparent 60%),
    linear-gradient(180deg, #0B0B0B 0%, #100E0C 45%, #0B0B0B 100%);
}

.theme-ink-gold::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

nav, section, footer { position: relative; z-index: 1; }

/* ── NAV ────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 5rem;
  background: rgba(11, 11, 11, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border2);
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.logo em { font-style: italic; color: var(--gold); }

nav ul { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
nav ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.83rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.25s;
}
nav ul a:hover { color: var(--gold-mid); }

.nav-cta {
  background: var(--gold) !important;
  color: #0B0B0B !important;
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  font-weight: 600 !important;
  letter-spacing: 0.03em !important;
  transition: background 0.25s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--gold-mid) !important; transform: translateY(-1px); }

.nav-back {
  font-size: 0.75rem !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: var(--muted) !important;
}
.nav-back:hover { color: var(--gold-mid) !important; }

/* ── BUTTONS ────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: #0B0B0B;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; letter-spacing: 0.04em;
  transition: all 0.25s; border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 146, 74, 0.35);
}
.btn-primary--glow {
  animation: goldGlow 3.2s ease-in-out infinite;
}

.btn-ghost {
  color: var(--text2); font-size: 0.85rem; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.4rem;
  letter-spacing: 0.02em; transition: color 0.25s; font-weight: 400;
}
.btn-ghost::after { content: '\2192'; transition: transform 0.2s; }
.btn-ghost:hover { color: var(--gold-mid); }
.btn-ghost:hover::after { transform: translateX(4px); }

.btn-outline {
  border: 1.5px solid var(--gold-line);
  color: var(--gold-mid);
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.25s;
  display: inline-block;
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  transform: translateY(-1px);
}

/* ── HERO (full-bleed ink + brand first) ─────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 9rem 5rem 5rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(11,11,11,0.2) 40%, transparent 70%),
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(184, 146, 74, 0.08), transparent 55%);
}

.hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.55;
  animation: goldLine 4.5s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: 5%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 146, 74, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* Marca no hero — sinal principal (não só nav) */
.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  line-height: 1;
  margin-bottom: 1.1rem;
}
.hero-brand em {
  font-style: italic;
  color: var(--gold);
}
.hero-brand::after {
  content: '';
  display: block;
  width: 3.2rem;
  height: 1.5px;
  margin-top: 0.85rem;
  background: var(--gold);
  animation: brandUnderline 2.8s ease-in-out infinite;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 1.25rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  line-height: 1.12;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text);
}
h1 em { font-style: italic; color: var(--gold); }

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }

.hero-visual { position: relative; z-index: 1; }

/* Plano de produto (âncora visual) — não card de marketing */
.dash-card {
  background: linear-gradient(160deg, rgba(34, 34, 34, 0.95), rgba(17, 17, 17, 0.98));
  border: 1px solid var(--gold-line);
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  animation: floatUp 1s 0.35s ease both;
}

@keyframes floatUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dash-topbar {
  background: rgba(0, 0, 0, 0.35);
  padding: 0.7rem 1rem;
  display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid var(--border2);
}
.d-dot { width: 9px; height: 9px; border-radius: 50%; }
.d-dot-a { background: #5C5650; }
.d-dot-b { background: var(--gold); }
.d-dot-c { background: var(--teal); }
.dash-topbar span { font-size: 0.68rem; color: var(--muted); margin-left: 0.4rem; }

.dash-body { padding: 1.2rem; }

.dash-date {
  font-size: 0.63rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.8rem;
}

.dash-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-bottom: 1rem;
}
.d-metric {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 8px; padding: 0.65rem;
}
.d-m-label { font-size: 0.6rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.d-m-val { font-size: 1.15rem; font-weight: 600; color: var(--text); }
.d-m-badge { font-size: 0.58rem; color: var(--teal); margin-top: 2px; font-weight: 500; }

.dash-rows { display: flex; flex-direction: column; gap: 0.35rem; }
.d-row {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: 8px; padding: 0.55rem 0.8rem;
}
.d-time { font-size: 0.7rem; color: var(--muted); width: 2.8rem; flex-shrink: 0; }
.d-info { flex: 1; }
.d-name { font-size: 0.75rem; font-weight: 500; color: var(--text); }
.d-prof { font-size: 0.62rem; color: var(--muted); }
.d-badge {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 0.22rem 0.55rem; border-radius: 3px; flex-shrink: 0;
}
.d-badge-ok { background: var(--teal-lt); color: var(--teal); }
.d-badge-run { background: var(--gold-dim); color: var(--gold-mid); border: 1px solid var(--gold-line); }
.d-badge-wait { background: rgba(255,255,255,0.06); color: var(--muted); }

.dash-ai {
  margin-top: 0.8rem;
  background: linear-gradient(135deg, var(--gold-dim), rgba(184,146,74,0.06));
  border: 1px solid var(--gold-line);
  border-radius: 8px; padding: 0.7rem 0.9rem;
  display: flex; gap: 0.6rem;
}
.ai-chip {
  width: 20px; height: 20px; border-radius: 3px;
  background: var(--gold); color: #0B0B0B;
  font-size: 0.52rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ai-msg { font-size: 0.68rem; color: var(--text2); line-height: 1.55; }
.ai-msg strong { color: var(--gold-mid); font-weight: 600; }

/* ── SECTIONS ───────────────────────────────────── */
section { padding: 6rem 5rem; }

.s-label {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 1rem;
}
.s-label::before { content: ''; width: 1.5rem; height: 1.5px; background: var(--gold-mid); border-radius: 1px; }

.s-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15; font-weight: 700; margin-bottom: 1rem;
  color: var(--text);
}
.s-title em { font-style: italic; color: var(--gold); }

.s-sub {
  font-size: 0.98rem; color: var(--muted); max-width: 540px;
  line-height: 1.8; font-weight: 300; margin-bottom: 3rem;
}

/* ── DORES ──────────────────────────────────────── */
.pains-section {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.pains-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pain-card {
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border2);
  border-radius: 10px;
  background: var(--surface);
  transition: border-color 0.25s, background 0.25s;
}
.pain-card:hover {
  border-color: var(--gold-line);
  background: var(--surface2);
}
.pain-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
  margin-bottom: 0.6rem; line-height: 1;
}
.pain-card h3 {
  font-size: 1rem; font-weight: 600; margin-bottom: 0.45rem; color: var(--text);
}
.pain-card p {
  font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-weight: 300;
}

/* ── SOLUÇÃO ────────────────────────────────────── */
.solve-section { background: var(--bg); }

.solve-list {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 780px;
}

.solve-item {
  display: flex; gap: 1.1rem; align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border: 1px solid var(--border2);
  border-radius: 10px;
  background: var(--surface);
  transition: border-color 0.25s;
}
.solve-item:hover { border-color: var(--gold-line); }

.solve-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--gold-dim); border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 700; color: var(--gold);
}
.solve-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--text); }
.solve-item p  { font-size: 0.85rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── HIGHLIGHTS ─────────────────────────────────── */
.highlights-section {
  background: var(--bg2);
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.hl-card {
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border2);
  border-radius: 10px;
  background: var(--surface);
  transition: border-color 0.25s, transform 0.2s;
}
.hl-card:hover {
  border-color: var(--gold-line);
  transform: translateY(-2px);
}
.hl-tag {
  display: inline-block;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  padding: 0.22rem 0.6rem; border-radius: 3px;
  margin-bottom: 0.9rem;
}
.hl-tag.premium {
  color: var(--gold-mid);
  background: rgba(184, 146, 74, 0.2);
}
.hl-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--text); }
.hl-card p  { font-size: 0.85rem; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── PRICING ────────────────────────────────────── */
.pricing-section { background: var(--bg); }

.pricing-center { text-align: center; margin-bottom: 3rem; }
.pricing-center .s-label { justify-content: center; }
.pricing-center .s-sub { margin-left: auto; margin-right: auto; }

.period-tabs {
  display: inline-flex;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 10px; padding: 4px; gap: 2px; margin-bottom: 1rem;
}
.p-tab {
  padding: 0.55rem 1.1rem; border-radius: 7px;
  font-size: 0.8rem; font-weight: 500; cursor: pointer;
  border: none; background: transparent; color: var(--muted);
  font-family: 'Outfit', sans-serif; transition: all 0.2s;
}
.p-tab.active {
  background: var(--gold); color: #0B0B0B; font-weight: 600;
}
.p-badge {
  font-size: 0.62rem; font-weight: 700; margin-left: 0.25rem;
  color: var(--gold-mid);
}
.p-tab.active .p-badge { color: #0B0B0B; opacity: 0.75; }

.pricing-note {
  font-size: 0.8rem; color: var(--muted); font-weight: 300; margin-top: 0.5rem;
}

.plans-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 880px; margin: 0 auto;
}

.plan-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s;
}
.plan-card:hover { border-color: var(--gold-line); }

.plan-card.featured {
  background: linear-gradient(165deg, #1E1A14 0%, #141210 100%);
  border-color: var(--gold-line);
  box-shadow: 0 8px 40px rgba(184, 146, 74, 0.12);
}

.plan-featured-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0B0B0B;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 1.1rem; border-radius: 3px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 600; color: var(--muted); margin-bottom: 0.5rem;
}
.plan-card.featured .plan-name { color: var(--gold-mid); }

.plan-ai-badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.06em;
  background: var(--gold-dim); color: var(--gold);
  border: 1px solid var(--gold-line); padding: 0.25rem 0.7rem;
  border-radius: 3px; margin-bottom: 1.5rem;
}
.plan-ai-badge.muted {
  background: rgba(255,255,255,0.04); color: var(--muted); border-color: var(--border2);
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem; font-weight: 700; color: var(--text); line-height: 1;
  margin-bottom: 0.25rem;
}
.plan-price sup { font-size: 1.2rem; vertical-align: super; font-weight: 600; color: var(--gold); }
.plan-period-label { font-size: 0.78rem; color: var(--muted); font-weight: 300; margin-bottom: 0.6rem; }

.plan-people {
  font-size: 0.75rem; font-weight: 500; color: var(--text2);
  background: var(--bg2); border: 1px solid var(--border2);
  padding: 0.3rem 0.8rem; border-radius: 3px;
  display: inline-block; margin-bottom: 0.6rem;
}

.plan-savings {
  font-size: 0.75rem; font-weight: 600; color: var(--teal);
  background: var(--teal-lt); padding: 0.25rem 0.8rem;
  border-radius: 3px; display: inline-block; margin-bottom: 1.5rem;
  min-height: 1.6rem;
}
.plan-savings.hidden { opacity: 0; pointer-events: none; }

.plan-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.plan-divider { border: none; border-top: 1px solid var(--border2); margin-bottom: 1.5rem; }

.plan-features { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.plan-feature {
  font-size: 0.83rem; color: var(--text2);
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.plan-feature::before { content: '✓'; color: var(--gold); flex-shrink: 0; font-weight: 700; font-size: 0.8rem; }
.plan-feature.na { color: var(--muted); opacity: 0.45; }
.plan-feature.na::before { content: '×'; color: var(--muted); }

.plan-btn {
  display: block; width: 100%; text-align: center;
  padding: 0.85rem;
  border: 1.5px solid var(--gold-line);
  border-radius: 6px; color: var(--gold-mid);
  font-size: 0.87rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s; background: transparent;
  font-family: 'Outfit', sans-serif; letter-spacing: 0.02em;
}
.plan-btn:hover { background: var(--gold-dim); border-color: var(--gold); color: var(--gold-lt); }
.plan-card.featured .plan-btn {
  background: var(--gold); color: #0B0B0B; border-color: var(--gold);
}
.plan-card.featured .plan-btn:hover { background: var(--gold-mid); }

.pricing-footnote {
  text-align: center; margin-top: 2rem;
  font-size: 0.8rem; color: var(--muted); font-weight: 300;
}

/* ── CTA ────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #141210 0%, #1A1610 55%, #0F0E0C 100%);
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184, 146, 74, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 1.2rem;
  position: relative; color: var(--text);
}
.cta-section h2 em { font-style: italic; color: var(--gold); }
.cta-section p {
  font-size: 1rem; color: var(--muted); font-weight: 300;
  max-width: 480px; margin: 0 auto 2.5rem; line-height: 1.75; position: relative;
}
.cta-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  position: relative; margin-bottom: 2rem;
}
.cta-back {
  position: relative;
  font-size: 0.82rem; color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.cta-back:hover { color: var(--gold-mid); }

/* ── FOOTER ─────────────────────────────────────── */
footer {
  background: #070707; padding: 3rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border2);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 700; color: var(--gold);
}
.footer-copy { font-size: 0.76rem; color: var(--muted); }
.footer-links { display: flex; gap: 1.75rem; }
.footer-links a { font-size: 0.76rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-mid); }

/* ── ANIMATIONS (presença, não ruído) ────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes goldGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(184, 146, 74, 0); }
  50% { box-shadow: 0 0 28px 2px rgba(184, 146, 74, 0.28); }
}
@keyframes brandUnderline {
  0%, 100% { width: 3.2rem; opacity: 0.85; }
  50% { width: 4.4rem; opacity: 1; }
}
@keyframes goldLine {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.75; }
}

.hero-content > * { animation: fadeUp 0.65s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.28s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.52s; }

@media (prefers-reduced-motion: reduce) {
  .hero-content > *,
  .dash-card,
  .btn-primary--glow,
  .hero-brand::after,
  .hero::before {
    animation: none !important;
  }
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  .hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 3rem; gap: 2rem; }
  .hero p { max-width: 100%; }
  section { padding: 4rem 1.5rem; }
  .pains-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; max-width: 480px; }
  footer { flex-direction: column; gap: 1.25rem; text-align: center; padding: 2.5rem 1.5rem; }
  .period-tabs { flex-wrap: wrap; justify-content: center; }
}
