/* EZPrint landing page.

   The look: a white hero panel floating on a pastel ink-wash gradient, solid
   colour blobs behind the artwork, little floating cards, drifting ink drops.
   Confident type, generous rhythm, playful detail that never gets in the way.

   Rules of the house:
   - no external assets of any kind (system fonts only)
   - light and dark both first-class
   - nothing wider than the viewport at 360px
   - every animation is opt-out via prefers-reduced-motion
*/

/* ------------------------------------------------------------- palette */

.lp {
  --sky: #21b3f3;
  --sky-deep: #0b8ecb;
  --sun: #ffc93c;
  --sun-deep: #eda200;
  --pink: #ff5c9e;
  --pink-deep: #e0397c;
  --mint: #2dd4bf;
  --mint-deep: #0f9d8c;
  --grape: #8b6cf6;
  --grape-deep: #6c4be0;

  --navy: #141c50;
  --body: #5a6488;
  --line: #e6eaf6;
  --surface: #ffffff;
  --surface-2: #f6f8fe;
  --bg: #ffffff;

  /* the ink wash behind the hero */
  --tint-a: #d9f1ff;
  --tint-b: #ffe8f3;
  --tint-c: #fff4d8;
  --bg-tint: linear-gradient(158deg, var(--tint-a) 0%, var(--tint-b) 54%, var(--tint-c) 100%);

  /* accent text that has to stay legible on the page background */
  --accent-text: #0b8ecb;

  /* paper stays paper in both themes, which is the joke */
  --paper: #ffffff;
  --paper-line: #e7ecf8;

  --shadow: 0 10px 30px rgba(20, 28, 80, 0.08);
  --shadow-lg: 0 20px 52px rgba(20, 28, 80, 0.13);
  --shadow-xl: 0 34px 78px rgba(20, 28, 80, 0.17);

  /* the two bold panels (best plan, closing CTA) share one gradient so the
     page has a repeated "loud moment" rather than two unrelated ones */
  --loud: linear-gradient(155deg, #0d6ea6 0%, #4b37b5 52%, #93266f 100%);

  background: var(--bg);
  color: var(--navy);
  font-family: "Nunito", ui-rounded, "Segoe UI Variable Display", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-synthesis-weight: auto;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
}

@media (prefers-color-scheme: dark) {
  .lp {
    --navy: #f1f4ff; --body: #a3adcf; --line: #2b3466;
    --surface: #1a2255; --surface-2: #141b45; --bg: #101638;
    --tint-a: #16224e; --tint-b: #241a48; --tint-c: #2b2144;
    --accent-text: #62cdff;
    --shadow: 0 10px 30px rgba(0, 0, 0, .34);
    --shadow-lg: 0 20px 52px rgba(0, 0, 0, .46);
    --shadow-xl: 0 34px 78px rgba(0, 0, 0, .56);
  }
}
:root[data-theme='dark'] .lp {
  --navy: #f1f4ff; --body: #a3adcf; --line: #2b3466;
  --surface: #1a2255; --surface-2: #141b45; --bg: #101638;
  --tint-a: #16224e; --tint-b: #241a48; --tint-c: #2b2144;
  --accent-text: #62cdff;
  --shadow: 0 10px 30px rgba(0, 0, 0, .34);
  --shadow-lg: 0 20px 52px rgba(0, 0, 0, .46);
  --shadow-xl: 0 34px 78px rgba(0, 0, 0, .56);
}
:root[data-theme='light'] .lp {
  --navy: #141c50; --body: #5a6488; --line: #e6eaf6;
  --surface: #ffffff; --surface-2: #f6f8fe; --bg: #ffffff;
  --tint-a: #d9f1ff; --tint-b: #ffe8f3; --tint-c: #fff4d8;
  --accent-text: #0b8ecb;
  --shadow: 0 10px 30px rgba(20, 28, 80, 0.08);
  --shadow-lg: 0 20px 52px rgba(20, 28, 80, 0.13);
  --shadow-xl: 0 34px 78px rgba(20, 28, 80, 0.17);
}

.lp * { box-sizing: border-box; }
.lp img { max-width: 100%; }

/* Grid tracks default to min-width:auto, which means a wide intrinsic image
   (the hero mascot is 712px) can shove the whole layout past the viewport on
   a narrow phone. Letting every track shrink below its content is the fix. */
.hero > *, .split > *, .trio > *, .steps > *,
.prices > *, .safety > *, .devices > * { min-width: 0; }
.lp :focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 6px; }

/* --------------------------------------------------------------- layout */

.lp .wrap,
.lp section.block {
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 30px);
}

.block { padding-top: clamp(70px, 8.5vw, 116px); }

.head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(38px, 4.6vw, 58px);
}
.head.start { text-align: left; margin-inline: 0; max-width: 520px; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase;
  color: var(--accent-text); margin-bottom: 12px;
}
.kicker::before {
  content: ""; width: 9px; height: 9px; border-radius: 3px; flex: none;
  background: currentColor; transform: rotate(20deg);
}

.head h2, .split h2 {
  font-size: clamp(29px, 4.4vw, 47px); font-weight: 900;
  letter-spacing: -.035em; line-height: 1.08; margin: 0 0 14px;
  text-wrap: balance;
}
.head .sub, .split .sub {
  color: var(--body); font-weight: 640; font-size: clamp(16px, 1.55vw, 18px);
  line-height: 1.6; margin: 0; text-wrap: pretty;
}
.head .sub { margin-inline: auto; }

/* a perforated tear-off line, used sparingly as a divider */
.perf {
  height: 2px; border: 0; margin: clamp(56px, 7vw, 90px) auto 0;
  max-width: 1140px;
  background: radial-gradient(circle, var(--line) 0 46%, transparent 47%) 0 0 / 13px 2px repeat-x;
}

/* --------------------------------------------------------------- pieces */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-weight: 850; font-size: clamp(15.5px, 1.4vw, 17px);
  padding: 15px 30px; border-radius: 999px;
  border: 0; cursor: pointer; text-decoration: none; text-align: center;
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(33, 179, 243, .34);
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(33, 179, 243, .42); }
.btn:active { transform: translateY(0); }

.btn.sun {
  background: linear-gradient(135deg, var(--sun) 0%, var(--sun-deep) 100%);
  color: #3f2c00; box-shadow: 0 10px 24px rgba(237, 162, 0, .36);
}
.btn.sun:hover { box-shadow: 0 16px 32px rgba(237, 162, 0, .46); }

.btn.plain {
  background: var(--surface); color: var(--navy);
  border: 2px solid var(--line); box-shadow: none;
}
.btn.plain:hover { border-color: var(--sky); box-shadow: var(--shadow); }

.btn.ghost {
  background: rgba(255, 255, 255, .14); color: #fff;
  border: 2px solid rgba(255, 255, 255, .38); box-shadow: none;
}
.btn.ghost:hover { background: rgba(255, 255, 255, .24); box-shadow: none; }

.btn.sm { font-size: 15px; padding: 10px 20px; }
.btn .arrow { transition: transform .16s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in srgb, var(--sky) 15%, transparent);
  color: var(--accent-text);
  font-weight: 850; font-size: 14px;
  padding: 8px 17px; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--sky) 22%, transparent);
}

/* ------------------------------------------------------------------ nav */

.lp-nav {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; gap: clamp(10px, 1.8vw, 20px);
  padding: 12px clamp(14px, 3.4vw, 30px);
  background: color-mix(in srgb, var(--tint-a) 82%, transparent);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--navy) 8%, transparent);
}
.lp-nav .brand { display: flex; align-items: center; text-decoration: none; flex: none; }
.lp-logo { height: clamp(32px, 5.2vw, 40px); width: auto; display: block; }
.lp-nav .spacer { margin-left: auto; }
.lp-nav a.link {
  color: var(--body); text-decoration: none; font-weight: 780; font-size: 15.5px;
  white-space: nowrap; transition: color .15s ease;
}
.lp-nav a.link:hover { color: var(--accent-text); }

@media (max-width: 860px) {
  .lp-nav a.link:not(.keep) { display: none; }
}
@media (max-width: 380px) {
  .lp-nav a.link.keep { display: none; }
}

/* ----------------------------------------------------------------- hero */

.hero-wrap {
  position: relative; isolation: isolate;
  background: var(--bg-tint);
  padding: clamp(16px, 2.6vw, 30px) clamp(14px, 3vw, 30px) clamp(52px, 6.5vw, 88px);
  overflow: hidden;
}
/* big soft orbs floating behind the panel, for depth */
.hero-wrap .orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1;
  pointer-events: none;
}
.hero-wrap .orb.a { width: 44vw; max-width: 520px; aspect-ratio: 1; background: var(--sky); top: -14%; left: -10%; }
.hero-wrap .orb.b { width: 38vw; max-width: 440px; aspect-ratio: 1; background: var(--pink); bottom: -18%; right: -8%; }
.hero-wrap .orb.c { width: 30vw; max-width: 360px; aspect-ratio: 1; background: var(--sun); top: 42%; left: 46%; opacity: .34; }
/* melt the tint into the page below instead of ending on a hard line */
.hero-wrap::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 190px;
  background: linear-gradient(to bottom, transparent 0%, var(--bg) 100%);
  pointer-events: none; z-index: -1;
}

.hero {
  position: relative;
  max-width: 1180px; margin: 0 auto;
  background: var(--surface);
  border-radius: clamp(22px, 3vw, 40px);
  box-shadow: var(--shadow-xl);
  padding: clamp(26px, 4.2vw, 58px);
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: clamp(20px, 3.6vw, 46px); align-items: center;
  overflow: hidden;
}
.hero > * { position: relative; z-index: 2; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero .cta, .hero .proof { justify-content: center; }
  .hero .lede { margin-inline: auto; }
}

.hero h1 {
  position: relative; z-index: 1;
  font-size: clamp(35px, 6.1vw, 66px);
  /* Must clear the highlighter block on the line below. See .pop-sun::before —
     that block is positioned, so it paints on top of the previous line's text
     and will slice the descender off a "y" if the lines sit too close. */
  line-height: 1.18; letter-spacing: -.038em; font-weight: 900;
  margin: 20px 0 20px; text-wrap: balance;
}
.hero h1 .pop-sky { color: var(--accent-text); }
.hero h1 .pop-sun {
  position: relative; isolation: isolate;
  color: #3d2a00; padding: 0 .07em; white-space: nowrap;
}
.hero h1 .pop-sun::before {
  content: "";
  position: absolute;
  /* The top inset starts the block at roughly cap height rather than at the
     top of the font's content area. That is both the correct marker-pen look
     and what keeps it out of the descender zone of the line above: at .07em it
     overlapped the "y" of "anywhere" almost exactly. */
  inset: .24em -.09em .08em;
  background: linear-gradient(100deg, var(--sun) 0%, #ffe083 100%);
  border-radius: .26em;
  /* Kept shallow so the raised corner does not climb back into the line above. */
  transform: rotate(-1deg);
  z-index: -1;
}

.hero .lede {
  font-size: clamp(16.5px, 1.65vw, 19.5px); font-weight: 640;
  color: var(--body); max-width: 510px; line-height: 1.6; margin: 0 0 30px;
  text-wrap: pretty;
}

.cta { display: flex; gap: 13px; flex-wrap: wrap; }

.proof { display: flex; align-items: center; gap: 13px; margin-top: 28px; flex-wrap: wrap; }
.proof .dots { display: flex; flex: none; }
.proof .dots span {
  width: 40px; height: 40px; border-radius: 50%;
  border: 3px solid var(--surface); margin-left: -10px;
  display: grid; place-items: center; font-size: 19px; line-height: 1;
  box-shadow: var(--shadow);
}
.proof .dots span:first-child { margin-left: 0; }
.proof .txt { font-weight: 850; font-size: 14.5px; text-align: left; }
.proof .txt small { display: block; color: var(--body); font-weight: 650; font-size: 13px; margin-top: 1px; }

/* ------------------------------------------------------- hero artwork */

.art { position: relative; display: grid; place-items: center; min-height: clamp(250px, 34vw, 380px); }

/* the bold solid blob: a soft squircle, not a perfect circle, so a wide
   wordmark sits on it comfortably */
.art .blob {
  position: absolute; z-index: 1;
  width: min(430px, 90%); aspect-ratio: 1 / .84;
  background: linear-gradient(150deg, var(--sky) 0%, #38c4f7 45%, var(--grape) 100%);
  border-radius: 46% 54% 50% 50% / 52% 48% 52% 48%;
  transform: rotate(-5deg);
  animation: morph 14s ease-in-out infinite;
}
/* the warm blob sits *behind* the cool one and only peeks out at the corner,
   so the two colours never wash into mud where they overlap */
.art .blob.two {
  z-index: 0;
  width: min(340px, 74%); aspect-ratio: 1 / .9;
  background: linear-gradient(150deg, var(--sun) 0%, var(--pink) 100%);
  transform: rotate(10deg) translate(62px, 52px);
  animation-duration: 18s; animation-direction: reverse;
}
@keyframes morph {
  0%, 100% { border-radius: 46% 54% 50% 50% / 52% 48% 52% 48%; }
  50%      { border-radius: 54% 46% 46% 54% / 45% 55% 45% 55%; }
}

.art .shot { position: relative; z-index: 2; width: min(430px, 94%); height: auto; animation: bob 6s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0) rotate(-.7deg); } 50% { transform: translateY(-11px) rotate(.7deg); } }

/* small floating cards over the artwork */
.mini {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px; padding: 11px 15px;
  box-shadow: var(--shadow-lg);
  font-weight: 850; font-size: 14px; text-align: left;
  animation: bob 7s ease-in-out infinite;
  max-width: 62%;
}
.mini small { display: block; font-weight: 650; font-size: 12px; color: var(--body); white-space: nowrap; }
.mini .ic { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; font-size: 16px; flex: none; }
.mini.one { left: -4px; top: 8%; animation-delay: -1.4s; }
.mini.two { right: -4px; bottom: 10%; animation-delay: -3.4s; }

/* the little rounded icon tile, straight from the reference */
.tile {
  position: absolute; z-index: 4;
  width: 56px; height: 56px; border-radius: 18px;
  display: grid; place-items: center; font-size: 28px; line-height: 1;
  box-shadow: var(--shadow-lg);
  animation: bob 8s ease-in-out infinite;
}
.tile.one { right: 6%; top: -2%; background: linear-gradient(150deg, #fff6d8, #ffe7a3); transform: rotate(-9deg); animation-delay: -2.2s; }
.tile.two { left: 2%; bottom: 4%; background: linear-gradient(150deg, #ffe4ef, #ffc9de); transform: rotate(8deg); animation-delay: -5s; }

@media (max-width: 900px) {
  .mini.one { left: 0; } .mini.two { right: 0; }
}
@media (max-width: 620px) {
  .mini { font-size: 12.5px; padding: 9px 12px; max-width: 74%; }
  .mini small { font-size: 11px; }
  .mini .ic { width: 26px; height: 26px; font-size: 13px; border-radius: 8px; }
  .tile { width: 42px; height: 42px; font-size: 19px; border-radius: 13px; }
}
@media (max-width: 420px) {
  .mini.two, .tile.two { display: none; }
}

/* confetti dots + ink drops scattered inside the hero panel */
.confetti { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.confetti i { position: absolute; border-radius: 50%; animation: bob 9s ease-in-out infinite; }
.confetti i.sq { border-radius: 5px; transform: rotate(18deg); }
.confetti i.ring { background: none !important; border: 3px solid currentColor; }
/* a proper ink droplet: round bottom, pointed top */
.confetti i.drop { border-radius: 50% 50% 50% 0; transform: rotate(-45deg); animation-name: drift; }
@keyframes drift {
  0%, 100% { transform: rotate(-45deg) translate(0, 0); }
  50%      { transform: rotate(-45deg) translate(4px, -14px); }
}

/* ------------------------------------------------- device band (hero foot) */

.band { max-width: 1180px; margin: clamp(28px, 3.4vw, 42px) auto 0; text-align: center; }
.band .label {
  display: block; font-size: 12.5px; font-weight: 900; letter-spacing: .14em;
  text-transform: uppercase; color: var(--body); margin-bottom: 15px;
}
.devices { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
  border: 1px solid color-mix(in srgb, var(--navy) 9%, transparent);
  border-radius: 999px; padding: 9px 16px;
  font-weight: 800; font-size: 14.5px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: transform .15s ease;
}
.chip:hover { transform: translateY(-2px); }
.chip .tick {
  width: 18px; height: 18px; border-radius: 50%; flex: none;
  background: var(--mint); color: #04352d;
  display: grid; place-items: center; font-size: 10px; font-weight: 900;
}

/* --------------------------------------------------------------- cards */

.trio { display: grid; gap: clamp(16px, 2vw, 26px); grid-template-columns: repeat(auto-fit, minmax(262px, 1fr)); }
/* --tone is set per card inline; these are the safety nets */
.card, .safe, .mock .tag { --tone: var(--sky); }
.card {
  position: relative; overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 2.6vw, 32px) clamp(20px, 2.2vw, 28px);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card::after {
  content: ""; position: absolute; inset: auto -40px -60px auto;
  width: 150px; height: 150px; border-radius: 50%;
  /* blurred so it reads as a corner glow rather than a hard disc, which is
     what it looked like against the dark surface */
  background: var(--tone); opacity: .16; filter: blur(26px);
  transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--tone) 40%, var(--line)); }
.card:hover::after { transform: scale(1.35); }
.card > * { position: relative; z-index: 1; }
.card .ic {
  width: 58px; height: 58px; border-radius: 18px;
  display: grid; place-items: center; font-size: 27px; margin-bottom: 18px;
  background: color-mix(in srgb, var(--tone) 16%, transparent);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone) 22%, transparent);
}
.card h3 { margin: 0 0 9px; font-size: 20.5px; font-weight: 880; letter-spacing: -.015em; }

/* Word-led cards: the heading carries the weight an icon used to, echoing the
   hero. The lead word is stacked above the rest so the three cards line up as a
   rhythm across the row. */
.card.wordy h3 {
  margin: 0 0 14px;
  font-weight: 900;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.card.wordy h3 .lead {
  display: block;
  font-size: clamp(30px, 3.5vw, 40px);
  /* Mixing toward --navy keeps pale tones (the yellow) legible on white and
     lifts them on dark, because --navy flips with the theme. */
  color: color-mix(in srgb, var(--tone) 74%, var(--navy));
}
.card.wordy h3 .rest {
  display: block;
  font-size: clamp(18px, 1.9vw, 22px);
  font-weight: 850;
  letter-spacing: -.02em;
  color: var(--navy);
}
.card p { margin: 0; color: var(--body); font-weight: 640; font-size: 15.5px; line-height: 1.62; }

/* --------------------------------------------------------------- split */

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 74px); align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split .head.start { text-align: center; margin-inline: auto; max-width: 600px; }
  .split .ticks { max-width: 520px; margin-inline: auto; }
  .split .cta { justify-content: center; }
}

.ticks { list-style: none; padding: 0; margin: 26px 0 30px; display: grid; gap: 13px; }
.ticks li {
  display: flex; gap: 12px; align-items: flex-start;
  font-weight: 660; font-size: 16px; line-height: 1.5; color: var(--body);
}
/* the text is one flex item so the bold lead stays inline with the rest */
.ticks li > span { flex: 1; min-width: 0; }
.ticks li b { color: var(--navy); font-weight: 850; }
.ticks li::before {
  content: "✓"; flex: none; margin-top: 1px;
  width: 23px; height: 23px; border-radius: 8px;
  display: grid; place-items: center; font-size: 12px; font-weight: 900;
  background: color-mix(in srgb, var(--mint) 20%, transparent);
  /* mixing toward the text colour keeps this legible in both themes */
  color: color-mix(in srgb, var(--mint) 62%, var(--navy));
}

/* ------------------------------------------- illustration: paper stack */

.stack { position: relative; display: grid; place-items: center; min-height: clamp(280px, 34vw, 380px); }
.stack .blob {
  position: absolute; width: min(400px, 92%); aspect-ratio: 1 / .92;
  background: linear-gradient(155deg, var(--mint) 0%, var(--sky) 100%);
  border-radius: 48% 52% 44% 56% / 50% 46% 54% 50%;
  animation: morph 16s ease-in-out infinite;
}
/* Each sheet's resting position lives in --x/--y/--r so the float keyframes
   can rebuild the whole transform. Setting `transform` here and animating it
   separately would just clobber the placement. */
.sheet {
  position: absolute; z-index: 2;
  --x: 0%; --y: 0%; --r: 0deg;
  width: min(212px, 54%); background: var(--paper);
  border-radius: 15px; padding: 17px 16px;
  box-shadow: 0 16px 40px rgba(20, 28, 80, .22);
  transform: translate(var(--x), var(--y)) rotate(var(--r));
  animation: floatSheet 8s ease-in-out infinite;
}
@keyframes floatSheet {
  0%, 100% { transform: translate(var(--x), var(--y)) rotate(var(--r)); }
  50%      { transform: translate(var(--x), calc(var(--y) - 13px)) rotate(calc(var(--r) + 2deg)); }
}
.sheet i { display: block; height: 8px; border-radius: 999px; background: var(--paper-line); margin-bottom: 9px; }
.sheet i:last-child { margin-bottom: 0; }
.sheet i.k { width: 58%; }
.sheet i.s { width: 42%; background: var(--sky); }
.sheet i.y { width: 34%; background: var(--sun); }
.sheet i.p { width: 48%; background: var(--pink); }
.sheet.a { --x: -46%; --y: -40%; --r: -10deg; animation-delay: -1s; }
.sheet.b { --x: 4%; --y: -2%; --r: 4deg; z-index: 3; animation-delay: -3.5s; }
.sheet.c { --x: 48%; --y: 38%; --r: -4deg; z-index: 1; animation-delay: -5.5s; }
@media (max-width: 420px) { .sheet.c { display: none; } }

/* ------------------------------------------------- illustration: queue */

.mock {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 26px; box-shadow: var(--shadow-lg);
  padding: 18px; max-width: 460px; margin-inline: auto; width: 100%;
}
.mock .top {
  display: flex; align-items: center; gap: 9px;
  padding: 2px 6px 15px; border-bottom: 1px solid var(--line); margin-bottom: 13px;
}
.mock .top b { font-size: 15px; font-weight: 880; }
.mock .top .lights { display: flex; gap: 5px; margin-left: auto; }
.mock .top .lights i { width: 9px; height: 9px; border-radius: 50%; display: block; background: var(--line); }
.mock .top .lights i:first-child { background: color-mix(in srgb, var(--pink) 60%, transparent); }
.mock .top .lights i:nth-child(2) { background: color-mix(in srgb, var(--sun) 70%, transparent); }
.mock .job {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 13px; border-radius: 15px; background: var(--surface-2);
  margin-bottom: 9px;
}
.mock .job:last-child { margin-bottom: 0; }
.mock .job .doc { width: 34px; height: 34px; border-radius: 11px; flex: none; display: grid; place-items: center; font-size: 16px; background: color-mix(in srgb, var(--sky) 14%, transparent); }
.mock .job .who { min-width: 0; flex: 1; }
.mock .job .who b { display: block; font-size: 14px; font-weight: 850; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock .job .who small { display: block; font-size: 12px; font-weight: 640; color: var(--body); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock .tag {
  flex: none; font-size: 11.5px; font-weight: 900; letter-spacing: .03em;
  padding: 5px 11px; border-radius: 999px; white-space: nowrap;
  background: color-mix(in srgb, var(--tone) 18%, transparent);
  color: color-mix(in srgb, var(--tone) 64%, var(--navy));
}
.mock .foot {
  margin: 14px 4px 2px; font-size: 13px; font-weight: 660; line-height: 1.5; color: var(--body);
}
.mock .tag.live::before {
  content: ""; display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; margin-right: 6px; vertical-align: 1px;
  animation: blip 1.6s ease-in-out infinite;
}
@keyframes blip { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.7); } }

/* --------------------------------------------------------------- steps */

.steps {
  display: grid; gap: clamp(26px, 3vw, 34px);
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  position: relative;
}
/* tear-off line joining the three numbers, desktop only */
.steps::before {
  content: ""; position: absolute; top: 33px; left: 16%; right: 16%; height: 2px;
  background: radial-gradient(circle, var(--line) 0 46%, transparent 47%) 0 0 / 12px 2px repeat-x;
}
@media (max-width: 830px) { .steps::before { display: none; } }

.step { text-align: center; position: relative; }
.step .num {
  width: 66px; height: 66px; border-radius: 22px; margin: 0 auto 20px;
  display: grid; place-items: center;
  font-size: 26px; font-weight: 900; color: #fff;
  box-shadow: var(--shadow-lg);
  transform: rotate(-6deg);
  border: 4px solid var(--bg);
  transition: transform .2s ease;
}
.step:hover .num { transform: rotate(4deg) scale(1.05); }
.step:nth-child(1) .num { background: linear-gradient(140deg, var(--sky), var(--sky-deep)); }
.step:nth-child(2) .num { background: linear-gradient(140deg, var(--sun), var(--sun-deep)); color: #3f2c00; }
.step:nth-child(3) .num { background: linear-gradient(140deg, var(--pink), var(--pink-deep)); }
.step h3 { margin: 0 0 9px; font-size: 20.5px; font-weight: 880; letter-spacing: -.015em; }
.step p { margin: 0; color: var(--body); font-weight: 640; font-size: 15.5px; line-height: 1.62; max-width: 330px; margin-inline: auto; }

/* -------------------------------------------------------------- safety */

.safety { display: grid; gap: clamp(14px, 1.8vw, 20px); grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.safe {
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: 20px; padding: 22px 20px;
}
.safe .ic {
  width: 42px; height: 42px; border-radius: 13px; margin-bottom: 14px;
  display: grid; place-items: center; font-size: 20px;
  background: color-mix(in srgb, var(--tone) 17%, transparent);
}
.safe h3 { margin: 0 0 7px; font-size: 16.5px; font-weight: 880; }
.safe p { margin: 0; color: var(--body); font-weight: 640; font-size: 14.5px; line-height: 1.58; }

/* ------------------------------------------------------------- pricing */

.prices { display: grid; gap: clamp(18px, 2.2vw, 28px); grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); align-items: start; }
.price {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: 26px;
  padding: 32px 26px; box-shadow: var(--shadow); text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price.best {
  border-color: transparent;
  background: var(--loud);
  color: #fff; box-shadow: var(--shadow-xl);
  transform: translateY(-10px);
  overflow: hidden;
}
.price.best:hover { transform: translateY(-15px); }
@media (max-width: 830px) { .price.best, .price.best:hover { transform: none; } }
.price.best h3, .price.best .cost { color: #fff; }
.price.best .cost span { color: rgba(255, 255, 255, .78); }
.price.best li::before { background: rgba(255, 255, 255, .22); color: #fff; }

.price .ribbon {
  position: absolute; top: 14px; right: 14px;
  background: linear-gradient(135deg, var(--sun), var(--sun-deep));
  color: #3f2c00; border-radius: 999px;
  font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 13px; white-space: nowrap; box-shadow: 0 6px 16px rgba(237, 162, 0, .4);
}
.price h3 { margin: 4px 0 6px; font-size: 15px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-text); }
.price.best h3 { color: rgba(255, 255, 255, .85); }
.price .cost { font-size: clamp(40px, 4.4vw, 50px); font-weight: 900; letter-spacing: -.045em; line-height: 1.02; }
.price .cost span { font-size: 15px; font-weight: 750; color: var(--body); letter-spacing: 0; }
.price ul { list-style: none; padding: 0; margin: 22px 0 26px; text-align: left; }
.price li { padding: 8px 0 8px 29px; position: relative; font-weight: 690; font-size: 15px; }
.price li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  width: 20px; height: 20px; border-radius: 7px; font-size: 11px; font-weight: 900;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--mint) 22%, transparent);
  color: color-mix(in srgb, var(--mint) 62%, var(--navy));
}
.price .btn { width: 100%; }
.price .note { margin: 14px 0 0; font-size: 13px; font-weight: 660; color: var(--body); }
.price.best .note { color: rgba(255, 255, 255, .72); }

/* ----------------------------------------------------------------- faq */

.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; padding: 17px 21px; box-shadow: var(--shadow);
  transition: border-color .18s ease;
}
.faq details[open] { border-color: color-mix(in srgb, var(--sky) 40%, var(--line)); }
.faq summary {
  cursor: pointer; list-style: none; font-weight: 850; font-size: 16.5px;
  display: flex; justify-content: space-between; gap: 14px; align-items: center;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 21px; font-weight: 900; color: var(--accent-text); line-height: 1;
  width: 28px; height: 28px; flex: none; border-radius: 50%;
  background: color-mix(in srgb, var(--sky) 14%, transparent);
  display: grid; place-items: center;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "\2212"; transform: rotate(180deg); }
.faq p { margin: 13px 0 0; color: var(--body); font-weight: 640; font-size: 15.5px; line-height: 1.65; }

/* -------------------------------------------------------------- finale */

.finale-wrap { padding: clamp(74px, 8.5vw, 118px) clamp(18px, 4vw, 30px) clamp(64px, 7vw, 96px); }
.finale {
  position: relative; overflow: hidden;
  max-width: 1140px; margin: 0 auto;
  background: var(--loud);
  border-radius: clamp(26px, 3.4vw, 40px);
  padding: clamp(48px, 6vw, 78px) clamp(24px, 4vw, 40px);
  text-align: center; color: #fff;
  box-shadow: var(--shadow-xl);
}
.finale h2 { font-size: clamp(28px, 4.4vw, 46px); font-weight: 900; letter-spacing: -.035em; margin: 0 0 14px; text-wrap: balance; }
.finale p { font-weight: 660; margin: 0 auto 30px; color: rgba(255, 255, 255, .84); font-size: clamp(16px, 1.6vw, 18px); max-width: 480px; }
.finale .glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .45; }
.finale .glow.a { width: 340px; height: 340px; background: var(--sky); top: -140px; left: -70px; }
.finale .glow.b { width: 300px; height: 300px; background: var(--sun); bottom: -150px; right: -60px; opacity: .35; }
.finale .drops { position: absolute; inset: 0; pointer-events: none; }
.finale .drops i {
  position: absolute; display: block; background: rgba(255, 255, 255, .38);
  border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  animation: drift 9s ease-in-out infinite;
}
.finale > * { position: relative; z-index: 2; }
.finale .cta { justify-content: center; }

/* -------------------------------------------------------------- footer */

.lp-footer {
  border-top: 1px solid var(--line);
  padding: 34px clamp(18px, 4vw, 30px) 50px; text-align: center;
  color: var(--body); font-weight: 640; font-size: 14.5px;
}
.lp-footer .mark { height: 34px; width: auto; opacity: .9; margin-bottom: 14px; }
.lp-footer nav { display: flex; flex-wrap: wrap; gap: 8px 18px; justify-content: center; margin-bottom: 14px; }
.lp-footer a { color: var(--accent-text); font-weight: 820; text-decoration: none; }
.lp-footer a:hover { text-decoration: underline; }
.lp-footer p { margin: 0; max-width: 520px; margin-inline: auto; line-height: 1.6; }
.lp-footer .fine { margin-top: 10px; font-size: 13px; opacity: .8; }

/* --------------------------------------------------------- scroll reveal */
/* only applied once JS confirms it can undo it, so no JS means no hidden text */

.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.in {
  opacity: 1; transform: none;
  transition: opacity .6s cubic-bezier(.2, .7, .3, 1), transform .6s cubic-bezier(.2, .7, .3, 1);
}

/* --------------------------------------------------------------- motion */

@media (prefers-reduced-motion: reduce) {
  .lp *, .lp *::before, .lp *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
