/* ==========================================================================
   Landing page — specific styles
   ========================================================================== */

.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  border-bottom: 1px solid var(--border-dim);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 181, 71, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-circuit {
  position: absolute;
  right: -40px;
  top: 80px;
  width: 480px;
  height: 480px;
  color: var(--accent-electric);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  animation: hueShift 8s ease-in-out infinite alternate;
}
@keyframes hueShift { from { opacity: 0.25; } to { opacity: 0.45; } }

.hero-inner { position: relative; z-index: 2; max-width: 880px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 100px;
  margin-bottom: var(--space-5);
  font-size: 11px;
  color: var(--accent-electric);
  letter-spacing: 0.15em;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-pcb);
  box-shadow: 0 0 12px var(--accent-pcb);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-5);
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-electric);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: 4px;
  width: 100%; height: 2px;
  background: var(--accent-electric);
  opacity: 0.3;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: var(--space-6);
  line-height: 1.55;
}

.hero-cta { display: flex; gap: var(--space-3); margin-bottom: var(--space-7); flex-wrap: wrap; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-dim);
  max-width: 720px;
}
.meta-item { display: flex; flex-direction: column; gap: 4px; }
.meta-num { font-size: 28px; font-weight: 700; color: var(--text-primary); letter-spacing: -0.02em; }
.meta-label { font-size: 12px; color: var(--text-tertiary); }

/* ============ Strip ============ */
.strip { padding: var(--space-8) 0; border-bottom: 1px solid var(--border-dim); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-7); }
.strip-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-electric);
  letter-spacing: 0.2em;
  margin-bottom: var(--space-3);
}
.strip-item h3 { font-size: 22px; margin-bottom: var(--space-2); }
.strip-item p { color: var(--text-secondary); font-size: 14px; }

/* ============ Sections ============ */
.section-head { max-width: 720px; margin: 0 auto var(--space-7); text-align: center; }
.section-head .eyebrow { display: inline-block; margin-bottom: var(--space-3); }
.section-head h2 { margin-bottom: var(--space-3); }
.section-sub { color: var(--text-secondary); font-size: 15px; }

.featured { padding: var(--space-9) 0; border-bottom: 1px solid var(--border-dim); }

/* ============ How it works ============ */
.how { padding: var(--space-9) 0; border-bottom: 1px solid var(--border-dim); background: var(--bg-deep); }
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: var(--space-3);
  align-items: stretch;
}
.flow-step {
  background: var(--bg-panel);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: var(--transition);
}
.flow-step:hover { border-color: var(--accent-electric); transform: translateY(-2px); }
.flow-step .step-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-electric);
  margin-bottom: var(--space-3);
  letter-spacing: -0.02em;
}
.flow-step h3 { font-size: 18px; }
.flow-step p { color: var(--text-secondary); font-size: 14px; flex: 1; }
.step-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: var(--space-3); }
.flow-arrow {
  display: grid; place-items: center;
  font-size: 22px; color: var(--text-tertiary);
}

/* ============ Fees ============ */
.fees { padding: var(--space-9) 0; }
.fees-card {
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-elevated));
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-8);
  position: relative;
  overflow: hidden;
}
.fees-card::before {
  content: '';
  position: absolute; top: -50px; right: -50px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15), transparent 70%);
  pointer-events: none;
}
.fees-left h2 { margin: var(--space-3) 0; }
.fees-left p { color: var(--text-secondary); font-size: 15px; }
.fees-right { position: relative; z-index: 1; }
.fee-num {
  font-size: clamp(60px, 8vw, 96px);
  color: var(--accent-electric);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}
.fee-label { color: var(--text-tertiary); margin-bottom: var(--space-5); font-size: 14px; }
.fee-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fee-list li { display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 14px; }
.fee-list .check { color: var(--accent-pcb); font-weight: 700; }

/* ============ Quote band ============ */
.quote-band {
  padding: var(--space-9) 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}
.quote-band blockquote {
  max-width: 860px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-primary);
  position: relative;
  text-align: center;
}
.quote-band .quote-mark {
  display: block;
  font-size: 80px;
  color: var(--accent-electric);
  line-height: 0.5;
  margin-bottom: var(--space-3);
  opacity: 0.6;
}
.quote-band cite {
  display: block;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-top: var(--space-5);
}

/* ============ Final CTA ============ */
.final-cta { padding: var(--space-9) 0; text-align: center; }
.final-cta h2 { margin-bottom: var(--space-6); }
.final-cta h2 em { font-style: italic; color: var(--accent-electric); font-weight: 400; }
.cta-buttons { display: inline-flex; gap: var(--space-3); margin-bottom: var(--space-4); flex-wrap: wrap; justify-content: center; }
.cta-sub { color: var(--text-tertiary); font-size: 12px; letter-spacing: 0.05em; }

/* Responsive */
@media (max-width: 900px) {
  .strip-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); padding: var(--space-2); }
  .fees-card { grid-template-columns: 1fr; padding: var(--space-6); }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .hero-circuit { display: none; }
}


/* ==========================================================================
   HERO AUX — small "want to build?" link under hero CTAs
   ========================================================================== */
.hero-aux {
  margin-top: 22px;
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.03em;
}
.hero-aux a {
  color: var(--accent-electric);
  text-decoration: none;
  border-bottom: 1px dashed rgba(0, 229, 255, 0.35);
  transition: border-color 0.18s ease;
}
.hero-aux a:hover {
  border-bottom-style: solid;
  border-bottom-color: var(--accent-electric);
}
.hero-aux em {
  color: var(--text-secondary);
  font-style: italic;
}

/* ==========================================================================
   RTM HERO CARD — the "special tile" — premium split-card after the hero
   ========================================================================== */
.rtm-hero {
  padding: 64px 0;
  position: relative;
  background:
    radial-gradient(ellipse 900px 500px at 25% 50%, rgba(0, 217, 126, 0.04), transparent),
    radial-gradient(ellipse 700px 400px at 85% 50%, rgba(0, 229, 255, 0.04), transparent),
    var(--bg-deep);
}

/* PCB-trace decorative SVG underlay */
.rtm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(0, 229, 255, 0.05) 0%, transparent 40%),
    repeating-linear-gradient(45deg, transparent 0 80px, rgba(0, 217, 126, 0.025) 80px 81px);
  pointer-events: none;
}

.rtm-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background:
    linear-gradient(135deg, rgba(0, 217, 126, 0.04), transparent 35%, transparent 65%, rgba(0, 229, 255, 0.04)),
    var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Hairline accent on top edge */
.rtm-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-pcb) 25%, var(--accent-electric) 75%, transparent);
  opacity: 0.5;
}

/* ----- LEFT — pitch column ----- */
.rtm-card-pitch {
  padding: 48px 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}

.rtm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 217, 126, 0.08);
  border: 1px solid rgba(0, 217, 126, 0.3);
  border-radius: 100px;
  font-size: 10px;
  color: var(--accent-pcb);
  letter-spacing: 0.14em;
  align-self: flex-start;
}

.rtm-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-pcb);
  box-shadow: 0 0 8px var(--accent-pcb);
  animation: rtm-pulse 2s ease-in-out infinite;
}

@keyframes rtm-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent-pcb); }
  50%      { opacity: 0.6; box-shadow: 0 0 16px var(--accent-pcb); }
}

.rtm-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 46px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text-primary);
}

.rtm-headline-accent {
  background: linear-gradient(135deg, var(--accent-pcb), var(--accent-electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.rtm-lede {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

.rtm-lede strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Stats — three benefit rows */
.rtm-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-dim);
  border-radius: 12px;
}

.rtm-stat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 13.5px;
  line-height: 1.45;
}

.rtm-stat-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 6px;
  font-size: 13px;
  color: var(--accent-electric);
}

.rtm-stat div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rtm-stat strong {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13.5px;
}

.rtm-stat span {
  color: var(--text-tertiary);
  font-size: 12.5px;
}

/* CTA row */
.rtm-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-rtm-primary {
  background: linear-gradient(135deg, var(--accent-pcb), var(--accent-electric));
  color: #001215;
  border: 0;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-rtm-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 217, 126, 0.25);
}

.btn-rtm-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.15));
  opacity: 0;
  transition: opacity 0.18s ease;
}

.btn-rtm-primary:hover::after { opacity: 1; }

.rtm-microcopy {
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin: 0;
}

/* ----- RIGHT — visual column ----- */
.rtm-card-visual {
  padding: 48px 44px;
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.025), transparent 60%),
    rgba(0, 0, 0, 0.2);
  border-left: 1px dashed var(--border-mid);
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.rtm-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.rtm-mini-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: all 0.18s ease;
  position: relative;
}

.rtm-mini-tile:hover {
  border-color: var(--accent-electric);
  background: var(--bg-hover);
  transform: translateY(-1px);
}

.rtm-mini-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  font-size: 18px;
}

.rtm-mini-meta {
  flex: 1;
  min-width: 0;
}

.rtm-mini-meta h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  margin: 0 0 2px;
  color: var(--text-primary);
}

.rtm-mini-meta p {
  font-size: 11px;
  color: var(--text-tertiary);
  margin: 0;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}

.rtm-tagline-strip {
  padding: 16px 18px;
  background: var(--bg-deep);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rtm-tag-eyebrow {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.12em;
}

.rtm-tagline-strip strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.015em;
  background: linear-gradient(135deg, var(--accent-pcb), var(--accent-electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Responsive */
@media (max-width: 900px) {
  .rtm-card { grid-template-columns: 1fr; }
  .rtm-card-pitch { padding: 36px 28px 32px; }
  .rtm-card-visual {
    padding: 28px 28px 36px;
    border-left: 0;
    border-top: 1px dashed var(--border-mid);
  }
  .rtm-headline { font-size: clamp(28px, 7vw, 38px); }
}

@media (max-width: 560px) {
  .rtm-hero { padding: 40px 0; }
  .rtm-card-pitch, .rtm-card-visual { padding: 28px 20px; }
  .rtm-visual-grid { grid-template-columns: 1fr; }
  .rtm-cta-row .btn { width: 100%; text-align: center; }
}

/* ==========================================================================
   RTM STRIP — featured products (lower placement)
   ========================================================================== */
.rtm-strip {
  padding: 80px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.rtm-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.rtm-strip-head .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-pcb);
  margin-bottom: 12px;
}

.rtm-strip-head h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.rtm-strip-sub {
  color: var(--text-secondary);
  font-size: 14.5px;
  margin: 0;
  max-width: 520px;
}

/* Product grid */
.rtm-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}

@media (max-width: 900px) {
  .rtm-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rtm-product-grid { grid-template-columns: 1fr; }
}

.rtm-product {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  position: relative;
}

.rtm-product:hover {
  border-color: var(--accent-pcb);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 217, 126, 0.08);
}

.rtm-product:hover .rtm-product-cta {
  color: var(--accent-pcb);
}

.rtm-product-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  color: var(--accent-electric);
  font-size: 18px;
}

.rtm-product-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rtm-product-body h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rtm-product-meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rtm-product-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-pcb);
  margin-top: 4px;
  letter-spacing: -0.005em;
}

.rtm-product-cta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  align-self: flex-end;
  transition: color 0.18s ease;
}

/* Trust row */
.rtm-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 22px 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
}

@media (max-width: 760px) {
  .rtm-trust-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 440px) {
  .rtm-trust-row { grid-template-columns: 1fr; }
}

.rtm-trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rtm-trust-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.rtm-trust-item span {
  font-size: 11.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ==========================================================================
   ANNOUNCEMENT BAR — scrolling marquee
   ========================================================================== */
.announce-bar {
  background: linear-gradient(90deg,
    rgba(0, 217, 126, 0.12),
    rgba(0, 229, 255, 0.12),
    rgba(0, 217, 126, 0.12));
  border-bottom: 1px solid rgba(0, 229, 255, 0.25);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 42px;
}

/* Subtle shimmer overlay */
.announce-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.08), transparent);
  background-size: 200% 100%;
  animation: announce-shine 10s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes announce-shine {
  0%   { background-position: -100% 0; }
  100% { background-position:  200% 0; }
}

/* Edge fades so text doesn't crash into screen edges */
.announce-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg-deep) 0%, transparent 4%, transparent 80%, rgba(10, 11, 13, 0.85) 96%, var(--bg-deep) 100%);
  pointer-events: none;
  z-index: 1;
}

/* The viewport for the marquee */
.announce-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* The moving track (contains two copies of the same content) */
.announce-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: announce-scroll 48s linear infinite;
  will-change: transform;
}

/* Pause when user hovers (so they can read) */
.announce-marquee:hover .announce-track {
  animation-play-state: paused;
}

/* Respect reduced-motion preference — show first set static and centred */
@media (prefers-reduced-motion: reduce) {
  .announce-track {
    animation: none;
    justify-content: center;
  }
  .announce-track .announce-set:nth-child(2) {
    display: none;
  }
}

@keyframes announce-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }   /* one set width */
}

/* One full set of messages */
.announce-set {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}

.announce-pip {
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.announce-msg {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.005em;
  flex-shrink: 0;
}

.announce-msg strong {
  color: var(--accent-pcb);
  font-weight: 600;
  letter-spacing: 0.015em;
}

.announce-msg em {
  color: var(--accent-electric);
  font-style: normal;
  font-weight: 600;
}

.announce-sep {
  color: var(--accent-electric);
  opacity: 0.45;
  font-size: 9px;
  flex-shrink: 0;
}

/* Pinned CTA on the right — stays put while the marquee scrolls */
.announce-pin-cta {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-right: 16px;
  margin-left: 12px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #001215;
  text-decoration: none;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--accent-pcb), var(--accent-electric));
  border-radius: 100px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.announce-pin-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 217, 126, 0.3);
}

@media (max-width: 700px) {
  .announce-bar { height: 38px; }
  .announce-msg { font-size: 12px; }
  .announce-pin-cta { font-size: 10.5px; padding: 5px 10px; }
  .announce-pin-cta span:first-child { display: none; }
  .announce-pin-cta::before { content: "Sign up"; }
}

/* ==========================================================================
   HERO TRUST STRIP — small wins under the CTA
   ========================================================================== */
.hero-trust {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

.hero-trust span {
  white-space: nowrap;
}

@media (max-width: 560px) {
  .hero-trust { gap: 12px; font-size: 11px; }
}

/* ==========================================================================
   EARNINGS BAND — secondary income proof
   ========================================================================== */
.earn-band {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 800px 400px at 50% 100%, rgba(0, 217, 126, 0.06), transparent),
    var(--bg-deep);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  position: relative;
}

.earn-headline {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
}

.earn-headline .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-pcb);
  margin-bottom: 16px;
}

.earn-headline h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 46px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.earn-num {
  background: linear-gradient(135deg, var(--accent-pcb), var(--accent-electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}

.earn-sub {
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0;
}

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

@media (max-width: 860px) {
  .earn-grid { grid-template-columns: 1fr; }
}

.earn-card {
  position: relative;
  padding: 28px 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.earn-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-3px);
}

.earn-card.highlight {
  background:
    linear-gradient(135deg, rgba(0, 217, 126, 0.06), transparent 60%),
    var(--bg-panel);
  border-color: rgba(0, 217, 126, 0.4);
}

.earn-card.highlight:hover {
  border-color: var(--accent-pcb);
  box-shadow: 0 12px 32px rgba(0, 217, 126, 0.12);
}

.earn-card-label {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.earn-card-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.1;
}

.earn-card.highlight .earn-card-num {
  background: linear-gradient(135deg, var(--accent-pcb), var(--accent-electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.earn-card-num span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-tertiary);
  -webkit-text-fill-color: var(--text-tertiary);
}

.earn-card-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.earn-card-flag {
  position: absolute;
  top: -10px;
  right: 18px;
  background: var(--accent-pcb);
  color: #001215;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.earn-disclaimer {
  font-size: 10.5px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.04em;
  margin-top: 24px;
  line-height: 1.55;
}

/* ==========================================================================
   STRIP — "why now" variant
   ========================================================================== */
.strip-why {
  background: var(--bg-deep);
  padding: 96px 0;
}

.strip-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.strip-head .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-electric);
  margin-bottom: 14px;
}

.strip-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.strip-head h2 em {
  font-style: italic;
  color: var(--accent-electric);
}

.strip-head p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS — Indian engineer stories
   ========================================================================== */
.testimonials {
  padding: 96px 0;
  background:
    radial-gradient(ellipse 700px 400px at 30% 20%, rgba(0, 229, 255, 0.05), transparent),
    radial-gradient(ellipse 700px 400px at 80% 80%, rgba(0, 217, 126, 0.05), transparent),
    var(--bg-deep);
}

.testimonials .section-head { margin-bottom: 56px; }

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

@media (max-width: 960px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .testi-grid { grid-template-columns: 1fr; } }

.testi-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: all 0.2s ease;
  position: relative;
}

.testi-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.testi-stars {
  color: var(--accent-amber);
  font-size: 14px;
  letter-spacing: 2px;
}

.testi-card blockquote {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
  flex: 1;
}

.testi-card blockquote em {
  color: var(--text-primary);
  font-style: italic;
  font-weight: 500;
}

.testi-card footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-mid);
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-electric), var(--accent-pcb));
  color: #001215;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testi-meta strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-meta span {
  font-size: 11.5px;
  color: var(--text-tertiary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testi-badge {
  font-size: 9.5px;
  padding: 4px 8px;
  background: rgba(0, 217, 126, 0.08);
  border: 1px solid rgba(0, 217, 126, 0.3);
  color: var(--accent-pcb);
  border-radius: 4px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* Live roll — "just joined" ticker */
.testi-roll {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-tertiary);
  flex-wrap: wrap;
  justify-content: center;
  letter-spacing: 0.03em;
}

.testi-roll > span:first-child {
  color: var(--accent-pcb);
  font-weight: 600;
}

.testi-roll-name {
  white-space: nowrap;
  color: var(--text-secondary);
}

@media (max-width: 560px) {
  .testi-roll { border-radius: 16px; padding: 14px 18px; font-size: 11.5px; }
}

/* ==========================================================================
   FAQ — accordion for student hesitations
   ========================================================================== */
.faq {
  padding: 96px 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.faq .section-head { margin-bottom: 48px; }

.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item[open] {
  border-color: var(--accent-electric);
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.02), transparent 60%),
    var(--bg-panel);
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 24px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.005em;
  list-style: none;
  position: relative;
  padding-right: 56px;
  transition: color 0.18s ease;
}

.faq-item summary:hover { color: var(--accent-electric); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-tertiary);
  transition: all 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--accent-electric);
  color: #001215;
  border-color: var(--accent-electric);
}

.faq-item p {
  padding: 0 24px 22px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.faq-item p em {
  color: var(--text-primary);
  font-style: italic;
}

/* ==========================================================================
   FEES — compact compare section
   ========================================================================== */
.fees-compare h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.compare-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  padding: 6px 8px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-mid);
}

.compare-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--border-dim);
  color: var(--text-secondary);
}

.compare-table tr:last-child td { border-bottom: 0; }

.compare-table td strong {
  color: var(--text-primary);
  font-weight: 600;
}

.compare-table td.ok { color: var(--accent-pcb); font-weight: 600; }
.compare-table td.bad { color: var(--accent-solder); }

.compare-note {
  font-size: 10.5px;
  color: var(--text-tertiary);
  margin: 12px 0 0;
  letter-spacing: 0.04em;
  font-style: italic;
}

/* ==========================================================================
   FINAL CTA — refresh
   ========================================================================== */
.final-cta {
  padding: 100px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 600px 400px at 50% 40%, rgba(0, 229, 255, 0.08), transparent),
    var(--bg-void);
}

.final-cta .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent-electric);
  margin-bottom: 18px;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin: 0 0 16px;
  color: var(--text-primary);
}

.final-cta h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent-pcb), var(--accent-electric));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.final-cta-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* Project empty state (when no trending listings yet) */
.project-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  background: var(--bg-panel);
  border: 1px dashed var(--border-mid);
  border-radius: 16px;
}

.project-empty p {
  color: var(--text-tertiary);
  margin: 0 0 20px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   STICKY SELL CTA
   ========================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.34, 1.26, 0.64, 1);
  pointer-events: none;
}

.sticky-cta--visible {
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta--dismissed {
  display: none !important;
}

.sticky-cta-inner {
  max-width: 1200px;
  margin: 0 auto 16px;
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow:
    0 -4px 24px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 229, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  flex-wrap: wrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sticky-cta-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-secondary);
  flex: 1;
  min-width: 180px;
}

.sticky-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-electric);
  box-shadow: 0 0 10px var(--accent-electric);
  flex-shrink: 0;
  animation: rtm-pulse 2s ease-in-out infinite;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sticky-cta-calc {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-tertiary);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border: 1px solid var(--border-mid);
  border-radius: 6px;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.sticky-cta-calc:hover {
  color: var(--accent-electric);
  border-color: var(--accent-electric);
}

@media (max-width: 560px) {
  .sticky-cta-inner { margin: 0 8px 8px; flex-direction: column; align-items: stretch; }
  .sticky-cta-actions { flex-direction: column; }
  .sticky-cta-calc { text-align: center; }
  .sticky-cta-actions .btn { text-align: center; }
}

/* ==========================================================================
   EARNINGS CALCULATOR
   ========================================================================== */
.calc-shell {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 860px) {
  .calc-shell { grid-template-columns: 1fr; }
}

/* Inputs */
.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.calc-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
}

.calc-val-badge {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-electric);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.25);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  min-width: 52px;
  text-align: center;
}

.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border-mid);
  outline: none;
  cursor: pointer;
  position: relative;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-electric);
  cursor: pointer;
  border: 2px solid var(--bg-deep);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
  transition: box-shadow 0.18s ease;
}

.calc-slider::-webkit-slider-thumb:hover,
.calc-slider:focus::-webkit-slider-thumb {
  box-shadow: 0 0 18px rgba(0, 229, 255, 0.7);
}

.calc-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-electric);
  cursor: pointer;
  border: 2px solid var(--bg-deep);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}

.calc-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 0 2px;
}

.calc-hint {
  font-size: 11px;
  color: var(--text-tertiary);
  margin: 0;
  letter-spacing: 0.03em;
}

/* Output */
.calc-output {
  background:
    linear-gradient(135deg, rgba(0, 229, 255, 0.04), transparent 50%),
    var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.calc-output::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-electric) 50%, transparent);
  opacity: 0.4;
}

.calc-result-main {
  text-align: center;
}

.calc-result-label {
  display: block;
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.calc-result-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 58px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--accent-electric);
  transition: color 0.3s ease;
  margin: 6px 0;
}

.calc-result-num.calc-result-mid  { color: var(--accent-amber); }
.calc-result-num.calc-result-high { color: var(--accent-pcb); }

.calc-result-after {
  display: block;
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* Breakdown rows */
.calc-breakdown {
  background: var(--bg-elevated);
  border: 1px solid var(--border-dim);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.calc-row-b {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.calc-b-label {
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
}

.calc-b-val { color: var(--text-primary); font-weight: 500; }
.calc-fee   { color: var(--accent-solder); }
.calc-annual { color: var(--accent-pcb); }

.calc-row-b-total {
  border-top: 1px dashed var(--border-mid);
  padding-top: 8px;
  margin-top: 4px;
}

.calc-row-b-total .calc-b-label {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 12px;
}

.calc-row-b-total .calc-b-val {
  font-size: 15px;
  color: var(--accent-electric);
}

/* Persona bubble */
.calc-persona {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0, 217, 126, 0.06);
  border: 1px solid rgba(0, 217, 126, 0.2);
  border-radius: 10px;
}

.calc-persona-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.calc-persona-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.calc-cta { width: 100%; text-align: center; }

/* ==========================================================================
   HOMEPAGE PRICING SECTION — two-audience split
   ========================================================================== */
.hp-pricing-split {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 28px;
}

@media (max-width: 760px) {
  .hp-pricing-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .hp-pricing-vs { flex-direction: row; padding: 0; }
  .hp-vs-line    { flex: 1; width: auto; height: 1px; }
}

.hp-pricing-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-mid);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.hp-pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.hp-seller { background: linear-gradient(135deg, rgba(0,217,126,.05), transparent 55%), var(--bg-panel); }
.hp-seller::before { background: linear-gradient(90deg, var(--accent-pcb), transparent); }

.hp-buyer  { background: linear-gradient(135deg, rgba(0,229,255,.05), transparent 55%), var(--bg-panel); }
.hp-buyer::before  { background: linear-gradient(90deg, var(--accent-electric), transparent); }

.hp-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hp-card-icon { font-size: 28px; line-height: 1; }

.hp-card-head h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 3px;
  letter-spacing: -.01em;
}

.hp-card-head p {
  font-size: 12.5px;
  color: var(--text-tertiary);
  margin: 0;
  font-family: var(--font-mono);
  letter-spacing: .03em;
}

.hp-fee-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
}

.hp-fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border-dim);
}

.hp-fee-item:last-child { border-bottom: 0; }

.hp-fee-divider {
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border-mid);
  border-bottom: 0;
}

.hp-fee-label {
  font-size: 13px;
  color: var(--text-secondary);
  flex: 1;
}

.hp-fee-amt {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.005em;
  white-space: nowrap;
  color: var(--text-primary);
}

.hp-fee-amt.free { color: var(--accent-pcb); }
.hp-fee-amt.cyan { color: var(--accent-electric); }

.hp-fee-link {
  font-size: 11.5px;
  color: var(--text-tertiary);
  text-decoration: none;
  letter-spacing: .05em;
  transition: color .18s ease;
}

.hp-seller .hp-fee-link:hover { color: var(--accent-pcb); }
.hp-buyer  .hp-fee-link:hover { color: var(--accent-electric); }

/* Versus divider */
.hp-pricing-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 4px;
}

.hp-vs-line {
  flex: 1;
  width: 1px;
  background: var(--border-dim);
}

.hp-vs-label {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* Bottom note strip */
.hp-pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11.5px;
  color: var(--text-tertiary);
  letter-spacing: .04em;
  text-align: center;
}

.hp-pricing-note a {
  color: var(--accent-electric);
  text-decoration: none;
}

.hp-pricing-note a:hover { text-decoration: underline; }
.hp-note-sep { color: var(--text-muted); }
