:root {
  --ink: #13233a;
  --muted: #617086;
  --blue: #2079f4;
  --blue-dark: #145fd0;
  --sky: #eaf5ff;
  --sky-strong: #d6ecff;
  --mint: #d9f5eb;
  --cream: #fff9ed;
  --white: #ffffff;
  --line: #dce7f2;
  --shadow: 0 24px 70px rgba(31, 77, 128, .13);
  --radius-lg: 34px;
  --radius-md: 24px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #f7fbff;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 7%, rgba(123, 194, 255, .17), transparent 25rem),
    linear-gradient(180deg, #f7fbff 0, #fff 40rem);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; }

.metrika-pixel {
  position: absolute;
  left: -9999px;
}

.section-shell,
.site-header {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.04em;
  text-decoration: none;
}

.brand-mark {
  width: 35px;
  height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border-radius: 48% 48% 42% 42%;
  background: var(--blue);
  transform: rotate(-2deg);
}

.brand-eye {
  width: 10px;
  height: 12px;
  border-radius: 50%;
  background: white;
  position: relative;
}

.brand-eye::after {
  content: "";
  width: 4px;
  height: 5px;
  position: absolute;
  left: 3px;
  top: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.header-link {
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: border-color .2s ease, transform .2s ease;
}

.header-link:hover { border-color: #a9c8e8; transform: translateY(-1px); }

.hero {
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 56px;
  padding: 58px 0 84px;
}

.hero-copy,
.hero-visual,
.why-copy,
.why-points,
.final-cta > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38bd8b;
  box-shadow: 0 0 0 5px rgba(56, 189, 139, .14);
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 700px;
  margin: 22px 0 24px;
  font-size: clamp(46px, 5.3vw, 72px);
  line-height: .99;
  letter-spacing: -.057em;
  font-weight: 830;
}

h1 span {
  color: var(--blue);
  position: relative;
  white-space: nowrap;
}

h1 span::after {
  content: "";
  position: absolute;
  inset: auto 2% -6px 1%;
  height: 6px;
  border-radius: 99px;
  background: #ffd565;
  transform: rotate(-1.5deg);
  z-index: -1;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 16px 25px;
  border: 0;
  border-radius: 16px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }

.button:focus-visible,
.header-link:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(32, 121, 244, .28);
  outline-offset: 3px;
}

.button-primary {
  color: white;
  background: var(--blue);
  box-shadow: 0 14px 28px rgba(32, 121, 244, .25), inset 0 -3px 0 rgba(9, 72, 160, .26);
}

.button-primary:hover { background: var(--blue-dark); box-shadow: 0 18px 34px rgba(32, 121, 244, .28), inset 0 -3px 0 rgba(9, 72, 160, .2); }
.button-primary svg { width: 22px; fill: currentColor; }
.button.is-loading { pointer-events: none; opacity: .78; }

.action-note { color: var(--muted); font-size: 14px; }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #42536a;
  font-size: 14px;
  font-weight: 650;
}

.trust-list li { display: flex; align-items: center; gap: 7px; }
.check { color: #139b6a; font-weight: 900; }

.hero-visual {
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.mascot-halo {
  width: 93%;
  aspect-ratio: 1;
  position: absolute;
  border-radius: 48% 52% 46% 54%;
  background: linear-gradient(145deg, #dff2ff, #eef9ff 58%, #dff6ec);
  transform: rotate(-6deg);
  z-index: -2;
}

.mascot-halo::before,
.mascot-halo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: white;
}

.mascot-halo::before { width: 15px; height: 15px; top: 13%; left: 7%; box-shadow: 30px 12px 0 -4px white; }
.mascot-halo::after { width: 11px; height: 11px; right: 11%; bottom: 17%; box-shadow: -25px 18px 0 -2px white; }

.mascot {
  width: min(100%, 510px);
  height: auto;
  display: block;
  border-radius: 44%;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 26px rgba(40, 70, 100, .16));
  transform: translateY(4px);
}

.message-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 210px;
  padding: 12px 15px;
  border: 1px solid rgba(207, 223, 237, .85);
  border-radius: 17px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 36px rgba(46, 85, 125, .13);
  backdrop-filter: blur(14px);
  animation: float 5s ease-in-out infinite;
}

.message-card strong,
.message-card small { display: block; }
.message-card strong { font-size: 13px; }
.message-card small { color: var(--muted); font-size: 12px; }
.message-card-top { top: 13%; right: -2%; }
.message-card-bottom { left: -3%; bottom: 12%; animation-delay: -2.5s; }

.message-icon,
.avatar-dot {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--mint);
  color: #16855e;
  font-size: 17px;
  font-weight: 900;
}

.avatar-dot { border-radius: 50%; background: var(--sky-strong); color: var(--blue-dark); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.steps { padding: 100px 0; }

.section-heading { max-width: 650px; margin-bottom: 44px; }

h2 {
  margin: 11px 0 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.section-heading p,
.why-copy > p {
  color: var(--muted);
  font-size: 18px;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-card {
  min-height: 300px;
  position: relative;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}

.step-card.featured { background: var(--sky); border-color: #c7e4ff; }
.step-number { position: absolute; top: 23px; right: 25px; color: #afc1d3; font-size: 13px; font-weight: 800; letter-spacing: .08em; }

.step-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 45px;
  border-radius: 18px;
  background: var(--sky);
  color: var(--blue);
}

.featured .step-icon { background: white; }
.step-icon svg { width: 32px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.step-card h3 { margin-bottom: 10px; font-size: 21px; letter-spacing: -.025em; }
.step-card p { margin-bottom: 0; color: var(--muted); }

.why { padding: 46px 0 108px; }

.why-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 68px;
  border-radius: var(--radius-lg);
  background: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(227, 201, 142, .32);
}

.why-copy h2 { font-size: clamp(34px, 3.8vw, 50px); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--blue-dark); font-weight: 800; text-decoration: none; }
.text-link:hover span { transform: translateX(4px); }
.text-link span { transition: transform .2s ease; }

.why-points { display: grid; gap: 14px; }
.why-points article { display: flex; gap: 16px; padding: 20px; border-radius: 18px; background: rgba(255, 255, 255, .72); }
.why-points article > span { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: #ffdc7b; font-weight: 900; }
.why-points h3 { margin: 0 0 3px; font-size: 17px; }
.why-points p { margin: 0; color: var(--muted); font-size: 14px; }

.final-cta {
  min-height: 340px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 60px 70px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--ink);
}

.final-cta::after {
  content: "";
  width: 330px;
  height: 330px;
  position: absolute;
  right: 15%;
  top: -65%;
  border-radius: 50%;
  background: rgba(68, 157, 255, .17);
  box-shadow: 0 0 0 75px rgba(68, 157, 255, .07), 0 0 0 150px rgba(68, 157, 255, .04);
}

.final-cta > * { position: relative; z-index: 1; }
.section-kicker.light { color: #8cc8ff; }
.final-cta h2 { margin-bottom: 0; }
.final-action { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.button-light { color: var(--ink); background: white; box-shadow: 0 14px 28px rgba(0, 0, 0, .2); }
.button-light:hover { background: #f1f7ff; }
.final-action > span { color: #bdc8d6; font-size: 13px; }

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
}

.brand-small { font-size: 19px; }
.brand-small .brand-mark { width: 30px; height: 27px; }
.site-footer p { margin: 0; text-align: center; }
.site-footer > a:last-child { justify-self: end; font-weight: 700; text-decoration: none; }
.site-footer > a:last-child:hover { color: var(--blue-dark); }
.mobile-cta { display: none; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 28px; padding-top: 42px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-visual { width: min(540px, 100%); margin-inline: auto; }
  .step-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 250px; }
  .why-card { grid-template-columns: 1fr; gap: 38px; padding: 48px; }
  .final-cta { padding: 52px; flex-direction: column; align-items: flex-start; }
  .final-action { align-items: flex-start; }
}

@media (max-width: 620px) {
  .section-shell,
  .site-header { width: min(100% - 32px, 1160px); }
  .site-header { height: 72px; }
  .header-link { display: none; }
  .hero { min-height: 0; padding: 34px 0 60px; }
  .eyebrow { font-size: 11px; }
  h1 { margin: 17px 0 18px; font-size: clamp(39px, 12vw, 54px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { width: 100%; flex-direction: column; gap: 10px; margin-bottom: 22px; }
  .hero-actions .button { width: 100%; }
  .trust-list { justify-content: center; font-size: 13px; }
  .hero-visual { min-height: 400px; }
  .mascot { width: min(100%, 420px); }
  .message-card { min-width: 174px; padding: 10px 12px; }
  .message-card-top { top: 9%; right: -1%; }
  .message-card-bottom { left: -1%; bottom: 6%; }
  .message-card strong { font-size: 12px; }
  .message-card small { font-size: 11px; }
  .steps { padding: 68px 0; }
  .section-heading { margin-bottom: 30px; }
  .section-heading p, .why-copy > p { font-size: 16px; }
  .step-card { min-height: auto; padding: 25px; }
  .step-icon { margin-bottom: 30px; }
  .why { padding: 20px 0 76px; }
  .why-card { padding: 32px 24px; border-radius: 26px; }
  .why-points article { padding: 17px; }
  .final-cta { min-height: 380px; padding: 38px 26px; border-radius: 26px; }
  .final-action, .final-action .button { width: 100%; }
  .site-footer { grid-template-columns: 1fr auto; min-height: 170px; padding-bottom: 76px; }
  .site-footer p { display: none; }
  .mobile-cta { display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 20; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .9); border-top: 1px solid rgba(210, 224, 237, .85); backdrop-filter: blur(14px); opacity: 0; pointer-events: none; transform: translateY(100%); transition: opacity .2s ease, transform .25s ease; }
  .mobile-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-cta .button { width: 100%; min-height: 52px; padding-block: 13px; }
}

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