:root {
  color-scheme: light;
  --ink: #21140f;
  --ink-soft: #3c281e;
  --muted: #755f49;
  --line: #d7a74d;
  --paper: #f6e5bd;
  --panel: #fff1cf;
  --panel-strong: #081f32;
  --gold: #c58d23;
  --gold-soft: #ffe4a3;
  --gold-dark: #8d4b14;
  --ruby: #7e1718;
  --blue: #0a2f4d;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(55, 29, 8, 0.26);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(10, 47, 77, 0.22), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(126, 23, 24, 0.15), transparent 28%),
    linear-gradient(180deg, #fff6df 0%, #f7e4b9 42%, #f3dfad 100%),
    var(--paper);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(197, 141, 35, 0.28);
}

.brand,
.header-link,
.button {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--ruby));
  border: 1px solid rgba(255, 228, 163, 0.75);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
}

.header-link {
  color: var(--ruby);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero {
  display: block;
  padding: 24px 0 60px;
}

.hero-banner {
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.hero-banner picture {
  display: block;
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-copy {
  max-width: 920px;
  margin: 34px auto 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--ruby);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 940px;
  margin: 0;
  color: var(--ruby);
  font-size: clamp(2.85rem, 7vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 228, 163, 0.52);
}

h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 36px 0 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.32rem);
  line-height: 1.65;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dark);
  border-radius: 6px;
  padding: 14px 20px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(33, 26, 18, 0.13);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--ruby), #551212);
  border-color: #5d1415;
}

.button.secondary {
  color: var(--blue);
  background: rgba(255, 245, 220, 0.58);
}

.button.disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.note {
  max-width: 540px;
  margin: 16px auto 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(197, 141, 35, 0.58);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--ink-soft);
  background: rgba(255, 246, 223, 0.72);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  line-height: 1.25;
}

.hero-stats strong {
  margin-right: 6px;
  color: var(--gold-dark);
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 34px;
  align-items: stretch;
  border: 2px solid rgba(197, 141, 35, 0.72);
  border-radius: 8px;
  margin: 10px 0 72px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(197, 141, 35, 0.32), transparent 42%),
    radial-gradient(circle at 92% 10%, rgba(126, 23, 24, 0.32), transparent 24%),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.feature-copy {
  max-width: 720px;
}

.feature-copy .eyebrow {
  color: var(--gold-soft);
}

.feature-copy h2 {
  max-width: 680px;
  color: var(--gold-soft);
}

.feature-copy p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
}

.feature-copy strong {
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  border: 1px solid rgba(255, 228, 163, 0.32);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-number {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.feature-list span:last-child {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.5;
}

.reward-band {
  padding: 72px 0;
  border-top: 1px solid rgba(197, 141, 35, 0.42);
}

.section-heading {
  max-width: 620px;
}

.reward-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.reward-card {
  min-height: 230px;
  border: 1px solid rgba(197, 141, 35, 0.48);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 246, 223, 0.68);
  box-shadow: 0 12px 28px rgba(95, 57, 12, 0.08);
}

.card-number {
  color: var(--ruby);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
}

.reward-card p {
  margin: 0;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(197, 141, 35, 0.42);
  padding: 26px 0 36px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
}

@media (max-width: 820px) {
  .hero {
    padding-top: 18px;
  }

  .hero-banner {
    border-width: 1px;
    border-radius: 6px;
  }

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

  .feature-panel {
    grid-template-columns: 1fr;
    margin-bottom: 56px;
    padding: 26px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 22px, 1180px);
  }

  .site-header {
    min-height: 66px;
  }

  h1 {
    font-size: clamp(2.4rem, 15vw, 3.8rem);
  }

  .hero-copy {
    margin-top: 24px;
    text-align: left;
  }

  .hero-text,
  .note {
    margin-left: 0;
    margin-right: 0;
  }

  .action-row,
  .button {
    width: 100%;
  }

  .action-row,
  .hero-stats {
    justify-content: flex-start;
  }

  .hero-stats span {
    width: 100%;
  }

  .feature-panel {
    padding: 22px;
  }
}
