:root {
  --bg: #fbfaf7;
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #171317;
  --text-soft: #645d63;
  --line: rgba(23, 19, 23, 0.1);
  --line-strong: rgba(255, 255, 255, 0.2);
  --accent: #a8dceb;
  --accent-deep: #4d95a8;
  --shadow-soft: 0 22px 55px rgba(36, 32, 36, 0.08);
  --shadow-strong: 0 30px 90px rgba(36, 32, 36, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(168, 220, 235, 0.3), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 42%, #f7f2eb 100%);
}

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

a {
  color: inherit;
}

.background-glow {
  position: fixed;
  inset: auto;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.background-glow-one {
  top: 6rem;
  left: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(168, 220, 235, 0.56);
}

.background-glow-two {
  top: 20rem;
  right: -4rem;
  width: 20rem;
  height: 20rem;
  background: rgba(215, 236, 244, 0.7);
}

.background-glow-three {
  top: 42rem;
  left: 30%;
  width: 24rem;
  height: 24rem;
  background: rgba(168, 220, 235, 0.24);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1040px, 100%);
  margin: 0 auto 2rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 5.4rem;
  height: auto;
  max-height: 3.8rem;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.brand span {
  font-size: 1.15rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(23, 19, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  box-shadow: 0 10px 25px rgba(36, 32, 36, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav,
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
}

.site-nav {
  flex-wrap: wrap;
  gap: 0.35rem;
}

.site-nav a,
.header-cta,
.button {
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
  cursor: pointer;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  color: var(--text-soft);
  font-weight: 600;
  background: transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #222025 !important;
  border-color: #222025 !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(34, 32, 37, 0.22) !important;
  transform: translateY(-1px) scale(1.02);
  outline: none;
}

.header-cta {
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  background: #222025;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(34, 32, 37, 0.24);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px) scale(1.02);
}

.hero,
.feature-strip,
.info-strip,
.section,
.site-footer {
  animation: fade-up 0.7s ease both;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: min(1040px, 100%);
  margin: 0 auto;
  padding: 3.3rem 0 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  text-align: center;
}

.hero-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
}

.hero-pill {
  min-height: 2.8rem;
  padding: 0.65rem 1.05rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(23, 19, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 25px rgba(36, 32, 36, 0.06);
  color: var(--text-soft);
  font-size: 0.96rem;
}

.eyebrow {
  margin: 1.35rem 0 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.83rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  letter-spacing: -0.04em;
  word-spacing: 0.04em;
  line-height: 0.96;
  font-weight: 700;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 8vw, 6.3rem);
  margin-bottom: 0;
}

.hero h1 span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lead,
.section-intro,
.story-card p,
.price-card p,
.mini-card p,
.step-card p,
.support-card p,
.rules-grid p,
.contact-card p,
.footer-note {
  color: var(--text-soft);
  line-height: 1.68;
}

.lead {
  max-width: 42rem;
  margin: 1.35rem 0 0;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.button {
  min-height: 3.25rem;
  padding: 0.8rem 1.35rem;
  font-weight: 600;
}

.button-primary {
  border: 1px solid rgba(23, 19, 23, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 10px 22px rgba(34, 32, 37, 0.08);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #3a3338 !important;
  color: #ffffff !important;
  box-shadow: 0 18px 30px rgba(34, 32, 37, 0.24) !important;
  outline: none;
}

.button-secondary {
  border: 1px solid rgba(23, 19, 23, 0.08);
  background: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #222025 !important;
  color: #ffffff !important;
  border-color: #222025 !important;
  box-shadow: 0 14px 28px rgba(34, 32, 37, 0.18) !important;
  outline: none;
}

.hero-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2.3rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.9)),
    radial-gradient(circle at 10% 0%, rgba(168, 220, 235, 0.35), transparent 32%);
  box-shadow: var(--shadow-strong);
}

.hero-stat {
  min-height: 13rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.hero-stat p {
  margin: 0.4rem 0 0;
  color: var(--text-soft);
}

.stat-label {
  display: block;
  margin-bottom: 0.4rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--accent-deep);
  font-weight: 700;
}

.hero-stat strong {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.feature-strip,
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: min(1040px, 100%);
  margin: 1.35rem auto 0;
}

.feature-strip article,
.info-strip article,
.section,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.feature-strip article,
.info-strip article {
  padding: 1.25rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.72);
}

.feature-strip h2,
.info-strip h2,
.story-card h3,
.fact-card h3,
.price-card h3,
.mini-card h3,
.note-card h3,
.step-card h3,
.support-card h3,
.rules-grid h3,
.contact-card h3 {
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}

.feature-strip p,
.info-strip p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
}

.section,
.site-footer {
  width: min(1040px, 100%);
  margin: 1.35rem auto 0;
  padding: 1.5rem;
  border-radius: 2.25rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  scroll-margin-top: 8.5rem;
}

.section-light {
  background: rgba(255, 255, 255, 0.72);
}

.section-tinted,
.section-accent {
  background:
    radial-gradient(circle at top left, rgba(168, 220, 235, 0.35), transparent 34%),
    rgba(255, 255, 255, 0.74);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(168, 220, 235, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(36, 32, 36, 0.98), rgba(63, 55, 60, 0.98));
  color: #ffffff;
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.3rem;
}

.section-heading h2 {
  font-size: clamp(2.65rem, 6vw, 4.8rem);
}

.section-intro {
  margin: 0.9rem 0 0;
  font-size: 1.02rem;
}

.two-column,
.fact-stack,
.price-grid,
.mini-grid,
.note-grid,
.steps,
.support-grid,
.rules-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 1rem;
}

.two-column {
  grid-template-columns: 1.18fr 0.82fr;
  align-items: stretch;
}

.fact-stack {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, 1fr);
}

.text-card,
.fact-card,
.note-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.text-card p,
.fact-card p,
.note-card p {
  color: var(--text-soft);
  line-height: 1.68;
}

.text-card p:last-child,
.fact-card p:last-child {
  margin-bottom: 0;
}

.text-card,
.fact-card {
  height: 100%;
}

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

.price-card,
.note-card,
.step-card,
.support-card,
.rules-grid article,
.contact-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 20rem;
}

.price-main {
  margin: 0.7rem 0 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--text);
}

.price-meta {
  color: var(--text-soft);
}

.price-total {
  display: inline-flex;
  width: fit-content;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(168, 220, 235, 0.14);
  font-size: 0.9rem;
  font-weight: 700;
}

.price-card p {
  margin: 0.5rem 0 0;
}

.price-card ul {
  margin: 1rem 0 0;
  padding-left: 1.15rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.price-card .price-total {
  order: 10;
  margin-top: auto;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(36, 32, 36, 0.98), rgba(63, 55, 60, 0.98));
  border-color: rgba(255, 255, 255, 0.08);
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured ul {
  color: #ffffff;
}

.price-card.featured .price-total {
  color: rgba(255, 255, 255, 0.94);
}

.mini-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
}

.note-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1rem;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
}

.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
}

.support-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1rem;
}

.section-dark .section-intro,
.section-dark .rules-grid article p {
  color: rgba(255, 255, 255, 0.78);
}

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

.section-dark .rules-grid article {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-strong);
  box-shadow: none;
}

.section-dark .rules-grid h3 {
  color: #ffffff;
}

.site-footer {
  background:
    radial-gradient(circle at top left, rgba(168, 220, 235, 0.34), transparent 28%),
    rgba(255, 255, 255, 0.74);
}

.contact-grid,
.footer-grid {
  grid-template-columns: repeat(4, 1fr);
}

.footer-grid > div {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.footer-note {
  margin: 1.25rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .hero-panel,
  .feature-strip,
  .info-strip,
  .mini-grid,
  .note-grid,
  .steps,
  .rules-grid,
  .contact-grid,
  .footer-grid,
  .two-column {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 1rem, 1200px);
  }

  .site-header {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    border-radius: 1.35rem;
  }

  .brand {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .brand img {
    width: 4.3rem;
    max-height: 3rem;
  }

  .brand span {
    font-size: 0.95rem;
    text-align: left;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
    padding-top: 0.15rem;
  }

  .site-header.menu-open .site-nav {
    display: grid;
  }

  .site-nav a {
    min-height: 3rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    text-align: center;
    border-color: rgba(23, 19, 23, 0.08);
    background: rgba(255, 255, 255, 0.72);
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-panel,
  .section,
  .site-footer {
    padding: 1rem;
    border-radius: 1.6rem;
  }

  .hero-panel,
  .two-column {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .info-strip,
  .mini-grid,
  .note-grid,
  .steps,
  .support-grid,
  .rules-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .price-grid .price-card:first-child {
    grid-column: 1 / -1;
  }

  .price-card {
    min-height: auto;
    padding: 1.1rem;
  }

  .price-main {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .price-card ul {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .note-card,
  .support-card,
  .step-card,
  .contact-card,
  .footer-grid > div,
  .info-strip article {
    padding: 1rem;
  }

  .site-footer a,
  .support-card a {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 520px) {
  .feature-strip,
  .rules-grid {
    grid-template-columns: 1fr;
  }

  .info-strip,
  .mini-grid,
  .note-grid,
  .steps,
  .support-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .price-grid .price-card:first-child {
    grid-column: 1 / -1;
  }

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