/* The Cortisol Solution — premium lead page (warm bronze hero, gold accent) */

.cortisol-lp-page {
  --c-bg: #eef2f5;
  --c-hero-top: #4f3f2e;
  --c-hero-bottom: #221a14;
  --c-hero-text: #faf6ef;
  --c-hero-muted: rgba(250, 246, 239, 0.78);
  --c-accent: #edc400;
  --c-accent-soft: rgba(237, 196, 0, 0.22);
  --c-ink: #3d4752;
  --c-ink-body: #5a6570;
  --c-muted: #7a8490;
  --c-card: #fbfcfd;
  --c-callout-border: rgba(237, 196, 0, 0.45);
  --c-callout-bg: linear-gradient(155deg, #f8fafb 0%, #eef2f6 100%);
  --c-line: rgba(61, 71, 82, 0.09);
  --c-shadow: 0 4px 24px rgba(61, 71, 82, 0.07);
  --c-shadow-lg: 0 24px 48px rgba(61, 71, 82, 0.09);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 12px;
}

body.cortisol-lp-page {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink-body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.cortisol-lp {
  min-height: 100vh;
}

/* Hero */
.cortisol-lp__hero {
  background: linear-gradient(165deg, var(--c-hero-top) 0%, var(--c-hero-bottom) 100%);
  padding: clamp(2rem, 5vw, 3.25rem) clamp(1.25rem, 4vw, 2rem) clamp(2.5rem, 6vw, 4rem);
  position: relative;
  overflow: hidden;
}

.cortisol-lp__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 85% 60% at 85% -5%, rgba(237, 196, 0, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 10% 100%, rgba(237, 196, 0, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.cortisol-lp__hero-inner {
  max-width: 40rem;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cortisol-lp__brand {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin: 0 0 1.25rem;
}

.cortisol-lp__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-hero-muted);
  margin: 0 0 0.75rem;
}

.cortisol-lp__title {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 5.5vw, 3rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-hero-text);
  margin: 0 0 0.75rem;
}

.cortisol-lp__subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--c-hero-muted);
  margin: 0 0 1.5rem;
  max-width: 36rem;
}

.cortisol-lp__hero-beehiiv {
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.cortisol-lp__hero-beehiiv-inner {
  width: 100%;
  max-width: 506px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(34, 26, 20, 0.5);
  border: 1px solid rgba(250, 246, 239, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cortisol-lp__hero-beehiiv .beehiiv-embed {
  display: block;
  max-width: 100%;
}

/* Main column */
.cortisol-lp__main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2rem) clamp(2.5rem, 5vw, 4rem);
}

.cortisol-lp__article {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 2.25rem);
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--c-shadow-lg);
  border: 1px solid var(--c-line);
}

.cortisol-lp__callout {
  margin: 0 0 1.75rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-sm);
  background: var(--c-callout-bg);
  border: 1px solid var(--c-callout-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.cortisol-lp__callout-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.5rem;
  opacity: 0.92;
}

.cortisol-lp__callout-text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-ink-body);
}

.cortisol-lp__callout-text strong {
  color: var(--c-ink);
  font-weight: 600;
}

.cortisol-lp__callout-text em {
  font-style: italic;
  color: var(--c-ink-body);
}

.cortisol-lp__article > p {
  margin: 0 0 1.25rem;
  color: var(--c-ink-body);
}

.cortisol-lp__article > p strong {
  font-weight: 600;
  color: var(--c-ink);
}

.cortisol-lp__h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  margin: 1.75rem 0 0.875rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
}

.cortisol-lp__list {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.cortisol-lp__list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.65rem;
  color: var(--c-ink-body);
  font-size: 0.98rem;
  line-height: 1.5;
  border-bottom: 1px solid var(--c-line);
}

.cortisol-lp__list li:last-child {
  border-bottom: none;
}

.cortisol-lp__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-soft);
}

.cortisol-lp__list strong {
  font-weight: 600;
  color: var(--c-ink);
}

.cortisol-lp__closing {
  margin: 1.5rem 0 0 !important;
  padding: 1.25rem 1.2rem;
  background: rgba(237, 196, 0, 0.14);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--c-accent);
  font-size: 0.98rem;
  color: var(--c-ink-body) !important;
}

.cortisol-lp__closing strong {
  color: var(--c-ink);
}

/* Form panel */
.cortisol-lp__form-panel {
  margin-top: 1.75rem;
}

.cortisol-lp__form-panel-inner {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid var(--c-line);
  box-shadow: var(--c-shadow);
  text-align: center;
}

.cortisol-lp__form-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-accent);
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  opacity: 0.95;
}

.cortisol-lp__form-sub {
  font-size: 0.9rem;
  color: var(--c-muted);
  margin: 0 0 1.25rem;
}

.cortisol-lp__beehiiv-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cortisol-lp__beehiiv-slot .beehiiv-embed {
  display: block;
  max-width: 100%;
}

.cortisol-lp__legal {
  text-align: center;
  font-size: 12px;
  color: var(--c-muted);
  margin: 1.75rem 0 0;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .cortisol-lp__article {
    margin-top: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
