:root {
  --ink: #030913;
  --navy: #061329;
  --panel: #0e1b2b;
  --panel-soft: #122238;
  --brass: #fac452;
  --brass-deep: #c78529;
  --ivory: #f6eed7;
  --mint: #5ee0a8;
  --muted: rgba(246, 238, 215, 0.62);
  --line: rgba(250, 196, 82, 0.18);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.34);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", sans-serif;
  color: var(--ivory);
  background: var(--ink);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(32, 79, 131, 0.24), transparent 32rem),
    radial-gradient(circle at 6% 42%, rgba(199, 133, 41, 0.09), transparent 28rem),
    linear-gradient(145deg, #030913 0%, #071426 46%, #030913 100%);
  color: var(--ivory);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--brass);
  color: var(--ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  background: rgba(5, 15, 29, 0.74);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(22px) saturate(125%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ivory);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.brand img {
  border-radius: 11px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

nav { display: flex; gap: 4px; }

nav a {
  padding: 9px 13px;
  border-radius: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
nav a[aria-current="page"] {
  background: rgba(250, 196, 82, 0.11);
  color: var(--brass);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: center;
  min-height: 680px;
  padding-block: 84px 58px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { text-wrap: pretty; }

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1 span,
.policy-header h1 span {
  background: linear-gradient(105deg, #fff2bd 0%, var(--brass) 48%, #d58a2a 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 38rem;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button.primary {
  background: linear-gradient(135deg, #ffd86f, var(--brass-deep));
  box-shadow: 0 14px 36px rgba(199, 133, 41, 0.25);
  color: var(--ink);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--ivory);
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
  isolation: isolate;
}

.hero-mark img {
  position: relative;
  z-index: 3;
  width: min(72vw, 320px);
  height: auto;
  border-radius: 28%;
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.46), 0 0 90px rgba(250, 196, 82, 0.09);
  transform: rotate(2deg);
}

.ring {
  position: absolute;
  z-index: 1;
  width: 390px;
  aspect-ratio: 1;
  border: 1px solid rgba(250, 196, 82, 0.15);
  border-radius: 50%;
}

.ring-one { animation: breathe 5s ease-in-out infinite; }
.ring-two { width: 470px; opacity: 0.45; animation: breathe 5s 1s ease-in-out infinite; }

@keyframes breathe {
  0%, 100% { transform: scale(0.96); opacity: 0.32; }
  50% { transform: scale(1.04); opacity: 0.78; }
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(18, 34, 56, 0.86), rgba(8, 20, 37, 0.72));
  box-shadow: var(--shadow);
}

.stats article {
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.stats article:last-child { border-right: 0; }
.stats span, .contact-card span, .policy-summary span { display: block; color: var(--muted); font-size: 0.76rem; font-weight: 750; letter-spacing: 0.08em; }
.stats strong { display: block; margin-top: 3px; font-size: 1.08rem; }

.section { padding-top: 112px; }

.section-heading { max-width: 700px; margin-bottom: 38px; }

.section-heading h2,
.contact h2,
.notice h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.contact > div:first-child > p:last-child,
.notice > p:last-child { color: var(--muted); }

.steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }

.steps li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  background: linear-gradient(130deg, rgba(18, 34, 56, 0.78), rgba(8, 20, 37, 0.68));
  transition: border-color 180ms ease, transform 180ms ease;
}

.steps li:hover { border-color: var(--line); transform: translateX(4px); }

.steps li > span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd86f, var(--brass-deep));
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
}

.steps h3,
.feature-card h3 { margin: 0 0 5px; font-size: 1.12rem; }
.steps p,
.feature-card p { margin: 0; color: var(--muted); }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.feature-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 10%, rgba(250, 196, 82, 0.10), transparent 10rem),
    var(--panel);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(250, 196, 82, 0.09);
  color: var(--brass);
  font-size: 1.35rem;
  font-weight: 850;
}

.notice {
  padding: clamp(28px, 6vw, 58px);
  border: 1px solid rgba(250, 196, 82, 0.18);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(74, 38, 28, 0.60), rgba(19, 23, 38, 0.76));
  box-shadow: var(--shadow);
}

.notice > p:last-child { max-width: 760px; }

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 50px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 112px;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(20, 38, 61, 0.92), rgba(9, 20, 36, 0.92));
  box-shadow: var(--shadow);
}

.contact-card strong,
.contact-card a { display: block; margin: 4px 0 22px; font-size: clamp(1.12rem, 3vw, 1.55rem); font-weight: 800; text-decoration: none; }
.contact-card a { margin-bottom: 0; color: var(--brass); overflow-wrap: anywhere; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer div { display: flex; flex-wrap: wrap; gap: 20px; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--brass); }

.policy { padding-top: 110px; padding-bottom: 100px; }
.policy-header { max-width: 900px; margin-bottom: 76px; }
.policy-header h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
.policy-header > p:not(.eyebrow, .updated) { max-width: 680px; color: var(--muted); font-size: 1.08rem; }
.updated { margin-top: 28px; color: rgba(246, 238, 215, 0.42); font-size: 0.82rem; }

.policy-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 64px; align-items: start; }

.policy-summary {
  position: sticky;
  top: 100px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(14, 27, 43, 0.78);
}

.policy-summary strong { display: block; margin: 3px 0 20px; color: var(--mint); }
.policy-summary strong:last-child { margin-bottom: 0; }
.policy-sections { display: grid; gap: 14px; }

.policy-sections section {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 25px;
  background: rgba(14, 27, 43, 0.72);
}

.policy-sections h2 { margin: 0 0 12px; font-size: 1.35rem; }
.policy-sections p { margin: 0 0 12px; color: var(--muted); }
.policy-sections p:last-child { margin-bottom: 0; }
.policy-sections code { padding: 2px 7px; border: 1px solid var(--line); border-radius: 7px; color: var(--ivory); overflow-wrap: anywhere; }
.policy-contact a { color: var(--brass); }

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

@media (max-width: 820px) {
  .site-header { border-radius: 16px; }
  .brand span { display: none; }
  nav a { padding-inline: 10px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 72px; text-align: center; }
  .hero-copy { display: grid; justify-items: center; }
  .hero-mark { grid-row: 1; min-height: 310px; }
  .hero-mark img { width: 230px; }
  .ring { width: 280px; }
  .ring-two { width: 330px; }
  .stats, .feature-grid { grid-template-columns: 1fr; }
  .stats article { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats article:last-child { border-bottom: 0; }
  .contact { grid-template-columns: 1fr; gap: 24px; }
  .policy-layout { grid-template-columns: 1fr; gap: 24px; }
  .policy-summary { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px; }
  .policy-summary strong { margin-bottom: 12px; }
}

@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 1160px); }
  .site-header { width: calc(100% - 16px); margin-top: 8px; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero-actions { width: 100%; }
  .button { width: 100%; }
  .steps li { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; padding: 20px 17px; }
  .steps li > span { width: 42px; height: 42px; }
  .feature-card { min-height: 220px; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
