:root {
  color-scheme: light dark;
  --brand: #2e7d5b;
  --brand-dark: #205c43;
  --brand-soft: #eaf4ef;
  --accent: #c9a227;
  --accent-text: #735d00;
  --accent-soft: #f8f1d8;
  --bg: #fbfcfa;
  --surface: #ffffff;
  --surface-muted: #f2f5f2;
  --text: #17231e;
  --text-muted: #56645e;
  --border: #dce5df;
  --focus: #8b6d00;
  --shadow: 0 24px 60px rgba(33, 74, 57, 0.12);
  --radius-sm: 0.75rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --max-width: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-wrap: break-word;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  border-radius: 0.3rem;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-180%);
  border-radius: 0.5rem;
  background: var(--text);
  color: var(--surface);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.narrow {
  max-width: 48rem;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
}

.header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  object-fit: contain;
}

.nav-list {
  display: flex;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  list-style: none;
}

.nav-list a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--brand);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 10vw, 8.5rem) 0;
  background:
    radial-gradient(circle at 82% 35%, color-mix(in srgb, var(--accent) 15%, transparent), transparent 25rem),
    linear-gradient(135deg, var(--bg), var(--brand-soft));
}

.hero::before {
  position: absolute;
  top: 2rem;
  right: -8rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid color-mix(in srgb, var(--brand) 18%, transparent);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.92fr);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.75rem, 7vw, 5.6rem);
}

h1 span {
  color: var(--brand);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.hero-lead,
.page-hero > .container > p:last-child,
.lead {
  color: var(--text-muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-lead {
  max-width: 41rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.store-status,
.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
}

.store-status {
  background: var(--text);
  color: var(--surface);
}

.button-primary {
  background: var(--brand);
  color: #fff;
}

.button-primary:hover {
  background: var(--brand-dark);
}

.button-secondary {
  border: 1px solid var(--brand);
  color: var(--brand);
}

.button-secondary:hover {
  background: var(--brand);
  color: #fff;
}

.text-link {
  color: var(--brand);
  font-weight: 750;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0.7rem;
  list-style: none;
}

.trust-list li {
  padding: 0.3rem 0.8rem;
  border: 1px solid color-mix(in srgb, var(--brand) 26%, transparent);
  border-radius: 999px;
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-mark {
  position: relative;
  display: grid;
  min-height: 31rem;
  place-items: center;
}

.logo-panel {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 23rem);
  aspect-ratio: 4 / 5;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid color-mix(in srgb, var(--brand) 15%, transparent);
  border-radius: 2.5rem;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: var(--shadow);
}

.logo-panel img {
  width: 58%;
  margin-bottom: 1rem;
}

.logo-panel span {
  font-size: 1.8rem;
  font-weight: 800;
}

.logo-panel small {
  color: var(--text-muted);
}

.orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
  border-radius: 50%;
}

.orbit-one {
  width: 30rem;
  height: 30rem;
}

.orbit-two {
  width: 37rem;
  height: 37rem;
  border-color: color-mix(in srgb, var(--accent) 23%, transparent);
}

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-heading {
  max-width: 45rem;
  margin-bottom: 3rem;
}

.section-heading > p:last-child,
.feature-card p,
.large-copy {
  color: var(--text-muted);
}

.feature-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.feature-card-wide {
  grid-column: span 2;
  background: var(--brand);
  color: #fff;
}

.feature-card-wide p {
  max-width: 32rem;
  color: #e7f4ed;
}

.feature-number {
  display: block;
  margin-bottom: 3rem;
  color: var(--accent-text);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.time-strip {
  display: flex;
  margin-top: 1.8rem;
  justify-content: space-between;
  gap: 0.6rem;
}

.time-strip span {
  min-width: 5rem;
  padding: 0.6rem 0.8rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 750;
}

.time-strip small {
  display: block;
  color: #cce5d9;
  font-weight: 500;
}

.time-strip .active {
  background: var(--accent);
  color: #171300;
}

.time-strip .active small {
  color: #443700;
}

.privacy-section {
  background: var(--brand-soft);
}

.privacy-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: 1fr 1fr;
}

.large-copy {
  margin-bottom: 2rem;
  font-size: 1.15rem;
}

.privacy-points {
  margin: 0;
}

.privacy-points div {
  display: flex;
  padding: 1.2rem 0;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
}

.privacy-points dt {
  color: var(--text-muted);
}

.privacy-points dd {
  margin: 0;
  color: var(--brand);
  font-size: 1.25rem;
  font-weight: 800;
}

.note-section {
  background: var(--surface);
}

.note-card {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  gap: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  grid-template-columns: minmax(15rem, 0.8fr) minmax(0, 1.2fr);
}

.note-card p:last-child {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.page-hero {
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: linear-gradient(135deg, var(--bg), var(--brand-soft));
  text-align: center;
}

.page-hero .eyebrow {
  text-align: center;
}

.page-hero h1,
.prose h1 {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  display: grid;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  gap: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  grid-template-columns: 2.5rem 1fr;
}

.faq-item > span {
  color: var(--accent-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.faq-item p:last-child,
.faq-item ul:last-child {
  margin-bottom: 0;
}

.faq-item p,
.faq-item li {
  color: var(--text-muted);
}

.support-contact {
  padding-top: 0;
}

.support-card {
  display: grid;
  padding: clamp(2rem, 5vw, 4rem);
  gap: 2rem;
  border-radius: var(--radius-lg);
  background: var(--brand);
  color: #fff;
  grid-template-columns: 1.25fr 0.75fr;
}

.support-card .eyebrow {
  color: #f2d66d;
}

.support-card p {
  color: #e7f4ed;
}

.safety-note {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.16);
}

.safety-note ul {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.contact-status {
  margin: 0;
  grid-column: 1 / -1;
}

.document-main {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.document-layout {
  display: grid;
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
  grid-template-columns: 13rem minmax(0, 45rem);
  justify-content: center;
}

.document-meta {
  position: sticky;
  top: 2rem;
  padding-top: 0.5rem;
  color: var(--text-muted);
}

.document-meta strong {
  color: var(--text);
}

.prose h1 {
  margin-bottom: 1.5rem;
}

.prose .lead {
  margin-bottom: 3rem;
}

.prose h2 {
  margin-top: 3rem;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose strong {
  color: var(--text);
}

.site-footer {
  padding: 4rem 0 1.5rem;
  background: #102019;
  color: #eaf4ef;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.5fr 0.7fr 1fr;
}

.footer-brand {
  margin-bottom: 1rem;
  color: #fff;
}

.site-footer h2 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p {
  max-width: 24rem;
  color: #b8c9c0;
  font-size: 0.9rem;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 0.5rem;
}

.site-footer a:hover {
  color: #f2d66d;
}

.footer-bottom {
  display: flex;
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #2c4137;
  color: #8fa39a;
  font-size: 0.8rem;
}

.error-page {
  min-height: 100vh;
}

.error-main {
  display: flex;
  min-height: calc(100vh - 5rem);
  padding: 3rem 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: radial-gradient(circle at center, var(--brand-soft), var(--bg) 60%);
  text-align: center;
}

.error-mark {
  color: color-mix(in srgb, var(--brand) 18%, transparent);
  font-size: clamp(6rem, 22vw, 15rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

.error-main img {
  margin: -2rem 0 1.5rem;
}

.error-main h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.error-main p {
  max-width: 35rem;
  color: var(--text-muted);
}

@media (max-width: 800px) {
  .header-inner {
    min-height: auto;
    padding: 1rem 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-list {
    width: 100%;
    padding-bottom: 0.25rem;
    overflow-x: auto;
  }

  .header-inner nav {
    width: 100%;
  }

  .hero-grid,
  .privacy-grid,
  .note-card,
  .support-card,
  .document-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-mark {
    min-height: 27rem;
  }

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

  .document-meta {
    position: static;
    padding: 1rem;
    border-left: 3px solid var(--accent);
    background: var(--surface-muted);
  }

  .support-card .contact-status {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .nav-list {
    width: 100%;
    gap: 1.1rem;
  }

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

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-card {
    min-height: auto;
    padding: 1.5rem;
  }

  .feature-number {
    margin-bottom: 2rem;
  }

  .time-strip {
    flex-direction: column;
  }

  .time-strip span {
    display: flex;
    justify-content: space-between;
  }

  .time-strip small {
    display: inline;
  }

  .hero-mark {
    min-height: 24rem;
  }

  .orbit-one {
    width: 24rem;
    height: 24rem;
  }

  .orbit-two {
    width: 29rem;
    height: 29rem;
  }

  .faq-item {
    grid-template-columns: 1fr;
  }

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

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #131315;
    --surface: #1b1b1d;
    --surface-muted: #222725;
    --text: #f0f3f1;
    --text-muted: #bec9c1;
    --border: #3f4943;
    --brand-dark: #9be1bd;
    --brand-soft: #183329;
    --focus: #ecc246;
    --accent-text: #ecc246;
    --shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  }

  .site-header {
    background: color-mix(in srgb, var(--bg) 94%, transparent);
  }

  .trust-list li {
    color: #b7e9cf;
  }

  .feature-card-wide {
    background: #245f48;
  }

  .button-secondary {
    color: #9be1bd;
  }

  .button-secondary:hover {
    background: #2e7d5b;
  }

  .store-status {
    background: #f0f3f1;
    color: #131315;
  }

  .logo-panel {
    background: color-mix(in srgb, var(--surface) 94%, transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
