/* ========================================================================
   Wisp Wallet — pre-launch draft
   Brand: Indigo #340070  +  Signal Yellow #FEF31A
   ======================================================================== */

:root {
  --indigo:      #340070;
  --indigo-deep: #26004f;
  --indigo-800:  #2b005c;
  --yellow:      #FEF31A;
  --white:       #ffffff;
  --off-white:   #f2f2f2;
  --grey:        #898989;
  --black:       #000000;

  --ink-on-indigo: #ffffff;
  --dim-on-indigo: rgba(255,255,255,.62);

  --wrap: 1280px;
  --gutter: clamp(20px, 5vw, 72px);

  --font: "Aptos Display", "Aptos", "Segoe UI Variable Display", "Segoe UI",
          system-ui, -apple-system, "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--indigo);
  color: var(--ink-on-indigo);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hl { color: var(--yellow); }
.nb { white-space: nowrap; }

/* ---------- wordmark ---------- */
.wordmark { height: 30px; width: auto; display: block; fill: var(--yellow); }
.wordmark--sm { height: 26px; }

/* ---------- buttons ---------- */
.btn {
  --pad: 15px 26px;
  display: inline-flex; align-items: center; justify-content: center;
  font: inherit; font-weight: 600; font-size: 1rem; line-height: 1;
  padding: var(--pad); border-radius: 100px; text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn--solid { background: var(--yellow); color: var(--indigo); }
.btn--solid:hover { transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn--ghost:hover { border-color: var(--yellow); color: var(--yellow); }
.btn--text { background: transparent; color: var(--white); padding-inline: 6px; }
.btn--text:hover { color: var(--yellow); }

/* ========================================================================
   NAV
   ======================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), padding .4s var(--ease);
}
.nav.is-scrolled {
  background: rgba(38,0,79,.72);
  backdrop-filter: blur(14px);
  padding-block: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__brand { display: flex; align-items: baseline; gap: 9px; text-decoration: none; }
.nav__sub {
  color: var(--white); font-size: .84rem; font-weight: 300; letter-spacing: .14em;
  text-transform: uppercase; transform: translateY(-2px);
}
.nav__links { display: flex; align-items: center; gap: clamp(14px, 2.4vw, 34px); }
.nav__links a { color: var(--dim-on-indigo); text-decoration: none; font-size: .96rem; transition: color .25s; }
.nav__links a:hover { color: var(--white); }
.nav__links .btn { color: var(--white); }
.nav__links .btn:hover { color: var(--yellow); }

/* ========================================================================
   RIBBON (the signature yellow wisp line)
   ======================================================================== */
.ribbon { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.ribbon__path {
  fill: none; stroke: var(--yellow); stroke-width: 13; stroke-linecap: round; stroke-linejoin: round;
}
.ribbon--hero {
  top: auto; bottom: clamp(-90px, -6vh, -48px); left: 0; height: auto;
  z-index: 1;            /* above the next section, below the hero text (z-2) */
  opacity: .95;
}
.ribbon--hero .ribbon__path { stroke-width: 16; }
.ribbon--cta { top: auto; bottom: 0; height: 58%; }
.ribbon--cta .ribbon__path--cta { stroke-width: 11; opacity: .9; }

.ribbon--trail {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(420px, 40vw); height: 100%; opacity: 1; overflow: visible;
}
.trail__path {
  fill: none; stroke: var(--yellow); stroke-width: 6; stroke-linecap: round;
  filter: drop-shadow(0 0 4px rgba(254, 243, 26, .35));
}
/* small paper plane that leads the drawing tip — positioned by JS along the path */
.trail__flare {
  opacity: 0;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, .45));
}

/* ========================================================================
   HERO
   ======================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  /* reserve a band at the bottom for the hero ribbon (its height scales with width),
     so the loop never overlaps the copy or the CTAs */
  padding-top: clamp(110px, 16vh, 160px); padding-bottom: calc(31vw + 60px);
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(254,243,26,.10), transparent 55%),
    linear-gradient(180deg, var(--indigo-deep) 0%, var(--indigo-deep) 40%, var(--indigo) 88%);
  overflow: visible;   /* let the ribbon drape across the transition into the next section */
}
.hero__inner { position: relative; z-index: 2; }
.hero__eyebrow {
  color: var(--yellow); font-size: clamp(.95rem, 1.3vw, 1.15rem); font-weight: 600;
  letter-spacing: .01em; margin-bottom: clamp(16px, 2.4vh, 26px);
}
.hero__title {
  font-size: clamp(2.9rem, 8.4vw, 7rem); line-height: .95; font-weight: 700;
  letter-spacing: -.03em; margin-bottom: clamp(22px, 3.4vh, 34px);
}
.hero__title > span { display: block; }
.hero__sub {
  max-width: 34ch; font-size: clamp(1.1rem, 1.7vw, 1.4rem); line-height: 1.45;
  color: var(--dim-on-indigo); font-weight: 300; margin-bottom: clamp(28px, 4vh, 44px);
}
.hero__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

/* ========================================================================
   VISION
   ======================================================================== */
.vision { padding-block: clamp(120px, 20vh, 240px); position: relative; }
.vision__line {
  font-size: clamp(3rem, 10vw, 8.5rem); line-height: .95; font-weight: 700;
  letter-spacing: -.03em;
}
.vision__line > span { display: block; }
.vision__body {
  margin-top: 40px; max-width: 40ch; font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.5; color: var(--dim-on-indigo); font-weight: 300;
}

/* ========================================================================
   DEVICE SHOWCASE
   ======================================================================== */
.devices { padding-block: clamp(70px, 12vh, 150px); overflow: hidden; }
.devices__inner {
  display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(30px, 5vw, 80px); align-items: center;
}
.devices .eyebrow {
  color: var(--yellow); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: .85rem; margin-bottom: 18px;
}
.devices h2 {
  font-size: clamp(2rem, 4.6vw, 3.8rem); line-height: 1.02; letter-spacing: -.02em;
  font-weight: 700; margin-bottom: 22px;
}
.devices__body {
  color: var(--dim-on-indigo); font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.55;
  max-width: 40ch; font-weight: 300;
}
.devices__stage { position: relative; }
.device { display: block; }
.device--laptop { width: 100%; filter: drop-shadow(0 40px 80px rgba(0,0,0,.45)); }
.device--phone {
  position: absolute; width: 25%; left: -3%; bottom: -8%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
}

/* ========================================================================
   FEATURES
   ======================================================================== */
.features { position: relative; padding-block: 40px 120px; }
.feature {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 100px);
  align-items: center; padding-block: clamp(56px, 10vh, 120px);
}
.feature--reverse .feature__text { order: 2; }
.feature__num {
  display: inline-block; font-size: 1rem; font-weight: 700; color: var(--yellow);
  letter-spacing: .1em; margin-bottom: 18px;
}
.feature__title {
  font-size: clamp(2rem, 4.6vw, 3.8rem); line-height: 1.02; font-weight: 700;
  letter-spacing: -.02em; margin-bottom: 22px;
}
.feature__body {
  max-width: 42ch; font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.55;
  color: var(--dim-on-indigo); font-weight: 300;
}
.feature__visual { display: grid; place-items: center; }

/* --- phone mock --- */
.phone {
  width: min(300px, 74vw); aspect-ratio: 300/610; border-radius: 42px;
  background: linear-gradient(160deg, #1b0038, #3a0a74);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.12);
  padding: 16px; position: relative;
}
.phone::before {
  content:""; position:absolute; top:16px; left:50%; transform:translateX(-50%);
  width:120px; height:26px; background:#0e001f; border-radius:0 0 16px 16px;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 28px;
  background: radial-gradient(120% 80% at 50% 0%, #45108a, #240049);
  display: grid; place-content: center; gap: 16px; text-align: center;
}
.chip--yes {
  justify-self: center; background: var(--yellow); color: var(--indigo);
  font-weight: 700; font-size: 2rem; width: 128px; height: 128px; border-radius: 50%;
  display: grid; place-content: center;
  box-shadow: 0 0 0 0 rgba(254,243,26,.5); animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(254,243,26,.45)} 70%{box-shadow:0 0 0 26px rgba(254,243,26,0)} 100%{box-shadow:0 0 0 0 rgba(254,243,26,0)} }
.chip__label { color: var(--dim-on-indigo); font-size: .9rem; letter-spacing: .04em; }
.phone__screen--favs { grid-template-columns: 1fr 1fr; place-content: center; padding: 34px; gap: 16px; }
.fav {
  width: 100%; aspect-ratio: 1; border-radius: 18px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: #ac9cc4;
}
.fav svg { width: 34%; height: auto; }
.fav em { font-style: normal; font-weight: 600; font-size: .62rem; letter-spacing: .02em; color: inherit; }
.fav--on { background: var(--yellow); border-color: var(--yellow); color: var(--indigo); }

/* --- stacked cards --- */
.stack { position: relative; width: min(340px, 80vw); height: 300px; }
.stack .card {
  position: absolute; left: 0; right: 0; margin-inline: auto; width: 86%;
  padding: 22px 26px; border-radius: 20px; font-weight: 600; font-size: 1.05rem;
  box-shadow: 0 26px 60px -24px rgba(0,0,0,.55);
}
.card--a { top: 0; background: var(--white); color: var(--indigo); transform: rotate(-5deg); }
.card--b { top: 86px; background: var(--yellow); color: var(--indigo); transform: rotate(2deg); z-index: 2; }
.card--c { top: 172px; background: #4a1596; color: var(--white); border: 1px solid rgba(255,255,255,.18); transform: rotate(-2deg); }

/* --- fanned loyalty cards --- */
.fan { position: relative; width: min(340px, 80vw); height: 260px; display: grid; place-items: center; }
.fan__card {
  position: absolute; width: 180px; height: 240px; border-radius: 22px;
  background: linear-gradient(150deg, #4a1596, #2a0057);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 30px 60px -26px rgba(0,0,0,.6);
}
.fan__card::after { content:""; position:absolute; top:22px; left:22px; width:44px; height:30px; border-radius:7px; background: var(--yellow); }
.fan__card:nth-child(1) { transform: rotate(-16deg) translateX(-44px); }
.fan__card:nth-child(2) { transform: rotate(0deg); z-index: 2; }
.fan__card:nth-child(3) { transform: rotate(16deg) translateX(44px); background: linear-gradient(150deg,#FEF31A,#c9c110); }
.fan__card:nth-child(3)::after { background: var(--indigo); }

/* ========================================================================
   LIFESTYLE BAND (fal.ai image slots with branded placeholders)
   ======================================================================== */
.lifestyle { padding-block: clamp(60px, 10vh, 120px); }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 28px); }
.shot {
  position: relative; margin: 0; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden;
  background: linear-gradient(160deg, #45108a, #240049);
  border: 1px solid rgba(255,255,255,.1);
}
/* branded placeholder: a faint wisp curve + caption, shown until an image loads over it */
.shot::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(80% 60% at 20% 15%, rgba(254,243,26,.16), transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 500'%3E%3Cpath d='M-20,360 C120,340 180,240 300,270 C360,285 380,340 340,360 C312,374 290,350 306,326 C322,304 372,312 420,340' fill='none' stroke='%23FEF31A' stroke-width='10' stroke-linecap='round' opacity='.5'/%3E%3C/svg%3E") no-repeat center/cover;
}
.shot::after {
  content: attr(data-caption); position: absolute; left: 18px; bottom: 16px; z-index: 3;
  color: var(--white); font-weight: 600; font-size: 1rem; letter-spacing: .01em;
  text-shadow: 0 1px 12px rgba(0,0,0,.5);
}
.shot img {
  position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; display: block;
}

/* ========================================================================
   STEPS
   ======================================================================== */
.steps { padding-block: clamp(90px, 14vh, 160px); background: var(--indigo-deep); }
.section__head {
  font-size: clamp(1.9rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -.02em;
  max-width: 20ch; margin-bottom: 60px;
}
.steps__grid { list-style: none; display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(24px,4vw,48px); }
.step { border-top: 2px solid rgba(255,255,255,.14); padding-top: 26px; }
.step__k {
  display: block; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  color: var(--yellow); letter-spacing: -.02em; margin-bottom: 14px;
}
.step p { color: var(--dim-on-indigo); font-size: 1.1rem; line-height: 1.5; font-weight: 300; max-width: 26ch; }

/* ========================================================================
   FOR BUSINESS  (light section for rhythm)
   ======================================================================== */
.business { background: var(--yellow); color: var(--indigo); padding-block: clamp(100px,16vh,180px); }
.business__inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(40px,7vw,100px); align-items: center; }
.business .eyebrow { color: var(--indigo); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .85rem; margin-bottom: 20px; }
.business h2 { font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.03; letter-spacing: -.02em; font-weight: 700; margin-bottom: 26px; text-wrap: balance; }
.business__body { font-size: clamp(1.05rem,1.5vw,1.25rem); line-height: 1.6; color: rgba(52,0,112,.82); max-width: 46ch; margin-bottom: 34px; font-weight: 500; }
.business .btn--solid { background: var(--indigo); color: var(--yellow); }
.business .btn--solid:hover { transform: translateY(-2px); }
.stats { list-style: none; display: grid; gap: 26px; }
.stats li { border-left: 3px solid var(--indigo); padding-left: 20px; }
.stats__n { display: block; font-size: clamp(2.6rem,5vw,4rem); font-weight: 700; color: var(--indigo); line-height: 1; letter-spacing: -.03em; }
.stats__l { color: rgba(52,0,112,.68); font-size: 1rem; font-weight: 500; }

/* ========================================================================
   CLOSING CTA
   ======================================================================== */
.cta { position: relative; overflow: hidden; padding-block: clamp(120px,20vh,220px);
  background: linear-gradient(180deg, var(--indigo-deep), var(--indigo)); text-align: center; }
.cta__inner { position: relative; z-index: 2; display: grid; justify-items: center; }
.cta__title { font-size: clamp(2.6rem,8vw,6.5rem); line-height: .96; font-weight: 700; letter-spacing: -.03em; }
.cta__sub { margin-top: 22px; margin-bottom: 40px; color: var(--dim-on-indigo); font-size: clamp(1.1rem,1.7vw,1.35rem); font-weight: 300; max-width: 40ch; }

/* ========================================================================
   FOOTER
   ======================================================================== */
.footer { background: var(--indigo-deep); padding-block: 60px; border-top: 1px solid rgba(255,255,255,.08); }
.footer__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer__tag { color: var(--yellow); font-size: 1.1rem; }
.footer__legal { color: var(--dim-on-indigo); font-size: .88rem; }

/* ---------- footer social icons ---------- */
.footer__social { display: flex; gap: 8px; align-items: center; }
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--yellow);
  transition: transform .25s var(--ease), color .25s var(--ease), background-color .25s var(--ease);
}
.social svg { width: 20px; height: 20px; fill: currentColor; }
.social:hover,
.social:focus-visible { color: var(--indigo); background: var(--yellow); transform: translateY(-2px); }
.social:focus-visible { outline: 2px solid var(--yellow); outline-offset: 2px; }

/* Desktop: sit the icons in the right-hand space, vertically centred. */
@media (min-width: 760px) {
  .footer__social {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ========================================================================
   REVEAL STATES (JS adds .is-in). Fallback: visible without JS.
   ======================================================================== */
.js .reveal, .js .reveal-up { opacity: 0; }
.js .reveal { transform: translateY(14px); }
.js .reveal-up { transform: translateY(40px); }
.reveal.is-in, .reveal-up.is-in { opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease); }

/* ========================================================================
   RESPONSIVE
   ======================================================================== */
@media (max-width: 860px) {
  .nav__links a:not(.btn) { display: none; }
  .feature { grid-template-columns: 1fr; min-height: unset; gap: 34px; padding-block: 60px; }
  .feature--reverse .feature__text { order: 0; }
  .feature__visual { order: -1; }
  .business__inner { grid-template-columns: 1fr; }
  .devices__inner { grid-template-columns: 1fr; }
  .devices__stage { margin-top: 10px; }
  .device--phone { width: 22%; left: 0; bottom: -6%; }
  .steps__grid { grid-template-columns: 1fr; }
  .shots { grid-template-columns: 1fr; gap: 16px; }
  .shot { aspect-ratio: 16/10; }
  .ribbon--trail { display: none; }
}

/* ========================================================================
   REDUCED MOTION
   ======================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, .reveal, .reveal-up { animation: none !important; transition: none !important; }
  .js .reveal, .js .reveal-up { opacity: 1 !important; transform: none !important; }
  .hero__scroll::after, .chip--yes { animation: none !important; }
}

/* ========================================================================
   WAITLIST MODAL
   ======================================================================== */
.wl-overlay { position: fixed; inset: 0; z-index: 100; display: none; place-items: center;
  padding: 20px; background: rgba(10,0,25,.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.wl-overlay.is-open { display: grid; }
.wl-modal { width: 100%; max-width: 560px; max-height: 92vh; overflow: auto; position: relative;
  background: var(--indigo-deep); border: 1px solid rgba(255,255,255,.12); border-radius: 26px;
  padding: clamp(24px,4vw,40px); box-shadow: 0 40px 120px rgba(0,0,0,.5); animation: wl-pop .4s var(--ease); }
@keyframes wl-pop { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.wl-close { position: absolute; top: 18px; right: 20px; background: none; border: none; color: var(--dim-on-indigo);
  font-size: 1.6rem; line-height: 1; cursor: pointer; transition: color .25s; }
.wl-close:hover { color: var(--yellow); }

.wl-bar { display: flex; gap: 8px; margin-bottom: 8px; }
.wl-bar span { height: 4px; flex: 1; border-radius: 100px; background: rgba(255,255,255,.16); transition: background .35s var(--ease); }
.wl-bar span.on { background: var(--yellow); }
.wl-eyebrow { color: var(--yellow); font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: .72rem; margin: 14px 0 4px; }
.wl-h { font-size: clamp(1.5rem,3.5vw,2rem); font-weight: 700; line-height: 1.05; margin-bottom: 22px; }

.wl-field { margin-bottom: 16px; text-align: left; }
.wl-field label { display: block; font-size: .82rem; color: var(--dim-on-indigo); margin-bottom: 6px; font-weight: 500; }
.wl-field input:not([type=checkbox]), .wl-field select { width: 100%; font: inherit; font-size: 1rem; color: var(--white);
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.16); border-radius: 12px;
  padding: 13px 14px; transition: border-color .25s, background .25s; appearance: none; }
.wl-field input::placeholder { color: rgba(255,255,255,.35); }
.wl-field input:not([type=checkbox]):focus, .wl-field select:focus { outline: none; border-color: var(--yellow); background: rgba(255,255,255,.1); }
.wl-field select { cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FEF31A' d='M6 8 0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; }
.wl-field select option, .wl-field select optgroup { background: var(--indigo-deep); color: var(--white); }
.wl-field.err input, .wl-field.err select { border-color: #ff6b6b; }
.wl-err { color: #ff9a9a; font-size: .76rem; margin-top: 5px; display: none; }
.wl-field.err .wl-err { display: block; }
#wl-consent-err { text-align: left; display: none; }
.wl-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wl-consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 4px; }
.wl-consent input { width: 18px; height: 18px; margin-top: 2px; flex: none; accent-color: var(--yellow); }
.wl-consent label { font-size: .82rem; color: var(--dim-on-indigo); line-height: 1.4; }
.wl-consent a { color: var(--yellow); }
.wl-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.wl-step { display: none; }
.wl-step.is-active { display: block; animation: wl-fade .35s var(--ease); }
@keyframes wl-fade { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }

.wl-actions { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 24px; }
.wl-spacer { flex: 1; }

.wl-done { text-align: center; padding: 20px 0; }
.wl-tick { width: 64px; height: 64px; border-radius: 50%; background: var(--yellow); color: var(--indigo);
  display: grid; place-items: center; font-size: 2rem; margin: 0 auto 18px; font-weight: 700; }
.wl-done p { color: var(--dim-on-indigo); font-weight: 300; }

@media (max-width: 480px) {
  .wl-row2 { grid-template-columns: 1fr; }
}
