/* Onboarding flow — ported from the scriben-demo reference HTML, matching the
   onboarding/ SVG designs (hero → sign-in → pair → bluetooth → connected →
   record → try-saying showcase → done). Every selector is scoped under
   #onboarding so nothing collides with the app's own classes. Local --ob-*
   tokens keep the reference palette without touching the app's :root. */

#onboarding {
  --ob-paper: #f5f5f3;
  --ob-soft: #f4f2ec;
  --ob-ink: #1f1f1f;
  --ob-ink-soft: #3d3d3a;
  --ob-gray: #6b7280;
  --ob-gray-light: #a0a39c;
  --ob-amber: #e7a33e;
  --ob-amber-deep: #c9892a;
  --ob-amber-soft: #f8e9ce;
  --ob-amber-tint: #fcf5e6;
  --ob-gold: #b07d1e;
  --ob-green: #2eb67d;
  --ob-line: #eceae4;
  --ob-line-soft: #f2f0ea;
  --ob-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  font-family: var(--font-sans);
  color: var(--ob-ink);
  font-size: 14px;
  /* Design-stage scaling: every size below is authored in px against the
     1924x1082 design canvas; this uniform zoom fits that stage to the
     viewport (shrinks on short windows, grows on large ones). */
  zoom: min(calc(100vw / 1924px), calc(100vh / 1082px));
}
#onboarding.show { display: block; }
#onboarding .ob-screen { position: absolute; inset: 0; display: none; flex-direction: column; background: #fff; }
#onboarding .ob-screen.on { display: flex; }
#onboarding .ob-logo { height: 49px; width: auto; position: absolute; top: 52px; left: 140px; z-index: 5; }
#onboarding .ob-skip { position: absolute; top: 40px; right: 48px; z-index: 5; font-size: 13px; font-weight: 600; color: var(--ob-gray-light); cursor: pointer; background: none; border: none; font-family: inherit; }
#onboarding .ob-skip:hover { color: var(--ob-ink); }
#onboarding .ob-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
#onboarding .ob-dots span { width: 7px; height: 7px; border-radius: 50%; background: #e2dfd6; transition: 0.2s; }
#onboarding .ob-dots span.on { background: var(--ob-gold); width: 22px; border-radius: 5px; }
#onboarding .cta { background: linear-gradient(180deg, #3b3b3b, #1f1f1f); color: #fff; border: none; border-radius: 8px; padding: 12px 30px; font-size: 13.5px; font-weight: 600; font-family: inherit; cursor: pointer; letter-spacing: 3px; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18); }
#onboarding .cta:hover { filter: brightness(1.12); }
/* 微信-4: greyed/disabled Continue (step 4 gates it until each case is done). */
#onboarding .cta[disabled] { opacity: 0.4; cursor: default; box-shadow: none; pointer-events: none; }
#onboarding .cta[disabled]:hover { filter: none; }

/* --- hero --- */
/* Positions/sizes measured off "Sci OB SVG 2/1.Welcome.svg" at 1924x1082:
   left text x217 y332 (36px/1.42), right text x1308 y580 (33px/1.5),
   title cap-height ~120px (y833-953), photo full-bleed. */
#onboarding #ob-hero { background: #f7f6f2; cursor: pointer; }
#onboarding .hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
#onboarding .hero-left { position: absolute; left: 11.3%; top: 29.5%; font-size: 41px; font-weight: 700; line-height: 1.46; color: #2e2c28; }
#onboarding .hero-left b { color: var(--ob-amber); }
#onboarding .hero-right { position: absolute; left: 68%; top: 52.3%; font-size: 39px; color: #3c3a36; line-height: 1.55; }
#onboarding .hero-title { position: absolute; left: 0; right: 0; bottom: 10.6%; z-index: 1; font-family: var(--ob-serif); font-size: 168px; font-weight: 700; letter-spacing: -0.042em; text-align: center; line-height: 1; white-space: nowrap; color: #131311; }

/* --- sign in --- */
#onboarding #ob-signin { flex-direction: row; background: #fff; }
#onboarding .si-left { width: 48%; position: relative; flex-shrink: 0; background: #fff; overflow: hidden; }
#onboarding .si-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: translate(27%, 4%); }
#onboarding .si-right { position: relative; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 208px 124px 40px 40px; background: linear-gradient(180deg, #f8f9f6, #fefefe); }
#onboarding .si-welcome { font-size: 24px; letter-spacing: 6px; color: #717171; font-weight: 500; margin-bottom: 20px; }
#onboarding .si-logo-img { height: 100px; width: auto; margin-bottom: 23px; }
#onboarding .si-sub { font-size: 19px; color: #717171; text-align: center; line-height: 1.5; max-width: 360px; margin-bottom: 93px; }
#onboarding .si-btn { width: 540px; display: flex; align-items: center; justify-content: center; gap: 9px; height: 48px; border-radius: 999px; font-size: 17px; font-weight: 500; cursor: pointer; font-family: inherit; border: none; margin-bottom: 14px; transition: 0.15s; box-shadow: 0 1px 3px rgba(31, 31, 31, 0.06); }
#onboarding .si-google { background: #e8e8e8; color: var(--ob-ink); }
#onboarding .si-google:hover { background: #dedede; }
#onboarding .si-btn svg { width: 16px; height: 16px; }

/* --- step layouts (1 / 2 / 3 / connected) --- */
#onboarding .stepwrap { flex: 1; display: flex; align-items: center; padding: 80px 70px 60px; gap: 40px; }
/* 3-column template for steps 1 & 3: pen photo | STEP + state table | light card */
#onboarding .step-cols { padding: 90px 90px 60px; gap: 0; }
#onboarding .step-pen { width: 28.5%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; position: relative; align-self: stretch; }
#onboarding .pen-callout { position: absolute; left: 62.6%; top: 37.6%; width: 195px; height: 2px; background: #cfcfcf; }
#onboarding .pen-callout::before { content: ""; position: absolute; right: 100%; top: 0; width: 68px; height: 2px; background: #cfcfcf; transform-origin: right center; transform: rotate(28.8deg); }
#onboarding .step-mid { width: 340px; flex-shrink: 0; margin: 0 44px 0 0; }
#onboarding .step-note { font-size: 28px; color: #808898; line-height: 1.5; margin: 20px 0 5px; }
#onboarding .solution-h { font-family: var(--ob-serif); font-size: 54px; font-weight: 700; margin: 0 0 24px; }
#onboarding .step-main { flex: 1; max-width: 800px; margin-left: auto; }
#onboarding .step-h.step-h-top { white-space: nowrap; font-size: 80px; margin: 0 0 47px; }
#onboarding .cta-row.right { display: flex; justify-content: flex-end; margin-top: 30px; }
#onboarding .step-eyebrow { display: flex; align-items: baseline; gap: 22px; margin-bottom: 0; }
#onboarding .step-eyebrow .s { font-family: var(--ob-serif); font-size: 66px; font-weight: 600; letter-spacing: 1px; }
#onboarding .step-eyebrow .n { font-family: var(--ob-serif); font-size: 148px; font-weight: 700; color: var(--ob-gold); line-height: 0.8; }
#onboarding .step-h { font-family: var(--ob-serif); font-size: 66px; font-weight: 700; letter-spacing: -1px; line-height: 1.05; margin: 0 0 18px; }
#onboarding .step-h.goldline { color: #9a6b1d; }
#onboarding .blt { position: relative; padding-left: 49px; font-size: 25px; color: #616161; line-height: 1.4; margin-bottom: 32px; max-width: 510px; }
#onboarding .blt::before { content: ""; position: absolute; left: 0; top: 8px; width: 21px; height: 21px; border-radius: 50%; background: var(--ob-gold); }
#onboarding .blt b { color: var(--ob-ink); }
#onboarding .pen-err { color: #b3402a; font-size: 14px; line-height: 1.5; min-height: 21px; max-width: 430px; }
#onboarding .light-card { background: #fbf8f3; border-radius: 22px; padding: 40px 48px 84px; max-width: 480px; box-shadow: 0 6px 26px rgba(31, 31, 31, 0.05); }
#onboarding .step-main .light-card { max-width: none; }
#onboarding .light-card .tag { display: inline-block; background: #ba9e73; color: #fff; font-size: 16px; font-weight: 700; letter-spacing: 1px; padding: 8px 22px; border-radius: 16px; margin-bottom: 44px; }
#onboarding .light-card .lrow { display: flex; align-items: center; gap: 56px; margin-bottom: 36px; }
#onboarding .light-dot { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
#onboarding .light-dot.blue { background: radial-gradient(circle at 35% 30%, #5b82d0, #2f5cb8); }
#onboarding .light-dot.red { background: radial-gradient(circle at 35% 30%, #cf5c5c, #b23232); }
#onboarding .light-dot.blink { animation: ob-dot-blink 1.1s infinite; }
@keyframes ob-dot-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.55; } }
@keyframes ob-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
#onboarding .light-card h3 { font-family: var(--ob-serif); font-size: 70px; font-weight: 700; margin: 0; }
#onboarding .light-card p { font-size: 34px; line-height: 1.4; color: #5a5755; margin: 0; max-width: 500px; }
/* light-state table — standalone in the middle column, per the design */
#onboarding .statebox { font-size: 18px; }
#onboarding .statebox .row { display: flex; justify-content: space-between; align-items: center; height: 55px; padding: 0 2px; border-bottom: 1px solid #d8d8d8; }
#onboarding .statebox .row b { font-weight: 700; }
#onboarding .statebox .ind { display: flex; align-items: center; gap: 10px; color: #7e7e7e; }
#onboarding .statebox .ind i { width: 13px; height: 13px; border-radius: 50%; display: inline-block; font-style: normal; }
/* design photo / illustration assets */
#onboarding .ob-pen-img { position: absolute; height: 1010px; width: auto; max-width: none; top: 2px; left: 49px; object-fit: contain; }
#onboarding .ob-girl-img { max-width: 100%; max-height: 887px; object-fit: contain; }
#onboarding .ob-fist-img { max-width: 100%; max-height: 671px; object-fit: contain; }
#onboarding .conn-title { font-family: var(--ob-serif); font-size: 108px; font-weight: 700; color: #a86c16; letter-spacing: -0.04em; white-space: nowrap; margin-bottom: 30px; }
#onboarding .conn-sub { font-size: 39px; color: #717171; line-height: 2.2; max-width: 640px; margin-bottom: 195px; }
#onboarding .fistbump { display: flex; align-items: center; justify-content: center; align-self: flex-end; margin-bottom: 49px; }

/* --- step 4: showcase --- */
#onboarding .stage4 { flex: 1; display: flex; min-height: 0; }
#onboarding .s4-left { width: 43%; flex-shrink: 0; padding: 134px 54px 50px 128px; display: flex; flex-direction: column; }
#onboarding .s4-right { flex: 1; background: #fff; padding: 230px 50px 40px; display: flex; flex-direction: column; min-width: 0; overflow-y: auto; }
#onboarding .s4-arrow { align-self: center; display: inline-flex; }
#onboarding .s4-arrow svg { width: 125px; height: 16px; }
#onboarding .pager { display: flex; gap: 39px; margin: 0 0 52px; }
#onboarding .pg { font-size: 32px; font-weight: 500; color: #7c7a6a; cursor: pointer; line-height: 1; }
#onboarding .pg:hover { color: var(--ob-ink-soft); }
#onboarding .pg.on { color: #000; font-weight: 700; }
#onboarding .trysay { font-size: 34px; color: #717171; margin-bottom: 24px; }
#onboarding .quote { font-family: var(--ob-serif); font-size: 18px; font-weight: 700; line-height: 1.5; color: #2b2b33; margin-bottom: 28px; max-width: 630px; }
#onboarding .didwhat { font-size: 16px; color: #717171; line-height: 1.55; max-width: 610px; margin-bottom: 0; }
#onboarding .rec-block { width: 410px; margin-left: -93px; flex-shrink: 0; }
#onboarding .rec-hint { font-size: 20px; color: #8a8680; text-align: right; line-height: 1.5; margin-bottom: 45px; }
#onboarding .wave { display: flex; align-items: center; justify-content: flex-end; gap: 2px; height: 54px; overflow: hidden; }
#onboarding .wave span { width: 4px; border-radius: 2px; background: #c9962e; opacity: 0.9; transform-origin: center; }
#onboarding .wave.live span { animation: ob-bob 0.7s ease-in-out infinite alternate; }
@keyframes ob-bob { from { transform: scaleY(0.35); } to { transform: scaleY(1.25); } }
/* step-4 cream result card (the design's big beige panel, overlapping Vera) */
#onboarding .s4-card { background: #f2efe9; border-radius: 24px; padding: 100px 86px 90px; margin: -158px 73px 0 32px; position: relative; z-index: 1; flex-shrink: 0; }
#onboarding .s4-card-label { font-size: 20px; color: #4a4a55; margin-bottom: 10px; }
#onboarding .s4-card-title { font-family: var(--ob-serif); font-size: 40px; font-weight: 700; color: #3a3a52; margin-bottom: 26px; }
/* idle: white input-preview card with decorative toolbar */
#onboarding .s4-input { background: #fff; border-radius: 14px; padding: 16px 18px; min-height: 148px; display: flex; flex-direction: column; }
#onboarding .s4-input-ic { color: #1f1f1f; margin-bottom: 8px; }
#onboarding .s4-input-ic svg { width: 20px; height: 20px; }
#onboarding .s4-input-text { font-size: 17px; color: #303030; line-height: 1.6; flex: 1; }
#onboarding .s4-tools { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
#onboarding .s4-tool { width: 28px; height: 28px; border: 1px solid #e3e0d8; border-radius: 8px; color: #8a8680; display: flex; align-items: center; justify-content: center; }
#onboarding .s4-tool svg { width: 14px; height: 14px; }
#onboarding .s4-auto { border: 1px solid #e3e0d8; border-radius: 8px; padding: 5px 10px; font-size: 11px; color: #8a8680; }
#onboarding .s4-status { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--ob-line); border-radius: 14px; padding: 18px 20px; font-size: 14px; color: var(--ob-ink-soft); }
#onboarding .s4-dot { width: 10px; height: 10px; border-radius: 50%; background: #c43; animation: ob-blink 1s ease-in-out infinite; flex-shrink: 0; }
@keyframes ob-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.25; } }
#onboarding .s4-spin { width: 14px; height: 14px; border: 2px solid var(--ob-line); border-top-color: var(--ob-gold); border-radius: 50%; animation: ob-spin 0.8s linear infinite; flex-shrink: 0; }
@keyframes ob-spin { to { transform: rotate(360deg); } }
#onboarding .ob-vera-img { align-self: flex-end; height: 645px; width: auto; margin: -364px 127px 0 0; flex-shrink: 0; }
#onboarding .r-head { display: flex; align-items: center; gap: 10px; margin-bottom: 13px; flex-wrap: wrap; }
#onboarding .r-tag { display: inline-flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.3px; color: var(--ob-amber-deep); background: var(--ob-amber-soft); padding: 5px 11px; border-radius: 9px; }
#onboarding .r-tag svg { width: 12px; height: 12px; }
#onboarding .r-tag.green { color: #1f9d6b; background: #e7f6ef; }
#onboarding .r-title { font-family: var(--ob-serif); font-size: 23px; font-weight: 700; letter-spacing: -0.4px; }
/* kind-specific result cards (the demo designs, now filled with REAL data) */
#onboarding .rcard { background: #fff; border: 1px solid var(--ob-line); border-radius: 18px; padding: 18px 20px; box-shadow: 0 2px 12px rgba(31, 31, 31, 0.04); margin-bottom: 12px; }
#onboarding .rcard:last-child { margin-bottom: 0; }
#onboarding .mailrow { display: flex; gap: 8px; font-size: 13px; padding: 5px 0; border-bottom: 1px solid var(--ob-line-soft); }
#onboarding .mailrow .k { color: var(--ob-gray-light); width: 58px; flex-shrink: 0; }
#onboarding .mailrow .v { color: var(--ob-ink); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
#onboarding .mailbody { font-size: 13px; line-height: 1.6; color: var(--ob-ink-soft); padding: 11px 0 2px; white-space: pre-line; }
#onboarding .rt-top { display: flex; align-items: center; gap: 12px; }
#onboarding .rt-ic { width: 36px; height: 36px; border-radius: 10px; background: var(--ob-amber-tint); color: var(--ob-amber-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#onboarding .rt-ic svg { width: 17px; height: 17px; }
#onboarding .rt-name { font-size: 14.5px; font-weight: 600; }
#onboarding .rt-when { font-size: 12px; color: var(--ob-amber-deep); font-weight: 600; margin-top: 2px; }
#onboarding .mem-fact { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ob-ink-soft); line-height: 1.55; }
#onboarding .mem-fact svg { width: 14px; height: 14px; color: var(--ob-amber-deep); flex-shrink: 0; }
#onboarding .done-list { display: flex; flex-direction: column; gap: 10px; }
#onboarding .done { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--ob-line); border-radius: 14px; padding: 13px 15px; }
#onboarding .done .chk { width: 27px; height: 27px; border-radius: 50%; background: var(--ob-green); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
#onboarding .done .chk svg { width: 14px; height: 14px; }
#onboarding .done .dt { font-size: 14px; font-weight: 600; color: var(--ob-ink); }
#onboarding .done .ds { font-size: 12.5px; color: var(--ob-gray); margin-top: 2px; }
#onboarding .done .badge { margin-left: auto; font-size: 10.5px; font-weight: 600; color: var(--ob-amber-deep); background: var(--ob-amber-soft); padding: 4px 9px; border-radius: 8px; flex-shrink: 0; }

/* --- step 5 --- */
#onboarding .s5-shot { background: var(--ob-paper); border: 1px solid var(--ob-line); border-radius: 28px; padding: 18px; box-shadow: 0 18px 50px rgba(31, 31, 31, 0.12); width: 1095px; min-height: 662px; box-sizing: border-box; }
#onboarding .mini-dash { background: #fff; border-radius: 14px; padding: 16px; font-size: 9px; zoom: 1.6; }
#onboarding .mini-tag { font-size: 8px; color: var(--ob-gray); margin-bottom: 3px; }
#onboarding .mini-row { display: flex; gap: 8px; }
#onboarding .mini-stat { flex: 1; border: 1px solid var(--ob-line); border-radius: 9px; padding: 9px; }
#onboarding .mini-stat.hl { background: var(--ob-amber-tint); border-color: #f0ddb8; }
#onboarding .mini-stat .k { color: var(--ob-gray); font-size: 8.5px; }
#onboarding .mini-stat .v { font-family: var(--ob-serif); font-size: 17px; font-weight: 700; margin-top: 2px; }
#onboarding .mini-panel { border: 1px solid var(--ob-line); border-radius: 10px; padding: 10px; margin-top: 8px; }
#onboarding .mini-panel h5 { font-family: var(--ob-serif); font-size: 11px; margin: 0 0 7px; }
#onboarding .mini-item { display: flex; align-items: center; gap: 6px; background: var(--ob-paper); border-radius: 7px; padding: 6px 8px; margin-bottom: 5px; color: var(--ob-ink-soft); }
#onboarding .mini-item i { width: 16px; height: 16px; border-radius: 5px; background: #fff; border: 1px solid var(--ob-line); flex-shrink: 0; font-style: normal; }
#onboarding .mini-item em { display: block; font-style: normal; font-size: 7.5px; color: var(--ob-gray-light); }
#onboarding .mini-item .rv { margin-left: auto; background: #e8e5dd; border-radius: 5px; padding: 2px 7px; font-size: 8px; font-weight: 600; }

/* --- per-screen overrides (measured off the onboarding design PNGs at 1924x1082);
   shared classes (.cta / .step-eyebrow / .step-h / .stepwrap / .step-mid …) are
   scoped by screen id here so the screens can diverge without cross-talk. --- */
#onboarding #ob-step1 .step-main { margin-top: 85px; }
#onboarding #ob-step1 .step-mid { margin-top: -43px; }
#onboarding #ob-step1 .statebox .ind { width: 148px; justify-content: flex-start; }
#onboarding #ob-step1 .statebox .ind i { width: 16px; height: 16px; }
#onboarding #ob-step1 .cta { font-size: 27px; padding: 14px 78px; letter-spacing: 6px; }
#onboarding #ob-step1 .cta-row.right { margin-top: 64px; }
#onboarding #ob-step2 .step-eyebrow { margin-bottom: 2px; }
#onboarding #ob-step2 .stepwrap > div:first-of-type { margin-bottom: 70px; }
#onboarding #ob-step2 .step-eyebrow .n { color: #aa6b15; }
#onboarding #ob-step2 .blt::before { background: #aa6b15; }
#onboarding #ob-step2 .step-h { font-weight: 500; color: #000; margin-bottom: 64px; white-space: nowrap; }
#onboarding #ob-step2 .cta { font-size: 27px; padding: 15px 70px; letter-spacing: 2px; margin-left: 26px; background: linear-gradient(180deg, #5e5e5e, #2e2e2e); }
#onboarding #ob-step2 .ob-girl-img { margin-bottom: 50px; }
#onboarding #ob-step2 { background: #fafafa; } /* match the thinking video's off-white bg so its frame has no seam */
#onboarding #ob-connected { background: #fcfcfc; }
#onboarding #ob-connected .stepwrap { padding-left: 134px; }
#onboarding #ob-connected .cta { font-size: 27px; padding: 15px 86px; border-radius: 10px; background: linear-gradient(180deg, #565656, #333); }
#onboarding #ob-connected .ob-fist-img { height: 649px; max-height: none; max-width: none; margin-right: 140px; }
#onboarding #ob-step3 .step-cols { align-items: flex-start; }
#onboarding #ob-step3 .step-mid { width: 330px; margin-top: 50px; }
#onboarding #ob-step3 .solution-h { margin-top: 90px; }
#onboarding #ob-step3 .step-main { margin-top: 253px; }
#onboarding #ob-step3 .step-eyebrow .n { color: #8f5a17; font-weight: 800; }
#onboarding #ob-step3 .statebox .row:last-child { border-bottom: none; }
#onboarding #ob-step3 .cta { font-size: 25px; padding: 8px 78px; letter-spacing: 6px; border-radius: 10px; background: linear-gradient(180deg, #4d4d4d, #2f2f2f); }
#onboarding #ob-step3 .cta-row.right { margin-top: 88px; }
#onboarding #ob-step4 .step-eyebrow { margin-left: 237px; margin-bottom: 28px; }
#onboarding #ob-step4 .step-h { line-height: 1.17; }
#onboarding #ob-step4 .s4-left .cta { font-size: 19px; padding: 17px 95px; border-radius: 13px; letter-spacing: 5px; }
#onboarding #ob-step5 .stepwrap { padding-left: 134px; }
#onboarding #ob-step5 .stepwrap > div:first-child { transform: translateY(-118px); }
#onboarding #ob-step5 .step-eyebrow { margin-bottom: 40px; }
#onboarding #ob-step5 .step-eyebrow .s { font-size: 96px; }
#onboarding #ob-step5 .step-eyebrow .n { background: linear-gradient(180deg, #9d6313, #774b0f); -webkit-background-clip: text; background-clip: text; color: transparent; }
#onboarding #ob-step5 .step-h { font-size: 52px; line-height: 1.15; margin-bottom: 48px; }
#onboarding #ob-step5 .step-h.goldline { background: linear-gradient(180deg, #b57217, #82520f); -webkit-background-clip: text; background-clip: text; color: transparent; }
#onboarding #ob-step5 .cta { font-size: 27px; letter-spacing: 6px; padding: 16px 80px; border-radius: 12px; }
#onboarding #ob-step5 .s5-shot { transform: translate(-10px, 88px); }
