:root {
  --ink: #10204b;
  --muted: #63708f;
  --bg: #f7fbff;
  --panel: #ffffff;
  --blue: #3152f4;
  --cyan: #20cbed;
  --green: #20c77a;
  --orange: #ff972f;
  --pink: #ff4f9a;
  --line: rgba(49, 82, 244, .14);
  --shadow: 0 22px 70px rgba(39, 67, 158, .16);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 5%, rgba(32, 203, 237, .24), transparent 29rem),
    radial-gradient(circle at 90% 12%, rgba(255, 151, 47, .18), transparent 25rem),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 48%, #f9fbff 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 251, 255, .86);
  border-bottom: 1px solid rgba(49, 82, 244, .12);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img { width: 225px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #485779;
  font-size: 14px;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
  background: #fff;
  box-shadow: 0 10px 28px rgba(49, 82, 244, .12);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(49, 82, 244, .16);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--blue);
}

.hero { padding: 68px 0 34px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(430px, 1.05fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 690px;
  margin-bottom: 20px;
  color: #101b3f;
  font-size: clamp(40px, 6vw, 72px);
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}
h2 {
  margin-bottom: 16px;
  color: #132150;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.07;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 10px;
  color: #16265a;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: 0;
}
p {
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 690px;
  font-size: 18px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(49, 82, 244, .16);
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #6a65ff 55%, var(--cyan));
  box-shadow: 0 18px 42px rgba(49, 82, 244, .24);
}

.btn-secondary {
  color: var(--blue);
  background: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(49, 82, 244, .18);
}

.hero-card,
.media-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(49, 82, 244, .12);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.quick-pill {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(39, 67, 158, .1);
}

.quick-pill strong {
  display: block;
  color: var(--blue);
  font-size: 25px;
}

.quick-pill span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section { padding: 62px 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: 30px;
  align-items: center;
}

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.feature-card,
.note-card,
.faq-item,
.contact-card {
  border-radius: var(--radius);
  border: 1px solid rgba(49, 82, 244, .13);
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 52px rgba(39, 67, 158, .12);
}

.feature-card {
  min-height: 235px;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 203, 237, .45);
  box-shadow: 0 24px 70px rgba(39, 67, 158, .16);
}

.icon-bubble {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  position: relative;
  min-height: 98px;
  padding: 20px 20px 20px 76px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(39, 67, 158, .1);
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 20px;
  top: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), var(--pink));
}

.steps { counter-reset: steps; }

.note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.note-card,
.contact-card {
  padding: 24px;
}

.swatches {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.swatch {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.55), 0 10px 22px rgba(39,67,158,.14);
}
.swatch.blue { background: #3152f4; }
.swatch.green { background: #20c77a; }
.swatch.orange { background: #ff972f; }
.swatch.pink { background: #ff4f9a; }

.page-hero { padding: 56px 0 22px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb a { color: var(--blue); font-weight: 800; }

.prose { max-width: 880px; }
.prose ul,
.prose ol {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.72;
}
.prose li + li { margin-top: 9px; }

.banner {
  margin: 32px 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.banner img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}

.faq-list { display: grid; gap: 12px; }
.faq-button {
  width: 100%;
  padding: 18px 52px 18px 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.faq-button::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  color: var(--blue);
  font-size: 26px;
}
.faq-answer { display: none; padding: 0 20px 18px; }
.faq-item.is-open .faq-button::after { content: "-"; }
.faq-item.is-open .faq-answer { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 24px;
  align-items: start;
}

.notice {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 151, 47, .12);
  border: 1px solid rgba(255, 151, 47, .25);
}

.site-footer {
  margin-top: 54px;
  background: #10204b;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) 1.45fr;
  gap: 30px;
  padding: 42px 0;
}

.footer-logo {
  width: 215px;
  margin-bottom: 14px;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.14));
}

.site-footer p { color: rgba(255,255,255,.76); }

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

.footer-links a {
  color: rgba(255,255,255,.78);
  font-weight: 800;
  transition: color .2s ease;
}

.footer-links a:hover { color: #fff; }

.fine-print {
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 18px 0 28px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-grid,
  .footer-inner { grid-template-columns: 1fr; }
  .quick-strip,
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 68px; }
  .brand img { width: 190px; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  h1 {
    font-size: 34px;
    line-height: 1.08;
    max-width: 100%;
    overflow-wrap: break-word;
    text-wrap: auto;
  }
  .lead { font-size: 16px; overflow-wrap: anywhere; }
  .hero { padding-top: 42px; }
  .hero-grid { grid-template-columns: 1fr; }
  .quick-strip,
  .card-grid,
  .note-grid,
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions,
  .button-row { flex-direction: column; }
  .btn { width: 100%; }
  .section { padding: 46px 0; }
}
