:root {
  --navy: #0b1f4d;
  --blue: #1a73e8;
  --green: #188038;
  --ink: #1a1c22;
  --muted: #5d6472;
  --line: #dbe3f0;
  --soft: #f5f8fc;
  --white: #ffffff;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-size: 0.8rem;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 7px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  border: 1px solid var(--blue);
  box-shadow: 0 8px 20px rgba(26, 115, 232, 0.2);
}

.button:hover {
  color: var(--white);
  text-decoration: none;
  background: #155fc2;
  border-color: #155fc2;
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
  box-shadow: none;
}

.button.secondary:hover {
  color: var(--navy);
  border-color: var(--navy);
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.55rem, 7vw, 5.2rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.05rem;
}

p {
  margin: 0;
}

.lead {
  margin-top: 22px;
  max-width: 660px;
  color: #3f4757;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  box-shadow: 0 20px 60px rgba(11, 31, 77, 0.11);
  overflow: hidden;
}

.panel-top {
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.status {
  color: var(--green);
  font-weight: 800;
}

.slide-preview {
  padding: 24px;
}

.slide-card {
  min-height: 260px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid #e7edf6;
  padding: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.token-line {
  height: 12px;
  margin: 14px 0;
  border-radius: 8px;
  background: #e8eef8;
}

.token-line.short {
  width: 52%;
}

.token-line.medium {
  width: 76%;
}

.metric-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--soft);
}

.metric strong {
  display: block;
  color: var(--navy);
  font-size: 1.25rem;
}

.metric span {
  color: var(--muted);
  font-size: 0.82rem;
}

.token {
  display: inline-flex;
  padding: 2px 6px;
  border-radius: 5px;
  background: #e8f0fe;
  color: var(--blue);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 0.95em;
}

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

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

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.08rem;
}

.problem {
  padding: 26px;
  border-left: 5px solid var(--blue);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(11, 31, 77, 0.07);
  font-size: 1.18rem;
}

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

.step,
.feature,
.legal-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.step-number {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-weight: 800;
}

.step p,
.feature p,
.legal-card p,
.faq-item p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

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

.feature h3 {
  margin-bottom: 10px;
}

.privacy-strip {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.privacy-strip h2 {
  color: var(--white);
}

.privacy-strip p {
  color: #dbe7ff;
  margin-top: 10px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  flex-wrap: wrap;
}

.page-hero {
  padding: 70px 0 42px;
  background: var(--soft);
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap {
  max-width: 900px;
}

.page-hero p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.12rem;
}

.legal-content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 78px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.55rem;
}

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

.legal-content p,
.legal-content ul,
.legal-content table {
  margin: 14px 0 0;
}

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

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  background: var(--white);
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy);
  background: var(--soft);
}

.support-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 22px;
  align-items: start;
}

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

@media (max-width: 860px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .steps,
  .grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .privacy-strip {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .button {
    width: 100%;
  }

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

  th,
  td {
    display: block;
    width: 100%;
  }

  tr {
    display: block;
    border-bottom: 1px solid var(--line);
  }

  td {
    border-bottom: 0;
  }
}
