/* ════════════════════════════════════════════════════════════════════════════
 * SONDER SYSTEM — /test/ funnel stylesheet (visual reskin 2026-07-23)
 *
 * Matches the hand-authored homepage design system (assets/home/home.css):
 * DM Sans display + Inter body, violet #7A6BD0 / violet-ink #4B3F8F, peach/coral,
 * off-white #F7F2F6, pill primary buttons (gradient), rounded cards, soft radial
 * wash + faint film grain, cubic-bezier eases. A subordinate, calm/healthy orb
 * sits behind the hero (assets/home/orb-hero.js).
 *
 * IMPORTANT: every class/id/attribute here is either static markup in
 * test/index.html OR generated verbatim by assets/js/wizard.js — this file only
 * RESKINS them. No selector the wizard queries was renamed or removed. Legacy
 * classes (.mesh/.blob/.grain/.page-shell/.policy-body/.back-link/.result-state)
 * are kept because the other funnel pages (dziekujemy / wygasl / regulamin /
 * polityka-prywatnosci) still use them.
 * ══════════════════════════════════════════════════════════════════════════ */

:root{
  --bg:#F7F2F6;
  --bg-2:#F1E9F1;
  --ink:#26232B;
  --ink-soft:#55505C;
  --muted:#8B8494;
  --logo:#0A0A0C;

  --violet:#B3ABE6;
  --violet-deep:#7A6BD0;
  --violet-ink:#4B3F8F;
  --peach:#F3CFB0;
  --coral:#EBBBAE;
  --green:#4EB084;

  /* legacy aliases kept so sub-pages' .mesh blobs still resolve */
  --lavender:#B3ABE6;

  --card:#FFFFFF;
  --panel:#FFFFFF;
  --panel-glass:rgba(255,255,255,0.72);
  --line:rgba(38,35,43,0.10);
  --line-soft:rgba(38,35,43,0.06);
  --border:rgba(38,35,43,0.10);

  --dark:#1B1723;
  --dark-ink:#EDE9F4;

  --shadow-soft:0 8px 26px -14px rgba(70,50,110,0.30);
  --shadow-sm:0 8px 26px -14px rgba(70,50,110,0.30);
  --shadow:0 26px 70px -30px rgba(70,45,110,0.40);
  --shadow-lift:0 40px 100px -38px rgba(70,45,110,0.46);
  --shadow-lg:0 50px 120px -40px rgba(70,45,110,0.48);

  --radius-lg:30px;
  --radius:18px;
  --radius-md:14px;
  --radius-pill:999px;
  --maxw:720px;

  --display:'DM Sans',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  --body:'Inter',system-ui,-apple-system,BlinkMacSystemFont,sans-serif;
  --ease:cubic-bezier(.22,.61,.36,1);
  --expo:cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  background:var(--bg);
  color:var(--ink);
  font-family:var(--body);
  font-weight:400;
  line-height:1.65;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}

/* ═══ TEST-PAGE AMBIENT LAYERS (scoped so sub-pages keep their own .mesh) ═══ */
/* soft static radial wash under the orb — the homepage's exact recipe */
body.snd-test::before{
  content:'';
  position:fixed; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(60% 50% at 18% 12%, rgba(179,171,230,.20), transparent 70%),
    radial-gradient(55% 45% at 88% 22%, rgba(243,207,176,.18), transparent 72%),
    radial-gradient(70% 60% at 50% 108%, rgba(235,187,174,.16), transparent 70%);
}
/* film grain — premium tell, near-invisible but kills flatness */
body.snd-test::after{
  content:'';
  position:fixed; inset:0; z-index:3; pointer-events:none;
  opacity:.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* the subordinate orb — smaller & dimmed vs the homepage's full-viewport sun.
   Its job here is calm ambience behind the hero; the CTA + wizard lead. */
#orb-canvas{
  position:fixed; inset:0; z-index:1;
  width:100vw; height:100vh; height:100dvh;
  display:block; pointer-events:none;
  opacity:.52;
}
@media (max-width:700px){ #orb-canvas{ opacity:.4; } }

/* keep static content above the orb */
.snd-test .wrap,
.snd-test .topbar,
.snd-test .hero,
.snd-test .site-footer{ position:relative; z-index:2; }

/* ═══ LEGACY AMBIENT BG (sub-pages only — dziekujemy / wygasl / regulamin / polityka) ═══ */
.mesh{ position:fixed; inset:0; z-index:-3; pointer-events:none; overflow:hidden; }
.mesh .blob{ position:absolute; border-radius:50%; filter:blur(90px) saturate(150%); opacity:.5; will-change:transform; }
.mesh .blob-1{ left:-15%; top:-10%; width:62vw; height:62vw; max-width:620px; max-height:620px;
  background:radial-gradient(circle at 40% 40%, var(--violet) 0%, transparent 78%); animation:blob-drift-1 26s ease-in-out infinite alternate; }
.mesh .blob-2{ right:-18%; top:8%; width:55vw; height:55vw; max-width:560px; max-height:560px;
  background:radial-gradient(circle at 55% 45%, var(--peach) 0%, transparent 78%); animation:blob-drift-2 32s ease-in-out infinite alternate; }
.mesh .blob-3{ left:8%; bottom:-22%; width:68vw; height:68vw; max-width:680px; max-height:680px;
  background:radial-gradient(circle at 45% 55%, var(--coral) 0%, transparent 78%); animation:blob-drift-3 29s ease-in-out infinite alternate; }
@keyframes blob-drift-1{ 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(6vw,5vh) scale(1.12)} }
@keyframes blob-drift-2{ 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-7vw,6vh) scale(.92)} }
@keyframes blob-drift-3{ 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(4vw,-6vh) scale(1.08)} }
.grain{
  position:fixed; inset:0; z-index:-1; pointer-events:none;
  opacity:.035; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:140px 140px;
}
@media (prefers-reduced-motion:reduce){ .mesh .blob{ animation:none; } }

/* ═══ LAYOUT ═══ */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }

/* ═══ TOPBAR / WORDMARK (= homepage "SONDER." mark) ═══ */
.topbar{ padding:26px 0 0; display:flex; align-items:center; justify-content:space-between; }
.wordmark{
  font-family:'Plus Jakarta Sans', var(--display);
  font-weight:800;
  font-size:1.24rem;
  letter-spacing:-.035em;
  text-transform:uppercase;
  color:var(--logo);
  text-decoration:none;
}
.wordmark::after{ content:'.'; color:var(--violet-deep); }

/* ═══ BADGE / EYEBROW PILL ═══ */
.badge-pill{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  padding:6px 16px;
  font-size:14px; line-height:20px; font-weight:500;
  color:var(--violet-ink);
  background:rgba(255,255,255,.5);
  -webkit-backdrop-filter:blur(8px); backdrop-filter:blur(8px);
}
.badge-pill .dot-wrap{ position:relative; display:inline-flex; width:8px; height:8px; flex-shrink:0; }
.badge-pill .dot-ping{ position:absolute; display:inline-flex; inset:0; border-radius:9999px; background:var(--violet-deep); opacity:.75; animation:badge-ping 1s cubic-bezier(0,0,.2,1) infinite; }
.badge-pill .dot-core{ position:relative; display:inline-flex; width:8px; height:8px; border-radius:9999px; background:var(--violet-deep); }
@keyframes badge-ping{ 75%,100%{ transform:scale(2); opacity:0; } }
@media (prefers-reduced-motion:reduce){ .badge-pill .dot-ping{ animation:none; } }

/* ═══ HERO ═══ */
.hero{ padding:clamp(46px,9vh,74px) 0 clamp(40px,7vh,58px); text-align:left; }
.hero h1{
  font-family:var(--display);
  font-weight:700;
  font-size:clamp(38px,7.4vw,64px);
  line-height:1.03;
  letter-spacing:-.035em;
  color:var(--ink);
  margin-top:22px;
  text-wrap:balance;
}
.hero h1 .accent{
  background:linear-gradient(105deg, var(--violet-deep), var(--coral) 55%, var(--peach));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero-sub{
  margin-top:22px;
  font-size:clamp(16px,1.7vw,18px);
  color:var(--ink-soft);
  max-width:540px;
  line-height:1.65;
}
.hero-reassure{
  margin-top:16px;
  font-size:14px;
  color:var(--muted);
  display:flex; align-items:center; gap:8px;
}
.hero-reassure svg{ flex-shrink:0; color:var(--violet-deep); opacity:.85; }

/* ═══ PRIMARY PILL BUTTON (hero CTA + all wizard confirm/submit) ═══ */
.cta-primary,
.btn-confirm,
.btn-submit{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--body);
  font-weight:600;
  font-size:.98rem;
  color:#fff;
  background:linear-gradient(120deg, var(--violet-deep), #8E6FC8 46%, var(--coral));
  border:none;
  border-radius:var(--radius-pill);
  padding:.95em 1.7em;
  cursor:pointer;
  box-shadow:var(--shadow-sm);
  transition:transform .22s var(--ease), box-shadow .4s var(--ease), filter .3s var(--ease), opacity .3s var(--ease);
  will-change:transform;
}
.cta-primary{ margin-top:34px; font-size:1.05rem; padding:1.05em 1.9em; }
.cta-primary:hover,
.btn-confirm:not(:disabled):hover,
.btn-submit:not(:disabled):hover{ transform:translateY(-2px); filter:brightness(1.05); box-shadow:var(--shadow), 0 0 46px -8px rgba(122,107,208,.55); }
.cta-primary:active,
.btn-confirm:not(:disabled):active,
.btn-submit:not(:disabled):active{ transform:translateY(0) scale(.99); }
.cta-primary svg,
.btn-confirm svg,
.btn-submit svg{ transition:transform .35s var(--ease); }
.cta-primary:hover svg,
.btn-confirm:not(:disabled):hover svg,
.btn-submit:not(:disabled):hover svg{ transform:translateX(3px); }
.btn-confirm:disabled,
.btn-submit:disabled{ opacity:.32; cursor:not-allowed; box-shadow:none; filter:none; }

/* ═══ WIZARD — full-screen immersive takeover ═══ */
.wizard-overlay{
  position:fixed; inset:0; z-index:200;
  display:flex; flex-direction:column;
  background:linear-gradient(180deg, rgba(247,242,246,.82) 0%, rgba(247,242,246,.94) 100%);
  -webkit-backdrop-filter:blur(34px) saturate(140%);
  backdrop-filter:blur(34px) saturate(140%);
  opacity:0; visibility:hidden; transform:scale(1.015);
  transition:opacity .5s var(--ease), transform .6s var(--ease), visibility 0s linear .5s;
}
.wizard-overlay.is-open{
  opacity:1; visibility:visible; transform:scale(1);
  transition:opacity .55s var(--ease), transform .65s var(--ease);
}
body.wizard-locked{ overflow:hidden; }

/* thin progress hairline pinned to the very top edge */
.wizard-progress-bar{ position:absolute; top:0; left:0; right:0; height:3px; background:rgba(38,35,43,.07); z-index:3; }
.wizard-progress-bar .progress-fill{
  display:block; height:100%; width:0%;
  background:linear-gradient(90deg, var(--violet-deep), #8E6FC8 50%, var(--coral));
  transition:width .55s var(--ease);
}

.wizard-topbar{
  position:relative; z-index:3; flex:0 0 auto;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:clamp(16px,3vw,26px) clamp(18px,4vw,40px) 0;
}
.wizard-back, .wizard-close{
  width:42px; height:42px; flex:0 0 auto;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  border-radius:var(--radius-pill);
  background:rgba(255,255,255,.7);
  color:var(--ink);
  cursor:pointer;
  -webkit-backdrop-filter:blur(10px); backdrop-filter:blur(10px);
  transition:transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), box-shadow .3s var(--ease);
}
.wizard-back:hover, .wizard-close:hover{ border-color:var(--violet-deep); transform:translateY(-1px); background:#fff; box-shadow:var(--shadow-sm); }
.wizard-back:active, .wizard-close:active{ transform:scale(.94); }
.wizard-topbar .step-counter{
  font-size:12px; font-weight:600; letter-spacing:.14em;
  color:var(--violet-ink); text-transform:uppercase;
}

/* stage holds the single-focus panels, centered, generous whitespace */
.wizard-track{
  position:relative; z-index:2; flex:1 1 auto;
  width:100%; max-width:640px; margin:0 auto;
  padding:clamp(20px,5vh,64px) clamp(22px,5vw,40px) clamp(40px,7vh,80px);
  display:flex; overflow-y:auto; -webkit-overflow-scrolling:touch;
}

/* ── panel transition system (JS sets data-state; these drive the fade) ── */
.wstep, .wresult{
  position:absolute;
  inset:clamp(20px,5vh,64px) clamp(22px,5vw,40px) auto;
  margin:auto 0;
  display:flex; flex-direction:column; justify-content:center;
  min-height:calc(100% - clamp(60px,12vh,144px));
  pointer-events:none;
}
.wstep[data-state="next"], .wresult[data-state="next"]{ transform:translateY(10px); opacity:0; visibility:hidden; }
.wstep[data-state="prev"], .wresult[data-state="prev"]{ transform:translateY(-10px); opacity:0; visibility:hidden; }
.wstep[data-state="current"], .wresult[data-state="current"]{
  position:relative; inset:auto; transform:translateY(0);
  opacity:1; visibility:visible; pointer-events:auto;
  transition:transform .3s var(--ease), opacity .3s var(--ease);
}
.wstep[data-state="leave-fwd"]{ transform:translateY(-10px); opacity:0; visibility:visible; transition:transform .17s var(--ease), opacity .15s linear; }
.wstep[data-state="leave-back"]{ transform:translateY(10px); opacity:0; visibility:visible; transition:transform .17s var(--ease), opacity .15s linear; }
@media (prefers-reduced-motion:reduce){
  .wizard-overlay, .wizard-overlay.is-open{ transition:opacity .2s ease, visibility 0s; transform:none; }
  .wstep, .wresult{ transition:opacity .15s ease !important; }
  .wstep[data-state="next"], .wstep[data-state="prev"],
  .wstep[data-state="leave-fwd"], .wstep[data-state="leave-back"]{ transform:none; }
}

.wstep-num{
  font-family:var(--body);
  font-size:12px; font-weight:600; letter-spacing:.16em; text-transform:uppercase;
  color:var(--violet-ink);
  margin-bottom:16px;
}
.wstep h2, .wresult h2{
  font-family:var(--display);
  font-weight:700;
  font-size:clamp(27px,5.2vw,40px);
  line-height:1.1;
  letter-spacing:-.03em;
  color:var(--ink);
  margin-bottom:clamp(22px,4vh,32px);
  text-wrap:balance;
}

/* ── inline micro-question ── */
.micro-question{ margin-top:22px; padding-top:20px; border-top:1px solid var(--line); }
.micro-question[hidden]{ display:none; }
.micro-title{
  font-family:var(--body); font-weight:600;
  font-size:clamp(15px,2vw,17px); color:var(--ink);
  margin-bottom:14px;
}

/* ═══ CHOICE TILES — premium selectable cards ═══ */
.choice-grid{ display:flex; flex-direction:column; gap:11px; }
.choice{
  position:relative;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  width:100%; text-align:left;
  font-family:var(--body);
  font-size:clamp(15px,2.3vw,17px);
  font-weight:600;
  color:var(--ink);
  padding:17px 20px;
  border:1.5px solid var(--line);
  border-radius:var(--radius-md);
  background:var(--card);
  box-shadow:0 1px 2px rgba(38,35,43,.03);
  cursor:pointer;
  transition:transform .26s var(--ease), border-color .2s var(--ease), background .25s var(--ease), box-shadow .3s var(--ease);
}
.choice:hover{ transform:translateY(-2px); border-color:var(--violet-deep); background:#fff; box-shadow:var(--shadow-sm); }
.choice:active{ transform:translateY(0) scale(.99); }
.choice .choice-label{ flex:1 1 auto; }

/* the ring / tick indicator (present on chip & chip-multi options) */
.choice .choice-tick{
  flex:0 0 auto;
  width:24px; height:24px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  border:1.5px solid var(--line);
  background:transparent;
  color:#fff;
  transition:background .25s var(--ease), border-color .25s var(--ease), box-shadow .3s var(--ease);
}
.choice .choice-tick svg{ opacity:0; transform:scale(.55); transition:opacity .25s var(--ease), transform .35s var(--ease); }
.choice.is-selected{
  border-color:var(--violet-deep);
  background:linear-gradient(180deg, rgba(122,107,208,.10), rgba(235,187,174,.08));
  box-shadow:0 16px 36px -20px rgba(122,107,208,.6);
  transform:translateY(-1px);
}
.choice.is-selected .choice-tick{
  border-color:transparent;
  background:linear-gradient(135deg, var(--violet-deep), var(--coral));
  box-shadow:0 5px 14px -5px rgba(122,107,208,.7);
}
.choice.is-selected .choice-tick svg{ opacity:1; transform:scale(1); }

/* compact yes/no row (micro-choice buttons carry .choice but no tick) */
.choice-grid-compact{ flex-direction:row; gap:10px; }
.choice-grid-compact .choice{ flex:1 1 0; justify-content:center; padding:14px 18px; }

/* ═══ FREE-TEXT FIELDS ═══ */
.field{ margin-bottom:16px; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field textarea{
  width:100%;
  font-family:var(--body);
  font-size:clamp(16px,2.4vw,18px);
  color:var(--ink);
  background:var(--card);
  border:1.5px solid var(--line);
  border-radius:var(--radius-md);
  padding:16px 18px;
  outline:none;
  transition:border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}
.field input::placeholder, .field textarea::placeholder{ color:var(--muted); opacity:.75; }
.field input:focus, .field textarea:focus{
  border-color:var(--violet-deep);
  background:#fff;
  box-shadow:0 0 0 4px rgba(122,107,208,.16);
}
.field textarea{ resize:none; min-height:120px; line-height:1.55; }

.confirm-row{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-top:18px; }
.enter-hint{ font-size:12.5px; font-weight:500; color:var(--muted); opacity:.85; }

/* ═══ FINAL STEP — consents ═══ */
.consent-row{
  display:flex; align-items:flex-start; gap:11px;
  margin-bottom:14px; font-size:13px; color:var(--ink-soft); line-height:1.55;
}
.consent-row input[type="checkbox"]{
  margin-top:2px; flex-shrink:0;
  width:18px; height:18px;
  border-radius:6px;
  accent-color:var(--violet-deep);
}
.consent-row a{ color:var(--violet-ink); text-decoration:underline; }
.wstep-final h2{ margin-bottom:clamp(18px,3vh,24px); }

/* honeypot — off-screen, never display:none (bots check for that) */
.hp{ position:absolute; left:-9999px; top:-9999px; width:1px; height:1px; opacity:0; }

/* ═══ RESULT / WAITLIST STATES ═══ */
.wresult{ text-align:left; }
.wresult p{ font-size:16px; color:var(--ink-soft); max-width:460px; line-height:1.7; margin-bottom:26px; }
.wresult .btn-confirm{ align-self:flex-start; }
.waitlist-sub{ margin-top:-8px; margin-bottom:22px; color:var(--muted); font-size:14px; }
.error-text{ font-size:13px; color:#B4453A; margin-top:6px; margin-bottom:6px; min-height:18px; }

/* shared success glyph (JS result copy + wygasl.html) */
.icon-orb{
  width:60px; height:60px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg, var(--violet-deep), var(--peach));
  margin-bottom:24px; box-shadow:var(--shadow-sm); color:#fff;
}

/* ═══ FOOTER — deliberately quiet ═══ */
.site-footer{ width:100%; border-top:1px solid var(--line); margin-top:8px; }
.footer-inner{ padding:26px 24px 40px; font-size:12px; line-height:1.7; color:var(--muted); }
.site-footer a{ color:var(--ink-soft); text-decoration:none; border-bottom:1px solid var(--line); transition:color .2s ease, border-color .2s ease; }
.site-footer a:hover{ color:var(--ink); border-color:var(--ink); }
.footer-links{ display:flex; gap:16px; margin-top:8px; flex-wrap:wrap; }
.footer-contact{ margin-top:6px; }

/* ═══ STATIC SUB-PAGES (dziekujemy / wygasl / regulamin / polityka) ═══ */
.page-shell{ min-height:100vh; display:flex; align-items:center; }
.result-state h2{
  font-family:var(--display); font-weight:700;
  font-size:clamp(24px,4vw,34px); line-height:1.12; letter-spacing:-.03em;
  color:var(--ink); margin-bottom:16px; text-wrap:balance;
}
.result-state p{ font-size:15.5px; color:var(--ink-soft); max-width:520px; line-height:1.7; }
.result-state a{ color:var(--violet-ink); }
.result-state .btn-confirm{ color:#fff; }

.policy-body h2{ font-family:var(--display); margin-top:32px; margin-bottom:10px; font-size:19px; font-weight:700; letter-spacing:-.02em; }
.policy-body h1{ font-family:var(--display); letter-spacing:-.03em; }
.policy-body p, .policy-body li{ margin-bottom:10px; color:var(--ink-soft); font-size:15px; }
.policy-body ul{ padding-left:20px; }
.policy-body strong{ color:var(--ink); }
.policy-body a{ color:var(--violet-ink); }

.back-link{
  display:inline-flex; align-items:center; gap:8px;
  font-size:14px; font-weight:600; color:var(--violet-ink);
  text-decoration:none; margin-top:28px;
}
.back-link:hover{ opacity:.7; }

/* ═══ round-2 fixes (2026-07-23) — fit-to-screen landing, no stray selection, stable button width ═══ */
/* landing fills exactly one viewport (kills the awkward tiny scroll) + no rubber-band + no accidental text selection */
body.snd-test{ min-height:100dvh; display:flex; flex-direction:column; overscroll-behavior-y:none; -webkit-user-select:none; user-select:none; }
body.snd-test > .wrap{ flex:1 1 auto; display:flex; flex-direction:column; }
.snd-test .hero{ flex:1 1 auto; display:flex; flex-direction:column; justify-content:center; padding-top:clamp(18px,3vh,40px); padding-bottom:clamp(14px,2.4vh,30px); }
.snd-test .topbar{ padding-top:16px; }
.snd-test .site-footer{ padding-top:16px; padding-bottom:16px; }
.snd-test .hero-sub{ margin-top:clamp(14px,2vh,20px); }
/* only real inputs stay selectable */
.snd-test input, .snd-test textarea{ -webkit-user-select:text; user-select:text; }
/* stable width so the JS "Wysyłam…" text swap can't teleport the submit button */
.btn-submit{ min-width:15.5em; }
/* tighten the landing on short/small phones so it fits without a stray scroll */
@media (max-width:700px){
  .snd-test .hero{ padding-top:14px; padding-bottom:10px; }
  .snd-test .topbar{ padding-top:12px; }
  .snd-test .cta-primary{ margin-top:20px; }
  .snd-test .hero-sub{ line-height:1.5; }
  .snd-test .hero-reassure{ margin-top:12px; }
}
/* the hero is a flex column (for vertical centering) — stop it stretching the
   pill badge / CTA to full width; they should hug their content like before */
.snd-test .badge-pill, .snd-test .cta-primary{ align-self:flex-start; }
