:root {
  --navy: #100060;
  --navy-deep: #0d1740;
  --violet: #6546d7;
  --blue: #246bfd;
  --blue-soft: #eaf1ff;
  --canvas: #f5f7ff;
  --surface: #ffffff;
  --ink: #17233d;
  --muted: #60708d;
  --line: #dce3f2;
  --success: #14734b;
  --focus: #ffb400;
  --shadow: 0 22px 60px rgba(27, 19, 77, .09);
  --radius-lg: 28px;
  --radius-md: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--canvas);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 3%, rgba(36, 107, 253, .13), transparent 30rem),
    radial-gradient(circle at 95% 8%, rgba(101, 70, 215, .12), transparent 28rem),
    var(--canvas);
}

a { color: inherit; }
a, button { font: inherit; -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.icon-library { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; transform: translateY(-150%); padding: 11px 15px; border-radius: 10px; color: #fff; background: var(--navy); }
.skip-link:focus { transform: translateY(0); }
.page-width { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }

.site-header { border-bottom: 1px solid rgba(220, 227, 242, .8); background: rgba(245, 247, 255, .82); backdrop-filter: blur(14px); }
.header-inner { display: flex; width: min(1120px, calc(100% - 32px)); min-height: 82px; align-items: center; justify-content: space-between; gap: 20px; margin-inline: auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; color: #fff; background: linear-gradient(145deg, var(--navy), var(--violet)); font-weight: 850; letter-spacing: -.04em; box-shadow: 0 10px 24px rgba(16, 0, 96, .2); }
.brand strong, .brand small { display: block; }
.brand strong { color: var(--navy-deep); font-size: 1rem; }
.brand small { margin-top: 2px; color: var(--muted); font-size: .78rem; }
.header-link { display: inline-flex; min-height: 46px; align-items: center; gap: 9px; padding: 9px 15px; border: 1px solid var(--line); border-radius: 14px; color: var(--navy); background: rgba(255, 255, 255, .82); font-weight: 750; text-decoration: none; transition: border-color 180ms ease, background-color 180ms ease; }
.header-link:hover { border-color: #b8c6e4; background: #fff; }
.header-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.hero { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr); gap: clamp(32px, 6vw, 76px); align-items: center; padding-block: clamp(56px, 9vw, 104px); }
.hero-copy { max-width: 700px; }
.eyebrow { margin: 0; color: var(--blue); font-size: .76rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3, p { overflow-wrap: break-word; }
h1 { max-width: 15ch; margin: 10px 0 20px; color: var(--navy-deep); font-size: clamp(2.5rem, 6.5vw, 5rem); line-height: .98; letter-spacing: -.055em; text-wrap: balance; }
.hero-lead { max-width: 65ch; margin: 0; color: var(--muted); font-size: clamp(1rem, 2vw, 1.15rem); line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.primary-button, .secondary-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 9px; padding: 12px 20px; border-radius: 14px; font-weight: 800; text-decoration: none; transition: filter 180ms ease, border-color 180ms ease, background-color 180ms ease; }
.primary-button { color: #fff; background: linear-gradient(135deg, var(--navy), var(--violet)); box-shadow: 0 13px 28px rgba(16, 0, 96, .2); }
.primary-button:hover { filter: brightness(1.1); }
.secondary-button { border: 1px solid var(--line); color: var(--navy); background: #fff; }
.secondary-button:hover { border-color: #b4c3e2; background: #fdfdff; }
.secondary-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }

.private-link-card { position: relative; overflow: hidden; padding: 30px; border: 1px solid rgba(101, 70, 215, .18); border-radius: var(--radius-lg); background: rgba(255, 255, 255, .92); box-shadow: var(--shadow); }
.private-link-card::after { position: absolute; right: -60px; bottom: -70px; width: 190px; height: 190px; border-radius: 50%; background: linear-gradient(145deg, rgba(36, 107, 253, .1), rgba(101, 70, 215, .2)); content: ""; }
.card-icon { display: grid; width: 54px; height: 54px; place-items: center; margin-bottom: 24px; border-radius: 17px; color: #fff; background: var(--navy); }
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.private-link-card h2 { margin: 8px 0 12px; color: var(--navy-deep); font-size: 1.75rem; letter-spacing: -.03em; }
.private-link-card > p:not(.eyebrow) { color: var(--muted); line-height: 1.65; }
.compact-checks { position: relative; z-index: 1; display: grid; gap: 12px; padding: 0; margin: 22px 0 0; list-style: none; }
.compact-checks li { display: grid; grid-template-columns: 22px 1fr; gap: 9px; align-items: start; line-height: 1.5; }
.compact-checks svg { width: 21px; height: 21px; padding: 3px; border-radius: 50%; color: var(--success); background: #e8f7ef; fill: none; stroke: currentColor; stroke-width: 2.5; }

.summary-band { border-block: 1px solid var(--line); background: rgba(255, 255, 255, .72); }
.summary-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.summary-grid > div { padding: 24px clamp(12px, 3vw, 28px); border-left: 1px solid var(--line); }
.summary-grid > div:last-child { border-right: 1px solid var(--line); }
.summary-grid strong, .summary-grid span { display: block; }
.summary-grid strong { color: var(--navy); font-size: 1.3rem; }
.summary-grid span { margin-top: 5px; color: var(--muted); font-size: .87rem; }

.section { padding-block: clamp(64px, 9vw, 104px); }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading h2, .help-section h2, .attention-card h2 { margin: 8px 0 14px; color: var(--navy-deep); font-size: clamp(2rem, 4.3vw, 3.35rem); line-height: 1.05; letter-spacing: -.045em; text-wrap: balance; }
.section-heading > p:not(.eyebrow), .help-section p, .attention-card p { color: var(--muted); line-height: 1.7; }
.narrow-heading { max-width: 600px; }

.journey-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; padding: 0; margin: 0; list-style: none; counter-reset: journey; }
.journey-card { min-height: 330px; padding: 24px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255, 255, 255, .92); box-shadow: 0 16px 42px rgba(27, 19, 77, .06); }
.step-number { display: inline-block; color: var(--violet); font-size: .8rem; font-weight: 850; letter-spacing: .12em; }
.duration { display: inline-flex; align-items: center; gap: 6px; margin-left: 8px; color: var(--blue); font-size: .78rem; font-weight: 800; }
.duration svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.journey-card h3 { margin: 38px 0 12px; color: var(--navy-deep); font-size: 1.55rem; }
.journey-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.section-split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: clamp(30px, 6vw, 72px); align-items: start; }
.preparation-list { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.preparation-list li { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-md); background: rgba(255, 255, 255, .78); }
.list-icon { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 15px; color: var(--blue); background: var(--blue-soft); }
.list-icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.preparation-list strong { color: var(--navy-deep); font-size: 1.05rem; }
.preparation-list p { margin: 5px 0 0; color: var(--muted); line-height: 1.65; }
.attention-card { padding: clamp(26px, 4vw, 38px); border-radius: var(--radius-lg); color: #fff; background: linear-gradient(145deg, var(--navy), #29138c); box-shadow: 0 24px 55px rgba(16, 0, 96, .24); }
.attention-card .eyebrow { color: #b9d2ff; }
.attention-card h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.attention-card p { color: #dce5ff; }
.attention-card hr { margin: 26px 0; border: 0; border-top: 1px solid rgba(255, 255, 255, .2); }

.rules-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rules-grid article { padding: 24px; border-top: 3px solid var(--blue); border-radius: 0 0 18px 18px; background: #fff; box-shadow: 0 14px 36px rgba(27, 19, 77, .06); }
.rules-grid span { color: var(--blue); font-size: .78rem; font-weight: 850; }
.rules-grid h3 { margin: 28px 0 9px; color: var(--navy-deep); font-size: 1.1rem; }
.rules-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.practice-section { padding-block: clamp(64px, 9vw, 104px); background: var(--navy-deep); }
.practice-section .eyebrow { color: #8eb7ff; }
.practice-section .section-heading h2 { color: #fff; }
.practice-section .section-heading > p:not(.eyebrow) { color: #c4cee4; }
.practice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.practice-card { display: flex; min-height: 285px; flex-direction: column; padding: 28px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 24px; color: #fff; background: rgba(255, 255, 255, .08); text-decoration: none; transition: border-color 180ms ease, background-color 180ms ease; }
.practice-card:hover { border-color: rgba(255, 255, 255, .3); background: rgba(255, 255, 255, .12); }
.practice-label { color: #a9c8ff; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.practice-card h3 { margin: 34px 0 10px; font-size: 1.65rem; }
.practice-card p { max-width: 48ch; margin: 0; color: #cbd5e8; line-height: 1.65; }
.card-action { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 24px; font-weight: 800; }
.card-action svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }

.help-section { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.help-section > div { max-width: 720px; }
.help-section h2 { font-size: clamp(2rem, 4vw, 3rem); }
.help-section p { margin-bottom: 0; }
footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; min-height: 140px; align-items: center; justify-content: space-between; gap: 24px; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.footer-inner strong { color: var(--navy-deep); }

@media (max-width: 920px) {
  .hero, .section-split { grid-template-columns: 1fr; }
  .private-link-card { max-width: 650px; }
  .journey-grid, .rules-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .page-width, .header-inner { width: min(100% - 24px, 560px); }
  .header-inner { min-height: 72px; }
  .brand small { display: none; }
  .header-link { padding-inline: 12px; font-size: .88rem; }
  .hero { padding-block: 46px 58px; }
  h1 { font-size: clamp(2.4rem, 13vw, 3.5rem); }
  .hero-actions, .help-section { align-items: stretch; flex-direction: column; }
  .hero-actions a, .help-section > a { width: 100%; }
  .summary-grid { grid-template-columns: repeat(2, 1fr); }
  .summary-grid > div:nth-child(3) { border-top: 1px solid var(--line); }
  .summary-grid > div:nth-child(4) { border-top: 1px solid var(--line); border-right: 1px solid var(--line); }
  .journey-grid, .rules-grid, .practice-grid { grid-template-columns: 1fr; }
  .journey-card { min-height: auto; }
  .journey-card h3 { margin-top: 28px; }
  .section { padding-block: 62px; }
  .private-link-card { padding: 24px; }
  .preparation-list li { grid-template-columns: 44px 1fr; padding: 16px; }
  .list-icon { width: 44px; height: 44px; }
  .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
