:root {
  color-scheme: light;
  --navy-950: #063a42;
  --navy-800: #007888;
  --navy-100: #d9eef0;
  --red: #c84436;
  --red-dark: #a9342a;
  --plum: #24102f;
  --plum-soft: #371842;
  --apricot: #ffc17d;
  --cream: #f4f0e8;
  --paper: #fbfaf6;
  --ink: #17363b;
  --muted: #5c7073;
  --line: #d5dfde;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 58, 66, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 193, 125, 0.16), transparent 25rem),
    var(--cream);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-stretch: normal;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--navy-800);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--red-dark);
}

.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--plum);
  color: var(--white);
}

.nav-wrap {
  display: flex;
  width: min(100% - 40px, 1100px);
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
}

.brand:hover {
  color: var(--white);
}

.brand-logo {
  width: 132px;
  height: auto;
}

.product-name {
  display: inline-flex;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  align-items: center;
  gap: 9px;
  color: #d3e7e8;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.product-name img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.2);
}

.product-name:hover {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 9px 14px;
  border-radius: 8px;
  color: #cfdee6;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.018em;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--plum-soft), var(--plum) 70%);
  color: var(--white);
}

.hero::after {
  position: absolute;
  top: 50%;
  right: max(3vw, 20px);
  width: min(25vw, 210px);
  height: min(25vw, 210px);
  border-radius: 22%;
  background: url("/assets/club-savings-icon-180.png") center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(10, 2, 14, 0.3);
  content: "";
  opacity: 0.58;
  transform: translateY(-50%) rotate(5deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 940px);
  margin: 0 auto;
  padding: 72px 0 92px;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--apricot);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-stretch: normal;
  line-height: 1.28;
}

h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  font-weight: 710;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.hero-copy {
  max-width: 640px;
  margin: 24px 0 0;
  color: #e1cedf;
  font-size: clamp(1rem, 2vw, 1.15rem);
  letter-spacing: 0.008em;
  line-height: 1.72;
}

.meta {
  display: flex;
  margin-top: 28px;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #e1cedf;
  font-size: 0.78rem;
}

.layout {
  display: grid;
  width: min(100% - 40px, 1100px);
  margin: -34px auto 80px;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 22px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(251, 250, 246, 0.95);
  box-shadow: var(--shadow);
}

.toc-title {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc ol {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 5px;
  list-style: none;
}

.toc a {
  display: block;
  padding: 5px 0;
  color: var(--navy-800);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.document {
  padding: clamp(28px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
  font-size: 1.015rem;
  letter-spacing: 0.006em;
  line-height: 1.75;
}

.notice {
  margin: 0 0 40px;
  padding: 18px 20px;
  border-left: 4px solid var(--apricot);
  border-radius: 0 10px 10px 0;
  background: #f7e8e5;
  color: #60322f;
}

.document section + section {
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.document h2 {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.32;
}

.document h3 {
  margin: 28px 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.008em;
  line-height: 1.38;
}

.document p,
.document ul {
  margin: 0 0 16px;
}

.document li + li {
  margin-top: 9px;
}

.document strong {
  color: var(--navy-950);
}

.contact-card {
  display: grid;
  margin-top: 24px;
  padding: 24px;
  border-radius: 14px;
  background: var(--plum);
  color: #d7e6ed;
  gap: 5px;
}

.contact-card strong {
  color: var(--white);
}

.contact-card a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 750;
}

.support-grid {
  display: grid;
  margin: 26px 0 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.support-card {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #f8faf7;
}

.support-card h3 {
  margin: 0 0 8px;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.steps {
  padding-left: 1.3rem;
}

.site-footer {
  background: var(--navy-950);
  color: #a9c2cf;
}

.footer-inner {
  display: flex;
  width: min(100% - 40px, 1100px);
  min-height: 105px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: #d7e6ed;
  text-decoration: none;
}

.fine-print {
  max-width: 690px;
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 780px) {
  .nav-wrap {
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero-inner {
    padding: 54px 0 72px;
  }

  .hero::after {
    right: -42px;
    width: 140px;
    height: 140px;
    opacity: 0.2;
  }

  .layout {
    margin-top: -24px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .toc {
    position: static;
  }

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

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

  .footer-inner {
    padding: 28px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .nav-wrap,
  .hero-inner,
  .layout,
  .footer-inner {
    width: min(100% - 28px, 1100px);
  }

  .nav-links a {
    padding-left: 8px;
    padding-right: 8px;
  }

  .brand-logo {
    width: 112px;
  }

  .brand-group {
    gap: 11px;
  }

  .product-name {
    padding-left: 11px;
    font-size: 0.82rem;
  }

  .toc ol {
    grid-template-columns: 1fr;
  }

  .document {
    padding: 24px 20px;
  }
}

@media print {
  .site-header,
  .toc,
  .site-footer {
    display: none;
  }

  .hero {
    background: none;
    color: var(--ink);
  }

  .hero-inner {
    padding: 30px 0;
  }

  h1,
  .hero-copy,
  .eyebrow {
    color: var(--ink);
  }

  .layout {
    display: block;
    margin: 0 auto;
  }

  .document {
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
