@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/inter-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/inter-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/fonts/playfair-display-latin-700-normal.woff2") format("woff2");
}

:root {
  color-scheme: dark;
  --bg: #1a1a1f;
  --bg-soft: #212127;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f7f7f8;
  --muted: rgba(255, 255, 255, 0.58);
  --soft: rgba(255, 255, 255, 0.38);
  --accent: #94a8cc;
  --accent-strong: #7089b8;
  --navy: #001489;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(26, 26, 31, 0.9);
  backdrop-filter: blur(18px);
}

.site-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand small {
  display: block;
  color: var(--soft);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 96px 0 104px;
  background: #121217;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(90deg, rgba(10, 10, 15, 0.97) 0%, rgba(10, 10, 15, 0.83) 52%, rgba(10, 10, 15, 0.68) 100%), url("/img/inline-23-c6e7708b.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 180px;
  background: linear-gradient(transparent, var(--bg));
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  color: var(--soft);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--accent-strong);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.12;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4.5vw, 48px);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(135deg, #fff 8%, #94a8cc 68%, #7089b8 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.lead {
  max-width: 720px;
  margin: 0 0 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 2.2vw, 21px);
  font-weight: 300;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button.primary {
  border-color: #fff;
  background: #fff;
  color: #17171b;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.09);
}

.button.primary:hover {
  background: #e9edf5;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 13px;
}

.trust-row span::before,
.check-list li::before {
  content: "✓";
  margin-right: 9px;
  color: var(--accent);
  font-weight: 800;
}

.section {
  padding: 92px 0;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading p,
.copy p,
.card p,
.faq p {
  color: var(--muted);
}

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

.card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.card-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(148, 168, 204, 0.3);
  border-radius: 12px;
  background: rgba(0, 20, 137, 0.16);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.check-list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.fact-box {
  padding: 30px;
  border: 1px solid rgba(148, 168, 204, 0.23);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(0, 20, 137, 0.18), rgba(255, 255, 255, 0.035));
}

.fact-box strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
}

.fact-box p {
  margin: 0;
  color: var(--muted);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.text-link {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 4px;
}

.faq-list {
  max-width: 860px;
}

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

.faq-list summary {
  padding: 24px 4px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  max-width: 760px;
  margin: -6px 0 26px;
}

.cta {
  padding: 58px;
  border: 1px solid rgba(148, 168, 204, 0.22);
  border-radius: 28px;
  background: radial-gradient(circle at 90% 15%, rgba(112, 137, 184, 0.18), transparent 42%), var(--surface);
}

.cta p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--soft);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
}

@media (max-width: 820px) {
  .nav-links a:not(.button) {
    display: none;
  }

  .hero {
    padding: 74px 0 84px;
  }

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

  .split {
    gap: 34px;
  }

  .section {
    padding: 72px 0;
  }

  .cta {
    padding: 36px 26px;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .brand span {
    display: none;
  }

  .actions .button {
    width: 100%;
  }

  .card {
    padding: 25px;
  }
}
