:root {
  --ink: #230026;
  --deep: #310034;
  --wine: #7c0732;
  --ruby: #bd1742;
  --ember: #ff6d16;
  --gold: #ffc34a;
  --paper: #fff4dc;
  --cream: #fffaf0;
  --muted: #6f5265;
  --line: rgba(49, 0, 52, 0.14);
  --shadow: 0 28px 80px rgba(49, 0, 52, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 195, 74, 0.28), transparent 20rem),
    radial-gradient(circle at 8% 10%, rgba(189, 23, 66, 0.15), transparent 22rem);
  z-index: -1;
}

a {
  color: inherit;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(49, 0, 52, 0.22);
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a,
.site-footer nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: rgba(35, 0, 38, 0.78);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-header nav a:hover,
.site-footer nav a:hover,
.text-link:hover {
  color: var(--wine);
}

.nav-support {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.64);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100svh - 88px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.86fr);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
  padding: clamp(36px, 7vw, 76px) 0 clamp(52px, 8vw, 92px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--ruby);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 800;
}

h1 {
  font-size: clamp(4rem, 12vw, 9.2rem);
  color: var(--deep);
  overflow-wrap: normal;
  white-space: nowrap;
}

.tagline {
  margin: 8px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  line-height: 1.08;
  color: var(--wine);
}

.hero-text {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(35, 0, 38, 0.78);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 20px;
  text-decoration: none;
  font-weight: 800;
  text-align: center;
}

.button.primary {
  color: #26002f;
  background: linear-gradient(135deg, var(--gold), var(--ember));
  box-shadow: 0 16px 30px rgba(255, 109, 22, 0.28);
}

.button.secondary {
  color: var(--deep);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.button[aria-disabled="true"] {
  cursor: default;
}

.age-note {
  max-width: 580px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-art {
  position: relative;
  justify-self: center;
  width: min(100%, 470px);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 26%;
  background: rgba(255, 109, 22, 0.32);
  filter: blur(42px);
}

.hero-art img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24%;
  box-shadow: var(--shadow);
}

.intro-band {
  background: var(--deep);
  color: var(--paper);
}

.intro-content {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(38px, 7vw, 70px) 0;
}

.intro-content p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2.3rem);
  line-height: 1.2;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(54px, 9vw, 104px) 0;
}

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

.section-heading h2,
.privacy-snapshot h2,
.final-cta h2 {
  font-size: clamp(2.3rem, 6vw, 4.6rem);
  color: var(--deep);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-grid article {
  min-height: 228px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(255, 250, 240, 0.92);
}

.feature-grid h3 {
  font-size: 1.28rem;
  color: var(--wine);
}

.feature-grid p {
  margin: 14px 0 0;
  color: rgba(35, 0, 38, 0.72);
}

.privacy-snapshot {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(54px, 8vw, 96px);
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1fr);
  gap: 28px 48px;
  align-items: start;
  color: var(--paper);
  background: linear-gradient(135deg, var(--deep), #540039 62%, #7c0732);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.privacy-snapshot .eyebrow {
  color: var(--gold);
}

.privacy-snapshot h2 {
  color: var(--paper);
}

.privacy-snapshot ul {
  margin: 0;
  padding-left: 20px;
}

.privacy-snapshot li + li {
  margin-top: 10px;
}

.privacy-snapshot .text-link {
  grid-column: 2;
  color: var(--gold);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.final-cta {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 clamp(64px, 10vw, 118px);
  text-align: center;
}

.final-cta .button {
  margin-top: 24px;
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.legal-page {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(44px, 7vw, 82px) 0 clamp(68px, 9vw, 108px);
}

.legal-content {
  padding: clamp(26px, 5vw, 54px);
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(49, 0, 52, 0.08);
}

.legal-content h1 {
  font-size: clamp(3rem, 9vw, 5.8rem);
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
}

.legal-content h3 {
  margin-top: 26px;
  color: var(--wine);
  font-size: 1.1rem;
}

.legal-content p,
.legal-content li {
  color: rgba(35, 0, 38, 0.76);
}

.legal-content a {
  color: var(--wine);
  font-weight: 750;
}

.legal-content ul {
  padding-left: 1.25rem;
}

.updated {
  color: var(--muted);
  font-weight: 750;
}

.support-content h3 + p {
  margin-top: 8px;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-art {
    order: -1;
    width: min(74vw, 360px);
    justify-self: start;
  }

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

  .privacy-snapshot {
    grid-template-columns: 1fr;
  }

  .privacy-snapshot .text-link {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header,
  .hero,
  .section,
  .privacy-snapshot,
  .final-cta,
  .site-footer,
  .legal-page,
  .intro-content {
    width: min(100% - 24px, 1180px);
  }

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

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.6rem, 17vw, 5.4rem);
  }

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

  .feature-grid article {
    min-height: 0;
  }

  .privacy-snapshot,
  .legal-content {
    border-radius: 18px;
  }
}
