/* ============================================================
   Codebasics Suitability Tests - shared engine styles
   Used by the landing page and every cohort test. All copy /
   dates / prices / links live in the per-cohort JS config files
   under /assets/cohorts/.
   ============================================================ */

/* Palette + tokens aligned to the Codebasics "Project Laser" brand book.
   Fonts intentionally differ from the brand default (Manrope): we use
   Sora for display and Inter for body. */
:root {
  --blue:        #3B82F6;  /* brand blue-500 */
  --blue-deep:   #2767B1;  /* brand blue-hover */
  --blue-active: #1D4ED8;  /* brand blue-active */
  --purple:      #6F53C1;
  --navy:        #3F4C78;  /* brand slate */
  --dark:        #181830;  /* brand navy */
  --white:       #FFFFFF;
  --lime:        #D7EF3F;
  --lime-deep:   #B6D228;
  --lightblue:   #E1E3FA;  /* brand lavender */
  --orange:      #FD7E15;
  --green:       #20C997;  /* brand teal / success */
  --pink:        #D63384;

  --ink:         #181830;  /* headings, logo, primary ink (brand navy) */
  --ink-2:       #475569;  /* brand text-secondary */
  --ink-3:       #64748B;
  --ink-soft:    #94A3B8;  /* brand muted */
  --line:        #E2E8F0;  /* brand border */
  --line-strong: #CBD5E1;  /* brand border-hover */
  --card-bg:     #FFFFFF;
  --card-hover:  #F7FAFF;  /* brand surface */
  --card-active: #EBF2FE;  /* brand blue-light */
  --page-bg:     #FFFFFF;
  --page-bg-tint:#F1F5FB;  /* brand surface-2 */

  --radius-lg:   16px;     /* brand radius-lg */
  --radius-md:   12px;     /* brand radius */
  --radius-sm:   8px;      /* brand radius-sm */

  --font-display: "Sora", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  --shadow-sm:   0 1px 2px rgba(16,17,18,0.05);
  --shadow-md:   0 4px 16px rgba(16,17,18,0.07);
  --shadow-lg:   0 12px 36px rgba(16,17,18,0.10);
  --shadow-blue: 0 6px 22px rgba(59,130,246,0.22);
}

* { box-sizing: border-box; }

/* The `hidden` attribute only sets `display: none` at the UA level, so any
   rule that gives an element its own `display` (the meter card uses grid,
   the start rows use flex) silently defeats it. Enforce it once here so
   `el.hidden = true` reliably hides things. */
[hidden] { display: none !important; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  background:
    radial-gradient(900px 700px at -20% -10%, rgba(59,130,246,.07), transparent 60%),
    radial-gradient(900px 700px at 120% 10%, rgba(111,83,193,.06), transparent 60%),
    radial-gradient(700px 600px at 50% 110%, rgba(215,239,63,.10), transparent 60%),
    var(--page-bg);
  background-attachment: fixed;
}

/* ---------- Top bar (logo) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  line-height: 1;
}
.logo img {
  display: block;
  height: 34px;
  width: auto;
  background: transparent;
}
.topbar-link {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .15s, color .15s;
}
.topbar-link:hover { background: var(--card-hover); color: var(--ink); }
@media (max-width: 420px) {
  .logo img { height: 28px; }
  .topbar-link { font-size: 13px; padding: 6px 10px; }
}
/* ---------- Layout primitives ---------- */
#app {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
}

.screen {
  display: none;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 28px 20px 48px;
  animation: screenIn .45s cubic-bezier(.2,.7,.2,1) both;
}
.screen.is-active { display: flex; }

.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.06;
  margin: 0;
  color: var(--ink);
}
.hl {
  display: inline-block;
  background: linear-gradient(180deg, transparent 58%, var(--lime) 58%, var(--lime) 92%, transparent 92%);
  padding: 0 4px;
  border-radius: 2px;
}
.hl-strong {
  display: inline-block;
  background: var(--lime);
  padding: 0 6px;
  border-radius: 4px;
  color: var(--ink);
}

.hero-title {
  font-size: clamp(34px, 7vw, 54px);
  margin: 18px 0 18px;
}
.hero-sub {
  font-size: clamp(17px, 4.2vw, 20px);
  color: var(--ink-2);
  margin: 0 0 16px;
  max-width: 40ch;
  line-height: 1.5;
}
.hero-meta {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0 0 26px;
  letter-spacing: 0.01em;
}
.hero-fine {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 14px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--lightblue);
  color: var(--navy);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(32,201,151,.18);
}

/* ---------- Intro ---------- */
.intro { padding-top: 5vh; }

.cta-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 14px 10px;
  background: var(--page-bg-tint);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.cta-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3px;
  min-width: 0;
}
.cta-stats .stat-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
}
.cta-stats .stat-label {
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 500;
}
@media (max-width: 520px) {
  .cta-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 14px; }
  .cta-stats .stat-num { font-size: 22px; }
}

.start-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
  max-width: 440px;
}
.start-row[hidden] { display: none; }

.start-row .hero-fine a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: rgba(59,130,246,0.35);
  text-underline-offset: 3px;
}
.start-row .hero-fine a:hover { color: var(--blue-deep); }
.start-row .hero-fine strong { color: var(--ink); font-weight: 600; }

.auth-loading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--page-bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--ink-2);
  font-weight: 500;
}
.auth-spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--lightblue);
  border-top-color: var(--blue);
  animation: spin .9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.auth-error {
  margin-top: 14px;
  padding: 14px 18px;
  background: #FFF0F0;
  border: 1px solid #F4C7C7;
  border-radius: var(--radius-sm);
  color: #8A1F1F;
  font-size: 14px;
  max-width: 440px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.auth-error[hidden] { display: none; }
.btn-link {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-link:hover { color: var(--blue-deep); }

/* ---------- Buttons & links ---------- */
.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 999px;
  padding: 16px 24px;
  font-size: 16px;
  transition: transform .15s ease, background .2s ease, box-shadow .25s ease, color .2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
}
.btn:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: var(--ink);
  color: var(--white);
}
.btn-secondary:hover { background: #0f0f24; }
.btn-ghost {
  background: transparent;
  color: var(--ink-2);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { color: var(--ink); background: var(--card-hover); }
.btn-lg {
  padding: 18px 28px;
  font-size: 17px;
  min-height: 60px;
}
.btn-block { width: 100%; }

.link-secondary {
  display: inline-block;
  color: var(--ink-2);
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 4px;
  font-size: 15px;
  padding: 8px 4px;
  font-weight: 500;
}
.link-secondary:hover { color: var(--blue-deep); text-decoration-color: var(--blue); }

/* ---------- Quiz ---------- */
.quiz-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto 26px;
  width: 100%;
}
.btn-back {
  background: var(--card-bg);
  border: 1px solid var(--line);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  min-height: 40px;
  transition: background .15s, border-color .15s, color .15s;
}
.btn-back:hover { background: var(--card-hover); border-color: var(--line-strong); color: var(--ink); }
.btn-back[disabled] { opacity: .4; cursor: not-allowed; }

.quiz-progress { display: flex; flex-direction: column; gap: 6px; }
.progress-track {
  height: 8px;
  background: var(--lightblue);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--lime-deep));
  border-radius: 999px;
  transition: width .5s cubic-bezier(.2,.7,.2,1);
}
.progress-text {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.quiz-body {
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}
.q-text {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 37px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 4px 0 24px;
}
.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 18px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .12s, box-shadow .2s;
  min-height: 62px;
  box-shadow: var(--shadow-sm);
}
.option:hover {
  background: var(--card-hover);
  border-color: var(--line-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.option:active { transform: scale(.985); }
.option.is-selected {
  background: var(--card-active);
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.16), var(--shadow-md);
}
.option:focus-visible {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,.30), var(--shadow-md);
}
.option-key {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  background: var(--lightblue);
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  font-size: 16px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.option.is-selected .option-key {
  background: var(--blue);
  color: var(--white);
}
.option-label { flex: 1; padding-top: 4px; }

/* ---------- Calculating ---------- */
#screen-calculating {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.calc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.loader { display: flex; gap: 8px; }
.loader span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  animation: bounce 1s infinite ease-in-out;
}
.loader span:nth-child(2) { animation-delay: .15s; background: var(--purple); }
.loader span:nth-child(3) { animation-delay: .3s;  background: var(--lime-deep); }
.calc-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 0.005em;
  min-height: 28px;
}

/* ---------- Result ---------- */
.result { padding-top: 4px; }
.result-section { margin-bottom: 18px; }

.archetype-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.archetype-card::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(215,239,63,.30), transparent 60%);
  pointer-events: none;
}
.archetype-card::after {
  content: "";
  position: absolute;
  bottom: -50%; left: -10%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(59,130,246,.12), transparent 60%);
  pointer-events: none;
}
.archetype-eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 10px;
  font-weight: 500;
  position: relative;
}
.archetype-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
  position: relative;
}
.archetype-desc {
  font-size: 16px;
  color: var(--ink-2);
  margin: 0;
  max-width: 52ch;
  position: relative;
}

.meter-card {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}
.meter-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.meter-label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.meter-bar {
  height: 14px;
  background: var(--lightblue);
  border-radius: 999px;
  overflow: hidden;
}
.meter-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--lime), var(--lime-deep) 70%, var(--green));
  border-radius: 999px;
  transition: width .9s cubic-bezier(.2,.7,.2,1);
}
.meter-score {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--ink);
  font-weight: 800;
}
.meter-score-pct { color: var(--ink-3); font-size: 24px; font-weight: 700; }

.insights {
  display: grid;
  gap: 14px;
}
.insight-block {
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.insight-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--ink);
}
.insight-block h3 .badge-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 8px;
  vertical-align: middle;
}
.insight-block#insight-watch h3 .badge-dot { background: var(--orange); }
.insight-block ul {
  margin: 0;
  padding-left: 22px;
}
.insight-block ul li { margin-bottom: 8px; color: var(--ink-2); }
.insight-block ul li:last-child { margin-bottom: 0; }
.insight-block p { margin: 0; color: var(--ink-2); }

.cta-card {
  background: linear-gradient(160deg, #FFFFFF, #F5F6FB);
  border: 1px solid var(--blue);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 60px -28px rgba(59,130,246,.4), 0 4px 12px -4px rgba(24,24,48,.06);
  position: relative;
}
.cta-thumb {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--dark);
  box-shadow: var(--shadow-md);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.cta-thumb:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.cta-thumb:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.cta-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
/* Configurable overlay badge (text set from cohort config). */
.cta-thumb-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: none;
}

.cta-card .verdict {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
}
.cta-card .verdict strong { color: var(--ink); font-weight: 600; }
.cta-card .verdict .hl-strong { font-weight: 600; }

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-cta {
  position: relative;
  animation: ctaPulse 2.4s ease-in-out infinite;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
  font-size: 14px;
  color: var(--ink-2);
  padding: 12px 14px;
  background: var(--lightblue);
  border-radius: var(--radius-sm);
}
.price-row strong { color: var(--ink); font-weight: 600; }

.reassure {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 4px 0 0;
}
.reassure strong { color: var(--ink-2); font-weight: 600; }

.retake-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  animation: revealIn .55s cubic-bezier(.2,.7,.2,1) forwards;
}
.reveal[data-delay="1"] { animation-delay: .05s; }
.reveal[data-delay="2"] { animation-delay: .25s; }
.reveal[data-delay="3"] { animation-delay: .45s; }
.reveal[data-delay="4"] { animation-delay: .60s; }
.reveal[data-delay="5"] { animation-delay: .75s; }
.reveal[data-delay="6"] { animation-delay: .90s; }
.reveal[data-delay="7"] { animation-delay: 1.05s; }

@keyframes revealIn {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes screenIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 80%, 100% { transform: translateY(0); opacity: .55; }
  40% { transform: translateY(-10px); opacity: 1; }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 14px 30px -12px rgba(59,130,246,.55), 0 0 0 0 rgba(59,130,246,.30); }
  50%      { box-shadow: 0 16px 36px -12px rgba(59,130,246,.70), 0 0 0 10px rgba(59,130,246,0); }
}

/* ============================================================
   Landing page
   ============================================================ */
.landing { padding-top: 4vh; max-width: 1040px; }
.landing-hero { text-align: center; margin: 0 auto 8px; max-width: 720px; }
.landing-hero .hero-title { margin: 16px 0 14px; }
.landing-hero .hero-sub { margin: 0 auto 8px; max-width: 46ch; }

.section { margin-top: 44px; }
.section-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 6px;
}
.section-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 5.5vw, 34px);
  color: var(--ink);
}
.section-sub {
  color: var(--ink-2);
  font-size: 15.5px;
  margin: 0 0 20px;
  max-width: 60ch;
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 620px) {
  .card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

.pick-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .25s ease, border-color .15s ease;
  position: relative;
  min-height: 100%;
}
.pick-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}
.pick-card:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
.pick-card.is-internal { border-color: rgba(59,130,246,0.32); }
.pick-card.is-internal:hover { border-color: var(--blue); }

.pick-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background: var(--lightblue);
  flex: 0 0 46px;
}
.pick-thumb {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--dark);
  margin: -2px 0 4px;
  box-shadow: var(--shadow-sm);
}
.pick-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pick-kicker {
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
}
.pick-title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.08;
  color: var(--ink);
}
.pick-desc {
  font-size: 14.5px;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.pick-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--blue-deep);
  margin-top: 2px;
}
.pick-card:hover .pick-cta { gap: 10px; }
.pick-cta .ext { color: var(--ink-soft); font-weight: 500; font-size: 12.5px; }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.pill {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--ink-2);
  background: var(--page-bg-tint);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.01em;
}

.landing-foot {
  margin: 48px 0 8px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .progress-fill, .meter-fill { transition: none; }
}

/* ---------- Larger screens ---------- */
@media (min-width: 720px) {
  .topbar { padding: 16px 28px; }
  .screen { padding: 36px 28px 60px; }
  .intro { padding-top: 7vh; }
  .insights { grid-template-columns: 1.4fr 1fr; }
  .cta-row { flex-direction: row; align-items: stretch; }
  .btn-cta { flex: 1 1 auto; }
}
