/* =========================================================
   The 14-Day Procrastination Reset
   Static Beta Launch Stylesheet - V6 Stable
   ========================================================= */

:root {
  --bg: #f6f1e8;
  --bg-soft: #f3ede2;
  --card: #fff9ef;
  --text: #1f2421;
  --muted: #5f625c;
  --green: #243d35;
  --green-dark: #182822;
  --gold: #b98b45;
  --gold-soft: #c49a5a;
  --cream: #fbf5ea;
  --border: rgba(36, 61, 53, 0.14);
  --shadow: 0 18px 44px rgba(31, 36, 33, 0.08);
  --radius-md: 22px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --container: 1120px;
  --narrow: 760px;
}

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

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.65rem, 10vw, 4.5rem);
  max-width: 840px;
}

h2 {
  font-size: clamp(2rem, 7vw, 3rem);
}

h3 {
  color: var(--green);
  font-size: 1.18rem;
  line-height: 1.2;
}

p {
  max-width: 72ch;
}

.center p {
  margin-left: auto;
  margin-right: auto;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: var(--narrow);
}

.center {
  text-align: center;
}

.section {
  padding: 54px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 30px;
}

.section-heading p,
.card p,
.feature-card p,
.faq-answer,
.hero-subtitle,
.secure-note,
.problem-intro p,
.hyde-transition,
.founder-section p {
  color: var(--muted);
}

.eyebrow,
.card-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.light-eyebrow {
  color: var(--gold-soft);
}

.core-line,
.signature-line {
  color: var(--green);
  font-weight: 900;
}

.dark-section .signature-line,
.final-cta .signature-line {
  color: var(--cream);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(36, 61, 53, 0.08);
  background: rgba(246, 241, 232, 0.94);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  color: var(--green);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.nav-links {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 2px solid var(--green);
  border-radius: var(--radius-pill);
  background: var(--green);
  color: var(--cream);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--green);
}

.button.light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 58px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -170px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(185, 139, 69, 0.13);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.hero-subtitle {
  font-size: 1.12rem;
}

.offer-chips {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
}

.offer-chips span {
  display: block;
  padding: 10px 14px;
  border: 1px solid rgba(36, 61, 53, 0.16);
  border-radius: var(--radius-pill);
  background: rgba(255, 249, 239, 0.76);
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 900;
  text-align: center;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hero-card,
.feature-card,
.card,
.fit-box,
.faq-item,
.included-list-card,
.problem-hyde-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 24px;
}

.hero-card,
.problem-hyde-card {
  border-radius: var(--radius-lg);
}

.hero-card h2 {
  color: var(--green);
}

.path-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.path-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(36, 61, 53, 0.06);
}

.path-list span,
.number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 900;
}

.included-section,
.problem-hyde-section,
.fit-section,
.faq-section {
  background: var(--bg-soft);
}

.featured-grid,
.three-card-grid,
.fit-stack,
.offer-grid {
  display: grid;
  gap: 18px;
}

.primary-feature {
  border-color: rgba(36, 61, 53, 0.24);
}

.included-list-card {
  margin-top: 18px;
}

.check-list,
.x-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.x-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.x-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.problem-hyde-card {
  max-width: 980px;
  margin-inline: auto;
}

.problem-intro {
  max-width: 760px;
}

.lived-patterns {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.pattern-line {
  position: relative;
  padding: 14px 16px 14px 42px;
  border-radius: 16px;
  background: rgba(36, 61, 53, 0.055);
  color: var(--text);
  font-weight: 750;
}

.pattern-line::before {
  content: "—";
  position: absolute;
  left: 16px;
  color: var(--gold);
  font-weight: 900;
}

.loop-strip {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 18px;
  border-radius: 20px;
  background: rgba(36, 61, 53, 0.06);
}

.loop-strip span {
  display: block;
  color: var(--green);
  font-weight: 900;
  text-align: center;
}

.hyde-callout {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--cream);
}

.hyde-callout h3 {
  color: var(--cream);
  font-size: clamp(1.45rem, 6vw, 2rem);
}

.hyde-callout p {
  color: rgba(251, 245, 234, 0.84);
}

.hyde-quotes {
  display: grid;
  gap: 12px;
}

.hyde-quotes div {
  padding: 16px 18px;
  border: 1px solid rgba(251, 245, 234, 0.18);
  border-radius: 16px;
  background: rgba(251, 245, 234, 0.08);
  color: var(--cream);
  font-weight: 800;
}

.hyde-transition {
  margin: 22px 0 0;
  font-style: italic;
}

.dark-section,
.offer-section,
.final-cta {
  background:
    radial-gradient(circle at top left, rgba(185, 139, 69, 0.14), transparent 38%),
    linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--cream);
}

.dark-section h2,
.offer-section h2,
.offer-section h3,
.final-cta h2 {
  color: var(--cream);
}

.dark-section p,
.offer-section p,
.final-cta p {
  color: rgba(251, 245, 234, 0.84);
}

.fit-box.caution {
  background: #fff6e8;
  border-color: rgba(185, 139, 69, 0.24);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  background: transparent;
  color: var(--green);
  font: inherit;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  padding: 0;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(36, 61, 53, 0.08);
  color: var(--green);
  font-weight: 900;
}

.faq-item.is-open .faq-question::after {
  content: "–";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transition: max-height 220ms ease, opacity 220ms ease, margin-top 220ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 380px;
  opacity: 1;
  margin-top: 14px;
}

.offer-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 28px;
  border: 1px solid rgba(251, 245, 234, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(24, 40, 34, 0.58);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.offer-grid {
  margin: 24px 0;
  text-align: left;
}

.offer-grid > div {
  padding: 22px;
  border: 1px solid rgba(251, 245, 234, 0.18);
  border-radius: 20px;
  background: rgba(251, 245, 234, 0.07);
}

.offer-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 22px;
  color: rgba(251, 245, 234, 0.86);
}

.price {
  margin: 22px 0 10px;
  color: var(--cream) !important;
  font-size: clamp(1.8rem, 7vw, 2.35rem);
  font-weight: 900;
}

.site-footer {
  padding: 30px 0;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 0.95rem;
}

.footer-grid,
.footer-links {
  display: grid;
  gap: 14px;
}

.site-footer p {
  color: rgba(251, 245, 234, 0.72);
}

.footer-links a {
  color: rgba(251, 245, 234, 0.82);
  text-decoration: none;
}

@media (min-width: 640px) {
  .button {
    width: auto;
  }

  .hero-actions,
  .offer-chips,
  .loop-strip {
    display: flex;
    flex-wrap: wrap;
  }

  .loop-strip span:not(:last-child)::after {
    content: "→";
    margin-left: 10px;
    color: var(--gold);
  }
}

@media (min-width: 860px) {
  body {
    font-size: 18px;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    padding: 74px 0 82px;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.95rem;
    font-weight: 800;
  }

  .nav-links a {
    text-decoration: none;
  }

  .nav-cta {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    background: var(--green);
    color: var(--cream);
  }

  .hero-grid {
    grid-template-columns: 1.06fr 0.94fr;
    gap: 56px;
    align-items: center;
  }

  .featured-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .three-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hyde-callout,
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .offer-box {
    padding: 46px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-links {
    display: flex;
    gap: 18px;
  }
}

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