/* Landing. One idea per screen, lots of air, everything arrives on scroll.

   Wise-flavoured: one heavy sans doing all the work, emphasis carried by colour
   rather than a second typeface, full-bleed lime bands between sections, and
   solid white cards on the warm ground (glass only in dark mode, where there is
   something behind it to refract). */

.hero { padding: 88px 0 60px; text-align: center; }

.hero .eyebrow { margin-bottom: 18px; }

.hero h1 {
  font-size: clamp(42px, 6.6vw, 82px);
  /* Leading tighter than 1 is the Wise signature. It only works at heavy
     weights and large sizes — do not reuse this on body copy. */
  line-height: 0.94;
  letter-spacing: -0.042em;
  font-weight: 800;
  max-width: 940px;
  margin: 0 auto;
}

/* Emphasis by colour, not by a second family. */
.hero h1 em,
.section-head h2 em,
.close-cta h2 em {
  font-style: normal;
  color: var(--accent-text);
}

.hero p {
  margin: 24px auto 0;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
}

.hero-cta { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-cta .btn { height: 50px; padding: 0 28px; font-size: 15.5px; }

/* --- live proof panel ---------------------------------------------------- */

.proof {
  margin: 56px auto 0;
  max-width: 940px;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--panel);
  overflow: hidden;
  text-align: left;
  box-shadow: var(--shadow-lg), inset 0 1px 0 var(--sheen);
}

:root[data-theme='dark'] .proof {
  backdrop-filter: blur(var(--blur)) saturate(180%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(180%);
}

.proof-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink-2);
}

.proof-head .q { flex: 1; min-width: 0; color: var(--ink); font-weight: 600; }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; }

.leg { padding: 26px 24px; display: flex; flex-direction: column; gap: 4px; }
.leg + .leg { border-left: 1px solid var(--line); }

.leg .who { font-size: 12.5px; color: var(--ink-3); }
.leg .side { font-size: 15px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }

.leg .px {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.045em;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
}

.leg .px .unit { font-size: 18px; font-weight: 700; color: var(--ink-3); margin-left: 2px; }
.leg.pick .px { color: var(--accent-text); }

.proof-foot {
  padding: 18px 24px;
  border-top: 1px solid var(--accent-line);
  background: var(--accent-soft);
  font-size: 14px;
  line-height: 1.55;
}

.proof-foot b { color: var(--accent-text); font-variant-numeric: tabular-nums; }
.proof-foot.flat { border-top-color: var(--line); background: none; }
.proof-foot.flat b { color: var(--ink); }

.proof-load { padding: 64px 24px; text-align: center; color: var(--ink-3); font-size: 13.5px; }

/* --- full-bleed lime band ------------------------------------------------ */

/* Wise punctuates the page with edge-to-edge colour blocks rather than another
   bordered card. This is the one place the lime covers real area. */
.band-strip {
  margin-top: 84px;
  padding: 46px 0;
  background: var(--accent);
  color: var(--accent-ink);
}

.band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 28px 20px;
}

.band-item { text-align: center; }

.band-v {
  font-size: clamp(30px, 3.6vw, 40px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.band-k {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.72;
}

/* --- sections ------------------------------------------------------------ */

.section { padding: 92px 0 0; }

.section-head { max-width: 700px; margin-bottom: 36px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.038em;
  margin-bottom: 14px;
  line-height: 1.02;
  font-weight: 800;
}

.section-head p { margin: 0; color: var(--ink-2); font-size: 17px; line-height: 1.58; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 16px; }

.step {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  box-shadow: var(--shadow-sm), inset 0 1px 0 var(--sheen);
  transition: box-shadow 0.25s, transform 0.25s;
}

:root[data-theme='dark'] .step {
  backdrop-filter: blur(var(--blur)) saturate(170%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(170%);
}

.step:hover { box-shadow: var(--shadow), inset 0 1px 0 var(--sheen); transform: translateY(-2px); }

.step .n {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

.step h3 { font-size: 16.5px; margin-bottom: 8px; font-weight: 700; }
.step p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--ink-2); }

/* --- live top gaps ------------------------------------------------------- */

.gaps {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.gap {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  transition: background 0.16s;
}

.gap + .gap { border-top: 1px solid var(--line); }
.gap:hover { background: var(--panel-2); }

.gap-t { flex: 1; min-width: 0; }
.gap-q { font-size: 15.5px; font-weight: 700; letter-spacing: -0.022em; }

.gap-o {
  margin-top: 4px;
  font-size: 13px;
  color: var(--ink-3);
  display: flex;
  gap: 5px;
  align-items: center;
  flex-wrap: wrap;
}

.gap-n { text-align: right; flex: none; }
.gap-save { font-size: 22px; font-weight: 800; color: var(--accent-text); letter-spacing: -0.04em; }
.gap-rel { margin-top: 2px; font-size: 12px; color: var(--ink-3); }

.gap-empty { padding: 44px 22px; text-align: center; color: var(--ink-3); font-size: 13.5px; }

/* --- closing cta --------------------------------------------------------- */

/* Solid lime, like Wise's end-of-page blocks. */
.close-cta {
  margin-top: 92px;
  padding: 76px 32px;
  border-radius: var(--r-xl);
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
}

.close-cta h2 {
  font-size: clamp(30px, 4vw, 44px);
  letter-spacing: -0.038em;
  margin-bottom: 14px;
  font-weight: 800;
  line-height: 1.02;
}

.close-cta h2 em { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 4px; }

.close-cta p {
  margin: 0 auto 30px;
  max-width: 500px;
  font-size: 16.5px;
  line-height: 1.55;
  opacity: 0.78;
}

/* On the lime block the button inverts: deep green fill, lime type. */
.close-cta .btn {
  height: 52px;
  padding: 0 30px;
  font-size: 16px;
  background: var(--accent-ink);
  color: var(--accent);
  border-color: transparent;
  font-weight: 700;
}

.close-cta .btn:hover { background: var(--accent-ink); filter: brightness(1.35); color: var(--accent); }

@media (max-width: 720px) {
  .hero { padding: 52px 0 40px; }
  .proof-grid { grid-template-columns: 1fr; }
  .leg + .leg { border-left: none; border-top: 1px solid var(--line); }
  .section { padding: 64px 0 0; }
  .band-strip { margin-top: 56px; padding: 34px 0; }
  .close-cta { padding: 52px 22px; margin-top: 64px; }
  .gap { flex-wrap: wrap; gap: 10px; }
}
