:root {
  color-scheme: dark;
  --bg: #06111f;
  --panel: #0d2035;
  --panel-soft: #102944;
  --text: #f5f8fc;
  --muted: #a8bdd2;
  --line: #24425e;
  --accent: #52e0c4;
  --accent-strong: #26c7aa;
  --warning: #ffd166;
  --max: 960px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 85% 10%, rgba(82, 224, 196, 0.12), transparent 30rem),
    linear-gradient(180deg, #071424 0%, var(--bg) 55%, #050d17 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--accent);
}

a:hover {
  color: #86f4df;
}

.site-header {
  border-bottom: 1px solid rgba(168, 189, 210, 0.16);
  background: rgba(5, 13, 23, 0.82);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(calc(100% - 32px), var(--max));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

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

main {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.hero {
  padding: 36px 0 30px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px rgba(82, 224, 196, 0.8);
  content: "";
}

h1,
h2,
h3 {
  line-height: 1.18;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: -0.055em;
}

.policy h1 {
  font-size: clamp(2.3rem, 6vw, 4.2rem);
}

.lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2.2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  border-color: var(--accent-strong);
  background: var(--accent);
  color: #041610;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.section {
  margin-top: 72px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  letter-spacing: -0.035em;
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(13, 32, 53, 0.76);
}

.feature-panel h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.feature-panel p,
.feature-panel li {
  color: var(--muted);
}

.feature-panel ul {
  margin: 14px 0 0;
  padding-left: 21px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.steps li {
  position: relative;
  min-height: 70px;
  padding: 0 0 28px 64px;
  color: var(--muted);
  counter-increment: workflow;
}

.steps li::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent-strong);
  border-radius: 12px;
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 850;
  content: counter(workflow, decimal-leading-zero);
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.tag {
  display: inline-flex;
  margin: 0 6px 6px 0;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d6e3ee;
  font-size: 0.83rem;
  font-weight: 700;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  color: var(--text);
  cursor: pointer;
  font-weight: 750;
}

.faq details p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}

.card,
.policy-content {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(16, 41, 68, 0.95), rgba(9, 28, 47, 0.95));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.card {
  min-height: 180px;
  padding: 24px;
}

.card-number {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.card h2 {
  margin: 22px 0 8px;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.notice {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 3px solid var(--warning);
  border-radius: 0 10px 10px 0;
  background: rgba(255, 209, 102, 0.08);
  color: #f6e2ae;
}

.policy-content {
  margin-top: 38px;
  padding: clamp(24px, 5vw, 52px);
}

.policy-content h2 {
  margin: 42px 0 12px;
  font-size: 1.45rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: #c5d4e2;
}

.policy-content ul {
  padding-left: 22px;
}

.meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer {
  border-top: 1px solid rgba(168, 189, 210, 0.16);
}

.footer-inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 38px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 760px) {
  .nav,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  main {
    padding-top: 42px;
  }

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

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