:root {
  color-scheme: dark;
  --canvas: #0b0d0d;
  --canvas-soft: #101313;
  --panel: #171a19;
  --panel-raised: #1d201f;
  --ink: #f4efe4;
  --muted: #aaa79f;
  --gold: #e8a33d;
  --gold-bright: #ffbd59;
  --gold-soft: rgba(232, 163, 61, 0.14);
  --line: rgba(244, 239, 228, 0.12);
  --line-gold: rgba(232, 163, 61, 0.34);
  --success: #62c98d;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 5%, rgba(232, 163, 61, 0.08), transparent 30rem),
    var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--canvas);
  font-weight: 700;
  transform: translateY(-180%);
}

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

.page-shell {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - 1160px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 13, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

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

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.brand span {
  display: grid;
  line-height: 1.12;
}

.brand strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
}

.brand small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-header nav a {
  padding: 10px 14px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a.is-active {
  background: var(--gold-soft);
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 72px;
  min-height: 680px;
  padding-block: 96px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-family: var(--serif);
  font-size: clamp(50px, 7vw, 86px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.lede {
  max-width: 750px;
  margin-bottom: 30px;
  color: #c2beb5;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.5;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), #df8f29);
  color: #171107;
  box-shadow: 0 14px 36px rgba(232, 163, 61, 0.18);
}

.button-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--line-gold);
  background: var(--panel-raised);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.trust-list span {
  margin-right: 5px;
  color: var(--success);
  font-weight: 900;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.hero-mark img {
  position: relative;
  width: min(100%, 320px);
  border: 1px solid var(--line-gold);
  border-radius: 27%;
  box-shadow: var(--shadow);
}

.icon-glow {
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(232, 163, 61, 0.18);
  filter: blur(72px);
}

.principle {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(232, 163, 61, 0.035), rgba(255, 255, 255, 0.015), rgba(232, 163, 61, 0.035));
}

.principle-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 120px;
}

.principle p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 31px);
}

.principle span {
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-block: 90px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, var(--panel-raised), var(--panel));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

.feature-card::after {
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gold-soft);
  content: "";
  filter: blur(20px);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card h2 {
  max-width: 470px;
}

.feature-card > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 38px;
  border: 1px solid var(--line-gold);
  border-radius: 15px;
  background: var(--gold-soft);
  color: var(--gold-bright);
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  color: var(--gold-bright);
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 100px;
  padding: 40px 42px;
  border: 1px solid var(--line-gold);
  border-radius: 22px;
  background: linear-gradient(120deg, var(--gold-soft), rgba(255, 255, 255, 0.025));
}

.contact-band h2,
.contact-band p {
  margin-bottom: 6px;
}

.contact-band > div > p:last-child {
  color: var(--muted);
}

.page-hero {
  padding-block: 100px 76px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 78px);
}

.page-hero .button {
  margin-top: 4px;
}

.support-layout,
.legal-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 76px;
  padding-block: 80px 110px;
}

.section-nav {
  position: sticky;
  top: 112px;
  align-self: start;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.section-nav p {
  margin: 0 0 7px;
  padding: 0 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-nav a {
  padding: 8px 9px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.section-nav a:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.support-content,
.legal-content {
  min-width: 0;
}

.support-section {
  padding: 0 0 72px;
}

.support-section + .support-section {
  padding-top: 72px;
  border-top: 1px solid var(--line);
}

.support-section > p:not(.eyebrow),
.legal-content section > p:not(.section-number) {
  max-width: 760px;
  color: #c0bdb5;
}

.step-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.step-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
}

.step-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-bright);
  font-weight: 850;
}

.step-list p {
  margin: 2px 0 0;
  color: var(--muted);
}

.step-list strong {
  color: var(--ink);
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.answer-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
}

.answer-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

code,
kbd {
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.86em;
}

code {
  padding: 2px 5px;
}

kbd {
  padding: 3px 7px;
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.08);
}

.notice {
  margin-top: 28px;
  padding: 22px 24px;
  border-left: 3px solid var(--gold);
  border-radius: 0 13px 13px 0;
  background: var(--gold-soft);
}

.notice p {
  margin: 5px 0 0;
  color: var(--muted);
}

.accordion {
  display: grid;
  gap: 10px;
  margin-top: 25px;
}

.accordion details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.accordion summary {
  padding: 18px 20px;
  font-weight: 700;
  cursor: pointer;
}

.accordion details[open] summary {
  border-bottom: 1px solid var(--line);
}

.accordion details p {
  margin: 0;
  padding: 18px 20px 20px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 34px;
  border: 1px solid var(--line-gold) !important;
  border-radius: 18px;
  background: var(--gold-soft);
}

.contact-panel h2 {
  margin-bottom: 10px;
}

.contact-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-actions {
  align-content: center;
  justify-content: flex-end;
}

.copy-status {
  flex-basis: 100%;
  min-height: 1.5em;
  margin: 0;
  color: var(--success) !important;
  font-size: 13px;
  text-align: right;
}

.privacy-hero {
  padding-bottom: 54px;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  color: var(--muted);
  font-size: 14px;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-block: 28px;
}

.privacy-summary article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--panel);
}

.privacy-summary span {
  grid-row: 1 / span 2;
  color: var(--success);
  font-weight: 900;
}

.privacy-summary strong {
  font-size: 15px;
}

.privacy-summary small {
  color: var(--muted);
  font-size: 12px;
}

.legal-layout {
  padding-top: 54px;
}

.legal-content section {
  position: relative;
  padding: 0 0 64px;
}

.legal-content section + section {
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.section-number {
  margin-bottom: 10px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
}

.legal-content h2 {
  font-size: clamp(31px, 4vw, 42px);
}

.legal-content address {
  width: fit-content;
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px solid var(--line-gold);
  border-radius: 13px;
  background: var(--gold-soft);
  color: var(--muted);
  font-style: normal;
}

.legal-content address strong {
  color: var(--ink);
}

.legal-content address a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-block: 7px;
  color: var(--gold-bright);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #080a0a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 60px;
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
  padding-block: 46px;
}

.footer-brand {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.footer-inner > div:first-child > p:last-child,
.copyright {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.not-found {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100vh;
  padding: 40px;
  text-align: center;
}

.not-found img {
  margin-bottom: 30px;
  border: 1px solid var(--line-gold);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.not-found h1 {
  max-width: 720px;
  font-size: clamp(42px, 7vw, 72px);
}

.not-found > p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    min-height: auto;
    padding-block: 74px;
  }

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

  .hero-mark {
    justify-self: center;
    width: min(72vw, 330px);
  }

  .support-layout,
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-nav p {
    grid-column: 1 / -1;
  }

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

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .page-shell,
  .footer-inner {
    width: min(100% - 30px, 1160px);
  }

  .site-header {
    min-height: 72px;
    padding-inline: 15px;
  }

  .brand img {
    width: 41px;
    height: 41px;
  }

  .brand strong {
    font-size: 17px;
  }

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

  .site-header nav a {
    padding: 9px 8px;
    font-size: 13px;
  }

  .hero {
    padding-block: 58px 72px;
  }

  h1 {
    font-size: clamp(45px, 14vw, 64px);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .principle-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-block: 26px;
  }

  .principle span {
    display: none;
  }

  .card-grid,
  .answer-grid,
  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 300px;
    padding: 28px;
  }

  .contact-band,
  .contact-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
    flex-direction: column;
    padding: 27px;
  }

  .page-hero {
    padding-block: 68px 52px;
  }

  .support-layout,
  .legal-layout {
    padding-block: 46px 72px;
  }

  .section-nav {
    display: none;
  }

  .copy-status {
    text-align: left;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 8px 18px;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .button,
  .site-header nav a,
  .section-nav a {
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, filter 160ms ease, transform 160ms ease;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: white;
    color: #151515;
  }

  .site-header,
  .section-nav,
  .site-footer,
  .button,
  .privacy-summary {
    display: none !important;
  }

  .legal-layout {
    display: block;
    padding: 0;
  }

  .legal-content section {
    break-inside: avoid;
  }

  .legal-content section > p:not(.section-number) {
    color: #333;
  }
}
