@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #0f1111;
  --bg-strong: #111313;
  --section-bg: #171a1a;
  --surface: rgba(23, 26, 26, 0.88);
  --surface-solid: #171a1a;
  --text: #f7f7f2;
  --text-soft: #ede7da;
  --muted: rgba(237, 231, 218, 0.72);
  --border: rgba(72, 184, 175, 0.35);
  --accent: #2f6f6b;
  --accent-bright: #48b8af;
  --accent-gold: #c9a76a;
  --focus: #48b8af;
  --max-width: 72rem;
  --radius: 1.2rem;
  --radius-sm: 0.95rem;
  --shadow-soft: 0 24px 70px rgba(0, 0, 0, 0.32);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(72, 184, 175, 0.09), transparent 25%),
    radial-gradient(circle at right top, rgba(201, 167, 106, 0.08), transparent 22%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-strong) 45%, #0b0d0d 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--text);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--accent-bright);
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-family: "Fraunces", "Times New Roman", serif;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.6rem, 9vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 6vw, 3.6rem);
}

h3 {
  font-size: clamp(1.3rem, 3.5vw, 1.9rem);
}

p,
ul,
ol {
  margin-top: 0;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lead {
  font-size: clamp(1.12rem, 2.7vw, 1.35rem);
  color: var(--text-soft);
}

.muted {
  color: var(--muted);
}

.section-title {
  max-width: 46rem;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--accent-bright);
  color: #081111;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(72, 184, 175, 0.18);
  backdrop-filter: blur(18px);
  background: rgba(15, 17, 17, 0.86);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand-mark {
  color: var(--text);
  text-decoration: none;
}

.brand-mark strong {
  display: block;
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: 1.15rem;
}

.brand-mark span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--text-soft);
  text-decoration: none;
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--accent-bright);
}

.page-section {
  padding: 4.5rem 0;
}

.page-section.alt {
  background:
    linear-gradient(180deg, rgba(23, 26, 26, 0.94), rgba(15, 17, 17, 0.92));
}

.stack-lg {
  display: grid;
  gap: 1.5rem;
}

.stack-md {
  display: grid;
  gap: 1rem;
}

.stack-sm {
  display: grid;
  gap: 0.8rem;
}

.button,
.button-link,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--accent-bright);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #081111;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 30px rgba(72, 184, 175, 0.22);
}

.button:hover,
.button-link:hover,
button.button:hover {
  color: #081111;
  opacity: 0.96;
  transform: translateY(-1px);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
  box-shadow: none;
}

.button-secondary:hover {
  color: var(--text);
  background: rgba(72, 184, 175, 0.08);
}

.button-gold {
  background: linear-gradient(135deg, #d7b47a, var(--accent-gold));
  border-color: rgba(201, 167, 106, 0.9);
  color: #111313;
  box-shadow: 0 12px 30px rgba(201, 167, 106, 0.2);
}

.button-gold:hover {
  color: #111313;
}

.is-disabled,
.is-disabled:hover {
  background: linear-gradient(135deg, rgba(201, 167, 106, 0.45), rgba(201, 167, 106, 0.35));
  border-color: rgba(201, 167, 106, 0.3);
  color: rgba(17, 19, 19, 0.72);
  box-shadow: none;
  cursor: default;
  opacity: 0.75;
  pointer-events: none;
  transform: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-soft);
  font-weight: 700;
  text-decoration: none;
}

.text-link:hover {
  color: var(--accent-bright);
}

.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card,
.hero-panel,
.cta-banner,
.story-bar,
.form-shell,
.tier,
.price-card,
.receipt {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(26, 30, 30, 0.94), rgba(18, 21, 21, 0.96));
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 1.6rem;
}

.hero {
  padding: 4rem 0 3rem;
}

.hero-premium {
  position: relative;
}

.hero-premium::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 9rem;
  background: linear-gradient(180deg, transparent, rgba(72, 184, 175, 0.04));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  max-width: 42rem;
}

.hero-copy p + p {
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  margin-top: 1.6rem;
}

.hero-person {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-person img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.person-note {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 1rem;
  border: 1px solid rgba(72, 184, 175, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(10, 12, 12, 0.82);
  backdrop-filter: blur(14px);
}

.person-note .panel-label {
  margin-bottom: 0.35rem;
  color: var(--accent-bright);
}

.person-note p {
  margin-bottom: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.intro-strip {
  border-top: 1px solid rgba(72, 184, 175, 0.16);
  border-bottom: 1px solid rgba(72, 184, 175, 0.16);
  background: rgba(72, 184, 175, 0.06);
}

.intro-grid {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0;
}

.intro-grid p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.hero-panel {
  padding: 1.4rem;
}

.training-panel {
  position: relative;
  overflow: hidden;
}

.training-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(72, 184, 175, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(201, 167, 106, 0.08), transparent 24%);
  pointer-events: none;
}

.panel-label {
  position: relative;
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-weight: 700;
}

.mini-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  padding: 1rem;
  border: 1px solid rgba(72, 184, 175, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(10, 12, 12, 0.45);
}

.mini-card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.mini-step,
.module-number {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(72, 184, 175, 0.12);
  color: var(--accent-bright);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.benefits-card {
  padding: 1.8rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--text-soft);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--accent-bright);
  box-shadow: 0 0 0 0.3rem rgba(72, 184, 175, 0.12);
}

.module-card h3 {
  max-width: 14ch;
}

.module-card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.story-bar {
  padding: 1.6rem 1.5rem;
  border-left: 4px solid var(--accent-bright);
}

.story-bar p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.cta-banner {
  padding: 2rem;
}

.premium-banner {
  background:
    radial-gradient(circle at top right, rgba(72, 184, 175, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(26, 30, 30, 0.98), rgba(16, 18, 18, 0.98));
}

.course-banner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.course-banner .price {
  margin-bottom: 0;
  color: var(--accent-bright);
  font-size: 1.45rem;
  font-weight: 700;
}

.course-banner-visual img,
.product-image {
  width: 100%;
  border: 1px solid rgba(72, 184, 175, 0.24);
  border-radius: var(--radius-sm);
  background: rgba(10, 12, 12, 0.45);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

.course-banner-visual img {
  max-height: 24rem;
  object-fit: contain;
}

.course-curriculum {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(10, 12, 12, 0.36);
}

.course-curriculum img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.product-image {
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.cta-banner p,
.microcopy {
  color: var(--text-soft);
}

.microcopy {
  font-size: 0.92rem;
  opacity: 0.8;
}

.check-list,
.plain-list {
  margin: 0;
  padding-left: 1.2rem;
}

.check-list li + li,
.plain-list li + li {
  margin-top: 0.7rem;
}

.bulletless-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bulletless-list li + li {
  margin-top: 0.8rem;
}

.ladder,
.pricing-table {
  display: grid;
  gap: 1rem;
}

.tier,
.price-card {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
}

.tier .price-tag,
.price-card .price {
  color: var(--accent-bright);
  font-weight: 700;
}

.price-card .price {
  font-size: 1.45rem;
}

.featured-tier,
.price-card.featured {
  border-color: rgba(201, 167, 106, 0.45);
}

.featured-badge,
.label {
  display: inline-block;
  width: fit-content;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(72, 184, 175, 0.1);
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 700;
}

.receipts-grid {
  display: grid;
  gap: 1rem;
}

.receipt {
  min-height: 12rem;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
}

.disclosure {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(23, 26, 26, 0.86);
  color: var(--muted);
  font-size: 0.95rem;
}

.tool-card .logo-placeholder,
.mockup-box {
  display: grid;
  place-items: center;
  min-height: 4.75rem;
  padding: 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  font-weight: 700;
}

.tool-meta {
  display: grid;
  gap: 0.4rem;
}

.form-shell {
  max-width: 34rem;
  padding: 1.6rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.form-row label {
  font-weight: 600;
}

.form-row input {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.policy-box {
  max-width: 52rem;
}

.policy-box section + section {
  margin-top: 2rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-note {
  max-width: 48rem;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(72, 184, 175, 0.18);
  background: rgba(10, 12, 12, 0.94);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-links,
.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links ul {
  display: grid;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
}

.fine-print {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(72, 184, 175, 0.18);
  color: var(--muted);
  font-size: 0.95rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 52rem) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (min-width: 30rem) {
  .receipts-grid,
  .pricing-table,
  .ladder {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 48rem) {
  .hero {
    padding: 5.8rem 0 4rem;
  }

  .hero-grid,
  .stack-split {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
  }

  .stack-split {
    display: grid;
    gap: 2rem;
    align-items: start;
  }

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

  .intro-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .course-banner {
    grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
  }

  .card-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64rem) {
  .card-grid.four,
  .pricing-table.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card-grid.five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .ladder {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .receipts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
