:root {
  --ink: #17213a;
  --navy: #101a31;
  --cream: #fff8ed;
  --paper: #ffffff;
  --gold: #ffc943;
  --coral: #f36b45;
  --teal: #26a99a;
  --blue: #4e7cff;
  --violet: #7459d9;
  --muted: #66708a;
  --line: #e7e8ef;
  --shadow: 0 20px 55px rgba(16, 26, 49, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--cream);
  font-family: "Nunito", sans-serif; font-weight: 600; line-height: 1.65;
}
a { color: var(--blue); }
.container { width: min(1100px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
h1, h2, h3 { margin-top: 0; font-family: "Baloo 2", sans-serif; line-height: 1.1; }
h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); letter-spacing: -.035em; }
h2 { margin-top: 42px; font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -.02em; }
h3 { font-size: 1.32rem; }
p { margin-top: 0; }
li + li { margin-top: 8px; }

.site-header {
  color: white;
  background: radial-gradient(circle at 84% 20%, rgba(78, 124, 255, .34), transparent 30%), var(--navy);
}
.top-bar { display: flex; justify-content: space-between; align-items: center; min-height: 84px; padding: 18px 0; }
.logo { display: inline-flex; align-items: center; gap: 10px; color: white; font: 800 1.65rem/1 "Baloo 2", sans-serif; text-decoration: none; }
.logo-mark {
  display: grid; place-items: center; width: 41px; height: 41px;
  color: var(--navy); background: var(--gold); border-radius: 13px;
  transform: rotate(-5deg); box-shadow: 4px 4px 0 var(--coral);
}
.top-note { display: flex; align-items: center; gap: 9px; color: #e0e8f8; font-size: 1.35rem; font-weight: 800; }
.top-note span { width: 9px; height: 9px; background: #59df9c; border-radius: 50%; box-shadow: 0 0 13px #59df9c; }
.menu-button {
  display: none; width: 46px; height: 42px; padding: 9px 10px; color: white;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); border-radius: 12px; cursor: pointer;
}
.menu-button span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-nav { border-top: 1px solid rgba(255,255,255,.1); }
.site-nav-inner { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 10px 0 13px; }
.site-nav a {
  padding: 8px 12px; color: #dce5f5; border-radius: 10px;
  font-size: .9rem; font-weight: 800; text-decoration: none; transition: color .2s ease, background .2s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: white; background: rgba(255,255,255,.11); }

.page-hero {
  position: relative; overflow: hidden; padding: 76px 0 70px; color: white;
  background: linear-gradient(145deg, #182743, #263b69);
}
.page-hero::after {
  content: ""; position: absolute; width: 330px; height: 330px; right: -120px; top: -150px;
  border: 2px dashed rgba(255,255,255,.1); border-radius: 50%; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.eyebrow { margin: 0 0 12px; color: #8ce8df; font-size: .8rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.page-hero h1 { max-width: 850px; margin-bottom: 16px; }
.page-hero p:last-child { max-width: 760px; margin-bottom: 0; color: #d9e3f4; font-size: 1.1rem; }

.page-content { padding: 72px 0 96px; }
.content-card {
  padding: clamp(28px, 5vw, 54px); background: white; border: 1px solid var(--line);
  border-radius: 28px; box-shadow: var(--shadow);
}
.content-card > :first-child { margin-top: 0; }
.content-card p, .content-card li { color: #4f5c76; }
.content-card strong { color: var(--ink); }
.content-card a { font-weight: 800; }
.notice {
  margin: 28px 0; padding: 20px 22px; color: #443812; background: #fff7d7;
  border: 1px solid #f1d46a; border-left: 5px solid var(--gold); border-radius: 15px;
}
.notice p:last-child { margin-bottom: 0; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px 0; }
.info-card { padding: 25px; background: #f6f8ff; border: 1px solid #dfe5f4; border-radius: 20px; }
.info-card h3 { margin-bottom: 9px; }
.info-card p:last-child { margin-bottom: 0; }
.icon { display: grid; place-items: center; width: 50px; height: 50px; margin-bottom: 15px; background: white; border-radius: 15px; font-size: 1.55rem; box-shadow: 0 8px 20px rgba(16,26,49,.08); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 30px 0; counter-reset: step; }
.step { padding: 24px; background: white; border: 1px solid var(--line); border-radius: 19px; counter-increment: step; }
.step::before {
  content: "0" counter(step); display: grid; place-items: center; width: 44px; height: 44px; margin-bottom: 14px;
  color: white; background: linear-gradient(145deg, var(--blue), var(--violet)); border-radius: 13px; font-weight: 900;
}
.step h3 { margin-bottom: 8px; }
.step p:last-child { margin-bottom: 0; }
.faq { margin-top: 44px; }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 21px 46px 21px 0; cursor: pointer; list-style: none; color: var(--ink); font-weight: 900; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 8px; top: 14px; color: var(--violet); font-size: 1.65rem; }
details[open] summary::after { content: "−"; }
details > div { padding: 0 46px 21px 0; color: #4f5c76; }
details p:last-child, details ul:last-child { margin-bottom: 0; }
.company-note { margin-top: 42px; padding-top: 28px; border-top: 1px solid var(--line); }

footer { padding: 48px 0; color: #9ba7bc; background: #090f1e; text-align: center; font-size: .86rem; }
footer .logo { justify-content: center; margin-bottom: 16px; }
footer p { margin-bottom: 8px; }
footer p:last-child { margin-bottom: 0; }
footer a:not(.logo) { color: white; font-weight: 800; text-underline-offset: 3px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 18px; margin: 18px 0; }

@media (max-width: 700px) {
  .container, .narrow { width: min(100% - 28px, 1100px); }
  .top-bar { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px; min-height: 104px; padding-block: 16px; }
  .top-note { grid-column: 1 / -1; grid-row: 2; justify-self: end; justify-content: flex-end; width: 100%; font-size: 1.17rem; text-align: right; }
  .menu-button { display: block; grid-column: 2; grid-row: 1; }
  .site-nav { display: none; }
  .site-nav.is-open { display: block; }
  .site-nav-inner { flex-direction: column; align-items: stretch; gap: 4px; padding-block: 10px 14px; }
  .site-nav a { padding: 10px 12px; font-size: .88rem; }
  .page-hero { padding: 54px 0 50px; }
  .page-content { padding: 38px 0 68px; }
  .content-card { border-radius: 22px; }
  .info-grid, .steps { grid-template-columns: 1fr; }
  h2 { margin-top: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .site-nav a, .menu-button span { transition: none; }
}
