/* ============================================================
   Asaptic RFQ Portal — portal.css
   Dark navy design system: navy / cyan / Inter + JetBrains Mono
   ============================================================
   SCOPE NOTE (buyer-spine wave2): This file is the landing-page
   (index.html) design system and uses the legacy token set below
   (--gray / --steel / hardcoded spacing). The authenticated portal
   pages (login.html, dashboard.html, supplier/quote/dealroom/ops)
   load the fuller component design system at /assets/portal.css,
   which uses the --sp-*, --text-*, --radius-*, --font-mono tokens.
   The login dev-role selector (.dev-role-*) is styled inline in
   login.html against THAT token set, so it is intentionally not
   duplicated here (the tokens differ and would not resolve).
   ============================================================ */

:root {
  --bg:           #0A1428;
  --bg-card:      #0F1E38;
  --bg-darker:    #080F1E;
  --bg-step:      #111D33;
  --white:        #FFFFFF;
  --accent:       #29B6F6;
  --cyan:         #00E5FF;
  --green:        #51CF66;
  --gray:         #B0BEC5;
  --gray-dim:     #4A5568;
  --border:       #1A385C;
  --border-bright:#29B6F6;
  --steel:        #D8E7EF;
  --amber:        #FFC857;
  --red:          #FF5370;
}

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

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(10,20,40,0.97), rgba(8,15,30,1) 50%),
    radial-gradient(circle at 70% 6%, rgba(0,229,255,0.13), transparent 36%),
    radial-gradient(circle at 20% 80%, rgba(41,182,246,0.09), transparent 40%),
    var(--bg);
  color: var(--white);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }

.mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }

/* ── Layout ── */
.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: rgba(8,15,30,0.88);
  border-bottom: 1px solid rgba(41,182,246,0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 200;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}
.nav-logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--bg);
  letter-spacing: -0.5px;
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}
.nav-tagline {
  font-size: 0.7rem;
  color: var(--gray);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.4px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.nav-cta:hover { background: var(--cyan); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding: 148px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -180px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border: 1px solid rgba(0,229,255,0.30);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--cyan);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  max-width: 820px;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--cyan) 100%);
  color: var(--bg);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(41,182,246,0.28);
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,229,255,0.30); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(41,182,246,0.5);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(41,182,246,0.08); transform: translateY(-1px); }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 44px;
  padding: 28px 0;
  border-top: 1px solid rgba(41,182,246,0.12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray);
}
.trust-icon { font-size: 1.1rem; flex-shrink: 0; }
.trust-item strong { color: var(--white); font-weight: 600; }

/* ── STATS ROW ── */
.stats-row { padding: 72px 0; border-top: 1px solid rgba(41,182,246,0.10); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
}
.stat-cell {
  padding: 32px 24px;
  background: var(--bg-card);
  text-align: center;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.stat-cell:first-child { border-radius: 10px 0 0 10px; }
.stat-cell:last-child  { border-radius: 0 10px 10px 0; }
.stat-cell:hover { border-color: rgba(41,182,246,0.4); }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: 'JetBrains Mono', monospace;
}
.stat-label { font-size: 0.78rem; color: var(--gray); letter-spacing: 0.3px; }

/* ── VALUE PILLARS ── */
.pillars { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.2;
}
.section-sub {
  color: var(--gray);
  margin-top: 12px;
  font-size: 0.95rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar-card:hover { border-color: rgba(41,182,246,0.4); transform: translateY(-3px); }
.pillar-icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
.pillar-name { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pillar-desc { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.pillar-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.pillar-tag {
  padding: 3px 10px;
  background: rgba(41,182,246,0.10);
  border: 1px solid rgba(41,182,246,0.20);
  border-radius: 100px;
  font-size: 0.68rem;
  color: var(--accent);
  font-family: 'JetBrains Mono', monospace;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 80px 0;
  background: rgba(15,30,56,0.25);
  border-top: 1px solid rgba(41,182,246,0.10);
  border-bottom: 1px solid rgba(41,182,246,0.10);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 26px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--cyan), var(--accent), transparent);
  opacity: 0.22;
  pointer-events: none;
}
.how-step { padding: 28px 20px; text-align: center; position: relative; }
.how-step-num {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid rgba(41,182,246,0.35);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent);
  margin: 0 auto 14px;
  position: relative; z-index: 1;
}
.how-step-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.how-step-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.55; }

/* ── RFQ WIZARD ── */
.rfq-section { padding: 96px 0; }
.rfq-wrapper { max-width: 780px; margin: 0 auto; }
.rfq-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(41,182,246,0.06);
}
.rfq-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid rgba(41,182,246,0.12);
}
.rfq-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.rfq-subtitle { font-size: 0.82rem; color: var(--gray); }
.rfq-progress {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 24px;
}
.rfq-step-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}
.rfq-step-tab.active { border-color: var(--accent); }
.rfq-step-tab.done   { border-color: var(--green); }
.rfq-step-tab.active .rfq-step-num { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.rfq-step-tab.done   .rfq-step-num { background: var(--green);  color: var(--bg); border-color: var(--green); }
.rfq-step-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.rfq-step-label {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gray-dim);
  font-weight: 600;
  text-align: center;
}
.rfq-step-tab.active .rfq-step-label { color: var(--accent); }
.rfq-step-tab.done   .rfq-step-label { color: var(--green); }

/* ── WIZARD PANES ── */
.rfq-body { padding: 32px 36px; min-height: 340px; }
.rfq-pane { display: none; }
.rfq-pane.active { display: block; animation: fadeSlide 0.28s ease; }
@keyframes fadeSlide {
  from { opacity: 0; transform: translateX(14px); }
  to   { opacity: 1; transform: translateX(0); }
}
.rfq-pane-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-badge {
  font-size: 0.65rem;
  background: rgba(41,182,246,0.15);
  color: var(--accent);
  border-radius: 100px;
  padding: 2px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}

/* Category selector grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 10px;
  margin-bottom: 20px;
}
.cat-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  background: var(--bg-step);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}
.cat-btn:hover { border-color: rgba(41,182,246,0.45); background: rgba(41,182,246,0.06); }
.cat-btn.selected { border-color: var(--accent); background: rgba(41,182,246,0.12); }
.cat-icon { font-size: 1.3rem; }
.cat-name { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.cat-hint { font-size: 0.68rem; color: var(--gray); line-height: 1.4; }

/* Form fields */
.field-group { margin-bottom: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 6px;
}
.field-label .req { color: var(--cyan); margin-left: 2px; }
.field-input, .field-select, .field-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-step);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.field-input:focus, .field-select:focus, .field-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(41,182,246,0.12);
}
.field-input::placeholder, .field-textarea::placeholder { color: var(--gray-dim); }
.field-textarea { min-height: 90px; resize: vertical; line-height: 1.5; }
.field-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2329B6F6' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.field-select option { background: #111D33; color: var(--white); }

/* Compliance checkboxes */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}
.cert-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-step);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.78rem;
  color: var(--gray);
  font-weight: 500;
  user-select: none;
}
.cert-check:hover { border-color: rgba(41,182,246,0.35); }
.cert-check.checked { border-color: var(--accent); background: rgba(41,182,246,0.10); color: var(--white); }
.cert-check .chk-box {
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  font-size: 0.6rem;
  color: transparent;
}
.cert-check.checked .chk-box { background: var(--accent); border-color: var(--accent); color: var(--bg); }

/* Wizard footer */
.rfq-footer {
  padding: 20px 36px 28px;
  border-top: 1px solid rgba(41,182,246,0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.rfq-footer-note { font-size: 0.72rem; color: var(--gray-dim); flex: 1; }
.rfq-footer-btns { display: flex; gap: 10px; align-items: center; }
.btn-back {
  padding: 10px 20px;
  background: transparent;
  color: var(--gray);
  border: 1.5px solid var(--border);
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-back:hover { border-color: var(--accent); color: var(--accent); }
.btn-next {
  padding: 10px 26px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: var(--bg);
  border: none;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}
.btn-next:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-next:disabled { opacity: 0.38; cursor: not-allowed; transform: none; }

/* Success state */
.rfq-success {
  display: none;
  text-align: center;
  padding: 52px 36px;
  animation: fadeSlide 0.35s ease;
}
.rfq-success.active { display: block; }
.success-icon { font-size: 3rem; margin-bottom: 16px; }
.success-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 10px; }
.success-sub {
  color: var(--gray);
  font-size: 0.88rem;
  max-width: 440px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.success-ref {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(41,182,246,0.12);
  border: 1px solid rgba(41,182,246,0.25);
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--cyan);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* ── PRODUCT CATEGORIES ── */
.categories {
  padding: 80px 0;
  border-top: 1px solid rgba(41,182,246,0.10);
}
.cat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.cat-card:hover { border-color: rgba(41,182,246,0.35); transform: translateY(-2px); }
.cat-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.cat-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.cat-card-name { font-size: 0.95rem; font-weight: 700; }
.cat-card-desc { font-size: 0.8rem; color: var(--gray); line-height: 1.55; margin-bottom: 14px; }
.cat-card-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag {
  padding: 3px 9px;
  background: rgba(41,182,246,0.08);
  border: 1px solid rgba(41,182,246,0.18);
  border-radius: 100px;
  font-size: 0.67rem;
  color: var(--gray);
  font-family: 'JetBrains Mono', monospace;
}

/* ── FAQ ── */
.faq-section { padding: 80px 0; border-top: 1px solid rgba(41,182,246,0.10); }
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(41,182,246,0.10); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  text-align: left;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
  font-family: 'Inter', sans-serif;
}
.faq-q:hover { color: var(--accent); }
.faq-arrow {
  font-size: 0.75rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s;
  display: inline-block;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.65;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 240px; padding-bottom: 18px; }

/* ── FOOTER ── */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid rgba(41,182,246,0.12);
  background: rgba(8,15,30,0.6);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-brand { font-size: 0.85rem; font-weight: 700; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; font-size: 0.78rem; color: var(--gray); }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.72rem; color: var(--gray-dim); }

/* ── FIELD VALIDATION ── */
.field-error { font-size: 0.72rem; color: var(--red); margin-top: 5px; display: none; }
.field-input.invalid, .field-select.invalid, .field-textarea.invalid { border-color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .rfq-body { padding: 24px 20px; }
  .rfq-header { padding: 24px 20px 20px; }
  .rfq-footer { padding: 16px 20px 22px; flex-direction: column; align-items: flex-start; }
  .rfq-footer-btns { width: 100%; justify-content: flex-end; }
  .hero { padding: 116px 0 64px; }
  .field-row { grid-template-columns: 1fr; }
  .stat-cell:first-child { border-radius: 10px 10px 0 0; }
  .stat-cell:last-child  { border-radius: 0 0 10px 10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps::before { display: none; }
  .nav-tagline { display: none; }
}
