:root {
  --bg: #f7fbff;
  --panel: #ffffff;
  --ink: #14213d;
  --muted: #526173;
  --line: #d9e6f2;
  --brand: #2457a6;
  --brand-dark: #173f79;
  --soft: #eaf4ff;
  --soft-2: #f0f8f5;
  --accent: #0f766e;
  --shadow: 0 18px 50px rgba(20, 33, 61, 0.10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f8fbff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--brand);
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:hover,
a:focus {
  color: var(--brand-dark);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0.5rem;
}

.skip-link:focus {
  left: 1rem;
}

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

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

.brand {
  color: var(--ink);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.85rem;
  font-size: 0.95rem;
}

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

.nav-links a:hover,
.nav-links a:focus {
  color: var(--brand);
}

.hero {
  padding: 76px 0 42px;
  background:
    radial-gradient(circle at top left, rgba(36, 87, 166, 0.14), transparent 34%),
    radial-gradient(circle at 80% 20%, rgba(15, 118, 110, 0.12), transparent 32%);
}

.hero-inner {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
}

h2 {
  margin-top: 2.4rem;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

h3 {
  margin-top: 1.4rem;
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 780px;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(36, 87, 166, 0.22);
}

.button.secondary {
  background: #fff;
  color: var(--brand);
  border: 1px solid var(--line);
}

.content-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 72px;
}

.article-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(1.25rem, 4vw, 3rem);
  box-shadow: var(--shadow);
}

.lead {
  font-size: 1.2rem;
  color: #24324a;
}

.callout,
.scenario,
.practice-box {
  margin: 1.6rem 0;
  padding: 1.15rem 1.25rem;
  background: var(--soft);
  border: 1px solid #cfe4ff;
  border-radius: 18px;
}

.scenario {
  background: var(--soft-2);
  border-color: #cde9df;
}

.steps,
.mistakes {
  padding-left: 1.25rem;
}

.steps li,
.mistakes li {
  margin: 0.65rem 0;
}

.table-wrap {
  width: 100%;
  margin: 1.4rem 0 1.8rem;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

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

thead th {
  background: #edf6ff;
  color: #173f79;
  font-size: 0.93rem;
}

tbody th {
  width: 34%;
  color: #1f2f4a;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0;
}

.grid-two section {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfdff;
}

.study-path,
.trust-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0;
}

.study-path a,
.trust-links a {
  display: block;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fbfdff;
  font-weight: 800;
  text-decoration: none;
}

.source-list li {
  margin: 0.45rem 0;
}

.site-footer {
  padding: 32px 16px 48px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 760px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
  }

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

  .hero {
    padding-top: 48px;
  }

  .grid-two,
  .study-path,
  .trust-links {
    grid-template-columns: 1fr;
  }

  .article-card {
    border-radius: 22px;
  }
}