:root {
  --ink: #071a3a;
  --muted: #5b6075;
  --paper: #fffaf4;
  --white: #ffffff;
  --teal: #12b9c6;
  --teal-dark: #087887;
  --pink: #ed3f8f;
  --purple: #6723a0;
  --coral: #ff7a45;
  --mint: #ddfbf7;
  --gold: #ffc94a;
  --line: rgba(7, 26, 58, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(7, 26, 58, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 15px;
  font-weight: 700;
}

nav a,
.contact-links a,
.share-links a {
  text-decoration: none;
}

nav a:hover,
.contact-links a:hover,
.share-links a:hover {
  color: var(--pink);
}

button,
input {
  font: inherit;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 42%, rgba(255, 201, 74, 0.34), transparent 26%),
    radial-gradient(circle at 74% 72%, rgba(18, 185, 198, 0.34), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(237, 63, 143, 0.28), transparent 28%),
    var(--paper);
}

.hero img {
  position: absolute;
  top: 50%;
  right: clamp(18px, 7vw, 108px);
  width: min(48vw, 620px);
  height: auto;
  max-height: calc(100% - 80px);
  object-fit: contain;
  border-radius: 999px;
  box-shadow: 0 34px 90px rgba(7, 26, 58, 0.24);
  transform: translateY(-50%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 58, 0.98) 0%, rgba(103, 35, 160, 0.86) 42%, rgba(255, 250, 244, 0.2) 72%, rgba(255, 250, 244, 0.04) 100%),
    linear-gradient(0deg, rgba(7, 26, 58, 0.38), rgba(237, 63, 143, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: 80px 0 112px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(46px, 8vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.16;
}

.hero-copy {
  max-width: 640px;
  font-size: clamp(18px, 2.2vw, 24px);
}

.hero-actions,
.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.button.primary {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.72);
}

.section,
.notice {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.notice {
  transform: translateY(-44px);
  padding: 24px 28px;
  color: var(--white);
  background: linear-gradient(100deg, var(--ink), var(--purple));
  border-left: 8px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(28, 37, 48, 0.18);
}

.notice p {
  margin: 0;
  font-size: 18px;
}

.section {
  padding: 82px 0;
}

.intro,
.stories,
.resources,
.facts,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro-copy,
.story-box,
.petition-panel,
.share-panel {
  font-size: 18px;
}

.petition {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
}

.petition-panel,
.share-panel,
.story-box {
  padding: clamp(28px, 4vw, 48px);
  border-radius: 8px;
}

.petition-panel {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(237, 63, 143, 0.94), rgba(103, 35, 160, 0.92)),
    var(--purple);
}

.petition-panel .button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.share-panel,
.story-box {
  background: var(--mint);
}

.resources {
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.share-links a,
.contact-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.resources {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.resource-list {
  display: grid;
  gap: 14px;
}

.resource-list a {
  display: grid;
  gap: 6px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 7px solid var(--teal);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(7, 26, 58, 0.07);
}

.resource-list a:nth-child(2) {
  border-left-color: var(--pink);
}

.resource-list a:nth-child(3) {
  border-left-color: var(--purple);
}

.resource-list a:nth-child(4) {
  border-left-color: var(--gold);
}

.resource-list span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-list strong {
  font-size: 21px;
}

.resource-list small {
  color: var(--muted);
  font-size: 15px;
}

.story-box ul {
  margin: 20px 0 26px;
  padding-left: 22px;
}

.story-box .button.secondary {
  color: var(--teal-dark);
  background: var(--white);
  border-color: var(--teal-dark);
}

.facts {
  border-top: 1px solid var(--line);
}

.fact-list {
  display: grid;
  gap: 14px;
}

.fact-list article {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.fact-list p {
  margin-bottom: 0;
}

.contact {
  border-top: 1px solid var(--line);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(100deg, var(--ink), var(--purple));
}

footer p {
  margin: 0;
}

.studio-credit {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.studio-credit a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(32px, 7vw, 80px) 0;
}

.legal-page .brand {
  margin-bottom: 56px;
}

.legal-page h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 74px);
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(26px, 3vw, 38px);
}

.legal-page p {
  font-size: 18px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding: 12px 18px 16px;
  }

  .site-header nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    overflow: visible;
    font-size: 15px;
    line-height: 1;
  }

  .site-header nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 10px;
    background: rgba(7, 26, 58, 0.06);
    border-radius: 8px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 26, 58, 0.78), rgba(103, 35, 160, 0.82) 46%, rgba(7, 26, 58, 0.96) 100%),
      linear-gradient(0deg, rgba(7, 26, 58, 0.45), rgba(237, 63, 143, 0.08));
  }

  .hero img {
    top: 26px;
    right: 50%;
    width: min(76vw, 420px);
    max-height: 360px;
    transform: translateX(50%);
  }

  .hero-content {
    align-self: end;
    margin: 0 auto;
    padding-bottom: 86px;
  }

  .intro,
  .stories,
  .resources,
  .facts,
  .contact,
  .petition {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .notice {
    transform: translateY(-28px);
  }

  footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 20px;
    line-height: 1.1;
  }

  .brand small {
    font-size: 14px;
  }

  .site-header nav {
    gap: 7px;
    font-size: 14px;
  }

  .site-header nav a {
    min-height: 34px;
    padding: 7px 9px;
  }

  h1 {
    font-size: 42px;
  }

  .button {
    width: 100%;
  }
}
