﻿:root {
  --bg: #07090a;
  --bg-soft: #0f1416;
  --card: #131a1d;
  --text: #f3f4f5;
  --muted: #b5bdc1;
  --primary: #ff6b00;
  --primary-dark: #d75500;
  --accent: #48d691;
  --gold: #a07a35;
  --stroke: rgba(255, 255, 255, 0.1);
  --radius: 16px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(1000px 380px at 50% -10%, #18302a 0%, var(--bg) 70%);
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

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

.container {
  width: min(var(--container), calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.center {
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 0.6rem 1rem;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  background: linear-gradient(90deg, #2f1d09 0%, #4f2a0b 50%, #2f1d09 100%);
  color: #ffe7d3;
  border-bottom: 1px solid rgba(255, 190, 145, 0.25);
}

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(7, 9, 10, 0.94) 0%, rgba(7, 9, 10, 0.78) 45%, rgba(7, 9, 10, 0.5) 100%),
    radial-gradient(circle at 78% 24%, rgba(72, 214, 145, 0.32), transparent 40%),
    radial-gradient(circle at 20% 8%, rgba(255, 107, 0, 0.2), transparent 35%);
}

.hero__wrap {
  padding: 5.5rem 0 4.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
}

.hero__copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.25rem);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.02em;
}

.hero__copy h1 span {
  color: var(--accent);
}

.hero__sub {
  color: var(--muted);
  margin: 1.35rem 0 1.8rem;
  font-size: 1.02rem;
  max-width: 60ch;
}

.hero__media {
  justify-self: end;
  width: min(420px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.hero__media::after {
  content: "Julie";
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
  background: rgba(7, 9, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: #ffd2b0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow--accent {
  color: #aceecc;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.98rem 1.55rem;
  min-height: 48px;
  border-radius: 12px;
  border: 0;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #ff7f24, var(--primary));
  box-shadow: 0 12px 30px rgba(255, 107, 0, 0.32);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #ff8732, var(--primary-dark));
  transform: translateY(-1px);
}

.btn--cta21 {
  position: relative;
  overflow: hidden;
  gap: 0.45rem;
}

.btn--cta21::after {
  content: "";
  position: absolute;
  top: -140%;
  left: -30%;
  width: 38%;
  height: 320%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  animation: cta-sheen 3.8s linear infinite;
}

.btn__spark {
  font-size: 0.9rem;
  line-height: 1;
}

.hero__cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
}

.micro {
  margin: 0;
  font-size: 0.76rem;
  color: #c8d0d4;
}

.section {
  padding: 5rem 0;
}

.section--dark {
  background: linear-gradient(180deg, #0b1012 0%, var(--bg-soft) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section--striped {
  position: relative;
  overflow: hidden;
}

.section--striped::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(160, 122, 53, 0.14) 0,
    rgba(160, 122, 53, 0.14) 1px,
    transparent 1px,
    transparent 24px
  );
  opacity: 0.38;
}

.title {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.lead {
  color: var(--muted);
  margin: 0.25rem 0 0;
}

.master-grid {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.master-card {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(19, 26, 29, 0.95), rgba(14, 19, 22, 0.95));
  backdrop-filter: blur(1.5px);
}

.master-card__photo {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0.9rem;
}

.master-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.master-card h3 {
  margin: 0;
  font-size: 1rem;
}

.master-card p {
  margin: 0.45rem 0 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.master-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #d3dbe0;
  font-size: 0.84rem;
}

.master-card li + li {
  margin-top: 0.34rem;
}

.section--results {
  background: radial-gradient(460px 230px at 25% -20%, rgba(72, 214, 145, 0.17), transparent 70%), var(--bg);
}

.results-grid {
  margin-top: 2rem;
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.results-grid img {
  height: 235px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.bonus-cards {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bonus-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: #11181b;
}

.bonus-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.bonus-card__body {
  padding: 1rem;
}

.bonus-card h3 {
  margin: 0;
  font-size: 1rem;
}

.bonus-card p {
  margin: 0.48rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.mid-cta {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.2rem;
  padding: 1rem;
  border: 1px solid rgba(255, 137, 52, 0.28);
  border-radius: 20px;
  background:
    radial-gradient(400px 180px at 85% 90%, rgba(255, 107, 0, 0.16), transparent 70%),
    linear-gradient(180deg, #141b1f 0%, #101518 100%);
}

.mid-cta__media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.mid-cta__media img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.mid-cta__copy p {
  color: var(--muted);
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.list {
  margin: 0;
  list-style: none;
  padding: 1.2rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: var(--card);
}

.list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.list--ok li::before,
.list--no li::before {
  position: absolute;
  left: 0;
  font-weight: 700;
}

.list--ok li::before {
  content: "✓";
  color: #79e8b2;
}

.list--no li::before {
  content: "✕";
  color: #ff8c7f;
}

.bio {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 340px 1fr;
  align-items: center;
}

.bio img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

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

.faq {
  margin-top: 1.4rem;
}

.faq details {
  border: 1px solid var(--stroke);
  border-radius: 12px;
  background: var(--card);
  padding: 0.9rem 1rem;
}

.faq details + details {
  margin-top: 0.75rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 0.94rem;
  padding-right: 1.4rem;
  position: relative;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.05rem;
  color: #fdd9bf;
  font-size: 1.2rem;
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.89rem;
}

.section--warning {
  background: #0b0f10;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}

.warning-box {
  border-radius: 12px;
  border: 1px solid rgba(255, 157, 79, 0.35);
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.13), rgba(255, 107, 0, 0.05));
  padding: 1rem 1.2rem;
}

.warning-box p {
  margin: 0;
  color: #ffe2cf;
  font-size: 0.9rem;
}

.cta-final {
  background:
    radial-gradient(500px 260px at 15% 10%, rgba(72, 214, 145, 0.2), transparent 60%),
    radial-gradient(520px 280px at 85% 10%, rgba(255, 107, 0, 0.18), transparent 65%),
    #090f11;
}

.enroll-relief {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(340px 180px at 50% -10%, rgba(80, 231, 160, 0.12), transparent 65%),
    linear-gradient(180deg, #1a2226 0%, #0d1114 58%, #0b0f11 100%);
  box-shadow:
    0 36px 60px rgba(0, 0, 0, 0.5),
    inset 0 2px 0 rgba(255, 255, 255, 0.16),
    inset 0 -24px 40px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.enroll-relief__decor {
  position: absolute;
  top: 76%;
  width: 62px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(182, 189, 194, 0.7));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.35), 0 6px 14px rgba(0, 0, 0, 0.35);
  z-index: 3;
}

.enroll-relief__decor--left {
  left: -20px;
}

.enroll-relief__decor--right {
  right: -20px;
}

.enroll-relief::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 24%);
}

.enroll-relief__ticket {
  position: absolute;
  top: -28px;
  left: 50%;
  width: min(560px, calc(100% - 2.2rem));
  transform: translateX(-50%) rotate(-4.5deg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.45);
  z-index: 2;
}

.enroll-relief__ticket img {
  width: 100%;
  height: 136px;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.05) contrast(1.05);
}

.enroll-relief__ticket::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 8, 9, 0.35) 100%);
  pointer-events: none;
}

.enroll-relief__ticket-label {
  position: absolute;
  left: 0.85rem;
  bottom: 0.6rem;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(5, 7, 8, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  color: #f5f7f8;
  font-weight: 600;
}

.enroll-relief__body {
  padding: 7.2rem 2rem 1.8rem;
  text-align: center;
}

.enroll-relief__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3.6vw, 2.65rem);
  line-height: 1.08;
}

.enroll-relief__date {
  margin: 0.9rem 0 1rem;
  font-size: 1rem;
  color: #dce7eb;
  font-weight: 500;
}

.enroll-relief__list {
  margin: 0 auto 1.25rem;
  padding: 0;
  max-width: 620px;
  list-style: none;
}

.enroll-relief__list li {
  color: #c4d0d5;
  font-size: 0.94rem;
}

.enroll-relief__list li + li {
  margin-top: 0.45rem;
}

.enroll-relief__body .btn {
  margin-top: 0.6rem;
  min-width: min(490px, 100%);
}

.enroll-relief__payments {
  margin: 0.7rem 0 0.8rem;
  color: #a8b5bb;
  font-size: 0.78rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.enroll-relief__progress {
  width: min(500px, 100%);
  height: 19px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.11);
  overflow: hidden;
}

.enroll-relief__progress-fill {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, #ff3232, #ff7a27);
  box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.enroll-relief__progress strong {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fff5f5;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.enroll-relief__progress em {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.enroll-relief__micro {
  margin: 0.5rem 0 0;
  color: #ffd9d9;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0 1.5rem;
  color: #95a2a8;
  font-size: 0.8rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  padding: 0.6rem;
  background: rgba(7, 9, 10, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  display: none;
}

.sticky-cta .btn {
  width: 100%;
}

.signup-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.signup-modal.is-open {
  display: block;
}

.signup-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 6, 0.78);
  backdrop-filter: blur(4px);
}

.signup-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 1rem));
  margin: 5vh auto;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    radial-gradient(500px 240px at 80% -10%, rgba(73, 214, 148, 0.14), transparent 70%),
    linear-gradient(180deg, #151d21 0%, #0d1215 70%, #0a0f11 100%);
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.5);
  padding: 1rem;
}

.signup-modal__close {
  position: absolute;
  top: 0.45rem;
  right: 0.5rem;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.signup-modal__sub {
  margin: 0.35rem 0 0.85rem;
  color: #b5c0c5;
  font-size: 0.88rem;
}

.signup-form {
  display: grid;
  gap: 0.58rem;
}

.signup-form label {
  font-size: 0.8rem;
  color: #dce5e9;
  font-weight: 600;
}

.signup-form input {
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f7f8;
  font-size: 0.92rem;
  padding: 0.72rem 0.75rem;
}

.signup-form input::placeholder {
  color: #96a5ad;
}

.signup-form input:focus {
  outline: 0;
  border-color: rgba(255, 140, 60, 0.85);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.18);
}

.signup-modal__note {
  margin: 0.25rem 0 0;
  color: #93a3aa;
  font-size: 0.74rem;
  text-align: center;
}

.signup-form__error {
  margin: 0.2rem 0 0;
  color: #ffb8b8;
  font-size: 0.75rem;
  text-align: center;
}

#signupSubmit[aria-busy="true"] {
  opacity: 0.74;
  pointer-events: none;
}

@keyframes cta-sheen {
  0% {
    transform: translateX(-140%) rotate(18deg);
  }
  100% {
    transform: translateX(460%) rotate(18deg);
  }
}

@media (max-width: 980px) {
  .hero__wrap,
  .master-grid,
  .results-grid,
  .bonus-cards,
  .mid-cta,
  .split,
  .bio {
    grid-template-columns: 1fr;
  }

  .results-grid img {
    height: 220px;
  }

  .hero__media {
    justify-self: start;
    max-width: 360px;
  }

  .hero__wrap {
    padding-top: 4.3rem;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--container), calc(100% - 1.3rem));
  }

  body {
    line-height: 1.62;
  }

  .topbar {
    font-size: 0.72rem;
    line-height: 1.45;
    padding: 0.5rem 0.65rem;
  }

  .section {
    padding: 3.1rem 0;
  }

  .btn {
    width: 100%;
  }

  .hero__cta-row {
    align-items: stretch;
  }

  .hero__media {
    max-width: 100%;
  }

  .hero__wrap {
    padding: 3.25rem 0 2.4rem;
    gap: 1.1rem;
  }

  .hero__copy h1 {
    font-size: clamp(1.9rem, 9.2vw, 2.5rem);
    line-height: 1.06;
  }

  .hero__sub {
    font-size: 0.92rem;
    margin: 0.85rem 0 1.05rem;
  }

  .master-card__photo {
    height: 152px;
  }

  .results-grid img,
  .bonus-card img {
    height: 165px;
  }

  .enroll-relief__ticket {
    top: -12px;
    width: calc(100% - 1rem);
    transform: translateX(-50%) rotate(-2.4deg);
  }

  .enroll-relief__decor {
    display: none;
  }

  .enroll-relief__ticket img {
    height: 90px;
    object-position: center 28%;
  }

  .enroll-relief__body {
    padding: 5.1rem 0.9rem 1.2rem;
  }

  .enroll-relief__date {
    font-size: 0.92rem;
  }

  .enroll-relief__list li {
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .enroll-relief__title {
    font-size: clamp(1.55rem, 8vw, 2.05rem);
    line-height: 1.12;
  }

  .enroll-relief__payments {
    font-size: 0.72rem;
    gap: 0.35rem;
  }

  .enroll-relief__progress {
    height: 18px;
  }

  .enroll-relief__progress strong {
    font-size: 0.58rem;
    left: 0.55rem;
  }

  .enroll-relief__progress em {
    font-size: 0.64rem;
  }

  .cta-final {
    padding-top: 2.2rem;
  }

  .sticky-cta {
    display: block;
  }

  .signup-modal__dialog {
    margin: 3.5vh auto;
    padding: 0.9rem 0.75rem 0.8rem;
    max-height: 92vh;
    overflow: auto;
  }

  .footer {
    padding-bottom: 5rem;
  }
}
