/* ============================================================
   PassBy — INDEX PAGE STYLES
   ============================================================ */

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 60px;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.6;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(55% 45% at 50% 15%, black, transparent 75%);
  animation: gridDrift 30s linear infinite;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to   { background-position: 56px 56px, -56px 56px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-soft);
  background: var(--surface-1);
  opacity: 0;
  animation: fadeUp .6s var(--ease-out) forwards;
}
.eyebrow .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal-green);
  animation: pulse 2.2s infinite;
}

h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6.4vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-top: var(--sp-3);
  max-width: 920px;
  opacity: 0;
  animation: fadeUp .7s .08s var(--ease-out) forwards;
}
h1.hero-title .accent { color: var(--accent-2); }

.hero-sub {
  margin-top: var(--sp-4);
  font-size: clamp(16px, 2vw, 18.5px);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeUp .7s .16s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: var(--sp-5);
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp .7s .24s var(--ease-out) forwards;
}

/* ── PACKET TRACER ───────────────────────────────────────── */
.tracer-wrap {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: var(--sp-9) auto 0;
  padding: 0 24px;
}
.tracer-card {
  position: relative;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-5) var(--sp-4);
  overflow: hidden;
}
.tracer-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
  gap: 8px;
}
.tracer-head h3 { font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.tracer-head span { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-tertiary); }

.tracer-svg { width: 100%; height: auto; display: block; }
.tracer-rail         { stroke: var(--border-med); stroke-width: 1.5; fill: none; stroke-dasharray: 1 6; }
.tracer-rail-blocked { stroke: var(--border-med); stroke-width: 1.5; fill: none; stroke-dasharray: 1 6; }
.node-box    { fill: var(--surface-2); stroke: var(--border-soft); stroke-width: 1; }
.node-label  { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; fill: var(--text-tertiary); letter-spacing: 0.03em; }
.node-title  { font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600; fill: var(--text-primary); }
.dpi-box     { fill: var(--surface-3); stroke: var(--border-med); }

.packet circle { fill: var(--accent-2); }
.packet { filter: drop-shadow(0 0 6px var(--accent)); }
.packet.blocked circle { fill: var(--signal-red); }

.path-pass    { stroke: var(--accent);      stroke-width: 2; fill: none; opacity: 0.9; }
.path-blocked { stroke: var(--signal-red);  stroke-width: 2; fill: none; opacity: 0.55; stroke-dasharray: 4 4; }

.x-mark { stroke: var(--signal-red); stroke-width: 2.4; stroke-linecap: round; opacity: 0; }
.x-mark.show { animation: xPop .4s var(--ease-spring) forwards; }
@keyframes xPop {
  from { opacity: 0; transform: scale(0.4); }
  to   { opacity: 1; transform: scale(1); }
}

.tracer-legend { display: flex; gap: var(--sp-4); margin-top: var(--sp-3); flex-wrap: wrap; }
.tracer-legend .item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-secondary); }
.tracer-legend .swatch { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* ── MARQUEE ─────────────────────────────────────────────── */
.marquee-section {
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: var(--sp-7);
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: var(--sp-7);
}
.marquee-track span b { color: var(--text-secondary); font-weight: 500; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── PROTOCOLS SPLIT ─────────────────────────────────────── */
.proto-split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (max-width: 820px) { .proto-split { grid-template-columns: 1fr; } }

.proto-pane { padding: var(--sp-6); position: relative; }
.proto-pane.a { background: var(--surface-1); border-right: 1px solid var(--border-soft); }
.proto-pane.b { background: var(--surface-0); }
@media (max-width: 820px) {
  .proto-pane.a { border-right: none; border-bottom: 1px solid var(--border-soft); }
}
.proto-index { font-family: var(--font-mono); font-size: 48px; font-weight: 700; color: var(--border-strong); line-height: 1; margin-bottom: var(--sp-3); }
.proto-pane h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 12px; }
.proto-pane p  { font-size: 15px; color: var(--text-secondary); line-height: 1.65; margin-bottom: var(--sp-4); max-width: 420px; }
.proto-stat-row { display: flex; gap: var(--sp-5); flex-wrap: wrap; }
.proto-stat .num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text-primary); display: flex; align-items: baseline; gap: 3px; }
.proto-stat .num small { font-size: 13px; font-weight: 500; color: var(--text-tertiary); }
.proto-stat .lbl { font-size: 12px; color: var(--text-tertiary); margin-top: 4px; font-family: var(--font-mono); }

/* ── FEATURES LIST ───────────────────────────────────────── */
.feat-list { display: flex; flex-direction: column; }
.feat-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border-soft);
  align-items: start;
  transition: padding-left .3s var(--ease-out);
  cursor: default;
  min-width: 0;
}
.feat-row:hover { padding-left: 10px; }
.feat-row:last-child { border-bottom: none; }
.feat-idx { font-family: var(--font-mono); font-size: 13px; color: var(--text-tertiary); padding-top: 4px; }
.feat-body { min-width: 0; }
.feat-body h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  row-gap: 6px;
}
.feat-body p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.6; max-width: 560px; }
.feat-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--accent-2);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 5px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

/* ── LOCATIONS STRIP ─────────────────────────────────────── */
/* ── LOCATIONS — grid of cards (3 cols desktop, 2 tablet, 1 mobile) ─── */
.loc-grid {
  display: grid;
  /* Fixed 3 columns on desktop → 5 locations = 3 on first row + 2 centered on second */
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  justify-content: center;
}
@media (max-width: 760px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .loc-grid { grid-template-columns: 1fr; }
}

.loc-card {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s var(--ease-out), border-color .25s var(--ease), background .25s var(--ease);
}
.loc-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-med);
  background: var(--surface-2);
}
.loc-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.loc-head .flag { font-size: 28px; flex-shrink: 0; }
.loc-head b {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex: 1;
  min-width: 0;
}

.loc-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--signal-green);
  background: color-mix(in srgb, var(--signal-green) 12%, transparent);
  padding: 4px 9px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.loc-status-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--signal-green);
  animation: locPulse 2.2s infinite;
}
@keyframes locPulse {
  0%   { box-shadow: 0 0 0 0   color-mix(in srgb, var(--signal-green) 55%, transparent); }
  70%  { box-shadow: 0 0 0 6px color-mix(in srgb, var(--signal-green)  0%, transparent); }
  100% { box-shadow: 0 0 0 0   color-mix(in srgb, var(--signal-green)  0%, transparent); }
}

.loc-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.loc-meta-city { color: var(--text-secondary); }
.loc-meta-speed { color: var(--text-tertiary); }

/* ── CLIENT CHIPS ────────────────────────────────────────── */
.clients-row {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
  overflow-x: auto;
  padding: 6px 2px 8px;
  scrollbar-width: none;
}
.clients-row::-webkit-scrollbar { display: none; }
.client-chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  padding: 12px 20px 12px 14px;
  min-width: max-content;
  transition: border-color .25s var(--ease), transform .25s var(--ease-out);
}
.client-chip:hover { border-color: var(--accent-line); transform: translateY(-2px); }
.client-chip .chip-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.client-chip .chip-icon svg { width: 16px; height: 16px; stroke: var(--text-primary); fill: none; stroke-width: 1.6; }
.client-chip .chip-text b    { font-size: 14px; font-weight: 600; display: block; }
.client-chip .chip-text span { font-size: 11.5px; color: var(--text-tertiary); font-family: var(--font-mono); }

/* ── PRICING CONSOLE ─────────────────────────────────────── */
.price-console {
  background: var(--surface-1);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
}
.price-tabs {
  position: relative;
  display: flex;
  gap: 4px;
  background: var(--surface-2);
  border-radius: var(--r-pill);
  padding: 5px;
  max-width: 550px;
  margin: 0 auto var(--sp-6);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.price-tabs::-webkit-scrollbar { display: none; }
.price-tab {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  text-align: center;
  padding: 10px 10px;
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  transition: color .25s var(--ease);
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.price-tab.active { color: var(--cta-text); }
.price-tab-bg {
  position: absolute;
  top: 5px; left: 5px;
  height: calc(100% - 10px);
  border-radius: var(--r-pill);
  background: var(--cta-bg);
  transition: transform .4s var(--ease-spring), width .4s var(--ease-spring);
  z-index: 0;
}

.price-display { display: flex; flex-direction: column; align-items: center; text-align: center; }
.price-num-row { display: flex; align-items: center; gap: 8px; }
.price-num-row .currency { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--text-secondary); line-height: 1; }
.price-digits {
  --digit-step: 1.42em;
  display: flex;
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 88px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.price-digit-track { position: relative; height: var(--digit-step); overflow: hidden; width: 0.9em; }
.price-digit-col { position: absolute; top: 0; left: 0; display: flex; flex-direction: column; transition: transform .5s var(--ease-spring); }
.price-digit-col span { height: var(--digit-step); display: flex; align-items: center; justify-content: center; line-height: 1; }
.price-perday { font-family: var(--font-mono); font-size: 13px; color: var(--text-tertiary); margin-top: 10px; }
.price-save-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--signal-green);
  background: rgba(84, 212, 154, 0.1);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-top: 10px;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.price-save-badge.show { opacity: 1; }

.price-divider-full { height: 1px; background: var(--border-soft); margin: var(--sp-5) 0; }
.price-grid-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
@media (max-width: 640px) { .price-grid-bottom { grid-template-columns: 1fr; gap: var(--sp-4); } }

.price-feature-list { display: flex; flex-direction: column; gap: 12px; }
.price-feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--text-secondary); }
.price-feature-list svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; stroke: var(--signal-green); fill: none; stroke-width: 2.2; }
.price-cta-final {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
  background: var(--cta-bg);
  color: var(--cta-text);
  transition: transform .25s var(--ease-spring);
  cursor: pointer;
}
.price-cta-final:hover { transform: translateY(-2px) scale(1.01); }
.price-cta-final:active { transform: translateY(0) scale(0.99); }

/* Refund badge — зелёная плашка под кнопкой оплаты */
.refund-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--signal-green) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--signal-green) 25%, transparent);
}
.refund-badge svg {
  flex-shrink: 0;
  stroke: var(--signal-green);
}
.refund-badge span {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.45;
}
.refund-badge span br { display: block; }

/* ── PRICING RESPONSIVE ─────────────────────────────────── */
@media (max-width: 640px) {
  .price-console { padding: var(--sp-4); }
  .price-tabs {
    gap: 2px;
    padding: 4px;
  }
  .price-tab {
    padding: 8px 6px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .price-console { padding: var(--sp-3); border-radius: var(--r-lg); }
  .price-tabs {
    gap: 2px;
    padding: 3px;
  }
  .price-tab {
    padding: 7px 4px;
    font-size: 11px;
    letter-spacing: -0.02em;
  }
  .price-cta-final {
    padding: 14px 12px;
    font-size: 14px;
  }
  .price-digits {
    font-size: clamp(44px, 14vw, 64px);
  }
  .price-num-row .currency {
    font-size: 26px;
  }
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:first-child { border-top: 1px solid var(--border-soft); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  text-align: left;
}
.faq-q .plus { width: 18px; height: 18px; flex-shrink: 0; position: relative; transition: transform .3s var(--ease-spring); }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--text-secondary); transition: transform .3s var(--ease); }
.faq-q .plus::before { top: 8px; left: 1px; right: 1px; height: 1.6px; }
.faq-q .plus::after  { left: 8px; top: 1px; bottom: 1px; width: 1.6px; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-out); }
.faq-a p { padding: 0 4px 22px; font-size: 14.5px; color: var(--text-secondary); line-height: 1.65; max-width: 600px; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.final-cta { text-align: center; padding: var(--sp-10) 0; position: relative; }
.final-cta h2 { font-family: var(--font-display); font-size: clamp(32px, 5.5vw, 52px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; }
.final-cta p  { color: var(--text-secondary); font-size: 16px; margin-bottom: var(--sp-4); }

/* ── CHECKOUT MODAL ────────────────────────────────────────
   Reuses .modal / .modal-card / .modal-close / .modal-head /
   .modal-body / .modal-foot / .modal-tag / .modal-title /
   .modal-sub from shared.css. Only checkout-specific styles here. */

.checkout-summary {
  background: var(--surface-0);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 14px 16px;
  margin-bottom: var(--sp-3);
}
.checkout-summary-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  display: block;
  margin-bottom: 8px;
}
.checkout-summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.checkout-summary-row strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

/* Option list (email / telegram) */
.checkout-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--sp-3);
}
.checkout-option {
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  background: var(--surface-0);
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.checkout-option.active {
  border-color: var(--accent-line);
  background: var(--surface-2);
}
.checkout-option-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  text-align: left;
  cursor: pointer;
}
.checkout-option-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
  position: relative;
  transition: border-color .25s var(--ease);
}
.checkout-option.active .checkout-option-radio { border-color: var(--accent); }
.checkout-option.active .checkout-option-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
}
.checkout-option-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.checkout-option-text b {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
}
.checkout-option-text span {
  font-size: 12.5px;
  color: var(--text-tertiary);
}

/* Email field body */
.checkout-option-body {
  padding: 0 16px 16px 48px;
  display: none;
}
.checkout-option.active .checkout-option-body { display: block; }
.checkout-field-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}
.checkout-field-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-med);
  background: var(--surface-1);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.checkout-field-input::placeholder { color: var(--text-tertiary); }
.checkout-field-input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface-0);
}
.checkout-field-help {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 6px;
}

/* Submit button */
.checkout-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--r-pill);
  background: var(--cta-bg);
  color: var(--cta-text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s var(--ease-spring), opacity .2s var(--ease);
}
.checkout-submit:hover { transform: translateY(-2px) scale(1.01); }
.checkout-submit:active { transform: translateY(0) scale(0.99); }
.checkout-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.checkout-submit svg { width: 16px; height: 16px; }

/* Loading spinner shown on submit while the form is being POSTed */
.checkout-submit.loading [data-checkout-submit-label]::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 8px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  animation: checkoutSpin 0.7s linear infinite;
}
@keyframes checkoutSpin { to { transform: rotate(360deg); } }

/* ── PAYMENT METHOD PILLS (SBP / Crypto) ─────────────────── */
.checkout-method-group {
  margin-bottom: var(--sp-3);
}

.checkout-method-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkout-method-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  background: var(--surface-0);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-align: left;
}

.checkout-method-pill:hover {
  border-color: var(--border-med);
  background: var(--surface-2);
  color: var(--text-primary);
}

.checkout-method-pill.active {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent-2);
}

.checkout-method-pill svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

.checkout-method-pill.active svg {
  stroke: var(--accent);
}

@media (max-width: 480px) {
  .checkout-method-pills {
    grid-template-columns: 1fr;
  }
}
