/* ============================================================
   LAYRA — landing · "Glas"

   The brand is a voice, so the voice is the brand element: a row
   of speaking bars. It lives in the wordmark, in the hero call
   card, and as the marker on every reason. Nothing else on the
   page carries motion or saturation — one motif, repeated small.

   Same ground rules as before: nothing animates a blur, a shadow
   or a blend mode. Canvas for the wave, transform/opacity for
   everything else.
   ============================================================ */

/* ---- tokens ------------------------------------------------ */

:root {
  /* ground: cool porcelain, pulled back from icy blue toward stone */
  --paper:     #F1F5FB;
  --card:      #FFFFFF;

  /* near-black with a navy bias, not #000 */
  --ink:       #101725;
  --ink-soft:  #5C6779;
  --ink-faint: #8D97A8;

  /* the accent is a gradient, not a flat blue — the voice's colour */
  --azure:     #1F6FE5;
  --indigo:    #4338CA;

  /* muted teal-green for reassurance */
  --pine:      #10786A;

  /* errors stay warm — a blue error just reads as more accent */
  --alert:     #C8372D;

  /* the shadow cards cast: deep navy, never neutral grey */
  --cast:      19, 30, 66;

  --line:      rgba(16, 23, 37, .10);
  --line-soft: rgba(16, 23, 37, .06);

  --font-sans: "Segoe UI Variable Display", "Segoe UI", -apple-system,
               BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue",
               Arial, sans-serif;

  --shell: 1180px;
  --gutter: clamp(1.25rem, 4vw, 2.75rem);
  --mast: clamp(4.25rem, 7vh, 5.25rem);

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---- reset ------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    radial-gradient(70% 42% at 24% 12%, rgba(31, 111, 229, .07), transparent 62%),
    radial-gradient(60% 36% at 82% 30%, rgba(67, 56, 202, .05), transparent 66%);
  background-repeat: no-repeat;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, p, figure, blockquote { margin: 0; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; color: inherit; }

:focus-visible {
  outline: 2px solid var(--azure);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip {
  position: absolute; left: 50%; top: 0; z-index: 200;
  transform: translate(-50%, -120%);
  padding: .7rem 1.1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  font-size: .9rem;
}
.skip:focus-visible { transform: translate(-50%, 0); }

.icon { width: 17px; height: 17px; fill: currentColor; flex: none; }
.icon--line {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* barely-there texture, so the big flat ground doesn't band */
.grain {
  position: fixed; inset: 0; z-index: 90;
  pointer-events: none;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- the voice glyph --------------------------------------- */

/* four bars, everywhere the brand shows its face. animation runs
   only where a parent says so (.is-live), so a page full of glyphs
   stays still and the one under your cursor speaks. */
.glyph { width: 20px; height: 20px; flex: none; }
.glyph rect {
  fill: url(#voicegrad);
  transform-origin: center;
  transform-box: fill-box;
}
.is-live .glyph rect,
.glyph.glyph--live rect,
.reason:hover .glyph rect,
.wordmark:hover .glyph rect,
.foot__brand:hover .glyph rect { animation: speak 1.05s var(--ease) infinite; }
.glyph rect:nth-child(1) { animation-delay: 0s;    }
.glyph rect:nth-child(2) { animation-delay: .14s;  }
.glyph rect:nth-child(3) { animation-delay: .28s;  }
.glyph rect:nth-child(4) { animation-delay: .42s;  }

@keyframes speak {
  0%, 100% { transform: scaleY(1); }
  35%      { transform: scaleY(1.65); }
  70%      { transform: scaleY(.62); }
}

/* ---- masthead ---------------------------------------------- */

.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--card);
  border-bottom: 1px solid var(--line-soft);
}

.masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--mast);
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: .17em;
}

.nav {
  display: flex;
  gap: clamp(1rem, 2.2vw, 2rem);
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav a {
  position: relative;
  padding-block: .3rem;
  transition: color .25s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--azure), var(--indigo));
  border-radius: 2px;
  transition: right .3s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::after { right: 0; }

.masthead__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.link-quiet {
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .25s var(--ease);
}
.link-quiet:hover { color: var(--ink); }

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 111, 229, .3);
  background: var(--card);
  font-size: .93rem;
  font-weight: 600;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.btn-call:hover {
  border-color: rgba(31, 111, 229, .55);
  background: rgba(31, 111, 229, .05);
}
.btn-call .icon { color: var(--azure); }

/* ---- hero -------------------------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: var(--shell);
  margin-inline: auto;
  min-height: calc(100svh - var(--mast) - 6rem);
  padding: clamp(2.5rem, 6vh, 4rem) var(--gutter) clamp(2.5rem, 6vh, 4rem);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .38rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(16, 120, 106, .22);
  background: rgba(16, 120, 106, .06);
  font-size: .8rem;
  font-weight: 600;
  color: var(--pine);
}
.chip__dot {
  width: 7px; height: 7px; flex: none;
  border-radius: 50%;
  background: var(--pine);
  animation: breathe 2.6s var(--ease) infinite;
}
@keyframes breathe {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(.55); opacity: .55; }
}

.headline {
  margin-top: 1.1rem;
  max-width: 15ch;
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.headline__name {
  background: linear-gradient(100deg, var(--azure) 8%, var(--indigo) 82%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  margin-top: 1.15rem;
  max-width: 46ch;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---- the dial ---------------------------------------------- */

.dial {
  display: flex;
  align-items: center;
  gap: .5rem;
  width: min(100%, 540px);
  margin-top: clamp(1.6rem, 3.5vh, 2.3rem);
  padding: .45rem .45rem .45rem 1.55rem;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: var(--card);
  box-shadow: 0 14px 34px rgba(var(--cast), .10), 0 2px 6px rgba(var(--cast), .06);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}

.dial:focus-within {
  border-color: rgba(31, 111, 229, .35);
  box-shadow: 0 14px 34px rgba(var(--cast), .13), 0 0 0 4px rgba(31, 111, 229, .10);
}

.dial__field {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  flex: 1;
  min-width: 0;
}

.dial__cc {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.dial__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: none;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  padding: .5rem 0;
}
.dial__input::placeholder { color: var(--ink-faint); }
.dial__input:focus { outline: none; }

.dial__go {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex: none;
  padding: .92rem 1.45rem;
  border: 0;
  border-radius: 999px;
  font-size: .97rem;
  font-weight: 600;
  color: #FFF;
  cursor: pointer;
  background: linear-gradient(118deg, var(--azure) 0%, var(--indigo) 100%);
  box-shadow: 0 8px 20px rgba(31, 111, 229, .28);
  transition: filter .25s var(--ease), transform .25s var(--ease);
}
.dial__go:hover { transform: translateY(-1px); filter: brightness(1.06); }
.dial__go:active { transform: translateY(0); }
.dial__go[disabled] { cursor: default; filter: saturate(.4) brightness(1.1); transform: none; }

/* ---- reassurance / form status ----------------------------- */

.assure {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--pine);
}
.assure .icon { width: 15px; height: 15px; }

/* once it carries a message it stops being a label */
.assure[data-state] {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  font-size: .875rem;
}
.assure[data-state] .assure__icon { display: none; }
.assure[data-state="error"]   { color: var(--alert); }
.assure[data-state="success"] { color: var(--pine); }

/* ---- the call card ----------------------------------------- */

/* the product, playing itself: a call comes in, Layra answers,
   the summary lands. this is the one place the page really moves. */
.call {
  width: min(100%, 470px);
  justify-self: end;
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  background: var(--card);
  box-shadow: 0 24px 54px rgba(var(--cast), .12), 0 3px 8px rgba(var(--cast), .05);
  overflow: hidden;
}

.call__bar {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.15rem;
  border-bottom: 1px solid var(--line-soft);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-faint);
}
.call__bar .icon { width: 15px; height: 15px; color: var(--azure); }
.call__state { margin-left: auto; font-weight: 500; }

.wave {
  display: block;
  width: 100%;
  height: 58px;
  background: linear-gradient(180deg, rgba(31, 111, 229, .045), rgba(31, 111, 229, 0));
}

.script {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  min-height: 232px;
  padding: 1rem 1.15rem 1.2rem;
}

.script__line {
  max-width: 88%;
  padding: .55rem .85rem;
  border-radius: 14px;
  font-size: .89rem;
  line-height: 1.5;
}

/* only a JS-driven page hides the dialogue before playing it */
.js .script__line {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.js .script__line.on { opacity: 1; transform: none; }

.script__line--caller {
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  background: rgba(16, 23, 37, .05);
  color: var(--ink);
}
.script__line--layra {
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  background: linear-gradient(118deg, rgba(31, 111, 229, .10), rgba(67, 56, 202, .10));
  color: var(--ink);
}
.script__who {
  display: block;
  margin-bottom: .12rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.script__line--layra .script__who { color: var(--azure); }

/* the caret while a line is being spoken */
.script__line.saying::after {
  content: "";
  display: inline-block;
  width: 2px; height: .95em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: var(--azure);
  animation: caret .8s steps(2) infinite;
}
@keyframes caret { 50% { opacity: 0; } }

/* what the owner receives, sliding in under the conversation */
.slip {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: .45rem;
  padding: .75rem .9rem;
  border-radius: 12px;
  border: 1px dashed rgba(16, 120, 106, .38);
  background: rgba(16, 120, 106, .05);
  font-size: .84rem;
  font-weight: 600;
  color: var(--pine);
}
.js .slip {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.js .slip.on { opacity: 1; transform: none; }
.slip .icon { width: 16px; height: 16px; }
.slip small { display: block; font-weight: 500; color: var(--ink-soft); }

.call__note {
  padding: 0 1.15rem 1rem;
  font-size: .78rem;
  color: var(--ink-faint);
}

/* ---- shared band scaffolding ------------------------------- */

.band {
  max-width: var(--shell);
  margin-inline: auto;
  padding: clamp(3.5rem, 9vh, 6rem) var(--gutter);
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--mast) + 1rem);
}

.band__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--azure);
}

.band__title {
  margin-top: .6rem;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  max-width: 24ch;
  text-wrap: balance;
}

.band__lede {
  margin-top: .9rem;
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---- reasons ----------------------------------------------- */

.reasons {
  display: flex;
  flex-direction: column;
  margin-top: clamp(1.75rem, 4vh, 2.75rem);
  max-width: 780px;
}

.reason {
  display: grid;
  grid-template-columns: 44px minmax(0, 15rem) 1fr;
  align-items: baseline;
  gap: .4rem 1.25rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line-soft);
}
.reason:first-child { border-top: 0; }

.reason .glyph { align-self: center; }

.reason__claim {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.012em;
}

.reason__body {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- steps ------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(1.75rem, 4vh, 2.75rem);
}

.step {
  position: relative;
  padding-top: 1.1rem;
}
.step::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 2.4rem; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--azure), var(--indigo));
}

.step__no {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .09em;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
}

.step__claim {
  margin-top: .35rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.012em;
}

.step__body {
  margin-top: .4rem;
  font-size: .95rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 30ch;
}

/* ---- proof ------------------------------------------------- */

.proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.proof__card {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.msg {
  width: min(100%, 430px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem 1.35rem;
  box-shadow: 0 14px 34px rgba(var(--cast), .09);
}
.msg__head {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-faint);
}
.msg__head .icon { width: 15px; height: 15px; color: var(--azure); }
.msg__from { margin-top: .65rem; font-size: 1rem; font-weight: 700; }
.msg__body { margin-top: .3rem; font-size: .95rem; line-height: 1.55; color: var(--ink-soft); }
.msg__foot {
  margin-top: .85rem;
  padding-top: .75rem;
  border-top: 1px dashed var(--line);
  font-size: .82rem;
  color: var(--pine);
  font-weight: 600;
}

.proof__note {
  width: min(100%, 430px);
  margin-top: .6rem;
  font-size: .78rem;
  color: var(--ink-faint);
}

/* ---- trust strip ------------------------------------------- */

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 2.5rem;
  margin-top: clamp(1.5rem, 3.5vh, 2.25rem);
}
.trust__item {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .95rem;
  font-weight: 600;
}
.trust__item .icon { width: 16px; height: 16px; color: var(--pine); }

/* ---- faq --------------------------------------------------- */

.faq {
  margin-top: clamp(1.5rem, 3.5vh, 2.25rem);
  max-width: 780px;
}

.faq details {
  border-top: 1px solid var(--line-soft);
}
.faq details:last-child { border-bottom: 1px solid var(--line-soft); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 0;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: color .25s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--azure); }

.faq summary .icon {
  width: 16px; height: 16px;
  color: var(--ink-faint);
  transition: transform .3s var(--ease);
}
.faq details[open] summary .icon { transform: rotate(45deg); }

.faq__body {
  padding: 0 0 1.15rem;
  max-width: 62ch;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---- finale ------------------------------------------------ */

.finale {
  max-width: var(--shell);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(3.5rem, 8vh, 5.5rem);
}

.finale__panel {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: clamp(2.5rem, 6vh, 4rem) clamp(1.5rem, 5vw, 4rem);
  background: linear-gradient(118deg, var(--azure) 0%, var(--indigo) 100%);
  color: #FFF;
  text-align: center;
  box-shadow: 0 24px 54px rgba(31, 111, 229, .28);
}

/* quiet echo of the bars, drawn once, not animated */
.finale__panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg,
    rgba(255, 255, 255, .05) 0 3px, transparent 3px 18px);
  mask-image: linear-gradient(180deg, transparent 30%, #000 130%);
  -webkit-mask-image: linear-gradient(180deg, transparent 30%, #000 130%);
  pointer-events: none;
}

.finale__title {
  position: relative;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
  text-wrap: balance;
}

.finale__lede {
  position: relative;
  margin: .8rem auto 0;
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .82);
}

.finale__actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: 1.6rem;
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  background: #FFF;
  color: var(--ink);
  font-size: .97rem;
  font-weight: 600;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-solid:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(16, 23, 37, .25); }
.btn-solid .icon { color: var(--azure); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .45);
  color: #FFF;
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .7); }

/* ---- footer ------------------------------------------------ */

.foot {
  border-top: 1px solid var(--line);
  background: var(--card);
}

.foot__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  max-width: var(--shell);
  margin-inline: auto;
  padding: 1.9rem var(--gutter);
}

.foot__brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 800;
  letter-spacing: .17em;
  font-size: .95rem;
}

.foot__tag {
  font-size: .88rem;
  color: var(--ink-soft);
}

.foot__links {
  display: flex;
  gap: 1.5rem;
  font-size: .88rem;
  color: var(--ink-soft);
}
.foot__links a { transition: color .25s var(--ease); }
.foot__links a:hover { color: var(--ink); }

/* ---- reveal ------------------------------------------------ */

/* transitions, not animations: nothing repaints once it has settled */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .85s var(--ease) var(--d, 0s),
              transform .85s var(--ease) var(--d, 0s);
}
.js [data-reveal].in { opacity: 1; transform: none; }

/* ---- responsive -------------------------------------------- */

@media (max-width: 980px) {
  .nav { display: none; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 2.5rem;
  }
  .call { justify-self: stretch; width: 100%; }

  .proof { grid-template-columns: 1fr; }
  .proof__card { align-items: flex-start; }
}

@media (max-width: 720px) {
  .btn-call { padding: .55rem .95rem; font-size: .875rem; }
  .link-quiet { display: none; }

  .dial {
    flex-direction: column;
    align-items: stretch;
    gap: .3rem;
    padding: .45rem;
    border-radius: 24px;
  }
  .dial__field { padding: .5rem 1rem .25rem; }
  .dial__go { justify-content: center; padding: .95rem 1.4rem; }

  .reason {
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
  }
  .reason .glyph { grid-row: 1; align-self: baseline; }
  .reason__claim { grid-column: 2; }
  .reason__body { grid-column: 2; }

  .steps { grid-template-columns: 1fr; gap: 1.75rem; }
  .step__body { max-width: none; }
}

/* ---- reduced motion ---------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js [data-reveal] { opacity: 1; transform: none; }
  .script__line, .slip { opacity: 1; transform: none; }
}
