/* ==========================================================================
   Just One Interview — v2 (pingo.ai construction clone, JOI brand mapping)
   Every non-obvious constant below is a measured marker from the pingo scout
   (design/2026-07-justoneinterview-pingo-redesign/scout-pingo.md).
   ========================================================================== */

/* ---------- tokens ---------- */
:root {
  --white: #ffffff;
  --cream-100: #faf8f5;         /* section bg (pingo cream-100 #FAF9F7, warmed to JOI) */
  --cream-200: #f1ede4;         /* card dividers */
  --cream-300: #eee9df;         /* icon neutral strokes (pingo used #F5F2EC) */
  --ink: #22251c;               /* JOI warm ink (brand layer; pingo used #000) */
  --ink-subtle: #5c6157;        /* 6.36:1 on white ≥ pingo #666 5.74:1 */
  --orange: #ee5522;            /* brand primary: mark, display accents, non-text fills */
  --orange-strong: #d24108;     /* flood/buttons/text accents — white 4.67:1 = pingo 4.66:1 */
  --orange-50: #fdeee7;         /* faq icon chip */
  --green: #0ba524;             /* accent2 — white 3.27:1 = pingo pink role */
  --sun: #fedc47;               /* accent3 — shape fill only, never text */
  --gradient-brand: linear-gradient(216.64deg, #f98a74 4.5%, #ee5522 93.6%);
  --glass-pill: radial-gradient(150% 220% at 50% -25%, #ffffff80 0%, #f8e1ccb3 42%, #efceae8c 80%);
  --shadow-soft: 0 8.617px 25.277px rgba(0, 0, 0, .10);
  --shadow-glass: inset 0 1px 1.5px #ffffff73, inset 0 -1px 3px #ffffff26;
  --r-3xl: 40px;
  --r-2xl: 32px;
  --max-site: 1200px;
  --font-sans: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

/* ---------- fonts ---------- */
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo/archivo-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Archivo'; src: url('../fonts/archivo/archivo-600.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('../fonts/ibm-plex-mono/ibmplexmono-400.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'IBM Plex Mono'; src: url('../fonts/ibm-plex-mono/ibmplexmono-500.woff2') format('woff2'); font-weight: 500; font-display: swap; }

/* ---------- base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-sans);
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.visually-hidden, .skip-link:not(:focus) {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip-link:focus {
  position: fixed; top: 8px; left: 8px; z-index: 100; background: var(--ink);
  color: #fff; padding: 10px 16px; border-radius: 999px;
}
.section-inner { max-width: var(--max-site); margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .section-inner { padding: 0 24px; } }

/* type scale (pingo, measured) */
.display { font-weight: 600; font-size: 40px; line-height: 1.05; letter-spacing: -.02em; text-wrap: balance; }
@media (min-width: 768px) { .display { font-size: 64px; } }
h3 { font-weight: 600; }
.dot-sep { opacity: .45; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 600; font-size: 16px; line-height: 1.1;
  padding: 12px 22px; transition: background-color .2s, box-shadow .2s, transform .2s;
  cursor: pointer; border: 0;
}
.btn-primary { background: var(--orange-strong); color: #fff; }
.btn-primary:hover { background: #bd3a07; }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--cream-100); }
.btn-lg { padding: 16px 28px; font-size: 18px; }

/* ---------- header: fixed glass pill (measured ramp: alpha .85 / blur 14px over 120px) ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 16px 16px 0; }
@media (min-width: 768px) { .site-header { padding: 16px 24px 0; } }
.header-pill {
  max-width: var(--max-site); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  border-radius: 999px; padding: 8px 12px;
  border: 1px solid rgba(34, 37, 28, 0);
  background-color: rgba(255, 255, 255, var(--hdr-a, 0));
  -webkit-backdrop-filter: blur(var(--hdr-b, 0px)) saturate(140%);
  backdrop-filter: blur(var(--hdr-b, 0px)) saturate(140%);
}
@media (min-width: 768px) { .header-pill { padding: 8px 12px 8px 24px; } }
.header-pill.scrolled { border-color: rgba(34, 37, 28, .06); box-shadow: var(--shadow-glass); }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { height: 22px; width: auto; }
.brand-word { font-weight: 600; font-size: 18px; letter-spacing: -.01em; white-space: nowrap; }
.brand-1 { color: var(--orange); }
.brand-footer .brand-1 { color: var(--sun); }
@media (max-width: 480px) {
  .brand-word { font-size: 16px; }
  .header-cta { font-size: 14px; padding: 10px 14px; white-space: nowrap; }
}
.header-nav { display: none; align-items: center; gap: 8px; }
@media (min-width: 768px) { .header-nav { display: flex; } }
.header-nav a { font-size: 16px; line-height: 1.1; padding: 10px 14px; border-radius: 999px; color: var(--ink); transition: background-color .2s; }
.header-nav a:hover { background: var(--cream-100); }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; background: var(--white);
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 80px 16px 24px;
}
@media (min-width: 768px) { .hero { padding: 96px 24px 40px; } }
.hero-inner { max-width: 896px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; text-align: center; }
.mark-hero { aspect-ratio: 4 / 3; width: 34svh; min-width: 240px; max-width: 420px; height: auto; }
@media (min-width: 1024px) { .mark-hero { width: 38svh; max-width: 480px; } }
.hero-greeting { margin-top: 16px; font-size: clamp(18px, 2.6vw, 28px); letter-spacing: -.02em; min-height: 1.25em; }
@media (min-width: 768px) { .hero-greeting { margin-top: 20px; } }
.greeting-word {
  display: inline-block; font-weight: 600;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-bottom: .08em;
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}
.greeting-word.swap { opacity: 0; filter: blur(6px); transform: translateY(8px); }
h1 {
  margin-top: 8px; font-weight: 600;
  font-size: clamp(24px, 4.2vw, 46px); line-height: 1.05; letter-spacing: -.02em;
}
@media (min-width: 768px) { h1 { margin-top: 12px; } }
h1 .block { display: block; }
.hero-sub { margin-top: 20px; font-size: 20px; line-height: 1.35; color: var(--ink-subtle); max-width: 560px; }
.hero-ctas { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.hero-trust { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-subtle); }
.trust-dot { width: 14px; height: 14px; }

/* ---------- asks carousel (pingo language rail construction) ---------- */
.asks { position: relative; background: var(--white); padding: 24px 0; }
@media (min-width: 768px) { .asks { padding: 40px 0; } }
.asks-inner { position: relative; max-width: var(--max-site); margin: 0 auto; }
.asks-track {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; overscroll-behavior-x: contain;
  padding: 24px 16px; scroll-padding-left: 16px;
  -webkit-mask-image: linear-gradient(to right, black 0, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, black 0, black 95%, transparent 100%);
}
@media (min-width: 768px) { .asks-track { gap: 16px; padding: 32px 24px; } }
.asks-track li { scroll-snap-align: start; flex-shrink: 0; }
.ask-pill {
  display: inline-flex; align-items: center; gap: 14px;
  border-radius: var(--r-3xl); background: var(--cream-100);
  padding: 14px 24px; font-size: 16px; line-height: 1.1; white-space: nowrap;
  transition: background-color .2s, box-shadow .2s;
}
.ask-pill svg { width: 34px; height: 34px; flex-shrink: 0; }
.ask-pill:hover { background: var(--white); box-shadow: var(--shadow-soft); }
.scroll-hide { scrollbar-width: none; -ms-overflow-style: none; }
.scroll-hide::-webkit-scrollbar { display: none; }
.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 20;
  display: grid; place-items: center; width: 44px; height: 44px;
  border-radius: 999px; border: 0; background: var(--white); color: var(--ink);
  box-shadow: var(--shadow-soft); cursor: pointer;
  transition: opacity .2s; opacity: 1;
}
.carousel-arrow svg { width: 20px; height: 20px; }
.arrow-left { left: 8px; } .arrow-right { right: 8px; }
@media (min-width: 768px) { .arrow-left { left: 16px; } .arrow-right { right: 16px; } }
.carousel-arrow[data-hidden="1"] { opacity: 0; pointer-events: none; }

/* ---------- how it works ---------- */
.how { background: var(--white); padding: 80px 0; }
@media (min-width: 768px) { .how { padding: 112px 0; } }
.how .display { max-width: 700px; }
.how-cards { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .how-cards { grid-template-columns: repeat(3, 1fr); } }
.how-card {
  display: flex; flex-direction: column;
  background: var(--cream-100); border-radius: var(--r-3xl);
  padding: 28px; transition: box-shadow .2s; cursor: default;
}
@media (min-width: 768px) { .how-card { padding: 32px; } }
.how-card:hover { box-shadow: var(--shadow-soft); }
.how-art { display: flex; justify-content: center; }
.mark-card { width: 192px; aspect-ratio: 4 / 3; height: auto; }
@media (min-width: 768px) { .mark-card { width: 224px; } }
.how-num { display: block; margin-top: 24px; font-weight: 600; font-size: 40px; line-height: 1; letter-spacing: -.02em; color: var(--green); }
.how-card h3 { margin-top: 12px; font-size: 24px; line-height: 1.2; }
.how-card p { margin-top: 8px; font-size: 16px; line-height: 1.4; color: var(--ink-subtle); }

/* ---------- moments: ink-drop flood ---------- */
.moments { position: relative; isolation: isolate; overflow: hidden; background: var(--white); padding: 80px 0; }
@media (min-width: 768px) { .moments { padding: 128px 0; } }
.flood-dot {
  position: absolute; left: 50%; top: var(--dot-top, 30%); z-index: 5;
  width: 36px; height: 36px; border-radius: 999px; background: var(--orange-strong);
  transform: translate(-50%, -50%); opacity: var(--dot-o, 0);
  pointer-events: none; will-change: top;
}
.flood {
  position: absolute; inset: 0; z-index: 0; background: var(--orange-strong);
  clip-path: circle(var(--flood-r, 150%) at 50% 30%);
  pointer-events: none; will-change: clip-path;
}
.moments-content { position: relative; z-index: 10; max-width: var(--max-site); margin: 0 auto; padding: 0 16px; opacity: var(--moments-o, 1); }
@media (min-width: 768px) { .moments-content { padding: 0 24px; } }
.moments-head { max-width: 672px; }
.moments .display { color: #fff; }
.moments-sub { margin-top: 20px; font-size: 20px; line-height: 1.35; color: rgba(255, 255, 255, .85); }
.moments-grid { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .moments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .moments-grid { grid-template-columns: repeat(3, 1fr); } }
.moment-card {
  display: flex; flex-direction: column; gap: 24px; height: 100%;
  background: var(--white); border-radius: var(--r-3xl); padding: 24px;
  box-shadow: var(--shadow-soft); cursor: default;
}
@media (min-width: 768px) { .moment-card { padding: 28px; } }
.moment-icon { display: flex; align-items: center; height: 96px; }
.moment-icon svg { height: 100%; width: auto; max-width: 112px; }
.moment-card h3 { font-size: 24px; line-height: 1.2; letter-spacing: -.02em; }
@media (min-width: 768px) { .moment-card h3 { font-size: 32px; } }
.chat { margin-top: auto; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--cream-200); padding-top: 20px; }
.chat-coach { display: grid; grid-template-columns: max-content 1fr; column-gap: 12px; }
.chat-label {
  font-family: var(--font-mono); font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: .08em; color: rgba(34, 37, 28, .5);
  margin-top: 3px;
}
.chat-coach p { font-size: 16px; line-height: 1.4; }
.chat-coach strong { font-weight: 600; color: var(--orange-strong); }
.chat-you { text-align: right; }
.bubble {
  display: inline-block; max-width: 100%;
  border-radius: var(--r-2xl); padding: 6px 14px;
  font-size: 16px; line-height: 1.375;
  background-image: var(--glass-pill);
  box-shadow: var(--shadow-glass);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
}

/* ---------- updates marquee (pingo testimonials construction) ---------- */
.updates { background: var(--cream-100); padding: 80px 0; }
@media (min-width: 768px) { .updates { padding: 112px 0; } }
.updates-head { max-width: 672px; }
.updates-sub { margin-top: 16px; font-size: 20px; line-height: 1.35; color: var(--ink-subtle); }
.updates-caption {
  margin-top: 20px; font-family: var(--font-mono); font-size: 12px;
  text-transform: uppercase; letter-spacing: .08em; color: rgba(34, 37, 28, .5);
}
.marquee-viewport {
  margin-top: 24px; padding-block: 36px; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000 0, #000 6% 94%, #0000 100%);
  mask-image: linear-gradient(90deg, #0000 0, #000 6% 94%, #0000 100%);
}
.marquee-track { display: flex; width: max-content; padding-left: 16px; animation: marquee 90s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.update-card {
  flex-shrink: 0; width: 300px; margin-right: 20px;
  background: var(--white); border-radius: var(--r-3xl); padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .2s; cursor: default;
}
@media (min-width: 768px) { .update-card { width: 360px; padding: 28px; } }
.update-card:hover { box-shadow: var(--shadow-soft); }
.update-kicker {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--orange-strong);
}
.update-time { color: rgba(34, 37, 28, .4); }
.update-body { font-size: 16px; line-height: 1.4; }

/* ---------- faq ---------- */
.faq { background: var(--white); padding: 80px 0; }
@media (min-width: 768px) { .faq { padding: 112px 0; } }
.faq-inner { max-width: 760px; }
.faq-list { margin-top: 48px; }
.faq-list details { border-bottom: 1px solid var(--cream-200); }
.faq-list summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-weight: 600; font-size: 20px; line-height: 1.25; letter-spacing: -.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative; flex-shrink: 0; width: 36px; height: 36px;
  border-radius: 999px; background: var(--orange-50);
  transition: transform .25s ease;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--orange-strong);
  transform: translate(-50%, -50%); border-radius: 2px;
}
.faq-icon::before { width: 14px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 14px; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-body { padding: 0 0 24px; max-width: 640px; }
.faq-body p { font-size: 16px; line-height: 1.45; color: var(--ink-subtle); }

/* ---------- final cta ---------- */
.final-cta { background: var(--white); padding: 80px 0 96px; }
@media (min-width: 768px) { .final-cta { padding: 128px 0 144px; } }
.final-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 900px) { .final-grid { grid-template-columns: 1.3fr 1fr; } }
.final-sub { margin-top: 16px; font-size: 20px; line-height: 1.35; color: var(--ink-subtle); }
.final-ctas { margin-top: 32px; }
.final-mark { display: flex; justify-content: center; }
.mark-final { width: min(340px, 70%); aspect-ratio: 4 / 3; height: auto; }

/* ---------- footer ---------- */
.site-footer { background: var(--orange-strong); color: #fff; padding: 56px 0 40px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; }
.brand-footer .brand-word { color: #fff; font-size: 20px; }
.footer-tag { margin-top: 12px; font-size: 16px; color: rgba(255, 255, 255, .85); }
.footer-nav { display: flex; flex-wrap: wrap; align-items: flex-start; column-gap: 24px; row-gap: 8px; padding-top: 4px; }
.footer-nav a { font-size: 16px; line-height: 1.1; color: rgba(255, 255, 255, .9); }
.footer-nav a:hover { color: #fff; text-decoration: underline; }
.footer-roles { margin-top: 40px; display: flex; flex-wrap: wrap; align-items: center; column-gap: 12px; row-gap: 4px; font-size: 14px; color: rgba(255, 255, 255, .6); }
.footer-legal { margin-top: 16px; font-size: 12px; line-height: 1.5; color: rgba(255, 255, 255, .5); max-width: 720px; }

/* ---------- entrance reveals (pingo: y24 + opacity, cards add scale .985; JS-gated) ---------- */
html.js [data-reveal], html.js [data-reveal-card] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.16, 1, .3, 1), transform .7s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--d, 0ms);
}
html.js [data-reveal-card] { transform: translateY(24px) scale(.985); }
html.js .in[data-reveal], html.js .in[data-reveal-card] { opacity: 1; transform: none; }

/* word-blur heading reveal (scroll-scrubbed; opacity stays 1, blur clears per word) */
html.js [data-words] .w { display: inline-block; filter: blur(10px); transition: filter .4s ease; }
html.js [data-words] .w.on { filter: blur(0); }

/* moments flood JS-gated initial state (no-JS keeps flood full + content visible) */
html.js .flood { clip-path: circle(var(--flood-r, 1.4%) at 50% 30%); }
html.js .moments-content { opacity: var(--moments-o, 0); }

/* ---------- reduced motion: everything visible and still ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-reveal], html.js [data-reveal-card] { opacity: 1; transform: none; transition: none; }
  html.js [data-words] .w { filter: none; transition: none; }
  html.js .flood { clip-path: circle(150% at 50% 30%); }
  html.js .moments-content { opacity: 1; }
  .flood-dot { display: none; }
  .marquee-track { animation: none; }
  .marquee-viewport { overflow-x: auto; scrollbar-width: none; }
  .greeting-word, .faq-icon { transition: none; }
}

/* ==========================================================================
   v3 additions — role cards (home), explore page, login. Same tokens/idioms.
   ========================================================================== */

/* ---------- role cards (home: "Roles we interview for") ---------- */
.roles { background: var(--white); padding: 64px 0 24px; }
@media (min-width: 768px) { .roles { padding: 88px 0 32px; } }
.roles-head { max-width: 700px; }
.roles-sub { margin-top: 16px; font-size: 20px; line-height: 1.35; color: var(--ink-subtle); }
.roles-grid {
  margin-top: 40px; display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 560px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .roles-grid { grid-template-columns: repeat(3, 1fr); } }
.roles-more { margin-top: 32px; display: flex; justify-content: center; }

.role-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--cream-100); border-radius: var(--r-2xl);
  padding: 22px 24px; border: 1px solid transparent;
  transition: box-shadow .2s, transform .2s, border-color .2s, background-color .2s;
}
.role-card:hover {
  background: var(--white); box-shadow: var(--shadow-soft);
  border-color: var(--cream-200); transform: translateY(-2px);
}
.role-card:focus-visible { outline: 2px solid var(--orange-strong); outline-offset: 3px; }
.role-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 500; font-size: 11px;
  text-transform: uppercase; letter-spacing: .09em; color: var(--ink-subtle);
}
.role-dot { width: 9px; height: 9px; border-radius: 999px; flex-shrink: 0; }
.dot-tech { background: var(--green); }
.dot-sales { background: var(--orange); }
.dot-marketing { background: var(--sun); }
.dot-hr { background: var(--ink-subtle); }
.role-title { font-size: 20px; line-height: 1.2; letter-spacing: -.01em; }
@media (min-width: 768px) { .role-title { font-size: 22px; } }
.role-loc {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; color: var(--ink-subtle);
}
.role-pin { width: 15px; height: 15px; color: var(--orange-strong); flex-shrink: 0; }
.role-micro {
  margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--cream-200);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--ink);
}
.role-arrow { color: var(--orange-strong); font-weight: 600; transition: transform .2s; }
.role-card:hover .role-arrow { transform: translateX(4px); }

/* ---------- explore page ---------- */
.explore-hero { background: var(--white); padding: 120px 0 24px; }
@media (min-width: 768px) { .explore-hero { padding: 152px 0 32px; } }
.explore-hero .display { max-width: 820px; }
.explore-sub { margin-top: 20px; font-size: 20px; line-height: 1.4; color: var(--ink-subtle); max-width: 640px; }
.chips { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 999px; border: 1px solid var(--cream-200); background: var(--white);
  padding: 10px 18px; font-family: var(--font-sans); font-weight: 600; font-size: 15px;
  color: var(--ink); cursor: pointer; transition: background-color .2s, color .2s, border-color .2s;
}
.chip:hover { background: var(--cream-100); }
.chip[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.chip .chip-n { font-family: var(--font-mono); font-size: 12px; opacity: .6; }
.chip[aria-pressed="true"] .chip-n { opacity: .8; }
.explore-list { background: var(--white); padding: 32px 0 96px; }
.explore-grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
}
@media (min-width: 560px) { .explore-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .explore-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .explore-grid { grid-template-columns: repeat(4, 1fr); } }
.role-card[hidden] { display: none; }
.explore-empty { margin-top: 24px; color: var(--ink-subtle); font-size: 16px; display: none; }
.explore-cta { margin-top: 56px; text-align: center; }
.explore-cta p { margin-top: 14px; color: var(--ink-subtle); font-size: 16px; }

/* ---------- login (card taps land here) ---------- */
.login-wrap {
  min-height: 100svh; display: flex; align-items: center; justify-content: center;
  padding: 96px 16px 48px; background: var(--cream-100);
}
.login-card {
  width: 100%; max-width: 420px; background: var(--white);
  border-radius: var(--r-3xl); padding: 40px 32px; box-shadow: var(--shadow-soft);
  text-align: center;
}
.login-mark { width: 132px; aspect-ratio: 4/3; height: auto; margin: 0 auto 12px; }
.login-card h1 { font-size: 26px; line-height: 1.15; margin: 0; }
.login-card .login-sub { margin-top: 10px; color: var(--ink-subtle); font-size: 16px; line-height: 1.4; }
.login-form { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.login-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.login-input {
  width: 100%; border: 1px solid var(--cream-200); border-radius: 14px;
  padding: 14px 16px; font-family: var(--font-sans); font-size: 16px; color: var(--ink);
  background: var(--white);
}
.login-input:focus { outline: 2px solid var(--orange-strong); outline-offset: 1px; border-color: transparent; }
.login-form .btn { margin-top: 4px; width: 100%; }
.login-note {
  margin-top: 16px; font-size: 14px; line-height: 1.45; color: var(--ink-subtle);
  min-height: 1.4em;
}
.login-foot { margin-top: 20px; font-size: 14px; color: var(--ink-subtle); }
.login-foot a { color: var(--orange-strong); font-weight: 600; }
.login-back { margin-top: 24px; font-size: 14px; }
.login-back a { color: var(--ink-subtle); }
.login-back a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- hero FOMO line ---------- */
.hero-fomo {
  margin-top: 14px; font-size: 16px; font-weight: 600; line-height: 1.35;
  color: var(--orange-strong); max-width: 520px;
}

/* ---------- practice vs the one ---------- */
.compare { background: var(--cream-100); padding: 80px 0; }
@media (min-width: 768px) { .compare { padding: 112px 0; } }
.compare .display { max-width: 640px; }
.compare-intro { margin-top: 16px; font-size: 20px; line-height: 1.35; color: var(--ink-subtle); max-width: 560px; }
.compare-grid { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .compare-grid { grid-template-columns: repeat(2, 1fr); } }
.compare-col {
  background: var(--white); border-radius: var(--r-3xl); padding: 32px;
  box-shadow: var(--shadow-soft); display: flex; flex-direction: column;
}
.compare-col--one { background: var(--ink); color: #fff; }
.compare-tag {
  align-self: flex-start; font-family: var(--font-mono); font-weight: 500; font-size: 12px;
  text-transform: uppercase; letter-spacing: .08em;
  border-radius: 999px; padding: 6px 14px; background: var(--orange-50); color: var(--orange-strong);
}
.compare-col--one .compare-tag { background: rgba(255,255,255,.14); color: var(--sun); }
.compare-col h3 { margin-top: 18px; font-size: 24px; line-height: 1.2; letter-spacing: -.01em; }
@media (min-width: 768px) { .compare-col h3 { font-size: 28px; } }
.compare-list { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.compare-list li {
  position: relative; padding-left: 26px; font-size: 16px; line-height: 1.4; color: var(--ink-subtle);
}
.compare-col--one .compare-list li { color: rgba(255,255,255,.82); }
.compare-list li b { font-weight: 600; color: var(--ink); }
.compare-col--one .compare-list li b { color: #fff; }
.compare-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px;
  border-radius: 999px; background: var(--green);
}
.compare-col--one .compare-list li::before { background: var(--sun); }
