:root {
  --bg: #090705;
  --ink: #f0ece2;
  --dim: #b0a690;
  --faint: #7d745f;
  --accent: #e8b56a;
  --accent-2: #9fc27a;
  --ember: #ff8a3d;
  --card: rgba(255, 240, 210, 0.045);
  --line: rgba(230, 200, 150, 0.11);
}

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

html, body { height: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 "Inter", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

#sky { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; }

.aurora {
  position: fixed;
  width: 60vmax; height: 60vmax;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.20;
  z-index: 0;
  animation: drift 30s ease-in-out infinite alternate;
}
.aurora-a { background: radial-gradient(circle, #b47418, transparent 60%); top: -24vmax; left: -16vmax; }
.aurora-b { background: radial-gradient(circle, #4a6b32, transparent 60%); bottom: -28vmax; right: -20vmax; animation-delay: -15s; }

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(6vmax, 4vmax, 0) scale(1.15); }
}

/* organic membrane texture of the cave walls */
.membrane {
  position: fixed; inset: -10%; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='600'%20height='600'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='0.014%200.028'%20numOctaves='4'%20seed='7'%20stitchTiles='stitch'/%3E%3CfeColorMatrix%20type='matrix'%20values='0%200%200%200%200.42%20%200%200%200%200%200.26%20%200%200%200%200%200.10%20%200%200%200%200.75%200'/%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 620px 620px;
  mix-blend-mode: screen;
  opacity: 0.30;
  -webkit-mask: radial-gradient(ellipse at 50% 45%, transparent 26%, #000 82%);
          mask: radial-gradient(ellipse at 50% 45%, transparent 26%, #000 82%);
  animation: membraneDrift 40s ease-in-out infinite alternate;
}
@keyframes membraneDrift {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.12) translateY(-2%); }
}

/* faint vertical tree/rock striations along the cave walls */
.walls {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: repeating-linear-gradient(94deg,
    rgba(0, 0, 0, 0) 0 5px, rgba(0, 0, 0, 0.28) 6px 8px, rgba(60, 44, 20, 0.05) 9px 13px);
  -webkit-mask: linear-gradient(90deg, #000 0%, transparent 24%, transparent 76%, #000 100%);
          mask: linear-gradient(90deg, #000 0%, transparent 24%, transparent 76%, #000 100%);
  opacity: 0.55;
}

.vignette {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 44%, transparent 32%, rgba(0, 0, 0, 0.45) 66%, rgba(3, 2, 1, 0.86) 100%),
    radial-gradient(ellipse at 50% 120%, rgba(150, 80, 20, 0.10), transparent 55%);
}

#shell {
  position: relative; z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; flex-direction: column;
  padding: 26px 22px 18px;
}

.brand {
  text-align: center;
  font-size: 15px; font-weight: 600; letter-spacing: 0.42em;
  text-indent: 0.42em;
  color: var(--ink);
}
.brand span { font-weight: 300; color: var(--faint); }

.steps {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 18px;
}
.steps[hidden] { display: none; }
.steps i {
  width: 26px; height: 3px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.5s, box-shadow 0.5s;
}
.steps i.on {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(232, 181, 106, 0.55);
}

#view { flex: 1; display: flex; flex-direction: column; }

.screen {
  margin: auto 0;
  padding: 26px 0 12px;
  animation: rise 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}

.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}

h1 {
  font-size: clamp(30px, 8.5vw, 40px);
  font-weight: 300; line-height: 1.14; letter-spacing: -0.02em;
  margin-bottom: 14px;
}
h1 em {
  font-family: "Instrument Serif", serif;
  font-style: italic; font-weight: 400;
  background: linear-gradient(100deg, #f6d79b, #cf9a4a);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

p.lead { color: var(--dim); font-size: 15px; margin-bottom: 18px; }

.notice {
  font-size: 12.5px; color: var(--faint);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px; padding: 10px 14px;
  margin: 6px 0 18px;
}

.btn {
  display: block; width: 100%;
  padding: 15px 22px;
  border: 0; border-radius: 999px;
  background: #f4f5fa; color: #0a0a12;
  font: 600 15px/1 "Inter", sans-serif;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, opacity 0.25s;
  box-shadow: 0 0 0 rgba(232, 181, 106, 0);
}
.btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 8px 34px rgba(232, 181, 106, 0.35); }
.btn:disabled { opacity: 0.35; cursor: default; }
.btn.ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn.ghost:hover:not(:disabled) { box-shadow: 0 8px 24px rgba(255, 255, 255, 0.08); }
.row { display: grid; gap: 12px; margin-top: 10px; }

/* ---- hero orb ---- */
.orb-wrap { position: relative; width: min(360px, 84vw); aspect-ratio: 1; margin: 4px auto 18px; }
.orb-ember {
  position: absolute; left: 8%; right: 8%; bottom: 12%;
  height: 30%;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 138, 61, 0.30), transparent 68%);
  filter: blur(14px);
  animation: emberpulse 7s ease-in-out infinite;
  pointer-events: none;
}
#orb { position: relative; width: 100%; height: 100%; display: block; }
@keyframes breathe { 0%, 100% { opacity: 0.75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes emberpulse { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

/* ---- face-scan intro: glass orb + wireframe face ---- */
.face-stage { width: min(320px, 78vw); margin: 0 auto 14px; }
.glass-orb {
  position: absolute; inset: 8%; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(150, 180, 225, 0.12), rgba(18, 24, 40, 0.10) 52%, transparent 72%),
    radial-gradient(circle at 50% 108%, rgba(255, 150, 70, 0.10), transparent 55%);
  box-shadow: inset 0 0 70px rgba(150, 180, 225, 0.14), 0 0 60px rgba(90, 120, 175, 0.12);
  border: 1px solid rgba(170, 200, 240, 0.10);
  animation: breathe 6s ease-in-out infinite;
}
.glass-orb::before {
  content: ""; position: absolute; left: 22%; top: 12%; width: 34%; height: 20%;
  border-radius: 50%; background: radial-gradient(circle, rgba(220, 235, 255, 0.22), transparent 70%);
  filter: blur(3px);
}
#mesh { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }

.reqs { text-align: center; margin-bottom: 16px; }
.reqs-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 14px;
}
.req { animation: promptIn 0.45s ease both; }
.req svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: 8px; }
.req-title { font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.req-body { font-size: 13.5px; color: var(--dim); max-width: 300px; margin: 0 auto; }
.dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.dots i {
  width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.16);
  transition: background 0.3s, transform 0.3s;
}
.dots i.on { background: var(--accent); transform: scale(1.25); }

.btn.glow { box-shadow: 0 0 34px rgba(232, 181, 106, 0.28); }
.btn.glow:hover:not(:disabled) { box-shadow: 0 8px 40px rgba(232, 181, 106, 0.45); }

/* ---- consent ---- */
.check {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 16px; padding: 15px 16px;
  font-size: 13.5px; color: var(--dim);
  cursor: pointer; margin-bottom: 14px;
  transition: border-color 0.3s;
}
.check:hover { border-color: rgba(232, 181, 106, 0.4); }
.check input { margin-top: 3px; accent-color: var(--accent); width: 16px; height: 16px; flex: none; }

/* ---- face scan ---- */
.scan-stage { position: relative; width: 250px; height: 312px; margin: 6px auto 16px; }
.scan-stage video {
  position: absolute; inset: 10px;
  width: calc(100% - 20px); height: calc(100% - 20px);
  object-fit: cover;
  border-radius: 50%;
  transform: scaleX(-1);
  background: #0b0b14;
}
.scan-stage svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ring-track { fill: none; stroke: rgba(255, 255, 255, 0.10); stroke-width: 2; }
.ring-spin {
  fill: none; stroke: rgba(232, 181, 106, 0.5); stroke-width: 2;
  stroke-dasharray: 42 762;
  transform-origin: 50% 50%;
  animation: orbit 3.2s linear infinite;
}
.ring-progress {
  fill: none; stroke: url(#ringGrad); stroke-width: 3.5; stroke-linecap: round;
  stroke-dasharray: 801; stroke-dashoffset: 801;
  transform-origin: 50% 50%;
  transform: rotate(-90deg);
  transition: stroke-dashoffset 0.6s ease;
  filter: drop-shadow(0 0 6px rgba(232, 181, 106, 0.7));
}
@keyframes orbit { to { transform: rotate(360deg); } }

.telemetry {
  display: flex; justify-content: center; gap: 10px; margin-bottom: 12px;
}
.telemetry span {
  font: 500 11px/1 "SF Mono", ui-monospace, monospace;
  letter-spacing: 0.08em;
  color: var(--accent-2);
  background: rgba(159, 194, 122, 0.07);
  border: 1px solid rgba(159, 194, 122, 0.18);
  border-radius: 999px; padding: 7px 12px;
  min-width: 96px; text-align: center;
}

.prompt {
  text-align: center; min-height: 26px;
  font-size: 16px; color: var(--ink);
  margin-bottom: 14px;
  animation: promptIn 0.4s ease both;
}
@keyframes promptIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---- voice ---- */
.quote {
  font-family: "Instrument Serif", serif; font-style: italic;
  font-size: 20px; line-height: 1.45; color: #d9def5;
  border-left: 2px solid var(--accent);
  padding-left: 16px; margin: 4px 0 20px;
}
.wave-wrap {
  position: relative;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 18px; padding: 14px;
  margin-bottom: 14px;
}
#wave { display: block; width: 100%; height: 110px; }
.countdown {
  position: absolute; top: 12px; right: 14px;
  font: 600 12px/1 "SF Mono", ui-monospace, monospace;
  color: var(--accent-2);
}
.meter {
  height: 3px; border-radius: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden; margin-bottom: 16px;
}
.meter i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.3s linear;
}

/* ---- processing ---- */
.fuse { text-align: center; padding: 10px 0 4px; }
.fuse-orb { position: relative; width: 150px; height: 150px; margin: 0 auto 26px; }
.fuse-orb::before {
  content: ""; position: absolute; inset: -30%;
  background: radial-gradient(circle, rgba(232, 150, 60, 0.30), transparent 60%);
  animation: breathe 2.6s ease-in-out infinite;
}
.stage-list { text-align: left; max-width: 300px; margin: 0 auto; display: grid; gap: 10px; }
.stage-list li {
  list-style: none; font-size: 13.5px; color: var(--faint);
  display: flex; gap: 10px; align-items: center;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.5s, transform 0.5s, color 0.5s;
}
.stage-list li.on { opacity: 1; transform: none; color: var(--dim); }
.stage-list li.done { color: var(--accent-2); }
.stage-list li::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

/* ---- results ---- */
.result-card {
  display: flex; gap: 16px; align-items: center;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; padding: 16px;
  margin-bottom: 12px;
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.result-card .info { flex: 1; min-width: 0; }
.result-card .label { font-size: 15px; font-weight: 500; margin-bottom: 3px; }
.result-card .expl { font-size: 12px; color: var(--faint); line-height: 1.5; }
.tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.tag {
  font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px 8px;
}
.gauge { position: relative; width: 78px; height: 78px; flex: none; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge .track { fill: none; stroke: rgba(255, 255, 255, 0.08); stroke-width: 5; }
.gauge .fill {
  fill: none; stroke: url(#gaugeGrad); stroke-width: 5; stroke-linecap: round;
  stroke-dasharray: 202; stroke-dashoffset: 202;
  transition: stroke-dashoffset 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
  filter: drop-shadow(0 0 4px rgba(232, 181, 106, 0.5));
}
.gauge b {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; font-weight: 300;
}

.foot {
  text-align: center;
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #4c5165;
  padding-top: 16px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- results: Angel-style state screen ---- */
.res-head { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.back { background: none; border: 0; color: var(--dim); font-size: 32px; line-height: 1; cursor: pointer; padding: 0 8px 4px 0; }
.res-title { font-size: 22px; font-weight: 400; letter-spacing: -0.01em; }
.res-sub { font-size: 12px; color: var(--faint); }
.figure { position: relative; width: min(300px, 80vw); aspect-ratio: 1; margin: 6px auto 8px; }
.fig-orb { position: absolute; inset: 15%; width: auto; margin: 0; }
.ring-labels { position: absolute; inset: 0; width: 100%; height: 100%; }
.ring-labels text { font: 600 10.5px "Inter", sans-serif; letter-spacing: 0.28em; fill: var(--dim); cursor: pointer; transition: fill 0.3s; }
.ring-labels text:hover, .ring-labels text.on { fill: var(--accent); }
.ring-labels .deco { fill: none; stroke: rgba(232, 181, 106, 0.20); stroke-width: 1; }
.ring-labels .deco2 { fill: none; stroke: rgba(255, 255, 255, 0.09); stroke-width: 1; stroke-dasharray: 3 9; }
.ring-labels .deco3 { fill: none; stroke: rgba(232, 181, 106, 0.35); stroke-width: 1.5; stroke-dasharray: 60 600; transform-origin: 50% 50%; animation: orbit 14s linear infinite; }
.vp-title { text-align: center; font-size: 17px; margin-top: 4px; }
.vp-sub { text-align: center; font-size: 12.5px; color: var(--faint); margin-bottom: 12px; }
.vp-row { display: flex; justify-content: space-between; gap: 4px; margin-bottom: 18px; }
.vp { background: none; border: 0; color: var(--ink); cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 6px; flex: 1; padding: 0; }
.vp-ring { position: relative; width: 52px; height: 52px; display: block; }
.vp-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.vp-ring .track { fill: none; stroke: rgba(255, 255, 255, 0.10); stroke-width: 2.5; }
.vp-ring .fill { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 119; stroke-dashoffset: 119; transition: stroke-dashoffset 1.1s cubic-bezier(0.2, 0.7, 0.2, 1); }
.vp-ring b { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-weight: 400; font-size: 15px; }
.vp small { font-size: 11px; color: var(--dim); transition: color 0.3s; }
.vp.on small { color: var(--accent); }
.sheet { background: rgba(255, 240, 210, 0.035); border: 1px solid var(--line); border-radius: 26px 26px 20px 20px; padding: 14px 18px 22px; margin-bottom: 14px; }
.sheet.overall { border-radius: 20px; padding: 6px 18px 18px; }
.handle { width: 38px; height: 4px; border-radius: 2px; background: rgba(255, 255, 255, 0.14); margin: 0 auto 14px; }
.tabs { display: flex; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line); border-radius: 999px; padding: 4px; margin-bottom: 12px; }
.tab { flex: 1; background: none; border: 0; color: var(--faint); font: 500 15px "Inter", sans-serif; padding: 11px; border-radius: 999px; cursor: pointer; transition: 0.25s; }
.tab.on { background: rgba(255, 255, 255, 0.08); color: var(--ink); }
.pills { display: flex; flex-wrap: wrap; gap: 4px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); border-radius: 22px; padding: 5px; margin-bottom: 18px; }
.pills::-webkit-scrollbar { display: none; }
.pill { background: none; border: 0; color: var(--faint); font: 500 14px "Inter", sans-serif; padding: 9px 14px; border-radius: 999px; cursor: pointer; white-space: nowrap; transition: 0.25s; flex: 1 0 auto; }
.pill.on { background: rgba(255, 255, 255, 0.09); color: var(--ink); }
.content { animation: promptIn 0.35s ease both; min-height: 200px; }
.content h3 { font-size: 22px; font-weight: 500; margin: 6px 0 14px; letter-spacing: 0.02em; }
.content p { font-size: 15.5px; line-height: 1.72; color: #ddd6c6; margin-bottom: 16px; }
.content .str { list-style: none; padding: 0; }
.content .str li { font-size: 14.5px; line-height: 1.55; color: #ddd6c6; margin-bottom: 10px; }
.content .str b { color: var(--ink); font-weight: 600; }

.pending {
  font-size: 12.5px; color: var(--accent);
  border: 1px solid rgba(232, 181, 106, 0.28); background: rgba(232, 181, 106, 0.06);
  border-radius: 12px; padding: 9px 13px; margin: 6px 0 10px;
  animation: promptIn 0.4s ease both;
}
.pending.done { color: var(--accent-2); border-color: rgba(159, 194, 122, 0.3); background: rgba(159, 194, 122, 0.06); }

/* ---- check-in (self-report) ---- */
.sr { margin-bottom: 18px; }
.sr label { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 8px; }
.sr label span { color: var(--accent); font-weight: 500; }
.sr label small { color: var(--faint); font-weight: 400; }
.sr input[type="range"] { width: 100%; accent-color: var(--accent); height: 28px; }
.sr .ends { display: flex; justify-content: space-between; font-size: 11.5px; color: var(--faint); margin-top: 2px; }
.sr input[type="text"] {
  width: 100%; background: var(--card); border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); font: 400 16px "Inter", sans-serif; padding: 12px 14px; outline: none; /* 16px: iOS zooms smaller inputs */
}
.sr input[type="text"]:focus { border-color: rgba(232, 181, 106, 0.5); }

/* ---- longitudinal deltas on the vector preview ---- */
.vp .delta { display: block; font-style: normal; font-size: 10.5px; margin-top: -2px; color: var(--faint); }
.vp .delta.up { color: var(--accent-2); }
.vp .delta.down { color: #e09a6a; }

/* ---- voice scan: prompted lines, then the open question ---- */
.lines { text-align: center; margin: 4px 0 10px; }
.lines .line {
  font-size: 21px; font-weight: 300; line-height: 1.55;
  color: rgba(240, 236, 226, 0.26);
  transition: color 0.45s, transform 0.45s, text-shadow 0.45s;
}
.lines .line.on { color: var(--ink); transform: scale(1.08); text-shadow: 0 0 26px rgba(232, 181, 106, 0.35); }
.lines .line.done { color: rgba(240, 236, 226, 0.16); }
.ask {
  text-align: center; font-family: "Instrument Serif", serif; font-style: italic;
  font-size: 27px; color: var(--accent); margin: 4px 0 12px;
  animation: promptIn 0.5s ease both;
}
.ask[hidden] { display: none; }

/* ---- section ratings ---- */
.rate { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); display: grid; gap: 10px; }
.sheet.overall .rate { margin-top: 8px; padding-top: 12px; border-top: 0; }
.rate-q { font-size: 13px; color: var(--dim); }
.rate-dots { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.dot { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); cursor: pointer; padding: 0; transition: background 0.2s, box-shadow 0.2s, transform 0.2s; }
.dot:hover { transform: scale(1.1); }
.dot.on { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 10px rgba(232, 181, 106, 0.45); }
.rate-ends { display: flex; gap: 14px; margin-left: 4px; font-size: 11px; color: var(--faint); }
.rate-ends i { font-style: italic; }
.rate-note { width: 100%; background: var(--card); border: 1px solid var(--line); border-radius: 12px; color: var(--ink); font: 400 16px "Inter", sans-serif; padding: 10px 12px; outline: none; }
.rate-note:focus { border-color: rgba(232, 181, 106, 0.5); }
.rate-note[hidden], .rate-done[hidden] { display: none; }
.rate-done { font-size: 12.5px; color: var(--accent-2); }

/* answer window of the voice scan: the question is the hero */
.ask.big { font-size: 30px; line-height: 1.15; margin: 6px 0 10px; }
@media (max-width: 480px) { .ask.big { font-size: 26px; } }
