/* ============================================================
   Design tokens
   Color:  ivory #F7F3EC (bg) · ink #241F1C (text)
           plum #6E2A4A (primary / CTA) · gold #B8912F (accent, sparing)
           blush #F1E4E7 (alt section bg)
   Type:   Fraunces (display, editorial serif) + Inter (body/utility)
   Signature: a slowly-fading concentric mark in the hero — the one
   visual idea the whole page is built around.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --ivory: #FFFDFC;
  --ink: #2A2320;
  --ink-soft: #6B5D59;
  --plum: #C15C73;
  --plum-dark: #A24759;
  --gold: #D98BA0;
  --blush: #FBEDEF;
  --line: #F0DFE2;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* -------------------- hero -------------------- */
.hero {
  padding: 64px 20px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--plum);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 22px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

h1 {
  margin: 0 0 22px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(32px, 5.4vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.subtitle {
  max-width: 520px;
  margin: 0 auto 34px;
  font-size: 18px;
  color: var(--ink-soft);
}

/* signature: fading concentric mark, echoes the "spot" the whole page is about */
.fade-mark {
  width: 92px;
  height: 92px;
  margin: 0 auto 30px;
  position: relative;
}

.fade-mark span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--plum);
  opacity: 0;
  animation: fadeRing 3.6s ease-out infinite;
}

.fade-mark span:nth-child(1) { animation-delay: 0s; }
.fade-mark span:nth-child(2) { animation-delay: 1.2s; }
.fade-mark span:nth-child(3) { animation-delay: 2.4s; }

.fade-mark::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 14px; height: 14px;
  background: var(--plum);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

@keyframes fadeRing {
  0%   { transform: scale(0.3); opacity: 0.55; }
  100% { transform: scale(2.1); opacity: 0; }
}

/* -------------------- opt-in form -------------------- */
.optin {
  max-width: 380px;
  margin: 0 auto 18px;
}

.optin-row {
  display: flex;
  gap: 8px;
}

.optin input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: #fff;
  color: var(--ink);
}

.optin input[type="email"]:focus {
  outline: none;
  border-color: var(--plum);
}

.optin-note {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.skip-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 13.5px;
  color: var(--ink-soft);
  text-decoration: underline;
}

.skip-link:hover { color: var(--plum); }

@media (max-width: 420px) {
  .optin-row { flex-direction: column; }
}

/* -------------------- CTA button -------------------- */
.cta-button {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 4px;
  background: var(--plum);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta-button:hover {
  background: var(--plum-dark);
  transform: translateY(-1px);
}

.cta-button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.disclosure, .redirect-note {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 12.5px;
}

/* -------------------- opt-in form -------------------- */
.optin {
  max-width: 420px;
  margin: 0 auto 14px;
}

.optin-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.optin-row input[type="email"] {
  flex: 1 1 220px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: #fff;
}

.optin-row input:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.optin-row .cta-button {
  flex: 0 0 auto;
  border: none;
  cursor: pointer;
}

.optin-note {
  margin: 10px 0 0;
  font-size: 12.5px;
  color: var(--ink-soft);
}

.skip-link {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 13.5px;
  text-decoration: underline;
}

.skip-link:hover { color: var(--plum); }

@media (max-width: 480px) {
  .optin-row { flex-direction: column; }
  .optin-row .cta-button { width: 100%; }
}

/* -------------------- simplified narrative page -------------------- */
.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 20px 72px;
  text-align: center;
}

.article .lead {
  font-size: 21px;
  color: var(--ink);
  margin: 0 0 30px;
  font-weight: 500;
  text-align: center;
}

.article p {
  font-size: 16.5px;
  color: var(--ink-soft);
  margin: 0 0 26px;
  text-align: left;
}

.optin-inline {
  max-width: 460px;
  margin: 0 auto 34px;
  padding: 20px 24px;
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}

.optin-inline-label {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 12px;
}

.optin-inline-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.optin-inline-form input[type="email"] {
  flex: 1 1 180px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  background: #fff;
}

.optin-inline-form button {
  flex: 0 0 auto;
  padding: 11px 18px;
  border: none;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
}

.optin-inline-form button:hover { background: var(--plum-dark); }

.discover-heading {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 21px;
  margin: 8px 0 20px;
}

.discover-list {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 13px;
  text-align: left;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.discover-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink);
}

.discover-list li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--plum);
  font-weight: 700;
  margin-top: 1px;
}

.fine-print {
  font-style: italic;
  font-size: 13px;
  color: var(--ink-soft);
  text-align: center !important;
  margin-bottom: 32px !important;
}

.cta-button-big {
  display: inline-block;
  padding: 19px 40px;
  border-radius: 4px;
  background: var(--plum);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta-button-big:hover {
  background: var(--plum-dark);
  transform: translateY(-1px);
}

.cta-button-big:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.article .disclosure {
  margin-top: 16px;
}

/* -------------------- pill CTA (matches reference button) -------------------- */
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 999px;
  background: var(--plum);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(193, 92, 115, 0.28);
  transition: background 0.15s ease, transform 0.15s ease;
}

.cta-pill:hover {
  background: var(--plum-dark);
  transform: translateY(-1px);
}

.cta-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.cta-pill .play-icon {
  display: inline-block;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #fff;
}

/* -------------------- before/after image -------------------- */
.before-after-wrap {
  max-width: 900px;
  margin: 0 auto 34px;
  padding: 0 20px;
}

.before-after-wrap img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(42, 35, 32, 0.12);
  display: block;
}

.article-head {
  padding-bottom: 0;
}

.article-body {
  padding-top: 0;
}

/* -------------------- soft color panel (adds warmth without extra CTAs) -------------------- */
.color-panel {
  background: var(--blush);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 26px;
  margin: 0 0 30px;
  text-align: left;
}

.color-panel .discover-heading {
  margin-top: 0;
  text-align: center;
}

.color-panel .discover-list {
  margin-bottom: 0;
}

/* -------------------- content sections -------------------- */
.content-section, .offer-section, .final-section {
  padding: 56px 20px;
}

.hero-content, .content-section > .wrap, .offer-section > .wrap, .final-section > .wrap {
  max-width: 640px;
  margin: 0 auto;
}

.content-section {
  border-top: 1px solid var(--line);
  text-align: center;
}

h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 30px);
  line-height: 1.25;
  margin: 0 0 18px;
}

.content-section p { color: var(--ink-soft); }

.factor-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
  text-align: center;
}

.factor-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 15.5px;
  color: var(--ink);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.factor-list li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.factor-list a {
  color: var(--plum);
  text-decoration: none;
}

.offer-section {
  background: var(--blush);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.final-section {
  text-align: center;
}

/* -------------------- footer -------------------- */
footer {
  padding: 32px 20px 40px;
  text-align: center;
}

footer nav {
  margin-bottom: 12px;
}

footer a {
  margin: 0 10px;
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

footer a:hover { color: var(--plum); }

footer p {
  color: #97897E;
  font-size: 12px;
  margin: 0;
}

@media (max-width: 480px) {
  .hero { padding: 56px 18px 48px; }
  .content-section, .offer-section, .final-section { padding: 44px 18px; }
}
