/* =========================================================================
   SkillQuotient AI — Apple-style marketing site (v2)
   ========================================================================= */
@import url("colors_and_type.css");

html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--ink-2); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: rgba(20,61,184,0.18); color: var(--ink-2); }

/* ---------- Eyebrow ribbon ---------- */
.eyebrow-bar {
  background: #f5f5f7;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  color: var(--ink-2);
  padding: 11px 16px;
  font-family: var(--font-text);
}
.eyebrow-bar a { color: var(--brand-blue); font-weight: 500; margin-left: 6px; }
.eyebrow-bar a:hover { text-decoration: underline; }

/* ---------- Sticky nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 56px;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav .inner {
  max-width: 1024px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}
.nav .mark { display: flex; align-items: center; gap: 8px; }
.nav .mark img { width: 24px; height: 24px; }
.nav .mark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.4px;
  color: var(--ink-2);
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-family: var(--font-text);
  color: var(--ink-2);
}
.nav ul a { opacity: .88; transition: opacity .2s; }
.nav ul a:hover { opacity: 0.55; }
.nav .right { display: flex; align-items: center; gap: 18px; }
.nav .right .icon-btn {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2); opacity: .88;
  background: none; border: 0; padding: 0;
}
.nav .sign-in {
  display: inline-flex; align-items: center;
  height: 28px; padding: 0 14px;
  border-radius: 240px;
  background: var(--gradient-brand);
  color: var(--white);
  font-size: 13px; font-weight: 600;
  font-family: var(--font-text);
  white-space: nowrap;
}
.nav .sign-in:hover { filter: brightness(1.06); }

/* ---------- Buttons (shared) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 240px;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 600;
  border: 0;
  transition: filter .15s, background .15s, color .15s, transform .12s, box-shadow .15s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--gradient-brand);
  color: var(--white);
  box-shadow: 0 8px 24px -8px rgba(20,61,184,0.4);
}
.btn-primary:hover { filter: brightness(1.08); box-shadow: 0 12px 32px -8px rgba(20,61,184,0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(20px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-link {
  background: transparent;
  color: var(--brand-blue);
  font-weight: 500;
  padding: 0;
  height: auto;
  gap: 2px;
}
.btn-link:hover { text-decoration: underline; }
.btn-dark { background: var(--ink-2); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-light { background: var(--white); color: var(--ink-2); }
.btn-light:hover { background: #f5f5f7; }
.btn-outline { background: transparent; color: var(--ink-2); border: 1px solid var(--line); }
.btn-outline:hover { background: var(--line-soft); }
.btn-sm { height: 36px; font-size: 13px; padding: 0 14px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-navy);
  color: var(--white);
  padding: 120px 24px 100px;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -260px -120px auto auto;
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(145,115,232,0.55) 0%, rgba(20,61,184,0.18) 35%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -360px -240px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(91,142,240,0.42) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 240px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(20px);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-on-brand);
  font-family: var(--font-text);
  margin-bottom: 28px;
  position: relative;
}
.hero .badge .pill {
  padding: 2px 8px;
  border-radius: 240px;
  background: var(--gradient-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero h1 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9.5vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: var(--white);
  margin: 0 auto;
  max-width: 16ch;
}
.hero h1 .accent {
  background: linear-gradient(135deg, #B7F0FF 0%, #9173E8 55%, #5B8EF0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Rotating struck-through word in hero */
.hero h1 .struck-word {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
  height: 1em;
  line-height: 1;
  overflow: hidden;
  min-width: 4.6ch;
  color: transparent;
}
.hero h1 .struck-word > span:not(.rotator) {
  /* keep "scripts" reserving width but hidden */
  visibility: hidden;
}
.hero h1 .struck-word .rotator {
  position: absolute;
  inset: 0;
  display: block;
  animation: rotateStack 9s cubic-bezier(0.7, 0, 0.3, 1) infinite;
}
.hero h1 .struck-word .rotator span {
  display: block;
  line-height: 1;
  color: rgba(250,250,250,0.42);
  text-decoration: line-through;
  text-decoration-color: #9173E8;
  text-decoration-thickness: 5px;
  text-decoration-skip-ink: none;
}
@keyframes rotateStack {
  0%, 25%   { transform: translateY(0); }
  33%, 58%  { transform: translateY(-1em); }
  66%, 91%  { transform: translateY(-2em); }
  100%      { transform: translateY(-3em); }
}
.hero .sub {
  position: relative;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(250,250,250,0.72);
  max-width: 640px;
  margin: 28px auto 0;
  font-family: var(--font-text);
}
.hero .ctas {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero .meta-row {
  position: relative;
  margin-top: 36px;
  font-size: 13px;
  color: rgba(250,250,250,0.55);
  display: flex; justify-content: center; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.hero .meta-row .dot { width: 6px; height: 6px; border-radius: 50%; background: #2DD4A0; box-shadow: 0 0 12px rgba(45,212,160,0.7); }

/* hero device preview (floating peek) */
.hero-peek {
  position: relative;
  margin: 80px auto 0;
  max-width: 1100px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-bottom: 0;
  box-shadow: 0 60px 120px -30px rgba(6,13,46,0.6), 0 0 60px rgba(145,115,232,0.15);
  background: var(--white);
}
.hero-peek::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 70%, rgba(6,13,46,0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ---------- Trust logo strip ---------- */
.logos {
  background: var(--white);
  padding: 64px 24px 72px;
  text-align: center;
}
.logos .label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  font-family: var(--font-text);
}
.logos .row {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  align-items: center;
}
.logos .row .logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: #1a1a1a;
  opacity: 0.55;
  text-align: center;
  letter-spacing: -0.04em;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}
.logos .row .logo:hover { opacity: 0.9; }
.logos .row .logo .glyph {
  width: 22px; height: 22px;
  border-radius: 5px;
}
.logos .row .logo.serif { font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.logos .row .logo.thin { font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; font-size: 13px; }
.logos .row .logo.mono { font-family: var(--font-mono); font-weight: 500; font-size: 18px; }

/* ---------- TILE GRID ---------- */
.tiles {
  background: #f5f5f7;
  padding: 12px;
  display: grid;
  gap: 12px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  min-height: 580px;
  display: flex;
  flex-direction: column;
  padding: 56px 56px 0;
}
.tile.dark {
  background: var(--gradient-navy);
  color: var(--white);
}
.tile .kicker {
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font-text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: var(--brand-blue);
}
.tile.dark .kicker {
  background: linear-gradient(135deg, #B7F0FF, #9173E8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tile h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0;
  max-width: 14ch;
  color: inherit;
}
.tile .lede {
  font-family: var(--font-text);
  font-size: 18px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 16px;
  max-width: 38ch;
}
.tile.dark .lede { color: rgba(250,250,250,0.7); }
.tile .actions { margin-top: 24px; display: flex; gap: 14px; align-items: center; }
.tile.dark .btn-link { color: #9CCBFF; }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.row-split { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; }
.tile.compact { min-height: 480px; padding: 44px 44px 0; }
.tile.compact h3 { font-size: clamp(28px, 3.5vw, 40px); }

/* ---------- TILE 1: AI Roleplay (big dark) ---------- */
.t-roleplay {
  text-align: center;
  align-items: center;
  padding-top: 88px;
  min-height: 760px;
}
.t-roleplay h3 { max-width: 18ch; font-size: clamp(40px, 5.5vw, 64px); }
.t-roleplay .lede { text-align: center; max-width: 56ch; }
.t-roleplay .actions { justify-content: center; }
.t-roleplay .stage {
  margin: 56px auto 0;
  width: 100%;
  max-width: 1080px;
  height: 460px;
  position: relative;
}

/* ---- Center persona "now on call" card ---- */
.persona-card {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 320px;
  height: 380px;
  border-radius: 24px;
  background: linear-gradient(180deg, #1f1733 0%, #0a0e26 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 30px 80px -10px rgba(0,0,0,0.6),
    0 0 80px rgba(145,115,232,0.25);
  padding: 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: left;
  font-family: var(--font-text);
  color: var(--white);
}
.persona-card::before {
  content: "";
  position: absolute;
  inset: -100px 50% auto auto;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(145,115,232,0.35), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.persona-card .pc-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  position: relative;
  z-index: 1;
}
.persona-card .pc-head .timer {
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
}
.persona-card .pc-head .live {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px;
  border-radius: 240px;
  background: rgba(229,62,62,0.18);
  color: #FDCED1;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em;
}
.persona-card .pc-head .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #E53E3E; box-shadow: 0 0 8px #E53E3E;
  animation: pulse 1.4s ease-in-out infinite;
}
.persona-card .pc-portrait {
  flex: 1;
  margin: 16px 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18) 0%, transparent 50%),
    linear-gradient(135deg, #F5A623 0%, #E53E3E 55%, #4533CC 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 16px;
}
.persona-card .pc-portrait::after {
  /* abstract "personality" mark — large initials watermark */
  content: "KC";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 140px;
  letter-spacing: -0.06em;
  color: rgba(0,0,0,0.22);
  text-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.persona-card .pc-portrait .pc-mic {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(20px);
  border-radius: 240px;
  font-size: 11px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}
.persona-card .pc-portrait .pc-mic .levels {
  display: inline-flex; gap: 2px; align-items: center;
}
.persona-card .pc-portrait .pc-mic .levels span {
  width: 2px; border-radius: 1px;
  background: #2DD4A0;
  animation: micbar 1.2s ease-in-out infinite;
}
.persona-card .pc-portrait .pc-mic .levels span:nth-child(1) { height: 6px; animation-delay: 0s; }
.persona-card .pc-portrait .pc-mic .levels span:nth-child(2) { height: 10px; animation-delay: .15s; }
.persona-card .pc-portrait .pc-mic .levels span:nth-child(3) { height: 14px; animation-delay: .3s; }
.persona-card .pc-portrait .pc-mic .levels span:nth-child(4) { height: 8px; animation-delay: .45s; }
.persona-card .pc-portrait .pc-mic .levels span:nth-child(5) { height: 4px; animation-delay: .6s; }
@keyframes micbar {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}
.persona-card .pc-meta {
  position: relative;
  z-index: 1;
}
.persona-card .pc-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0;
}
.persona-card .pc-role {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.persona-card .pc-status {
  margin-top: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
}
.persona-card .pc-status .typing-d {
  display: inline-flex; gap: 3px;
}
.persona-card .pc-status .typing-d span {
  width: 5px; height: 5px; border-radius: 50%;
  background: #9173E8;
  animation: typing 1.2s ease-in-out infinite;
}
.persona-card .pc-status .typing-d span:nth-child(2) { animation-delay: 0.15s; }
.persona-card .pc-status .typing-d span:nth-child(3) { animation-delay: 0.3s; }

/* Floating live-performance panel (left) */
.call-panel {
  position: absolute;
  top: 30px; left: -8px;
  width: 240px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(24px);
  text-align: left;
  font-family: var(--font-text);
  color: var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  z-index: 2;
}
.call-panel .ph {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.call-panel .ph .t {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
}
.call-panel .ph .live-dot {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 7px;
  border-radius: 240px;
  background: rgba(45,212,160,0.18);
  color: #C0F2C9;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.call-panel .ph .live-dot::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: #2DD4A0; box-shadow: 0 0 6px #2DD4A0;
  animation: pulse 1.4s ease-in-out infinite;
}
.call-panel .big-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.045em;
  background: linear-gradient(135deg, #B7F0FF, #9173E8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.call-panel .big-score-sub {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.call-panel .big-score-sub .delta {
  display: inline-flex; align-items: center; gap: 3px;
  color: #C0F2C9;
  font-weight: 600;
}
.call-panel .skill-list {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column;
  gap: 10px;
}
.call-panel .skill-list .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  font-size: 12px;
  align-items: baseline;
}
.call-panel .skill-list .row .name { color: rgba(255,255,255,0.75); font-weight: 500; }
.call-panel .skill-list .row .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--white);
}
.call-panel .skill-list .row .bar {
  grid-column: 1 / -1;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.call-panel .skill-list .row .bar::after {
  content: "";
  position: absolute; inset: 0 var(--g, 30%) 0 0;
  background: linear-gradient(90deg, #5B8EF0, #9173E8);
  border-radius: 2px;
}

/* Transcript stream (right) */
.tx-stream {
  position: absolute;
  top: 30px; right: -40px;
  width: 260px;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--font-text);
  text-align: left;
  z-index: 2;
}
.tx-bub {
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.45;
  position: relative;
}
.tx-bub.ai {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.92);
  border-bottom-left-radius: 4px;
}
.tx-bub.you {
  background: linear-gradient(135deg, #143DB8, #4533CC);
  color: #fff;
  border-bottom-right-radius: 4px;
  margin-left: 24px;
}
.tx-bub .src {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.tx-bub.you .src { color: rgba(255,255,255,0.75); }
.tx-bub.live::after {
  content: "▍";
  display: inline-block;
  color: rgba(255,255,255,0.6);
  animation: blink 1s steps(2) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

/* Bottom waveform across full stage */
.stage-wave {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 3px;
  align-items: flex-end;
  height: 36px;
  width: 380px;
}
.stage-wave .b {
  width: 3px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(145,115,232,0.4));
  border-radius: 2px;
  animation: bar 1.6s ease-in-out infinite;
}
@keyframes bar { 0%,100% { transform: scaleY(0.25); } 50% { transform: scaleY(1); } }

/* ---------- TILE: Live Call Analysis ---------- */
.t-analysis { color: var(--ink-2); background: var(--white); }
.t-analysis .stage {
  margin-top: 32px;
  width: 100%;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 32px;
}
.t-analysis .score-row {
  display: flex; gap: 12px; align-items: center;
}
.t-analysis .score-pill {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 16px 10px 12px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}
.t-analysis .score-pill .big {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.04em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-analysis .score-pill .meta {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.t-analysis .delta-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px;
  border-radius: 240px;
  background: #C0F2C9;
  color: #1F7A32;
  font-size: 11px; font-weight: 600;
}
.t-analysis .transcript-card {
  background: #fafafa;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 18px;
  font-size: 13px;
  line-height: 1.55;
  flex: 1;
  overflow: hidden;
}
.t-analysis .tx-line {
  display: flex; gap: 12px;
  margin-bottom: 12px;
}
.t-analysis .tx-line:last-child { margin-bottom: 0; }
.t-analysis .who-tag {
  flex-shrink: 0;
  width: 60px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  padding-top: 2px;
}
.t-analysis .you .who-tag { color: var(--brand-blue); }
.t-analysis .body { color: var(--ink-2); }
.t-analysis .body .filler { background: #FFF1F1; color: #E53E3E; padding: 0 4px; border-radius: 4px; text-decoration: line-through; text-decoration-thickness: 1px; }
.t-analysis .body .win { background: #C0F2C9; color: #1F7A32; padding: 0 4px; border-radius: 4px; font-weight: 500; }
.t-analysis .body .miss { background: #FCE9D6; color: #5B3F0A; padding: 0 4px; border-radius: 4px; }
.t-analysis .body .tag {
  display: inline-block;
  margin-left: 4px;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 240px;
  padding: 1px 6px;
  vertical-align: middle;
  background: var(--white);
}
.t-analysis .skill-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.t-analysis .skill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}
.t-analysis .skill .name {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 4px;
}
.t-analysis .skill .v {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.025em;
  color: var(--ink-2);
}
.t-analysis .skill .bar {
  margin-top: 6px;
  height: 3px; border-radius: 2px;
  background: var(--line);
  position: relative; overflow: hidden;
}
.t-analysis .skill .bar::after {
  content: "";
  position: absolute; inset: 0 var(--gap, 50%) 0 0;
  background: var(--gradient-brand);
}

/* ---------- TILE: Leaderboards ---------- */
.t-leader { background: linear-gradient(180deg, #fafafa 0%, #fff 100%); }
.t-leader .lb {
  margin-top: 28px;
  width: 100%;
  flex: 1;
  display: flex; flex-direction: column;
  gap: 8px;
  padding-bottom: 32px;
}
.t-leader .lb-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14px;
}
.t-leader .lb-row.you {
  background: linear-gradient(135deg, rgba(20,61,184,0.06), rgba(145,115,232,0.06));
  border-color: rgba(20,61,184,0.25);
  transform: translateX(-16px);
  box-shadow: var(--shadow-card);
}
.t-leader .rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--muted);
  width: 28px;
}
.t-leader .you .rank { color: var(--brand-blue); }
.t-leader .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: -0.02em;
}
.t-leader .name { flex: 1; font-weight: 500; color: var(--ink-2); }
.t-leader .xp {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: -0.02em;
}
.t-leader .delta { color: #2DD4A0; font-size: 12px; margin-left: 4px; }

/* sparkline at top of leaderboard */
.t-leader .sparkline {
  position: relative;
  height: 60px;
  margin-top: 24px;
  padding: 0;
}
.t-leader .sparkline svg { width: 100%; height: 100%; }

/* ---------- TILE: Coach Console ---------- */
.t-coach { background: var(--white); }
.t-coach .stage {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  flex: 1;
  padding-bottom: 32px;
}
.t-coach .assignment {
  background: linear-gradient(135deg, #f5f5f7 0%, #fff 100%);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex; gap: 14px;
  align-items: center;
}
.t-coach .assignment .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700; font-size: 22px;
  letter-spacing: -0.04em;
}
.t-coach .assignment .meta { flex: 1; }
.t-coach .assignment .title { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -0.02em; }
.t-coach .assignment .sub { font-size: 12px; color: var(--muted); margin-top: 4px; }
.t-coach .assignment .due {
  background: #B7F0FF;
  color: #143DB8;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 240px;
  font-weight: 600;
}
.t-coach .team-row {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  display: flex; gap: 16px; align-items: center;
}
.t-coach .team-row .label { font-size: 12px; color: var(--muted); font-weight: 500; }
.t-coach .team-row .avs { display: flex; }
.t-coach .team-row .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  margin-left: -8px;
  border: 2px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 10px; font-weight: 600; font-family: var(--font-display);
}
.t-coach .team-row .av:first-child { margin-left: 0; }
.t-coach .team-row .progress-text { margin-left: auto; font-family: var(--font-display); font-weight: 600; font-size: 16px; letter-spacing: -0.02em; }
.t-coach .team-row .progress-text .total { color: var(--muted); font-weight: 400; }

.t-coach .insight {
  background: #fafafa;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 16px 18px;
  display: flex; gap: 14px; align-items: center;
}
.t-coach .insight .glyph {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(45,212,160,0.2), rgba(20,61,184,0.15));
  color: #1F7A32;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.t-coach .insight .text { font-size: 13px; line-height: 1.4; color: var(--ink-2); }
.t-coach .insight strong { font-weight: 600; color: var(--brand-blue); }

/* ---------- TILE: Skills Heat Map (was Teams) ---------- */
.t-heatmap { padding-bottom: 0; }
.t-heatmap .stage {
  margin-top: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
}
.t-heatmap .heat {
  display: grid;
  grid-template-columns: 60px repeat(6, 1fr);
  gap: 6px;
  margin-top: 12px;
}
.t-heatmap .heat .skill-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex; align-items: center;
}
.t-heatmap .heat .cell {
  aspect-ratio: 1;
  border-radius: 6px;
  position: relative;
}
.t-heatmap .heat .cell.s9 { background: #2DD4A0; }
.t-heatmap .heat .cell.s8 { background: rgba(45,212,160,0.7); }
.t-heatmap .heat .cell.s7 { background: rgba(91,142,240,0.55); }
.t-heatmap .heat .cell.s6 { background: rgba(245,166,35,0.5); }
.t-heatmap .heat .cell.s5 { background: rgba(245,166,35,0.7); }
.t-heatmap .heat .cell.s4 { background: rgba(229,62,62,0.5); }
.t-heatmap .heat .cell.s3 { background: rgba(229,62,62,0.7); }
.t-heatmap .heat .members {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 6px;
}
.t-heatmap .heat .members .av {
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
.t-heatmap .stat-row {
  margin-top: auto;
  padding-top: 24px;
  display: flex; align-items: baseline; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.t-heatmap .stat-row .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #B7F0FF, #9173E8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.t-heatmap .stat-row .lbl { font-size: 13px; color: rgba(250,250,250,0.6); flex: 1; }

/* ---------- HOW IT WORKS ---------- */
.how {
  background: var(--white);
  padding: 140px 24px;
  max-width: 1280px;
  margin: 0 auto;
}
.how .head { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.how .head .eyebrow {
  font-size: 13px;
  color: var(--brand-blue);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-family: var(--font-text);
}
.how h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
}
.how .lede {
  font-size: 20px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.4;
}
.how .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.how .step {
  background: #fafafa;
  border-radius: 22px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.how .step .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--muted);
}
.how .step .num strong {
  font-weight: 600;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.how .step h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 14px 0 8px;
  line-height: 1.15;
  color: var(--ink-2);
}
.how .step p {
  font-size: 14px; line-height: 1.45;
  color: var(--muted);
  margin: 0;
}
.how .step .vis {
  margin-top: 24px;
  height: 120px;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

/* per-step visuals */
.how .step.s1 .vis {
  background: linear-gradient(135deg, #E6F1FF, #B7F0FF);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 36px;
  color: var(--brand-blue);
  letter-spacing: -0.03em;
}
.how .step.s2 .vis {
  background: linear-gradient(135deg, #EFE8FB, #fff);
  display: flex; flex-direction: column; gap: 6px;
  padding: 14px; justify-content: center;
}
.how .step.s2 .vis .dot-row {
  display: flex; gap: 4px;
}
.how .step.s2 .vis .dot {
  height: 8px; border-radius: 4px; flex: 1;
  background: rgba(20,61,184,0.18);
}
.how .step.s2 .vis .dot.on { background: var(--gradient-brand); }
.how .step.s3 .vis {
  background: linear-gradient(135deg, #f5f5f7, #fff);
  display: flex; align-items: flex-end; justify-content: space-around;
  padding: 14px;
}
.how .step.s3 .vis .col {
  width: 14%; border-radius: 4px 4px 0 0;
  background: var(--gradient-brand);
}
.how .step.s4 .vis {
  background: var(--gradient-navy);
  color: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
}
.how .step.s4 .vis .trophy {
  font-size: 32px; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #B7F0FF, #9173E8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.how .step.s4 .vis .lbl { font-size: 11px; color: rgba(255,255,255,0.6); font-weight: 400; margin-top: 4px; }

/* ---------- NUMBERS STRIP ---------- */
.numbers {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 96px 24px;
}
.numbers .wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.numbers .stat .num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(56px, 7.5vw, 92px);
  line-height: 1;
  letter-spacing: -0.05em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.numbers .stat .lbl {
  margin-top: 16px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 22ch;
}

/* ---------- SHOWCASE ---------- */
.showcase {
  background: #f5f5f7;
  padding: 140px 24px 0;
  text-align: center;
  overflow: hidden;
}
.showcase .head { max-width: 800px; margin: 0 auto 56px; }
.showcase h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.showcase .lede {
  font-size: 20px;
  color: var(--muted);
  margin-top: 24px;
  line-height: 1.4;
}

/* Surface tabs */
.surface-tabs {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 240px;
  padding: 5px;
  margin: 0 auto 28px;
  gap: 4px;
}
.surface-tabs .tab {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 18px;
  border-radius: 240px;
  border: 0;
  background: transparent;
  font-size: 14px; font-weight: 500;
  color: var(--muted);
  font-family: var(--font-text);
  transition: background .15s, color .15s, box-shadow .15s;
  cursor: pointer;
  white-space: nowrap;
}
.surface-tabs .tab:hover { color: var(--ink-2); }
.surface-tabs .tab.on {
  background: var(--ink-2);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.surface-tabs .tab .pip {
  width: 7px; height: 7px; border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}
.surface-tabs .tab.on .pip { opacity: 1; }
.surface-tabs .tab[data-s="learner"] .pip { background: #143DB8; opacity: .9; }
.surface-tabs .tab[data-s="manager"] .pip { background: #1F7A32; opacity: .9; }
.surface-tabs .tab[data-s="admin"]   .pip { background: #5B2BD9; opacity: .9; }

/* Browser frame */
.showcase .frame {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 40px 120px -20px rgba(0,0,0,0.3), 0 0 60px rgba(20,61,184,0.1);
  border: 1px solid rgba(0,0,0,0.08);
  border-bottom: 0;
  background: var(--white);
  position: relative;
}
.browser-chrome {
  display: flex; align-items: center; gap: 12px;
  height: 44px;
  padding: 0 16px;
  background: #f5f5f7;
  border-bottom: 1px solid var(--line);
}
.browser-chrome .dots { display: flex; gap: 6px; flex-shrink: 0; }
.browser-chrome .dots span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.browser-chrome .dots span:nth-child(1) { background: #FF5F57; }
.browser-chrome .dots span:nth-child(2) { background: #FEBC2E; }
.browser-chrome .dots span:nth-child(3) { background: #28C840; }
.browser-chrome .url {
  flex: 1;
  height: 28px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex; align-items: center; gap: 8px;
  padding: 0 12px;
  font-family: var(--font-text);
  font-size: 12px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}
.browser-chrome .url .lock {
  width: 11px; height: 11px;
  color: #2DD4A0;
}
.browser-chrome .url strong { color: var(--ink-2); font-weight: 500; }
.browser-chrome .actions { display: flex; gap: 6px; flex-shrink: 0; }
.browser-chrome .actions .iconbtn {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: transparent;
  border: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}

/* Surfaces - shared */
.surface { display: none; }
.surface.on { display: grid; }

/* ---- LEARNER dashboard ---- */
.sq-dash {
  width: 100%;
  background: var(--white);
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 760px;
  text-align: left;
  font-family: var(--font-text);
  color: var(--ink-2);
}

/* Sidebar */
.sq-dash .side {
  background: var(--white);
  border-right: 1px solid var(--line);
  padding: 18px 14px 18px;
  display: flex; flex-direction: column;
}
.sq-dash .side .brand {
  display: flex; gap: 10px; align-items: center;
  padding: 4px 6px 18px;
  border-bottom: 1px solid var(--line);
}
.sq-dash .side .brand .logo-glyph {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.sq-dash .side .brand .b-nm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.025em;
  color: var(--ink-2);
}
.sq-dash .side .brand .b-sub {
  font-size: 10px;
  color: var(--muted);
  margin-top: 1px;
  letter-spacing: 0.01em;
}
.sq-dash .role-tabs {
  display: inline-flex;
  background: #f5f5f7;
  border-radius: 240px;
  padding: 3px;
  margin: 16px 0 24px;
  gap: 2px;
  width: fit-content;
}
.sq-dash .role-tabs button {
  border: 0;
  background: transparent;
  font-size: 11px; font-weight: 600;
  color: var(--muted);
  padding: 5px 11px;
  border-radius: 240px;
  font-family: var(--font-text);
  cursor: pointer;
  letter-spacing: 0.01em;
}
.sq-dash .role-tabs button.on {
  background: var(--white);
  color: var(--ink-2);
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.sq-dash .grp {
  font-size: 10px;
  color: var(--muted);
  text-transform: capitalize;
  letter-spacing: 0.02em;
  margin: 4px 0 8px;
  padding: 0 6px;
  font-weight: 500;
}
.sq-dash .nav-item {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 1px;
  text-decoration: none;
  font-weight: 500;
}
.sq-dash .nav-item .ic {
  width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
}
.sq-dash .nav-item.active {
  background: rgba(20,61,184,0.07);
  color: var(--brand-blue);
  font-weight: 600;
}
.sq-dash .nav-item.active .ic { color: var(--brand-blue); }
.sq-dash .nav-item.active::before {
  content: "";
  position: absolute;
  left: 0;
  width: 3px; height: 16px;
  background: var(--gradient-brand);
  border-radius: 0 2px 2px 0;
}
.sq-dash .nav-item { position: relative; }
.sq-dash .nav-item .lbl { flex: 1; }
.sq-dash .nav-item .pill {
  font-size: 10px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 240px;
  background: var(--line-soft);
  color: var(--muted);
  letter-spacing: 0;
}
.sq-dash .nav-item .pill.new {
  background: #B7F0FF;
  color: var(--brand-blue);
}

/* Top bar */
.sq-dash .topbar {
  height: 56px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  background: var(--white);
}
.sq-dash .crumbs {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.sq-dash .crumbs .nav-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--line-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}
.sq-dash .crumbs strong { color: var(--ink-2); font-weight: 600; }
.sq-dash .crumbs .sep { color: var(--muted-2); }
.sq-dash .top-actions {
  display: flex; align-items: center; gap: 10px;
}
.sq-dash .search {
  position: relative;
  width: 320px;
  height: 36px;
  background: #f5f5f7;
  border-radius: 8px;
  display: flex; align-items: center;
  padding: 0 10px 0 36px;
  font-size: 13px;
  color: var(--muted);
}
.sq-dash .search .si {
  position: absolute;
  left: 12px;
  color: var(--muted);
  display: flex;
}
.sq-dash .search kbd {
  margin-left: auto;
  font-family: var(--font-text);
  font-size: 11px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1px 6px;
}
.sq-dash .ic-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  cursor: pointer;
}
.sq-dash .ic-btn:hover { background: var(--line-soft); }
.sq-dash .ic-btn .badge {
  position: absolute;
  top: 4px; right: 4px;
  background: #E53E3E;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  padding: 1px 4px;
  border-radius: 240px;
  line-height: 1.2;
}
.sq-dash .user-av {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #143DB8, #9173E8);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}

/* Main content */
.sq-dash .main {
  padding: 24px;
  background: var(--white);
}

/* Hero banner */
.sq-hero {
  position: relative;
  border-radius: 18px;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(145,115,232,0.45) 0%, transparent 60%),
              radial-gradient(ellipse 60% 60% at 0% 100%, rgba(91,142,240,0.25) 0%, transparent 60%),
              linear-gradient(135deg, #0E1530 0%, #1A1145 100%);
  color: var(--white);
  padding: 24px 28px;
  overflow: hidden;
}
.sq-hero .sh-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px 5px 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 240px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.sq-hero .sh-badge svg { color: #9173E8; }
.sq-hero .sh-cta-row {
  position: absolute;
  top: 24px; right: 24px;
  display: flex; gap: 8px;
}
.sq-hero .sh-cta-row .b {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border-radius: 240px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-text);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  cursor: pointer;
}
.sq-hero .sh-cta-row .b.prim {
  background: var(--white);
  color: var(--ink-2);
  border-color: transparent;
}
.sq-hero h2.sh-greet {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.035em;
  margin: 18px 0 6px;
  color: var(--white);
}
.sq-hero .sh-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.sq-hero .sh-prog-row {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.sq-hero .sh-prog-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 240px;
  overflow: hidden;
  position: relative;
}
.sq-hero .sh-prog-bar::after {
  content: "";
  position: absolute; inset: 0 40% 0 0;
  background: var(--gradient-brand);
  border-radius: 240px;
}
.sq-hero .sh-prog-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.sq-hero .sh-prog-lbl strong { color: var(--white); font-weight: 600; }

.sq-hero .sh-stats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.sq-hero .sh-stat .lbl {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 6px;
  font-weight: 600;
}
.sq-hero .sh-stat .lbl svg { color: #9173E8; opacity: 0.8; }
.sq-hero .sh-stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.035em;
  color: var(--white);
  line-height: 1;
  margin: 10px 0 6px;
  display: flex; align-items: baseline; gap: 2px;
}
.sq-hero .sh-stat .v small {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0;
}
.sq-hero .sh-stat .v.green { color: #2DD4A0; }
.sq-hero .sh-stat .v.orange { color: #F5A623; }
.sq-hero .sh-stat .v.violet {
  background: linear-gradient(135deg, #B7F0FF, #9173E8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.sq-hero .sh-stat .stat-bar {
  height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.08);
  margin: 4px 0 6px;
  position: relative;
  overflow: hidden;
}
.sq-hero .sh-stat .stat-bar::after {
  content: "";
  position: absolute; inset: 0 var(--g, 20%) 0 0;
  background: linear-gradient(90deg, #5B8EF0, #9173E8);
  border-radius: 240px;
}
.sq-hero .sh-stat .sub {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  line-height: 1.3;
}
.sq-hero .sh-stat .sub .up { color: #2DD4A0; font-weight: 600; }

/* Lower grid */
.sq-lower {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 16px;
}
.sq-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
}
.sq-card .ph {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 18px;
}
.sq-card .ph .t {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.025em;
  display: flex; align-items: center; gap: 8px;
  color: var(--ink-2);
}
.sq-card .ph .t .ti {
  width: 18px; height: 18px;
  color: var(--brand-blue);
  display: flex; align-items: center;
}
.sq-card .ph .meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}
.sq-card .ph .more {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 500;
  color: var(--brand-blue);
  text-decoration: none;
}

/* Continue learning rows */
.sq-cl-row {
  display: grid;
  grid-template-columns: 36px 1fr minmax(140px, 200px) auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}
.sq-cl-row:first-of-type { border-top: 0; padding-top: 0; }
.sq-cl-row .ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.sq-cl-row .ic.c1 { background: #EAEEFB; color: var(--brand-blue); }
.sq-cl-row .ic.c2 { background: #E6F5EA; color: #1F7A32; }
.sq-cl-row .ic.c3 { background: #EFEAFE; color: #5B2BD9; }
.sq-cl-row .body { min-width: 0; }
.sq-cl-row .body .t {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sq-cl-row .body .m {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sq-cl-row .prog {
  position: relative;
  height: 5px;
  background: var(--line-soft);
  border-radius: 240px;
  overflow: hidden;
}
.sq-cl-row .prog .fill {
  position: absolute; inset: 0 auto 0 0;
  background: var(--gradient-brand);
  border-radius: 240px;
}
.sq-cl-row .cont {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px;
}
.sq-cl-row .cont .pct {
  font-size: 12px; color: var(--muted); font-weight: 500;
}
.sq-cl-row .cont .lk {
  font-size: 12px; font-weight: 600;
  color: var(--brand-blue);
}

/* Today card */
.sq-today {
  display: flex; flex-direction: column;
}
.sq-today .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.sq-today .row:first-of-type { border-top: 0; padding-top: 0; }
.sq-today .row .lbl-c .lbl {
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.sq-today .row .lbl-c .sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.sq-today .row .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: var(--ink-2);
  line-height: 1;
}
.sq-today .row .v.plus { color: var(--brand-blue); }

/* ---------- SKILL RUBRIC ---------- */
.rubric {
  background: var(--white);
  padding: 140px 24px;
}
.rubric .wrap { max-width: 1280px; margin: 0 auto; }
.rubric .head { max-width: 760px; margin-bottom: 64px; }
.rubric .eyebrow {
  font-size: 13px; color: var(--brand-blue);
  font-weight: 500; margin-bottom: 16px;
}
.rubric h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin: 0;
}
.rubric .lede {
  font-size: 20px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.4;
  max-width: 60ch;
}
.rubric .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.rubric .card {
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.rubric .card .glyph {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display); font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.rubric .card.c2 .glyph { background: linear-gradient(135deg, #2DD4A0, #5B8EF0); }
.rubric .card.c3 .glyph { background: linear-gradient(135deg, #F5A623, #E53E3E); }
.rubric .card.c4 .glyph { background: linear-gradient(135deg, #9173E8, #4533CC); }
.rubric .card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 0;
}
.rubric .card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
  margin: 8px 0 0;
  flex: 1;
}
.rubric .card .signals {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.rubric .card .signal-list {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.7;
}
.rubric .card .signal-list span {
  display: block;
  padding-left: 18px;
  position: relative;
}
.rubric .card .signal-list span::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gradient-brand);
}

/* ---------- INTEGRATIONS ---------- */
.integrations {
  background: #f5f5f7;
  padding: 100px 24px;
}
.integrations .wrap {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.integrations h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.integrations .sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 48px;
}
.integrations .grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.integrations .grid .cell {
  aspect-ratio: 1;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  padding: 10px;
  transition: transform .2s, box-shadow .2s;
}
.integrations .grid .cell:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.integrations .grid .cell .gly {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: -0.02em;
}
.integrations .grid .cell .nm {
  font-size: 11px; color: var(--muted);
  font-weight: 500;
}

/* ---------- QUOTE ---------- */
.quote-section {
  background: var(--white);
  padding: 140px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: 40px; left: 50%; transform: translateX(-50%);
  font-family: Georgia, serif;
  font-size: 200px;
  color: rgba(20,61,184,0.06);
  line-height: 1;
}
.quote-section .quote {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--ink-2);
}
.quote-section .quote em { font-style: normal; background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.quote-section .byline {
  position: relative;
  margin-top: 40px;
  display: inline-flex; gap: 12px; align-items: center;
}
.quote-section .byline .av {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A623, #E53E3E);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 600;
  font-family: var(--font-display); font-size: 16px;
  letter-spacing: -0.03em;
}
.quote-section .byline .who { text-align: left; font-size: 14px; }
.quote-section .byline .who .nm { font-weight: 600; color: var(--ink-2); }
.quote-section .byline .who .ro { color: var(--muted); margin-top: 2px; }

/* ---------- COMPARISON ---------- */
.comparison {
  background: var(--gradient-navy);
  color: var(--white);
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
}
.comparison::before {
  content: ""; position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(145,115,232,0.4), transparent 70%);
  filter: blur(60px);
}
.comparison .wrap { max-width: 1100px; margin: 0 auto; position: relative; }
.comparison .head { max-width: 700px; margin-bottom: 64px; }
.comparison .head .eyebrow {
  font-size: 13px; color: rgba(145,115,232,1); font-weight: 500;
  margin-bottom: 16px;
}
.comparison h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--white);
}
.comparison .table {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.comparison .row {
  display: contents;
}
.comparison .cell {
  padding: 22px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}
.comparison .row.header .cell {
  border-top: 0;
  background: rgba(255,255,255,0.04);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  padding: 28px 24px;
}
.comparison .cell.row-label {
  color: rgba(250,250,250,0.85);
  font-weight: 500;
}
.comparison .cell.col-trad { color: rgba(250,250,250,0.55); }
.comparison .cell.col-sq {
  color: var(--white);
  background: rgba(145,115,232,0.06);
  font-weight: 500;
  position: relative;
}
.comparison .row.header .cell.col-sq {
  background: linear-gradient(135deg, rgba(20,61,184,0.4), rgba(145,115,232,0.3));
  display: flex; align-items: center; gap: 10px;
}
.comparison .row.header .cell.col-sq .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
}

/* ---------- PRICING ---------- */
.pricing {
  background: #f5f5f7;
  padding: 140px 24px;
}
.pricing .head { max-width: 800px; margin: 0 auto 56px; text-align: center; }
.pricing .head .eyebrow {
  font-size: 13px;
  color: var(--brand-blue);
  font-weight: 500;
  margin-bottom: 16px;
}
.pricing .head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: -0.04em;
  margin: 0;
}
.pricing .head .lede { font-size: 20px; color: var(--muted); margin-top: 20px; line-height: 1.4; }

.pricing .grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.price-card {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 22px;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  display: flex; flex-direction: column;
}
.price-card.featured {
  background: var(--gradient-navy);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 30px 60px -20px rgba(20,61,184,0.4);
  z-index: 1;
}
.price-card .tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 240px;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--line-soft);
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
  white-space: nowrap;
}
.price-card.featured .tag { background: var(--gradient-brand); color: var(--white); }
.price-card .name { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: -0.03em; }
.price-card .price {
  font-family: var(--font-display); font-weight: 600;
  font-size: 44px; letter-spacing: -0.045em;
  margin: 16px 0 0; line-height: 1;
  display: flex; align-items: baseline; gap: 2px;
  flex-wrap: wrap;
}
.price-card .price .currency { font-size: 22px; font-weight: 500; align-self: flex-start; margin-top: 6px; }
.price-card .price .amount { line-height: 1; }
.price-card .price small {
  font-size: 12px; font-weight: 400;
  color: var(--muted); letter-spacing: 0;
  font-family: var(--font-text);
  margin-left: 4px;
  flex-basis: 100%;
  margin-top: 4px;
}
.price-card.featured .price small { color: rgba(250,250,250,0.6); }
.price-card .blurb { color: var(--muted); margin-top: 10px; font-size: 13px; line-height: 1.4; min-height: 56px; }
.price-card.featured .blurb { color: rgba(250,250,250,0.7); }
.price-card .cta { margin-top: 18px; }
.price-card .cta .btn { width: 100%; justify-content: center; height: 42px; font-size: 13px; padding: 0 16px; }
.price-card .specs {
  margin: 22px 0 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.4;
}
.price-card .spec {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: baseline;
}
.price-card.featured .spec { border-top: 1px solid rgba(255,255,255,0.1); }
.price-card .spec .k {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.price-card.featured .spec .k { color: rgba(250,250,250,0.55); }
.price-card .spec .v {
  font-family: var(--font-text);
  font-weight: 500;
  font-size: 13px;
  color: var(--ink-2);
  text-align: right;
}
.price-card.featured .spec .v { color: var(--white); }
.price-card .spec .v.muted { color: var(--muted); font-weight: 400; }
.price-card.featured .spec .v.muted { color: rgba(250,250,250,0.55); }
.price-card .spec .v.win { color: #1F7A32; }
.price-card.featured .spec .v.win { color: #C0F2C9; }
.price-card .spec .v.warn { color: #5B3F0A; }
.price-card.featured .spec .v.warn { color: #F9CF8E; }
.price-card .footnote {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.4;
  padding: 10px 12px;
  background: var(--line-soft);
  border-radius: 10px;
}
.price-card.featured .footnote {
  background: rgba(255,255,255,0.08);
  color: rgba(250,250,250,0.7);
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  background: var(--gradient-navy);
  color: var(--white);
  text-align: center;
  padding: 160px 24px;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: -100px;
  background:
    radial-gradient(ellipse 600px 400px at 50% 50%, rgba(145,115,232,0.35), transparent 60%),
    radial-gradient(ellipse 400px 300px at 80% 30%, rgba(91,142,240,0.3), transparent 60%);
  filter: blur(40px);
}
.final-cta h2 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 104px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  max-width: 18ch;
  margin: 0 auto;
}
.final-cta h2 .grad {
  background: linear-gradient(135deg, #B7F0FF, #9173E8, #5B8EF0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-cta .sub {
  position: relative;
  font-size: 20px;
  color: rgba(250,250,250,0.72);
  margin: 28px auto 0;
  max-width: 600px;
  line-height: 1.4;
}
.final-cta .ctas { position: relative; margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.final-cta .docs-link {
  position: relative;
  margin-top: 32px;
  font-size: 14px;
  color: rgba(250,250,250,0.55);
}
.final-cta .docs-link a { color: rgba(145,115,232,1); }
.final-cta .docs-link a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
footer {
  background: #f5f5f7;
  padding: 64px 24px 40px;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-text);
}
footer .wrap { max-width: 1100px; margin: 0 auto; }
footer .legal-top {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 20px;
  margin-bottom: 28px;
  line-height: 1.5;
}
footer .legal-top a { color: var(--brand-blue); }
footer .cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(5, 1fr);
  gap: 32px;
}
footer .col h6 {
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 12px;
  color: var(--ink-2);
  margin: 0 0 10px;
}
footer .col a { display: block; line-height: 2; }
footer .col a:hover { text-decoration: underline; }
footer .brand-col img { width: 24px; height: 24px; margin-bottom: 12px; }
footer .brand-col .nm {
  font-family: var(--font-display); font-weight: 700;
  font-size: 15px; color: var(--ink-2); letter-spacing: -0.3px;
  margin-bottom: 8px;
}
footer .brand-col p { font-size: 12px; line-height: 1.5; margin: 0 0 16px; max-width: 24ch; }
footer .brand-col .news {
  display: flex; gap: 6px;
}
footer .brand-col .news input {
  flex: 1; height: 34px; padding: 0 12px;
  border-radius: 240px; border: 1px solid var(--line);
  font-size: 12px; background: var(--white);
}
footer .brand-col .news button {
  height: 34px; padding: 0 14px;
  border: 0; border-radius: 240px;
  background: var(--ink-2); color: var(--white);
  font-size: 12px; font-weight: 600;
}
footer .legal-bot {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
footer .legal-bot .links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- ROADMAP ---------- */
.roadmap {
  background: var(--white);
  padding: 140px 24px;
  position: relative;
  overflow: hidden;
}
.roadmap .wrap { max-width: 1100px; margin: 0 auto; }
.roadmap .head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.roadmap .eyebrow {
  font-size: 13px;
  color: var(--brand-blue);
  font-weight: 500;
  margin-bottom: 16px;
}
.roadmap h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.roadmap .lede {
  font-size: 20px;
  color: var(--muted);
  margin-top: 20px;
  line-height: 1.4;
}

/* Filter bar */
.roadmap .filter {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin: 0 auto 48px;
  flex-wrap: wrap;
}
.roadmap .filter-group {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f7;
  padding: 4px;
  border-radius: 240px;
  border: 1px solid var(--line);
}
.roadmap .filter-group .lbl {
  font-size: 11px;
  color: var(--muted);
  padding: 0 10px 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.rd-chip {
  padding: 7px 14px;
  border-radius: 240px;
  background: transparent;
  border: 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  font-family: var(--font-text);
  transition: background .15s, color .15s, transform .12s;
  display: inline-flex; align-items: center; gap: 7px;
  white-space: nowrap;
}
.rd-chip .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2);
}
.rd-chip.aud-learner  .dot { background: #143DB8; }
.rd-chip.aud-manager  .dot { background: #1F7A32; }
.rd-chip.aud-admin    .dot { background: #5B2BD9; }
.rd-chip.aud-platform .dot { background: #767676; }
.rd-chip:hover { background: rgba(255,255,255,0.6); }
.rd-chip.on {
  background: var(--white);
  color: var(--ink-2);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 0 0 1px var(--line);
}
.rd-chip.on.aud-all { background: var(--ink-2); color: var(--white); }
.rd-chip.on.aud-all .dot { display: none; }

/* Status legend (top-right inline) */
.roadmap .status-legend {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
  background: #f5f5f7;
  padding: 8px 14px;
  border-radius: 240px;
  border: 1px solid var(--line);
}
.roadmap .status-legend .sl {
  display: inline-flex; align-items: center; gap: 6px;
}
.roadmap .status-legend .pip {
  width: 8px; height: 8px; border-radius: 50%;
}
.roadmap .status-legend .pip.shipped     { background: #2DD4A0; }
.roadmap .status-legend .pip.in-progress { background: #5B8EF0; }
.roadmap .status-legend .pip.planned     { background: #A5A5A5; }

/* Timeline */
.rd-timeline {
  position: relative;
  margin-top: 24px;
}
.rd-timeline::before {
  content: "";
  position: absolute;
  left: 120px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background:
    linear-gradient(180deg,
      #2DD4A0 0%,
      #2DD4A0 50%,
      #5B8EF0 55%,
      #A5A5A5 75%,
      var(--line) 100%);
  border-radius: 2px;
}
.rd-month {
  position: relative;
  padding-left: 168px;
  padding-bottom: 36px;
  min-height: 80px;
}
.rd-month:last-child { padding-bottom: 0; }
.rd-month .month-tag {
  position: absolute;
  left: 0; top: 0;
  width: 100px;
  text-align: right;
}
.rd-month .month-tag .nm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.035em;
  color: var(--ink-2);
  line-height: 1;
}
.rd-month .month-tag .yr {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  font-family: var(--font-text);
  letter-spacing: 0.02em;
}
.rd-month .node {
  position: absolute;
  left: 120px;
  top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid;
  transform: translateX(-50%);
  z-index: 1;
}
.rd-month .node.shipped     { border-color: #2DD4A0; box-shadow: 0 0 0 4px rgba(45,212,160,0.18); }
.rd-month .node.in-progress { border-color: #5B8EF0; box-shadow: 0 0 0 4px rgba(91,142,240,0.2); }
.rd-month .node.planned     { border-color: #A5A5A5; box-shadow: 0 0 0 4px rgba(165,165,165,0.18); }
.rd-month .node.current::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #5B8EF0;
  opacity: 0.5;
  animation: rdpulse 2.4s ease-in-out infinite;
}
@keyframes rdpulse {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.6); opacity: 0; }
}

.rd-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}
.rd-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex; flex-direction: column;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  position: relative;
}
.rd-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
  border-color: rgba(20,61,184,0.2);
}
.rd-card .top {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.rd-card .status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 9px;
  border-radius: 240px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.rd-card .status .pip { width: 6px; height: 6px; border-radius: 50%; }
.rd-card .status.shipped     { background: #C0F2C9; color: #1F7A32; }
.rd-card .status.shipped .pip     { background: #2DD4A0; }
.rd-card .status.in-progress { background: #B7F0FF; color: #143DB8; }
.rd-card .status.in-progress .pip { background: #5B8EF0; }
.rd-card .status.planned     { background: #EFEFEF; color: #575757; }
.rd-card .status.planned .pip     { background: #A5A5A5; }
.rd-card .audience {
  display: inline-flex; align-items: center;
  padding: 3px 9px;
  border-radius: 240px;
  font-size: 11px; font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.rd-card .audience.learner  { background: #E8EEFB; color: #143DB8; }
.rd-card .audience.manager  { background: #E6F5EA; color: #1F7A32; }
.rd-card .audience.admin    { background: #EFEAFE; color: #5B2BD9; }
.rd-card .audience.platform { background: #EFEFEF; color: #575757; }
.rd-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 8px;
  color: var(--ink-2);
}
.rd-card .benefit {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
}
.rd-card .bullets {
  list-style: none;
  margin: 0; padding: 0;
  font-size: 12px;
  line-height: 1.5;
}
.rd-card .bullets li {
  position: relative;
  padding: 4px 0 4px 18px;
  color: var(--ink);
}
.rd-card .bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--muted-2);
  border-radius: 2px;
}

/* hide cards filtered out */
.rd-card.hidden { display: none; }
.rd-month.empty { display: none; }

/* ---------- ROADMAP responsive ---------- */
@media (max-width: 700px) {
  .rd-timeline::before { left: 32px; }
  .rd-month { padding-left: 56px; }
  .rd-month .month-tag { position: relative; left: auto; width: auto; text-align: left; margin-bottom: 12px; padding-left: 56px; }
  .rd-month .node { left: 32px; top: 12px; }
  .rd-items { grid-template-columns: 1fr; }
}

/* ---------- DEMO / BOOK A DEMO SECTION ---------- */
.demo {
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(145,115,232,0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(245,166,35,0.08), transparent 60%),
    #fafafa;
  padding: 140px 24px;
}
.demo .wrap {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

/* LEFT SIDE */
.demo .left .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  font-family: var(--font-text);
}
.demo .left .badge-pill .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2DD4A0;
  box-shadow: 0 0 0 4px rgba(45,212,160,0.18);
  animation: rdpulse 2s ease-in-out infinite;
}
.demo .left h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--ink-2);
  margin: 28px 0 0;
}
.demo .left h2 .struck {
  color: var(--muted-2);
  text-decoration: line-through;
  text-decoration-color: #4533CC;
  text-decoration-thickness: 4px;
  text-decoration-skip-ink: none;
}
.demo .left h2 .grad {
  background: linear-gradient(95deg, #9173E8 0%, #5B8EF0 30%, #F5A623 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.demo .left h2 .dot { color: var(--brand-violet); }

.demo .left .float-chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 240px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15);
  font-size: 14px;
  color: var(--ink-2);
  margin-top: 24px;
}
.demo .left .float-chip .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #2DD4A0;
  display: flex; align-items: center; justify-content: center;
}
.demo .left .float-chip strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-right: 4px;
}

.demo .left p.lede {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 50ch;
  margin-top: 28px;
}
.demo .left p.lede strong { color: var(--ink-2); font-weight: 600; }

/* Roleplay live card */
.demo-card {
  margin-top: 40px;
  background: var(--gradient-navy);
  border-radius: 24px;
  padding: 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(6,13,46,0.5);
}
.demo-card::before {
  content: "";
  position: absolute;
  inset: -100px 50% auto auto;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(145,115,232,0.35), transparent 70%);
  filter: blur(40px);
}
.demo-card .head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
  position: relative;
}
.demo-card .pavatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A623, #E53E3E);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.demo-card .head .who { flex: 1; min-width: 0; }
.demo-card .head .nm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.025em;
}
.demo-card .head .role {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.demo-card .live {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 9px;
  border-radius: 240px;
  background: rgba(45,212,160,0.18);
  color: #C0F2C9;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.demo-card .live::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #2DD4A0; box-shadow: 0 0 8px #2DD4A0;
  animation: pulse 1.4s ease-in-out infinite;
}
.demo-card .float-ramp {
  position: absolute;
  top: 76px; right: 24px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px 8px 10px;
  background: var(--white);
  border-radius: 240px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  z-index: 2;
}
.demo-card .float-ramp .clock {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A623, #E53E3E);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}

.demo-card .wave {
  display: flex; gap: 4px;
  align-items: center;
  height: 56px;
  margin-bottom: 16px;
  position: relative;
}
.demo-card .wave .bar {
  flex: 1;
  background: linear-gradient(180deg, #5B8EF0, #2DD4A0);
  border-radius: 4px;
  opacity: 0.85;
  animation: wavebar 1.6s ease-in-out infinite;
}
@keyframes wavebar { 0%,100% { transform: scaleY(0.35); } 50% { transform: scaleY(1); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
@keyframes wave { 0%,100% { transform: scaleY(0.4); } 50% { transform: scaleY(1); } }

.demo-card .bubble {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.demo-card .bubble .src {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.demo-card .bubble.you .src { color: #C0F2C9; }
.demo-card .bubble .body {
  font-size: 14px;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
}
.demo-card .bubble.you {
  background: linear-gradient(135deg, rgba(20,61,184,0.4), rgba(145,115,232,0.25));
  border-color: rgba(145,115,232,0.3);
}
.demo-card .bubble.you .typing {
  display: inline-flex; gap: 4px;
  padding: 2px 0;
}
.demo-card .bubble.you .typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: typing 1.2s ease-in-out infinite;
}
.demo-card .bubble.you .typing span:nth-child(2) { animation-delay: 0.2s; }
.demo-card .bubble.you .typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%,80%,100% { opacity: 0.3; transform: scale(0.8); } 40% { opacity: 1; transform: scale(1); } }

.demo-card .stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.demo-card .stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 12px;
}
.demo-card .stat .lbl {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.demo-card .stat .v {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 4px 0 6px;
  line-height: 1;
}
.demo-card .stat .bar {
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
}
.demo-card .stat .bar::after {
  content: "";
  position: absolute; inset: 0 var(--g, 50%) 0 0;
  background: linear-gradient(90deg, #2DD4A0, #5B8EF0);
}

/* RIGHT SIDE — form */
.demo-form {
  background: var(--white);
  border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 30px 80px -30px rgba(20,61,184,0.18), 0 0 60px rgba(0,0,0,0.04);
  padding: 40px 36px;
  position: sticky;
  top: 80px;
}
.demo-form .badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 240px;
  background: rgba(145,115,232,0.12);
  color: #5B2BD9;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.demo-form .badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: #9173E8;
  box-shadow: 0 0 6px #9173E8;
}
.demo-form h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 16px 0 8px;
  color: var(--ink-2);
}
.demo-form .sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}
.demo-form .field { margin-bottom: 16px; }
.demo-form .field label {
  display: block;
  font-size: 13px;
  color: var(--ink-2);
  margin-bottom: 8px;
  font-weight: 500;
}
.demo-form .field input,
.demo-form .field select {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  font-family: var(--font-text);
  font-size: 15px;
  color: var(--ink-2);
  transition: border-color .15s, box-shadow .15s, background .15s;
  outline: none;
}
.demo-form .field input:focus,
.demo-form .field select:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 4px rgba(20,61,184,0.1);
}
.demo-form .field input::placeholder { color: var(--muted-2); }
.demo-form .field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='%23767676' stroke-width='1.5' stroke-linecap='round' d='m4 6 4 4 4-4'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}
.demo-form .submit {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 14px;
  background: var(--gradient-brand);
  color: var(--white);
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 16px 32px -12px rgba(20,61,184,0.4);
  transition: filter .15s, transform .12s, box-shadow .15s;
  margin-top: 8px;
  cursor: pointer;
}
.demo-form .submit:hover { filter: brightness(1.06); box-shadow: 0 20px 40px -12px rgba(20,61,184,0.5); }
.demo-form .submit:active { transform: scale(0.98); }

.demo-form .checkbox {
  display: flex; gap: 12px;
  margin-top: 18px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.demo-form .checkbox input {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin: 0;
  accent-color: var(--brand-blue);
}

.demo-form .proof {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.demo-form .proof .avs {
  display: flex;
}
.demo-form .proof .avs .av {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.02em;
}
.demo-form .proof .avs .av:first-child { margin-left: 0; }
.demo-form .proof .stars {
  display: inline-flex; gap: 2px;
  color: #F5A623;
}
.demo-form .proof .rating {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
}
.demo-form .proof .text {
  font-size: 13px;
  color: var(--muted);
}

/* Success state */
.demo-form.sent .field, .demo-form.sent .submit, .demo-form.sent .checkbox, .demo-form.sent .badge, .demo-form.sent .sub, .demo-form.sent h3 { display: none; }
.demo-form .success { display: none; text-align: center; padding: 40px 0; }
.demo-form.sent .success { display: block; }
.demo-form .success .check-big {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2DD4A0, #5B8EF0);
  display: flex; align-items: center; justify-content: center;
}
.demo-form .success h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  color: var(--ink-2);
  margin: 0 0 8px;
}
.demo-form .success p { font-size: 14px; color: var(--muted); margin: 0; }

@media (max-width: 900px) {
  .demo .wrap { grid-template-columns: 1fr; gap: 40px; }
  .demo-form { padding: 32px 24px; position: static; }
  .demo-card .float-ramp { position: relative; top: auto; right: auto; margin: 0 auto 16px; display: inline-flex; }
  .demo-card .head { flex-wrap: wrap; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(0.2,0.8,0.2,1), transform .9s cubic-bezier(0.2,0.8,0.2,1);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .pricing .grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
}
@media (max-width: 1100px) {
  .integrations .grid { grid-template-columns: repeat(4, 1fr); }
  .rubric .cards { grid-template-columns: repeat(2, 1fr); }
  .how .steps { grid-template-columns: repeat(2, 1fr); }
  .comparison .table { font-size: 13px; }
  footer .cols { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  footer .col.col-account, footer .col.col-resources { grid-column: span 1; }
}
@media (max-width: 900px) {
  .row-2, .row-split { grid-template-columns: 1fr; }
  .tile { padding: 40px 32px 0; min-height: 480px; }
  .tile.compact { padding: 32px 24px 0; min-height: 380px; }
  .t-roleplay { min-height: 600px; padding-top: 60px; }
  .t-roleplay .stage { height: 540px; }
  .call-panel { position: relative; top: auto; left: auto; width: 100%; max-width: 320px; margin: 0 auto; }
  .tx-stream { position: relative; top: auto; right: auto; width: 100%; max-width: 320px; margin: 16px auto 0; }
  .numbers .wrap { grid-template-columns: repeat(2, 1fr); }
  .pricing .grid { grid-template-columns: 1fr; }
  .nav ul { display: none; }
  .sq-dash { grid-template-columns: 1fr; }
  .sq-dash .side { display: none; }
  .sq-hero .sh-stats { grid-template-columns: repeat(2, 1fr); }
  .sq-hero .sh-cta-row { position: static; margin-bottom: 12px; }
  .sq-lower { grid-template-columns: 1fr; }
  .sq-dash .search { width: 180px; }
  .logos .row { grid-template-columns: repeat(3, 1fr); }
  .integrations .grid { grid-template-columns: repeat(4, 1fr); }
  .rubric .cards { grid-template-columns: 1fr; }
  .how .steps { grid-template-columns: 1fr; }
  .comparison .table { grid-template-columns: 1fr; }
  .comparison .row.header .cell.col-trad, .comparison .cell.col-trad { display: none; }
  footer .cols { grid-template-columns: 1fr 1fr; }
}
