:root {
  color-scheme: light;
  --ink: #071d21;
  --deep: #0a4148;
  --teal: #00636a;
  --muted: #53686d;
  --soft: #eef8f5;
  --paper: #f8fcfa;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-strong: rgba(255, 255, 255, 0.86);
  --line: rgba(7, 29, 33, 0.14);
  --shadow: 0 24px 80px rgba(7, 29, 33, 0.13);
  --gold: #f1d36f;
  --mint: #2f9b69;
  --blue: #396dd8;
  --coral: #d95a4f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(226, 244, 238, 0.95), rgba(249, 253, 251, 0.95) 48%, rgba(255, 249, 224, 0.85)),
    #f7fbfa;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.22) 0, rgba(255, 255, 255, 0.22) 1px, transparent 1px, transparent 96px);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 24px;
  top: 12px;
  z-index: 10;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

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

.site-header,
.site-footer,
main {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 99, 106, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--teal);
  background: rgba(0, 99, 106, 0.1);
}

.hero-section {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: stretch;
  padding: 72px 0 46px;
}

.hero-copy,
.hero-card,
.trust-panel,
.split-section,
.page-hero,
.document-card,
.plain-panel,
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.16);
}

.hero-copy {
  padding: 46px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
}

p,
li {
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

.lead {
  max-width: 620px;
  margin-bottom: 28px;
  color: #31464c;
  font-size: 23px;
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  border-color: rgba(8, 79, 84, 0.26);
  color: #0a1d20;
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(241, 211, 111, 0.34);
}

.button.secondary {
  color: var(--teal);
  background: var(--glass-strong);
}

.operator-line {
  margin-bottom: 0;
  color: #53686d;
  font-size: 15px;
}

.hero-card {
  display: grid;
  gap: 22px;
  padding: 24px;
  background: rgba(8, 73, 79, 0.86);
  color: #fff;
}

.app-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-lockup img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
}

.mini-label {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  text-transform: uppercase;
}

.lockup-title {
  margin-bottom: 0;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.phone-preview {
  display: grid;
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-pill,
.preview-button {
  width: fit-content;
  padding: 9px 13px;
  border-radius: 999px;
  color: #08383e;
  background: #fff;
  font-size: 14px;
  font-weight: 900;
}

.preview-title {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.preview-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
}

.preview-card span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
}

.preview-card strong {
  color: #fff;
  font-size: 28px;
}

.preview-card.blue strong {
  color: #bdd4ff;
}

.preview-button {
  width: 100%;
  margin-top: 4px;
  text-align: center;
  background: var(--gold);
}

.section-grid,
.trust-panel,
.split-section,
.page-main,
.document-main {
  margin-top: 34px;
}

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

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.info-card {
  padding: 26px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
}

.card-icon.mint {
  background: var(--mint);
}

.card-icon.gold {
  color: var(--ink);
  background: var(--gold);
}

.card-icon.blue {
  background: var(--blue);
}

.trust-panel {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 26px;
  padding: 34px;
}

.trust-panel p {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
}

.status-stack {
  display: grid;
  gap: 12px;
}

.status-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.status-row span {
  color: var(--muted);
  font-weight: 900;
}

.status-row strong {
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 46px 0 34px;
  color: var(--muted);
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: none;
}

.page-main,
.document-main {
  padding-bottom: 28px;
}

.page-hero {
  max-width: 860px;
  padding: 44px;
}

.page-hero h1 {
  font-size: 54px;
}

.plain-panel {
  margin-top: 18px;
  padding: 30px;
}

.document-card {
  max-width: 880px;
  padding: 44px;
}

.document-card h1 {
  font-size: 52px;
}

.document-card h2 {
  margin-top: 32px;
  font-size: 26px;
}

.document-card a {
  color: var(--teal);
  font-weight: 850;
}

.document-card ul {
  padding-left: 24px;
}

.not-found {
  display: grid;
  min-height: 100vh;
  align-items: center;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-section,
  .trust-panel,
  .split-section,
  .cards.three,
  .cards.two {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 20px;
  }

  .hero-copy,
  .page-hero,
  .document-card {
    padding: 28px;
  }

  .preview-title {
    font-size: 34px;
  }

  .status-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 24px, 1120px);
  }

  .site-nav a {
    padding: 9px 10px;
    font-size: 14px;
  }

  .hero-section {
    padding-top: 36px;
  }

  h1,
  .page-hero h1,
  .document-card h1 {
    font-size: 38px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
