/* ==========================================================================
   Diagnóstico ANYTOOLS — landing page
   Design tokens taken from the "Diagnostico ANYTOOLS v3" canvas.
   ========================================================================== */

:root {
  /* Surfaces — matched to anytools.com.br, which sits on a near-black base and
     builds depth with blue blooms and hairlines rather than lighter fills. */
  --base: #090C18;          /* page background */
  --panel: #0C1122;         /* raised panels and cards */
  --tile: #111834;          /* tiles nested inside a panel */
  --glow: rgba(49, 81, 245, .20);   /* the site's blue bloom */

  /* Brand */
  --blue: #3151F5;          /* primary action */
  --sky: #2793FF;           /* accent / hover */
  --sky-soft: #7FBBFF;
  --warn: #FF6A2C;
  --success: #3EE79A;

  /* Text */
  --text: #FFFFFF;
  --text-soft: #E8ECFB;
  --text-muted: #9AA6CE;
  --text-faint: rgba(154, 166, 206, .6);

  /* Lines */
  --hairline: rgba(255, 255, 255, .10);
  --hairline-strong: rgba(255, 255, 255, .18);
  /* Full-bleed section separator: dark at the edges, lit blue at the centre. */
  --edge: linear-gradient(90deg, #090C18 0%, #3151F5 52.4%, #090C18 100%);

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: 240ms;

  /* Rhythm */
  --gutter: 48px;
  --radius-card: 32px;
  --radius-tile: 20px;
  --radius-option: 12px;
  --shadow-card: inset 0 1px 0 rgba(255, 255, 255, .05), 0 8px 24px rgba(0, 0, 0, .40);
}

/* Registered so the score ring can actually animate its conic sweep. */
@property --gauge-pct {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--base);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #fff; }

img { max-width: 100%; }

h1, h2, h3, p, dd, dl, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--blue);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
}
.skip-link:focus { left: 0; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* --------------------------------------------------------------- primitives */

.eyebrow {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow--accent { color: var(--sky); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.btn--ghost {
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  font-weight: 600;
  padding: 10px 20px;
}
.btn--ghost:hover { border-color: var(--sky); color: var(--sky); }

.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 40px rgba(49, 81, 245, .35);
}
.btn--primary:hover { background: var(--sky); }

.btn--lg { font-size: 17px; padding: 19px 40px; }

.btn--center { align-self: center; margin-top: 6px; }

.linkbtn {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}
.linkbtn:hover { color: var(--text); }
.linkbtn--center { align-self: center; font-size: 14px; font-weight: 400; margin-top: 6px; }

.navlink {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-align: left;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.navlink:hover { color: var(--text-soft); }

.doodle {
  position: absolute;
  pointer-events: none;
  user-select: none;
}

/* ------------------------------------------------------------------- topbar */

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--gutter);
  /* Figma exports the solid fill as the first layer, which in CSS paints over
     everything beneath it — the order is flipped here so the bloom survives.
     The base stays translucent so the sticky bar keeps its backdrop blur. */
  background:
    radial-gradient(26.43% 115.21% at 50% 100%, var(--glow) 0%, rgba(9, 12, 24, .20) 100%),
    rgba(9, 12, 24, .92);
  border: 0;
  border-bottom: 1.2px solid transparent;
  border-image: var(--edge) 1;
  backdrop-filter: blur(12px);
}

.topbar__logo { height: 22px; width: auto; display: block; }

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

/* -------------------------------------------------------------------- shell */

.shell { flex: 1; display: flex; flex-direction: column; }

.stage { display: flex; flex-direction: column; }
.stage[hidden] { display: none; }

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

.hero {
  position: relative;
  /* Same bloom as the topbar, opened up to fill the section. Fades to the base
     colour at zero alpha rather than `transparent`, which would grey the halo. */
  background: radial-gradient(58% 120% at 50% 100%, var(--glow) 0%, rgba(9, 12, 24, 0) 72%);
  padding: 96px var(--gutter) 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.doodle--basket { left: 72px; top: 28px; width: 148px; opacity: .55; }
.doodle--pin { right: 96px; top: 24px; width: 126px; opacity: .55; }
.doodle--window { right: 150px; bottom: 28px; width: 148px; opacity: .55; }
.doodle--chart { left: 132px; bottom: 24px; width: 126px; opacity: .55; }

.hero__title {
  position: relative;
  z-index: 1;
  font-size: 60px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
  max-width: 940px;
  text-wrap: balance;
}
.hero__title em { color: var(--sky); font-style: normal; }

.hero__subtitle {
  position: relative;
  z-index: 1;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-soft);
  max-width: 820px;
  text-wrap: balance;
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__lede {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 820px;
  text-wrap: balance;
}

.hero__cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.hero__note { font-size: 13px; color: var(--text-muted); }

/* -------------------------------------------------------------- intro panel */

.panel {
  /* The site separates full-bleed sections with a hairline that lights up blue
     at its centre instead of a flat rule. */
  border: 0;
  border-top: 1.2px solid transparent;
  border-image: var(--edge) 1;
  background: var(--panel);
  padding: 56px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.panel__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.panel__headline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
}

.panel__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 36px 56px;
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--sky);
}
.stat__label { margin: 0; font-size: 13px; color: var(--text-muted); }

.axes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.axis {
  background: var(--tile);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-tile);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 118px;
}
.axis__swatch {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .08);
  background: color-mix(in srgb, var(--axis-color) 22%, transparent);
}

.dim-icon {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  color: var(--icon-color, currentColor);
}
.dim-icon svg { width: var(--icon-size, 18px); height: var(--icon-size, 18px); display: block; }
.axis__label { font-size: 16px; font-weight: 700; letter-spacing: -.01em; }
.axis__hint {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  text-wrap: pretty;
}

.brands {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  padding-top: 8px;
}
.brands img { height: 17px; width: auto; opacity: .85; }
.brands__label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 150px;
}

/* --------------------------------------------------------------------- lead */

.stage--lead { flex: 1; align-items: center; justify-content: center; }
.lead-gate {
  width: 100%;
  /* Sized so that after the card's 40px padding the copy column still lands
     near the form's 440px; at 900px it was squeezed to 300px and the title
     broke over three lines. */
  max-width: 1060px;
  padding: 56px var(--gutter) 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lead-gate .card--lead { width: 100%; }

/* --------------------------------------------------------------------- quiz */

.stage--quiz { flex: 1; align-items: center; }

.progress {
  width: 100%;
  max-width: 1080px;
  height: 3px;
  background: rgba(255, 255, 255, .08);
}
.progress__bar {
  height: 100%;
  width: 0;
  background: var(--blue);
  transition: width var(--dur) var(--ease);
}

.quiz__instruction {
  width: 100%;
  max-width: 1080px;
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}

.quiz {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 48px;
  padding: 56px var(--gutter) 80px;
}

.trail {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}
.trail__list { display: flex; flex-direction: column; gap: 14px; }
.trail__item { display: flex; align-items: center; gap: 12px; }
.trail__dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  flex: none;
  background: rgba(255, 255, 255, .20);
  transition: background var(--dur) var(--ease);
}
.trail__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--dur) var(--ease);
}
.trail__item[data-state="done"] .trail__dot { background: var(--success); }
.trail__item[data-state="done"] .trail__label { color: var(--text-soft); }
.trail__item[data-state="active"] .trail__dot { background: var(--axis-color); }
.trail__item[data-state="active"] .trail__label { color: var(--text); font-weight: 700; }

.question { display: flex; flex-direction: column; gap: 26px; }

.question__meta { display: flex; align-items: center; gap: 12px; }
.question__counter { font-size: 13px; font-weight: 700; color: var(--sky); }
.question__rule { flex: 1; height: 1px; background: var(--hairline); }
.question__axis {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.question__text {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  text-wrap: pretty;
  max-width: 720px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 720px;
}

.option {
  width: 100%;
  text-align: left;
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius-option);
  padding: 19px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.option:hover { border-color: var(--sky); }

.option__letter {
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, .30);
  color: var(--text-muted);
  transition: all var(--dur) var(--ease);
}

.option__label { font-size: 16.5px; font-weight: 500; color: var(--text-soft); }

.option[aria-pressed="true"] {
  background: var(--blue);
  border-color: var(--blue);
}
.option[aria-pressed="true"] .option__label { color: #fff; }
.option[aria-pressed="true"] .option__letter {
  background: #fff;
  border-color: #fff;
  color: var(--blue);
}

.question__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  max-width: 720px;
}

/* ----------------------------------------------------------------- resultado */

.stage--result { flex: 1; align-items: center; }

.result {
  width: 100%;
  max-width: 1080px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 56px var(--gutter) 88px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.card--score {
  background: var(--panel);
  border: 1px solid var(--hairline);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.doodle--rings { right: -16px; bottom: -24px; width: 170px; opacity: .4; }

.gauge {
  flex: none;
  width: 156px;
  height: 156px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(var(--gauge-color, var(--sky)) 0% var(--gauge-pct, 0%), rgba(255, 255, 255, .10) var(--gauge-pct, 0%) 100%);
  transition: background 600ms var(--ease);
}
.gauge__core {
  width: 126px;
  height: 126px;
  border-radius: 9999px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.gauge__value {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
}
.gauge__unit { font-size: 12px; color: var(--text-muted); }

.verdict {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.verdict__headline {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.03em;
  text-wrap: balance;
  max-width: 600px;
}
.verdict__subline {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-soft);
  max-width: 580px;
  text-wrap: pretty;
}
.card--radar {
  background: var(--panel);
  border: 1px solid var(--hairline);
  padding: 32px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 32px;
  align-items: center;
}

.radar svg { width: 100%; display: block; }

.ranking { display: flex; flex-direction: column; gap: 13px; }
.ranking .eyebrow { margin-bottom: 2px; }
.ranking__list { display: flex; flex-direction: column; gap: 13px; }

.rank {
  display: grid;
  grid-template-columns: 140px 1fr 108px 28px;
  align-items: center;
  gap: 14px;
}
.rank__label { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--text-soft); }
.rank__meter {
  height: 8px;
  background: rgba(255, 255, 255, .14);
  border-radius: 9999px;
  overflow: hidden;
}
.rank__fill {
  height: 100%;
  border-radius: 9999px;
  background: var(--rank-color);
  transition: width 600ms var(--ease);
}
/* Progressive enhancement: grow from zero on first paint where supported.
   Browsers without @starting-style discard the block and render the bar
   already at its final width. */
@starting-style {
  .rank__fill { width: 0; }
}
.rank__status {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: var(--rank-text-color);
}
.rank__value {
  text-align: right;
  font-size: 15px;
  font-weight: 800;
}

.track { display: flex; flex-direction: column; gap: 14px; margin-top: 10px; }
.track__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 16px;
}

.product {
  background: var(--panel);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-tile);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
.product--primary {
  border-color: var(--product-color);
  box-shadow: 0 0 40px color-mix(in srgb, var(--product-color) 25%, transparent), inset 0 1px 0 rgba(255, 255, 255, .05);
}

.product__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.product__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--product-color);
}
.product__logo {
  height: 18px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}

.product__frase {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -.01em;
  text-wrap: pretty;
}

.product__section { display: flex; flex-direction: column; gap: 4px; }
.product__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.product__text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-soft);
  text-wrap: pretty;
}

.product__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
}
.product__lp { font-size: 13px; color: var(--text-muted); }
.product .btn--primary { padding: 13px 24px; font-size: 14.5px; box-shadow: none; }

/* --------------------------------------------------------------- lead form  */

/* Same surface as .card--score. HubSpot paints its own navy panel inside a
   cross-origin iframe we can't restyle, so it reads as an inset panel here —
   which only works because both tones are dark and close; on the old brand-blue
   fill the form looked like a box dropped onto a slab. */
.card--lead {
  background:
    radial-gradient(58% 78% at 18% 50%, var(--glow) 0%, rgba(9, 12, 24, 0) 72%),
    var(--panel);
  border: 1px solid var(--hairline);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Corner-anchored like .doodle--rings — clipped mid-edge it read as a glitch
   rather than a deliberate crop. */
.doodle--target {
  left: -28px;
  bottom: -30px;
  width: 190px;
  opacity: .10;
  filter: brightness(3);
}

.lead__copy {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lead__title {
  font-size: 31px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.lead__badge { margin-bottom: 2px; }

.lead__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-soft);
  max-width: 420px;
}

/* The three lines the form is trading for — spelled out so the gate reads as a
   handover, not a toll. */
.lead__list {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 420px;
}
.lead__list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--text-muted);
}
.lead__list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 5px;
  width: 11px;
  height: 6px;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}

.lead__fields {
  position: relative;
  z-index: 1;
  flex: 1 1 360px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.footer {
  background: var(--panel);
  border: 0;
  border-top: 1.2px solid transparent;
  border-image: var(--edge) 1;
  padding: 48px var(--gutter);
  display: grid;
  /* Two columns since the Institucional list came out — a third track would
     just leave dead space to the right. */
  grid-template-columns: 1.3fr 1fr;
  gap: 44px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand img { height: 20px; width: auto; align-self: flex-start; }
.footer__brand p { font-size: 13px; line-height: 1.6; color: var(--text-muted); }
.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 4px;
}

/* --------------------------------------------------------------- responsive */

@media (max-width: 1080px) {
  .card--radar { grid-template-columns: 320px 1fr; }
  .doodle--window, .doodle--chart { display: none; }
}

@media (max-width: 900px) {
  :root { --gutter: 32px; }

  .hero { padding: 72px var(--gutter) 64px; }
  .hero__title { font-size: 44px; }

  .stats { grid-template-columns: repeat(2, auto); }

  .quiz { grid-template-columns: 1fr; gap: 32px; }
  .trail__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 18px;
  }
  .question__text { font-size: 32px; }

  .card--radar { grid-template-columns: 1fr; }
  /* `width` is needed alongside the auto margins: auto margins on a grid item
     would otherwise shrink it to the SVG's 300px intrinsic width. */
  .radar { width: 100%; max-width: 420px; margin: 0 auto; }

  .track__list { grid-template-columns: 1fr; }

  .lead__fields { width: 100%; }

  .footer { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; --radius-card: 24px; }

  .topbar { padding: 16px var(--gutter); }
  .topbar__nav { gap: 14px; }
  .topbar__nav .navlink { display: none; }
  /* Without this the label breaks over two lines and the bar grows taller. */
  .topbar__nav .btn--ghost { font-size: 13px; padding: 9px 14px; white-space: nowrap; }

  .doodle--basket, .doodle--pin { display: none; }

  .hero { padding: 56px var(--gutter) 48px; }
  .hero__title { font-size: 34px; }
  .hero__lede { font-size: 16px; }
  .btn--lg { font-size: 16px; padding: 17px 28px; }

  .panel { padding: 40px var(--gutter); gap: 32px; }
  .panel__title { font-size: 24px; }
  .brands { gap: 24px; }

  .quiz { padding: 40px var(--gutter) 64px; }
  .question__text { font-size: 26px; }
  .option { padding: 16px 18px; gap: 12px; }
  .option__label { font-size: 15.5px; }

  .result { padding: 32px var(--gutter) 64px; }
  .card--score { padding: 28px; gap: 28px; }
  .verdict__headline { font-size: 26px; }
  .card--radar { padding: 22px; }
  .card--lead { padding: 26px; gap: 24px; }
  .lead__title { font-size: 22px; }

  .rank {
    grid-template-columns: 1fr auto auto;
    grid-template-areas:
      "label status value"
      "meter meter  meter";
    gap: 6px 12px;
  }
  .rank__label { grid-area: label; }
  .rank__status { grid-area: status; }
  .rank__value { grid-area: value; }
  .rank__meter { grid-area: meter; }
}

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