@font-face {
  font-family: "Season";
  src: url("/assets/fonts/season-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Season";
  src: url("/assets/fonts/season-medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Season";
  src: url("/assets/fonts/season-semibold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Degular";
  src: url("/assets/fonts/degular-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --forest: #14382f;
  --forest-2: #0d241e;
  --forest-3: #214c40;
  --paper: #fbfdf0;
  --paper-2: #edf2df;
  --lime: #f0fe91;
  --cyan: #14dfe6;
  --ink: #13231f;
  --muted: #557064;
  --white: #ffffff;
  --line: rgba(20, 56, 47, 0.18);
  --shadow: 0 1.4rem 3.4rem rgba(13, 36, 30, 0.14);
}

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

html {
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Degular", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.125rem;
  line-height: 1.55;
  letter-spacing: 0;
  background: var(--paper);
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.75rem;
  padding: 0.75rem 1.5rem;
  color: var(--paper);
  background: rgba(13, 36, 30, 0.94);
  border-bottom: 1px solid rgba(240, 254, 145, 0.18);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 8.2rem;
}

.brand img {
  width: 100%;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a,
.back-link {
  text-decoration: none;
  color: rgba(251, 253, 240, 0.82);
}

.nav-links a:hover,
.back-link:hover {
  color: var(--lime);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font: 700 1rem/1 "Degular", ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
}

.button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.button-small {
  min-height: 2.7rem;
  padding: 0.78rem 0.9rem;
  font-size: 0.95rem;
}

.button-lime {
  color: var(--forest-2);
  background: var(--lime);
  border-color: var(--lime);
}

.button-ghost {
  color: var(--paper);
  background: rgba(251, 253, 240, 0.08);
  border-color: rgba(251, 253, 240, 0.45);
}

.button-dark {
  color: var(--paper);
  background: var(--forest);
  border-color: var(--forest);
}

.button-dark-outline {
  color: var(--forest);
  background: transparent;
  border-color: rgba(20, 56, 47, 0.32);
}

.button-cyan {
  color: var(--forest-2);
  background: var(--cyan);
  border-color: var(--cyan);
}

.hero {
  position: relative;
  min-height: 40rem;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-2);
}

.hero-media,
.hero-tint {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 74% center;
  filter: saturate(0.92) brightness(0.84);
}

.hero-tint {
  background: linear-gradient(90deg, rgba(13, 36, 30, 0.99) 0%, rgba(13, 36, 30, 0.95) 46%, rgba(13, 36, 30, 0.48) 74%, rgba(13, 36, 30, 0.2) 100%);
}

.hero-inner {
  position: relative;
  min-height: 40rem;
  display: flex;
  align-items: center;
  padding: 4rem 0 3.4rem;
}

.hero-copy {
  width: min(44rem, 100%);
}

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

h1,
h2,
h3 {
  font-family: "Season", Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: 5.4rem;
}

h2 {
  font-size: 3.65rem;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.08;
}

.hero-lead {
  max-width: 43rem;
  margin-top: 1.35rem;
  color: rgba(251, 253, 240, 0.86);
  font-size: 1.22rem;
}

.hero-lead.dark {
  color: var(--forest-3);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.event-line {
  margin-top: 1rem;
  color: var(--lime);
  font-weight: 700;
}

.section {
  padding: 5.5rem 0;
}

.intro-band {
  color: var(--paper);
  background: var(--forest);
}

.dark-band {
  color: var(--paper);
  background: var(--forest-2);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 3.5rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.stack {
  display: grid;
  gap: 1.1rem;
}

.stack p,
.section-heading p,
.feature-card p,
.price-card li,
.checkout-copy p,
.checkout-summary p,
.confirmation-shell p,
.redirect-shell p,
details p {
  color: var(--muted);
}

.intro-band .stack p,
.dark-band .stack p,
.dark-band .check-list li {
  color: rgba(251, 253, 240, 0.82);
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  width: min(44rem, 100%);
  margin-bottom: 2.4rem;
}

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

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

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.feature-card,
.price-card,
.checkout-summary {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 1.35rem;
}

.feature-card > svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 1.2rem;
  fill: none;
  stroke: var(--forest);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.price-card h3 {
  color: var(--forest);
}

.feature-card p {
  margin-top: 0.75rem;
}

.image-frame,
.upsell-media {
  overflow: hidden;
  border: 1px solid rgba(251, 253, 240, 0.16);
  border-radius: 0.5rem;
  background: rgba(251, 253, 240, 0.08);
}

.image-frame img {
  width: 100%;
}

.image-frame.portrait {
  max-width: 31rem;
}

.image-frame.portrait img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

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

.check-list li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.check-list svg {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-list.compact {
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 28rem;
  padding: 1.5rem;
}

.price-card-featured {
  color: var(--paper);
  background: var(--forest);
  border-color: rgba(240, 254, 145, 0.38);
}

.price-card-featured h3,
.price-card-featured .price,
.price-card-featured li {
  color: var(--paper);
}

.price-card-featured .check-list svg {
  stroke: var(--lime);
}

.price {
  margin-top: 0.75rem;
  color: var(--forest);
  font-family: "Season", Georgia, "Times New Roman", serif;
  font-size: 4.2rem;
  line-height: 0.95;
}

.faq-section {
  background: var(--paper-2);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}

summary {
  cursor: pointer;
  color: var(--forest);
  font-weight: 700;
}

details p {
  margin-top: 0.65rem;
}

.site-footer {
  padding: 2.2rem 0;
  color: rgba(251, 253, 240, 0.72);
  background: var(--forest-2);
}

.footer-inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.footer-inner img {
  width: min(26rem, 100%);
}

.footer-inner p {
  color: rgba(251, 253, 240, 0.62);
  font-size: 0.92rem;
}

.checkout-main,
.confirmation-main,
.redirect-main {
  padding: 4rem 1rem 5rem;
}

.checkout-shell {
  width: min(68rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 0.72fr);
  gap: 2rem;
  align-items: start;
}

.checkout-copy {
  display: grid;
  gap: 1.25rem;
  padding-top: 0.75rem;
}

.checkout-copy h1 {
  color: var(--forest);
}

.checkout-copy .check-list {
  margin-top: 0.4rem;
}

.checkout-copy .check-list li {
  color: var(--forest-3);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  color: var(--forest-3);
  font-size: 0.98rem;
}

.back-link svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(180deg);
}

.checkout-summary {
  display: grid;
  gap: 1.05rem;
  padding: 1.35rem;
}

.checkout-summary h2 {
  color: var(--forest);
  font-size: 2.15rem;
}

.summary-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  color: var(--forest-3);
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
}

.summary-top strong {
  color: var(--forest);
  font-size: 1.25rem;
}

.microcopy {
  font-size: 0.92rem;
}

.checkout-overlay[hidden] {
  display: none;
}

.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  overflow-y: auto;
  color: var(--paper);
  background: rgba(8, 27, 22, 0.94);
  backdrop-filter: blur(18px);
}

.checkout-overlay::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(13, 36, 30, 0.98), rgba(13, 36, 30, 0.74)),
    url("/assets/img/hero.png") 74% center / cover no-repeat;
  filter: saturate(0.88) brightness(0.72);
}

.checkout-overlay-panel {
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 5.5rem 1rem 3rem;
}

.overlay-brand {
  position: fixed;
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(251, 253, 240, 0.72);
  font-size: 0.95rem;
}

.overlay-brand img {
  width: 7.5rem;
}

.overlay-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--paper);
  background: rgba(251, 253, 240, 0.1);
  border: 1px solid rgba(251, 253, 240, 0.28);
  border-radius: 0.5rem;
  cursor: pointer;
}

.overlay-close svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
}

.checkout-overlay-grid {
  width: min(72rem, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(21rem, 0.64fr);
  gap: 2rem;
  align-items: center;
}

.overlay-copy {
  display: grid;
  gap: 1.2rem;
}

.overlay-copy h2 {
  font-size: 5rem;
  color: var(--paper);
}

.overlay-copy p,
.overlay-copy .check-list li {
  max-width: 42rem;
  color: rgba(251, 253, 240, 0.82);
}

.overlay-back {
  color: rgba(251, 253, 240, 0.78);
}

.overlay-item-list {
  margin-top: 0.6rem;
}

.overlay-summary {
  display: grid;
  gap: 1.1rem;
  padding: 1.35rem;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid rgba(240, 254, 145, 0.42);
  border-radius: 0.5rem;
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.28);
}

.overlay-summary h3 {
  color: var(--forest);
  font-size: 2rem;
}

.overlay-summary p {
  color: var(--muted);
}

.overlay-summary .microcopy a,
.checkout-summary .microcopy a {
  color: var(--forest);
  font-weight: 700;
}

.whop-embed-shell,
.route-whop-embed {
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid rgba(20, 56, 47, 0.16);
  border-radius: 0.5rem;
  background: var(--white);
}

.whop-embed-panel {
  min-height: 34rem;
}

.whop-checkout-frame {
  min-height: 34rem;
}

.whop-checkout-frame iframe {
  display: block;
}

.whop-loading {
  display: grid;
  place-items: center;
  min-height: 34rem;
  padding: 2rem;
  color: var(--muted);
  text-align: center;
}

.summary-label {
  margin-bottom: 0.25rem;
  font-size: 0.92rem;
  text-transform: uppercase;
}

body.checkout-open {
  overflow: hidden;
}

.upsell-hero {
  background: var(--paper);
}

.upsell-hero h1 {
  color: var(--forest);
}

.upsell-media {
  background: #e7ead7;
  border-color: var(--line);
}

.upsell-media img {
  width: 100%;
}

.confirmation-shell,
.redirect-shell {
  width: min(43rem, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 1rem;
  text-align: center;
}

.confirmation-shell > img {
  width: min(30rem, 100%);
  margin-bottom: 1rem;
}

.confirmation-shell h1,
.redirect-shell h1 {
  color: var(--forest);
}

.redirect-shell > img {
  width: 12rem;
}

.progress-track {
  width: min(22rem, 100%);
  height: 0.35rem;
  overflow: hidden;
  border-radius: 0.5rem;
  background: rgba(20, 56, 47, 0.16);
}

.progress-fill {
  width: 0;
  height: 100%;
  background: var(--lime);
  transition: width 150ms linear;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 4.4rem;
  }

  h2 {
    font-size: 3rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 1.03rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.2rem;
    padding: 0.7rem 1rem;
  }

  .brand {
    width: 6.5rem;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero,
  .hero-inner {
    min-height: 34rem;
  }

  .hero-inner {
    padding: 3rem 0 2.6rem;
  }

  .hero-tint {
    background: rgba(13, 36, 30, 0.78);
  }

  .hero-media img {
    object-position: 70% center;
  }

  .section {
    padding: 4rem 0;
  }

  .split,
  .split.reverse,
  .pricing-grid,
  .checkout-shell,
  .checkout-overlay-grid {
    grid-template-columns: 1fr;
  }

  .checkout-overlay-panel {
    align-items: start;
    padding-top: 5.5rem;
  }

  .overlay-copy h2 {
    font-size: 3.45rem;
  }

  .checkout-main,
  .confirmation-main,
  .redirect-main {
    padding-top: 2.5rem;
  }

  .price-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.2rem, 72rem);
  }

  .site-header {
    gap: 0.75rem;
  }

  .button {
    width: 100%;
    min-height: 3rem;
    padding: 0.85rem 1rem;
  }

  .site-header .button {
    width: auto;
    max-width: 12rem;
    min-height: 2.55rem;
    padding: 0.7rem 0.75rem;
    font-size: 0.88rem;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.42rem;
  }

  .hero,
  .hero-inner {
    min-height: 32rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .event-line {
    font-size: 0.98rem;
  }

  .feature-card,
  .price-card,
  .checkout-summary {
    padding: 1rem;
  }

  .checkout-copy h1 {
    font-size: 3rem;
  }

  .overlay-brand span {
    display: none;
  }

  .overlay-brand img {
    width: 6.5rem;
  }

  .overlay-copy h2 {
    font-size: 2.85rem;
  }

  .overlay-summary {
    padding: 1rem;
  }

  .whop-embed-shell,
  .route-whop-embed,
  .whop-embed-panel,
  .whop-checkout-frame,
  .whop-loading {
    min-height: 38rem;
  }

  .price {
    font-size: 3.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
