:root {
  color-scheme: light;
  --background: #f3f7fb;
  --surface: #ffffff;
  --surface-alt: #eef4fb;
  --border: #d9e3ee;
  --divider: #e6edf4;
  --text: #16202a;
  --text-secondary: #445363;
  --muted: #6c7a89;
  --primary: #1466d8;
  --primary-pressed: #0d47a3;
  --primary-tint: #e8f1ff;
  --primary-tint-text: #0d47a3;
  --success: #128852;
  --success-tint: #e6f7ee;
  --warning: #9b6517;
  --warning-tint: #fff3da;
  --radius-card: 18px;
  --radius-input: 14px;
  --shadow: 0 18px 48px rgba(22, 32, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 86% -8%, rgba(20, 102, 216, 0.16), transparent 28rem),
    linear-gradient(180deg, #fbfdff 0, var(--background) 30rem);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--primary);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
}

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

.nav-wrap,
.footer-wrap,
.hero-inner,
.page-shell {
  width: calc(100% - 32px);
  max-width: 960px;
  margin: 0 auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #2f8af2, var(--primary));
  box-shadow: inset 0 -12px 26px rgba(13, 71, 163, 0.34);
  overflow: hidden;
  flex: none;
}

.brand-mark img {
  width: 38px;
  height: 38px;
  display: block;
}

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

.nav-links a {
  color: var(--text-secondary);
  border-radius: 999px;
  padding: 8px 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

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

.hero {
  padding: 28px 0 8px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
  gap: 18px;
  align-items: stretch;
}

.hero-panel,
.content-card,
.info-card,
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  min-width: 0;
}

.hero-panel {
  padding: 30px;
  background: linear-gradient(180deg, #1e73e8 0%, #1466d8 52%, #1158ba 100%);
  border-color: #2376e8;
  color: #ffffff;
}

.eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-panel .eyebrow {
  color: #cfe0fa;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.02;
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: #e4effd;
  font-size: clamp(17px, 2.2vw, 20px);
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius-input);
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(20, 102, 216, 0.22);
}

.hero-panel .button {
  background: #ffffff;
  color: #0e2f62;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: none;
}

.proof-card {
  padding: 22px;
}

.proof-card h2 {
  margin: 0;
  font-size: 21px;
}

.proof-steps {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.proof-step {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 52px;
  padding: 12px 13px;
  border-radius: var(--radius-input);
  background: var(--surface-alt);
  border: 1px solid var(--divider);
  color: var(--text-secondary);
  font-weight: 700;
}

.check,
.tile-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex: none;
  background: var(--success-tint);
  color: var(--success);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.page-shell {
  padding: 32px 0 72px;
  overflow-x: hidden;
}

.page-heading {
  margin-bottom: 18px;
}

.page-heading h1 {
  font-size: clamp(34px, 6vw, 54px);
  overflow-wrap: anywhere;
}

.page-heading p {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--text-secondary);
  font-size: 18px;
}

.content-card {
  overflow: hidden;
}

.content-card.spaced {
  margin-top: 18px;
}

.content-card-body {
  padding: 28px;
}

.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  background: var(--surface-alt);
  border-bottom: 1px solid var(--divider);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.content-card h2,
.info-card h2 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.25;
}

.content-card h2 {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--divider);
}

.content-card h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.content-card p,
.content-card li,
.info-card p {
  color: var(--text-secondary);
  font-size: 16px;
}

.content-card p {
  margin: 0 0 16px;
}

.content-card ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  min-width: 0;
}

.info-card {
  padding: 20px;
}

.info-card .tile-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  background: var(--primary-tint);
  color: var(--primary);
}

.info-card p {
  min-height: 74px;
  margin: 0 0 14px;
}

.status-panel {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-input);
  background: var(--surface-alt);
}

.status-panel strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
}

.status-panel p {
  margin: 0;
  color: var(--text-secondary);
}

.contact-strip {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid #bfebd0;
  border-radius: var(--radius-input);
  background: var(--success-tint);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-strip p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--divider);
  background: #ffffff;
}

.footer-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
}

@media (max-width: 780px) {
  .nav-wrap,
  .footer-wrap {
    width: calc(100% - 28px);
    max-width: 960px;
  }

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .brand-link {
    font-size: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-inner,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .proof-card,
  .content-card-body {
    padding: 22px;
  }

  .meta-row,
  .contact-strip,
  .footer-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-shell {
    width: calc(100% - 28px);
    max-width: 960px;
    padding: 26px 0 52px;
  }
}
