/* Hacker Planet LLC — Philadelphia PA */

:root {
  --bg: #0a0e14;
  --bg-elevated: #121820;
  --panel: rgba(22, 27, 34, 0.72);
  --panel-border: rgba(255, 255, 255, 0.08);
  --ink: #e6edf3;
  --muted: #8b949e;
  --accent: #00b48c;
  --accent-glow: rgba(0, 180, 140, 0.35);
  --magenta: #d2a8ff;
  --warn: #f85149;
  --philly-gold: #c9a227;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --nav-h: 72px;
  --max-w: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, var(--accent-glow), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(210, 168, 255, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(201, 162, 39, 0.08), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
  pointer-events: none;
  z-index: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}

a:hover {
  color: #33d4b0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--panel-border);
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #008f6f);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  box-shadow: 0 0 24px var(--accent-glow);
}

.logo span {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
}

.nav-cta {
  padding: 0.55rem 1.1rem;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 999px;
  font-weight: 600;
}

.nav-cta:hover {
  background: #33d4b0;
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--panel-border);
  color: var(--ink);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1.25rem;
}

/* Hero */
.hero {
  padding: 1.25rem 0 0.75rem;
  text-align: center;
  overflow: visible;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
  padding-bottom: 0.14em;
  overflow: visible;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 50%, var(--magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 auto 0.85rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  color: var(--bg);
}

.btn-ghost {
  background: var(--panel);
  color: var(--ink);
  border: 1px solid var(--panel-border);
}

.hero-visual {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--panel-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.hero-visual.cybertech-frame {
  border-color: rgba(0, 180, 140, 0.4);
  box-shadow:
    0 0 48px var(--accent-glow),
    0 24px 80px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(0, 180, 140, 0.15);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, transparent 40%);
  pointer-events: none;
}

/* Inner pages: hero image below page-hero (replaces inline margin-bottom) */
.wrap > .hero-visual {
  margin-bottom: 1.25rem;
}

.page-hero .hero-actions {
  justify-content: flex-start;
  margin-top: 0.65rem;
}

/* Sections */
section {
  padding: 1rem 0;
}

.section-compact {
  padding: 0.75rem 0;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

.section-sub {
  color: var(--muted);
  max-width: 32rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.section-cta {
  text-align: center;
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card-grid-tight {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.card-grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.35rem;
  backdrop-filter: blur(8px);
  transition: border-color 0.25s, transform 0.25s;
}

.card-compact {
  padding: 1.15rem;
}

.card-product-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 0.85rem;
  border: 1px solid rgba(0, 180, 140, 0.28);
  box-shadow: 0 0 24px rgba(0, 180, 140, 0.12);
}

.card-compact .card-icon {
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}

.card:hover {
  border-color: rgba(0, 180, 140, 0.35);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card-accent-ctg { background: rgba(0, 180, 140, 0.15); }
.card-accent-bj { background: rgba(100, 180, 255, 0.15); }
.card-accent-cb { background: rgba(255, 166, 87, 0.15); }
.card-accent-m5 { background: rgba(255, 100, 130, 0.15); }

/* Philly band */
.philly-band {
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(0, 180, 140, 0.08));
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  padding: 1.75rem 0;
  text-align: center;
}

.philly-band h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 0.5rem;
}

.philly-band p {
  color: var(--muted);
  margin: 0;
}

/* Feature list */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--panel-border);
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-list li::before {
  content: "◆";
  color: var(--accent);
  font-size: 0.65rem;
  margin-top: 0.35rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 0.85rem 0 0;
}

.stat {
  text-align: center;
  padding: 0.85rem;
  background: var(--panel);
  border-radius: var(--radius-sm);
  border: 1px solid var(--panel-border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Page header (inner pages) */
.page-hero {
  padding: 1.1rem 0 0.95rem;
  border-bottom: 1px solid var(--panel-border);
  margin-bottom: 0.75rem;
  overflow: visible;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.22;
  margin: 0 0 0.55rem;
  padding-bottom: 0.14em;
  letter-spacing: -0.02em;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.page-hero .lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 40rem;
  margin: 0;
  line-height: 1.5;
}

/* Prose */
.prose {
  max-width: 42rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 1.25rem 0 0.5rem;
  color: var(--ink);
}

.prose-tight h2:first-child {
  margin-top: 0;
}

.prose-tight p {
  margin: 0 0 0.85rem;
}

.muted-inline {
  color: var(--muted);
  font-size: 0.95rem;
}

.prose p {
  color: var(--muted);
}

.prose strong {
  color: var(--ink);
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.contact-card {
  padding: 1.5rem;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
}

.contact-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  margin-top: 1.25rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--panel-border);
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  list-style: none;
  padding: 0;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 20, 0.98);
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--panel-border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .feature-row {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Shop & payments */
.pay-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--muted);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.shop-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.35rem;
  backdrop-filter: blur(8px);
}

.shop-card-img-wrap {
  position: relative;
  margin: -1.35rem -1.35rem 0.85rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  background: var(--bg-elevated);
  line-height: 0;
  border-bottom: 1px solid rgba(0, 180, 140, 0.22);
  box-shadow: inset 0 0 32px rgba(0, 180, 140, 0.06);
}

.shop-card-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 14, 20, 0.35));
  box-shadow: inset 0 0 0 1px rgba(0, 180, 140, 0.18);
}

.shop-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  filter: contrast(1.04) saturate(0.94);
}

.featured-shop-grid .shop-card-img {
  height: 160px;
}

.shop-card-featured {
  border-color: rgba(0, 180, 140, 0.45);
  box-shadow: 0 0 40px var(--accent-glow);
}

.shop-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--bg);
  background: var(--accent);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.shop-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.shop-price span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.shop-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
}

.shop-tagline {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.5rem;
}

.shop-card > p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1rem;
}

.shop-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.shop-features li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--panel-border);
}

.shop-features li::before {
  content: "✓ ";
  color: var(--accent);
}

.product-checkout {
  margin-top: 1rem;
}

.pay-methods {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  border: 1px solid var(--panel-border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pay-btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.pay-btn-stripe {
  background: linear-gradient(135deg, #635bff, #0a2540);
  color: #fff !important;
  border: none;
}

.pay-btn-paypal {
  background: #0070ba;
  color: #fff !important;
  border: none;
}

.pay-btn-venmo {
  background: #008cff;
  color: #fff !important;
  border: none;
}

.pay-btn-cashapp {
  background: #00d632;
  color: #000 !important;
  border: none;
}

.pay-placeholder {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
}

.pay-demo-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.prelaunch-banner {
  margin: 0 0 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  background: rgba(0, 255, 200, 0.06);
  font-size: 0.95rem;
  color: var(--text);
}

.prelaunch-banner a {
  color: var(--cyan);
}

.pay-trust-bar--muted {
  opacity: 0.85;
  font-size: 0.88rem;
}

.pay-demo-note code {
  font-size: 0.8rem;
  color: var(--magenta);
}

.paypal-sdk-host,
.paypal-venmo-host {
  margin-top: 0.5rem;
  min-height: 45px;
}

.code-block {
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 1.25rem;
  overflow-x: auto;
  font-size: 0.9rem;
  color: var(--muted);
}

.code-block code {
  font-family: ui-monospace, monospace;
}

/* Drop-ship catalog */
.catalog-host {
  padding-top: 1rem;
}

.catalog-section {
  margin-bottom: 1.25rem;
}

.catalog-intro {
  margin-bottom: 1rem;
}

.catalog-section-banner {
  max-width: 100%;
  margin-bottom: 1rem;
}

.catalog-card {
  display: flex;
  flex-direction: column;
}

.catalog-source {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  width: fit-content;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.source-etsy { color: #f56400; background: rgba(245, 100, 0, 0.12); }
.source-ali { color: #ff4747; background: rgba(255, 71, 71, 0.12); }
.source-tindie { color: #4fc3f7; background: rgba(79, 195, 247, 0.12); }
.source-github { color: var(--ink); }
.source-printables { color: var(--magenta); background: rgba(210, 168, 255, 0.12); }
.source-hpl { color: var(--accent); background: rgba(0, 180, 140, 0.15); }
.source-dropship { color: var(--philly-gold); background: rgba(201, 162, 39, 0.15); }
.source-direct { color: var(--accent); background: rgba(0, 180, 140, 0.18); }

.catalog-price {
  font-size: 1.65rem;
}

.catalog-checkout {
  margin-top: auto;
  padding-top: 1rem;
}

.catalog-ship-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
  font-style: italic;
}

.pay-btn-external {
  background: var(--bg-elevated);
  color: var(--ink) !important;
  border: 1px solid var(--panel-border);
}

.pay-btn-external:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
}

.legal-shop {
  border-top: 1px solid var(--panel-border);
  padding-top: 1.25rem;
  margin-top: 1rem !important;
}

/* Shipping & tax calculator */
.ship-calc-panel {
  margin-bottom: 1rem;
  padding: 1.15rem;
  background: var(--panel);
  border: 1px solid rgba(0, 180, 140, 0.35);
  border-radius: var(--radius);
}

.ship-calc-form {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ship-calc-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem 1rem;
  align-items: end;
}

.ship-calc-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.ship-calc-input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--panel-border);
  background: var(--bg-elevated);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.ship-calc-btn {
  margin-bottom: 1rem;
}

.ship-calc-breakdown {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1.25rem;
  margin: 0;
  font-size: 0.95rem;
}

.ship-calc-breakdown dt {
  color: var(--muted);
  font-weight: 500;
}

.ship-calc-breakdown dd {
  margin: 0;
}

.ship-calc-breakdown .muted {
  color: var(--muted);
  font-size: 0.85rem;
}

.ship-calc-total {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--panel-border);
  margin-top: 0.35rem;
}

.ship-calc-disclaimer,
.ship-calc-error {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.ship-calc-error {
  color: var(--warn);
}

.ship-calc-link {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0;
  border: none;
  background: none;
  color: var(--magenta);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-body);
}

.ship-calc-link:hover {
  color: var(--accent);
}

/* Services pricing tables */
.table-scroll {
  overflow-x: auto;
  margin: 0.75rem 0;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
}

.pricing-table th,
.pricing-table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--panel-border);
  text-align: left;
  vertical-align: top;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 0, 0, 0.2);
}

.pricing-table .price-col {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.pricing-table--compact {
  max-width: 28rem;
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

