:root {
  --red: #e4121f;
  --red-bright: #f5432f;
  --red-deep: #b00d18;
  --burgundy: #7e0912;
  --gold: #ffc220;
  --gold-deep: #e8a610;
  --orange: #e8792b;
  --cream: #fff7ec;
  --cream-2: #fff0d6;
  --cream-3: #fdefdb;
  --parchment: #f0e2cd;
  --ink: #2a1410;
  --muted: #7a5348;
  --peach: #ffdcc9;
  --white: #ffffff;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --wrap: 1120px;
  --radius: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 6px 18px rgba(42, 20, 16, .08);
  --shadow-md: 0 16px 40px rgba(42, 20, 16, .14);
  --shadow-gold: 0 12px 28px rgba(228, 18, 31, .28);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: 20px;
}

@keyframes shine {
  to {
    transform: translateX(120%);
  }
}
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  will-change: transform;
}
.btn--sm {
  padding: 9px 16px;
  font-size: 13.5px;
}
.btn--lg {
  padding: 16px 34px;
  font-size: 17px;
}
.btn .arrow {
  transition: transform 0.25s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:hover .arrow {
  transform: translate(2px, -2px);
}
.btn:active {
  transform: translateY(0);
}
.btn--gold {
  position: relative;
  background: linear-gradient(180deg, #ffd046, var(--gold));
  color: var(--burgundy);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
}
.btn--gold::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
}
.btn--gold:hover {
  box-shadow: 0 16px 34px rgba(228, 18, 31, 0.36);
}
.btn--gold:hover::after {
  animation: shine 0.8s var(--ease);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1.6px solid rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(126, 9, 18, 0.28);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
}
@media (min-width: 720px) {
  .site-header__inner {
    justify-content: flex-start;
  }
}
.site-header .btn {
  margin-left: auto;
}
.site-header .nav ~ .btn {
  margin-left: 0;
}
@media (min-width: 720px) {
  .site-header .btn {
    margin-left: 0;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-size: 20px;
  background: var(--burgundy);
  border-radius: 12px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 16px;
}
.brand__name em {
  color: var(--gold);
  font-style: normal;
}
.brand__name--footer {
  font-size: 18px;
  color: var(--white);
}
.brand__tag {
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--peach);
  font-weight: 600;
  margin-top: 3px;
}

.nav {
  display: none;
  margin-left: auto;
  gap: 26px;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 720px) {
  .nav {
    display: flex;
  }
}
.nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  padding: 4px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  color: var(--white);
  background: radial-gradient(120% 120% at 85% 0%, var(--red-bright) 0%, var(--red) 45%, var(--red-deep) 100%);
  padding: 46px 0 56px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero {
    padding: 64px 0 80px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: -40% -10% auto auto;
  width: 60%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 194, 32, 0.22), transparent 62%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  gap: 34px;
}
@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 40px;
  }
}
.hero__title {
  font-size: clamp(34px, 8vw, 46px);
  font-weight: 700;
  margin-bottom: 16px;
}
.hero__title .hl {
  color: var(--gold);
}
@media (min-width: 900px) {
  .hero__title {
    font-size: clamp(40px, 4vw, 48px);
  }
}
.hero__lead {
  font-size: 16px;
  color: var(--peach);
  max-width: 34ch;
  margin-bottom: 12px;
}
@media (min-width: 900px) {
  .hero__lead {
    font-size: 17px;
  }
}
.hero__kicker {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 22px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.hero__note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
}
.hero__wheel {
  display: flex;
  justify-content: center;
}

.badge {
  align-self: flex-start;
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--gold);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

.wheel {
  position: relative;
  width: min(340px, 82vw);
  aspect-ratio: 1;
}
.wheel__svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 18px 30px rgba(126, 9, 18, 0.45));
}
.wheel__rim {
  fill: none;
  stroke: var(--burgundy);
  stroke-width: 6;
}
.wheel__hub {
  fill: var(--burgundy);
  stroke: var(--gold);
  stroke-width: 4;
}
.wheel__lbl {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  fill: var(--white);
  text-anchor: middle;
  dominant-baseline: middle;
}
.wheel__lbl--dark {
  fill: var(--burgundy);
}
.wheel__pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 20px solid var(--gold);
  filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.3));
  z-index: 3;
}
.wheel__go {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  background: radial-gradient(circle at 50% 35%, var(--red-bright), var(--red-deep));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  z-index: 4;
}

.seg--red {
  fill: var(--red);
}
.seg--gold {
  fill: var(--gold);
}

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
  margin-bottom: 8px;
}

.section__title {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 34px;
}

.benefits {
  background: var(--cream);
  padding: 56px 0;
}
@media (min-width: 720px) {
  .benefits {
    padding: 72px 0;
  }
}

.cards {
  display: grid;
  gap: 16px;
}
@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-align: center;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
@media (min-width: 720px) {
  .card {
    text-align: left;
  }
}
.card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  font-size: 26px;
  background: var(--cream-2);
  border-radius: 14px;
  margin: 0 auto 16px;
}
@media (min-width: 720px) {
  .card__icon {
    margin-inline: 0;
  }
}
.card__title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
}
.card__text {
  font-size: 14.5px;
  color: var(--muted);
}

.steps {
  background: linear-gradient(180deg, var(--cream-3), var(--cream-2));
  padding: 56px 0;
}
@media (min-width: 720px) {
  .steps {
    padding: 72px 0;
  }
}
.steps__list {
  display: grid;
  gap: 34px;
  counter-reset: step;
}
@media (min-width: 720px) {
  .steps__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
  }
}

.step {
  position: relative;
  text-align: center;
  padding-top: 10px;
}
.step__num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--white);
  background: radial-gradient(circle at 50% 35%, var(--red-bright), var(--red-deep));
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(176, 13, 24, 0.35);
}
.step__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}
.step__text {
  font-size: 14px;
  color: var(--muted);
  max-width: 30ch;
  margin: 0 auto;
}

.cta {
  background: var(--red);
  color: var(--white);
  padding: 56px 0;
}
@media (min-width: 720px) {
  .cta {
    padding: 72px 0;
  }
}
.cta__inner {
  text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, var(--red-bright), var(--red) 55%, var(--red-deep));
  border-radius: 26px;
  padding: 44px 26px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.cta__title {
  font-size: clamp(24px, 6vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
}
.cta__lead {
  color: var(--peach);
  max-width: 40ch;
  margin: 0 auto 24px;
}
.cta__note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.site-footer {
  background: var(--burgundy);
  color: rgba(255, 255, 255, 0.82);
  padding: 30px 0;
}
.site-footer__inner {
  display: grid;
  gap: 16px;
  text-align: center;
  justify-items: center;
}
@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    align-items: center;
  }
}
.site-footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  font-size: 13.5px;
}
@media (min-width: 900px) {
  .site-footer__info {
    justify-content: center;
  }
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 18px;
  font-size: 13px;
}
.site-footer__links a {
  color: rgba(255, 255, 255, 0.82);
}
.site-footer__links a:hover {
  color: var(--gold);
}

.socials {
  display: flex;
  gap: 12px;
}
.socials__link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.socials__link:hover {
  transform: translateY(-3px);
  background: var(--gold);
  color: var(--burgundy);
}

.page-hero {
  position: relative;
  color: var(--white);
  background: radial-gradient(120% 140% at 85% 0%, var(--red-bright) 0%, var(--red) 45%, var(--red-deep) 100%);
  padding: 34px 0 44px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .page-hero {
    padding: 46px 0 58px;
  }
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: -55% -10% auto auto;
  width: 55%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(255, 194, 32, 0.2), transparent 62%);
  pointer-events: none;
}
.page-hero__inner {
  position: relative;
  max-width: 52ch;
}
.page-hero__title {
  font-size: clamp(28px, 7vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero__lead {
  color: var(--peach);
  font-size: 15.5px;
}
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-top: 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
}

.crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 14px;
}
.crumbs a:hover {
  color: var(--gold);
}
.crumbs .crumbs__sep {
  opacity: 0.55;
}

.legal {
  background: var(--cream);
  padding: 40px 0 60px;
}
@media (min-width: 720px) {
  .legal {
    padding: 52px 0 76px;
  }
}
.legal__grid {
  display: grid;
  gap: 26px;
}
@media (min-width: 900px) {
  .legal__grid {
    grid-template-columns: 252px 1fr;
    gap: 40px;
    align-items: start;
  }
}

.toc {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 900px) {
  .toc {
    position: sticky;
    top: 78px;
  }
}
.toc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.toc__list {
  display: grid;
  gap: 2px;
}
.toc a {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  padding: 6px 9px;
  border-radius: 10px;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.toc a:hover {
  background: var(--cream-2);
  color: var(--ink);
}

.doc {
  display: grid;
  gap: 18px;
}
.doc__intro {
  background: var(--cream-2);
  border: 1px solid var(--parchment);
  border-left: 4px solid var(--gold);
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--muted);
}

.clause {
  background: var(--white);
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  scroll-margin-top: 78px;
}
.clause__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 12px;
}
.clause__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  background: radial-gradient(circle at 50% 35%, var(--red-bright), var(--red-deep));
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(176, 13, 24, 0.3);
}
.clause p {
  font-size: 14.5px;
  color: var(--muted);
}
.clause p + p {
  margin-top: 10px;
}
.clause strong {
  color: var(--ink);
  font-weight: 600;
}
.clause__list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  font-size: 14.5px;
  color: var(--muted);
}
.clause__list li {
  position: relative;
  padding-left: 20px;
}
.clause__list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.58em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-card {
  background: linear-gradient(180deg, var(--cream-3), var(--cream-2));
  border: 1px solid var(--parchment);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}
.contact-card__title {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
}
.contact-card__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: 14.5px;
  color: var(--muted);
}

@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    [data-reveal] {
      animation: reveal-up both linear;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto;
  }
}
