/* ==========================================
   cromekk — style.css
   Clean, minimal dark design
   ========================================== */

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

:root {
  --bg:      #080809;
  --bg-1:    #0d0e11;
  --bg-2:    #111318;
  --border:  rgba(255,255,255,0.07);
  --border-m: rgba(255,255,255,0.12);
  --cyan:    #00c8e8;
  --cyan-lo: rgba(0, 200, 232, 0.08);
  --white:   #f0f2f8;
  --muted:   #7a8394;
  --dim:     #3e4452;
  --font:    'Inter', sans-serif;
  --display: 'Syne', sans-serif;
  --r:       12px;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.65;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1e2028; border-radius: 4px; }

a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ---- LAYOUT ---- */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- BUTTONS ---- */
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--cyan);
  color: #050608;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-fill:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-fill.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-fill.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: transparent;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid var(--border-m);
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-1px); }

/* ---- SECTION SHARED ---- */
.section-top {
  margin-bottom: 56px;
}
.section-top h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.section-top p { color: var(--muted); font-size: 1rem; }

/* ==========================================
   TOP BANNER
   ========================================== */
.top-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
  position: relative;
}
.top-banner a {
  color: var(--cyan);
  font-weight: 600;
  transition: opacity 0.2s;
}
.top-banner a:hover { opacity: 0.75; }
.banner-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--dim);
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  transition: color 0.2s;
}
.banner-close:hover { color: var(--muted); }
.top-banner.gone { display: none; }

/* ==========================================
   NAV
   ========================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 90;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), top 0.2s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.stuck {
  background: rgba(8, 8, 9, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.wordmark {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  margin-right: auto;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.04); }

.nav-discord {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: rgba(88, 101, 242, 0.15);
  border: 1px solid rgba(88, 101, 242, 0.25);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #8a9eff;
  transition: background 0.2s, border-color 0.2s;
}
.nav-discord:hover { background: rgba(88, 101, 242, 0.25); border-color: rgba(88, 101, 242, 0.4); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}

/* ---- DRAWER ---- */
.drawer {
  position: fixed;
  inset: 0;
  background: rgba(8,8,9,0.98);
  z-index: 89;
  display: flex;
  flex-direction: column;
  padding: 80px 28px 40px;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: var(--muted); cursor: pointer; font-size: 1.1rem;
}
.drawer ul { list-style: none; }
.drawer ul li { border-bottom: 1px solid var(--border); }
.drawer-link {
  display: block;
  padding: 20px 0;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  transition: color 0.2s;
}
.drawer-link:hover { color: var(--cyan); }
.drawer-discord {
  margin-top: 32px;
  display: block;
  text-align: center;
  padding: 14px;
  border: 1px solid var(--border-m);
  border-radius: 8px;
  font-weight: 600;
  color: var(--white);
  transition: border-color 0.2s, color 0.2s;
}
.drawer-discord:hover { border-color: var(--cyan); color: var(--cyan); }

/* ==========================================
   HERO
   ========================================== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 28px 80px;
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}

.hero-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--dim);
}

.hero-heading {
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-heading em {
  font-style: italic;
  color: var(--cyan);
}

.hero-body {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-img-col {
  position: relative;
  z-index: 1;
}

.hero-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 480px;
}
.hero-pc-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-img-wrap:hover .hero-pc-img { transform: scale(1.03); }
.hero-img-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(8,8,9,0.7), transparent);
  pointer-events: none;
}

/* ==========================================
   PARTS / TABS
   ========================================== */
.parts-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.parts-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.parts-title-col h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.parts-title-col p { font-size: 0.9rem; color: var(--muted); }

/* Tab bar */
.parts-tabs {
  position: relative;
  display: flex;
  gap: 4px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 4px;
  flex-shrink: 0;
}

.parts-tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 7px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}
.parts-tab svg { transition: stroke 0.2s var(--ease); }
.parts-tab.active { color: var(--white); }
.parts-tab.active svg { stroke: var(--cyan); }

/* Sliding pill indicator */
.tab-indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: var(--bg-2);
  border: 1px solid var(--border-m);
  border-radius: 7px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), width 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

/* Tab panels */
.tab-panel {
  display: none;
  animation: tabIn 0.22s var(--ease);
}
.tab-panel.active { display: block; }

@keyframes tabIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Price list */
.price-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.price-group {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 8px;
}
.price-group:last-child { margin-bottom: 0; }

.price-group-label {
  display: block;
  padding: 12px 24px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s var(--ease);
  gap: 16px;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: rgba(255,255,255,0.025); }
.price-row:hover .price-badge { opacity: 1; transform: translateX(0); }

.price-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.price-chip {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--cyan);
  padding: 2px 8px;
  border: 1px solid rgba(0,200,232,0.25);
  border-radius: 4px;
}

.price-row-high .price-name { color: var(--cyan); }

.price-row-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease);
}

.price-val {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  min-width: 56px;
  text-align: right;
}

/* Shared tab hero card (GPU + CPU) */
.tab-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 44px 48px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 12px;
}

.tab-hero-badge,
.cpu-off-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.tab-hero-badge { color: var(--cyan); }
.cpu-off-badge  { color: #7adc9e; }

.tab-hero-left h3,
.cpu-tab-info h3 {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.tab-hero-left p,
.cpu-tab-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 360px;
}

/* Facts grid — shared between both tabs */
.tab-hero-facts,
.cpu-tab-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  align-self: center;
}

.tab-fact,
.cpu-fact {
  background: var(--bg-2);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tab-fact-label,
.cpu-fact-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dim);
}

.tab-fact-val,
.cpu-fact-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

/* CPU tab panel wrapper (keeps same card style) */
.cpu-tab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 44px 48px;
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r);
}


/* ==========================================
   CUSTOM
   ========================================== */
.custom {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}

.custom-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.custom-left h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.custom-left p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 360px;
}

.custom-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.custom-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.custom-list li:first-child { padding-top: 0; }

.cl-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dim);
  padding-top: 3px;
}
.custom-list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}
.custom-list p { font-size: 0.87rem; color: var(--muted); margin: 0; }

/* ==========================================
   VOUCHES
   ========================================== */
.vouches {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.vouches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.vouch {
  background: var(--bg-1);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.vouch:hover { border-color: var(--border-m); transform: translateY(-2px); }

.vouch-text {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}

.vouch-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vouch-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.vouch-name {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
}
.vouch-src {
  display: block;
  font-size: 0.72rem;
  color: var(--dim);
}
.vouch-stars {
  margin-left: auto;
  font-size: 0.75rem;
  color: #f0b429;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.vouches-more { text-align: center; }

/* ==========================================
   HOW IT WORKS
   ========================================== */
.how {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-1);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.how-step {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
  background: var(--bg);
  transition: background 0.2s var(--ease);
}
.how-step:last-child { border-right: none; }
.how-step:hover { background: var(--bg-2); }

.how-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 16px;
  opacity: 0.7;
}
.how-step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
  line-height: 1.3;
}
.how-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; }

/* ==========================================
   FAQ
   ========================================== */
.faq {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.faq-wrap { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; }
.faq-wrap > h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  position: sticky;
  top: 80px;
}

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  text-align: left;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--cyan); }
.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--dim);
  transition: transform 0.25s var(--ease), color 0.2s;
  flex-shrink: 0;
}
.faq-item.open .faq-q { color: var(--cyan); }
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--cyan); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a.open { max-height: 200px; }
.faq-a p {
  padding-bottom: 22px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ==========================================
   CTA
   ========================================== */
.cta {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.cta h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}
.footer-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-wrap .wordmark { font-size: 1.1rem; }
.footer-note { font-size: 0.78rem; color: var(--dim); }
.footer-links {
  margin-left: auto;
  display: flex;
  gap: 20px;
}
.footer-links a { font-size: 0.82rem; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* ==========================================
   REVEAL ANIMATION
   ========================================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding-top: 120px; }
  .hero-img-col { display: none; }
  .custom-wrap { grid-template-columns: 1fr; gap: 48px; }
  .how-steps { grid-template-columns: repeat(3, 1fr); }
  .how-step:nth-child(3) { border-right: none; }
  .how-step:nth-child(4), .how-step:nth-child(5) { border-top: 1px solid var(--border); }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .faq-wrap > h2 { position: static; }
  .tab-hero-card, .cpu-tab-layout { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-discord { display: none; }
  .hamburger { display: flex; }
  .parts-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .tab-hero-card, .cpu-tab-layout { padding: 28px 24px; }
  .tab-hero-facts, .cpu-tab-facts { grid-template-columns: 1fr 1fr; }
  .vouches-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .how-step:nth-child(3) { border-right: 1px solid var(--border); }
  .how-step:nth-child(2) { border-right: none; }
  .how-step:nth-child(3), .how-step:nth-child(4), .how-step:nth-child(5) { border-top: 1px solid var(--border); }
  .how-step:nth-child(4) { border-right: none; }
  .footer-wrap { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-links { margin-left: 0; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .gpu-card-left { flex-direction: column; align-items: flex-start; gap: 2px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-step { border-right: none !important; border-top: 1px solid var(--border); }
  .how-step:first-child { border-top: none; }
  .vouches-grid { grid-template-columns: 1fr; }
}
