/* ============================================
   Easy Button Websites
   Industrial-utilitarian aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Archivo:wght@400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  /* Industrial color system */
  --bg: #FAFAF7;
  --bg-soft: #F0EFE9;
  --bg-warm: #E8E5DA;
  --ink: #0E0E0C;
  --ink-soft: #2A2A26;
  --ink-mute: #5C5C56;
  --ink-dim: #8B8B82;

  --line: #D8D6CB;
  --line-soft: #E5E3D8;
  --line-strong: #B5B2A4;

  /* Signature: safety yellow */
  --yellow: #FFD300;
  --yellow-soft: #FFE45C;
  --yellow-deep: #E5BD00;

  /* Industrial accents */
  --black: #0E0E0C;
  --gray: #4A4A44;
  --steel: #6E6E66;

  /* Status colors (used sparingly) */
  --green-check: #2D8654;
  --red-x: #C44545;

  /* Typography */
  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-heavy: 'Archivo', sans-serif;
  --font-body: 'Archivo', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Layout */
  --width-max: 1320px;
  --width-content: 820px;

  --radius-sm: 2px;
  --radius: 4px;
  --radius-lg: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Industrial texture overlay - subtle paper grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0px,
      transparent 2px,
      rgba(14, 14, 12, 0.008) 2px,
      rgba(14, 14, 12, 0.008) 4px
    );
  pointer-events: none;
  z-index: 0;
}

main, header, footer { position: relative; z-index: 1; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--ink);
  text-transform: none;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  letter-spacing: -0.03em;
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h4 {
  font-family: var(--font-heavy);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: var(--s-4);
  color: var(--ink-soft);
}

p:last-child { margin-bottom: 0; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: var(--yellow);
  transition: text-decoration-color 0.15s ease;
}

a:hover {
  text-decoration-color: var(--ink);
}

strong { font-weight: 800; color: var(--ink); }

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
}

.kicker {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ink);
  background: var(--yellow);
  padding: 0.35rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  margin-bottom: var(--s-6);
  text-decoration: none;
}

.kicker-line {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: var(--s-6);
}

.kicker-line::before {
  content: "";
  width: 32px;
  height: 3px;
  background: var(--yellow);
}

/* Layout */
.container {
  width: 100%;
  max-width: var(--width-max);
  margin: 0 auto;
  padding: 0 var(--s-6);
  position: relative;
}

.container-narrow {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--s-6);
  position: relative;
}

section { padding: var(--s-20) 0; position: relative; }

@media (max-width: 768px) {
  section { padding: var(--s-12) 0; }
  .container, .container-narrow { padding: 0 var(--s-4); }
}

/* Buttons - chunky, industrial */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 1rem 1.75rem;
  font-family: var(--font-heavy);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  line-height: 1;
  text-transform: none;
  position: relative;
}

.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-primary:hover {
  background: var(--yellow-soft);
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--ink);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.btn-secondary {
  background: var(--bg);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-secondary:hover {
  background: var(--bg-soft);
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--ink);
}

.btn-secondary:active {
  transform: translate(2px, 2px);
  box-shadow: 0 0 0 var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: transparent;
  box-shadow: none;
  padding: 0.5rem 0;
}

.btn-ghost::after {
  content: "→";
  margin-left: var(--s-2);
  transition: transform 0.15s ease;
}

.btn-ghost:hover {
  text-decoration: none;
  color: var(--ink);
}

.btn-ghost:hover::after { transform: translateX(4px); }

/* Top alert bar */
.alert-bar {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-3) 0;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.alert-bar .yellow-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  margin-right: var(--s-2);
  vertical-align: middle;
  animation: pulse 2s ease-in-out infinite;
}

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

/* Header */
.site-header {
  padding: var(--s-5) 0;
  background: var(--bg);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
}

.brand:hover { text-decoration: none; color: var(--ink); }

.brand-button {
  width: 48px;
  height: 48px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.04em;
  box-shadow: 3px 3px 0 var(--ink);
  position: relative;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-top: 4px;
  font-weight: 600;
}

.header-nav {
  display: flex;
  gap: var(--s-8);
  align-items: center;
}

.header-nav a {
  font-family: var(--font-heavy);
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  text-decoration-color: transparent;
}

.header-nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  text-decoration-color: var(--yellow);
}

@media (max-width: 900px) {
  .header-nav { display: none; }
  .brand-tag { display: none; }
}

/* Hero — bold, oversized */
.hero {
  padding: var(--s-20) 0 var(--s-24);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-10);
  align-items: center;
}

.hero h1 {
  margin-bottom: var(--s-8);
}

.hero h1 .highlight {
  background: linear-gradient(180deg, transparent 15%, var(--yellow) 15%, var(--yellow) 85%, transparent 85%);
  padding: 0 0.1em;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: var(--s-8);
  padding-bottom: var(--s-6);
  border-bottom: 3px solid var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}

.hero-tagline .dot {
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  background: var(--yellow-deep);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-subhead {
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: var(--s-10);
  max-width: 580px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: var(--s-3);
  margin-bottom: var(--s-10);
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-6);
  padding-top: var(--s-6);
  border-top: 1px solid var(--line);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.hero-trust-item::before {
  content: "✓";
  color: var(--ink);
  font-weight: 800;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* The phone mockup visual in hero */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 480px;
  padding: var(--s-6) 0;
}

.hero-image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  background-image: url('hero.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}

@media (max-width: 968px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }
  .hero-visual {
    min-height: auto;
    order: -1;
    padding: var(--s-4) 0;
  }
  .hero-image { max-width: 420px; }
}


/* Credibility band — sits between hero and expectations, understated tone */
.credibility-band {
  background: var(--bg);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.credibility-band p {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 0.01em;
  line-height: 1.5;
  max-width: 900px;
  margin: 0 auto;
}

.credibility-band strong {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 640px) {
  .credibility-band p {
    font-size: 0.85rem;
    padding: 0 var(--s-2);
  }
}


/* Expectations section — the honesty section */
.expectations {
  background: var(--ink);
  color: var(--bg);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.expectations h2 {
  color: var(--bg);
}

.expectations-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-12);
  align-items: start;
}

.expectations-grid h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

.expectations-grid .kicker {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--ink);
}

.expectations-content p {
  color: var(--bg-warm);
  font-size: 1.15rem;
  line-height: 1.65;
  margin-bottom: var(--s-5);
}

.expectations-content p strong {
  color: var(--yellow);
  font-weight: 800;
}

@media (max-width: 768px) {
  .expectations-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
}

/* Portfolio — 12 trade snippets */
.portfolio {
  background: var(--bg);
}

.section-header {
  margin-bottom: var(--s-12);
  max-width: 760px;
}

.section-header h2 {
  margin-bottom: var(--s-4);
}

.section-header p {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

.portfolio-card {
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all 0.2s ease;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
}

.portfolio-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.portfolio-snippet {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 3px solid var(--ink);
}

.portfolio-snippet::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 50%,
    rgba(250, 250, 247, 0.7) 100%
  );
  pointer-events: none;
}

.portfolio-meta {
  padding: var(--s-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-soft);
}

.portfolio-trade {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.portfolio-tier {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
}

@media (max-width: 968px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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

/* ============================================
   DIY Math section — "doing it yourself costs more"
   ============================================ */
.diy-math {
  background: var(--bg-soft);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.diy-math-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-12);
  align-items: start;
}

.diy-math-grid h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.95;
}

.diy-math-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
}

.diy-math-content p strong {
  color: var(--ink);
}

.diy-receipt {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--s-8);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: var(--font-mono);
}

.diy-receipt h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--s-2);
  padding-bottom: var(--s-3);
  border-bottom: 2px dashed var(--ink);
}

.diy-receipt-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: var(--s-5);
}

.diy-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--s-3) 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}

.diy-line:last-of-type {
  border-bottom: 2px solid var(--ink);
  margin-bottom: var(--s-3);
}

.diy-line-label {
  color: var(--ink);
  font-weight: 500;
  flex-grow: 1;
}

.diy-line-amount {
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.diy-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--s-4) 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: var(--s-4);
}

.diy-total-label {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.diy-total-amount {
  color: var(--ink);
  font-weight: 900;
  font-size: 1.3rem;
}

.diy-compare {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-5);
  border-radius: var(--radius-sm);
  margin-top: var(--s-4);
}

.diy-compare-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: var(--s-2);
}

.diy-compare-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--bg);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.diy-compare-value .accent { color: var(--yellow); }

@media (max-width: 968px) {
  .diy-math-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
}

/* ============================================
   3-up Showcase cards (replaces 12 grid)
   ============================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-10);
}

.showcase-card {
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex;
  flex-direction: column;
}

.showcase-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  text-decoration: none;
  color: var(--ink);
}

.showcase-image {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-warm);
  position: relative;
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-align: center;
  font-weight: 600;
  padding: var(--s-4);
}

/* Trade-specific image styles - use as backgrounds when images available, fall back to colored placeholders */
.showcase-image-hvac {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%),
    url('samples/hvac-hero.png');
}

.showcase-image-landscaping {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%),
    url('samples/landscaping-hero.png');
}

.showcase-image-electrician {
  background-image:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%),
    url('samples/electrician-hero.png');
}

.showcase-image-placeholder {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: var(--s-4);
  background: rgba(0,0,0,0.4);
  border-radius: var(--radius-sm);
  text-align: center;
  line-height: 1.5;
}

.showcase-body {
  padding: var(--s-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.showcase-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--ink-mute);
  margin-bottom: var(--s-2);
}

.showcase-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: var(--s-3);
  line-height: 1;
}

.showcase-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: var(--s-5);
  flex-grow: 1;
}

.showcase-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  padding: 0.6rem 1rem;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  align-self: flex-start;
  box-shadow: 2px 2px 0 var(--ink);
  transition: all 0.15s ease;
}

.showcase-link::after {
  content: "→";
  transition: transform 0.15s ease;
}

.showcase-card:hover .showcase-link {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--ink);
}

.showcase-card:hover .showcase-link::after {
  transform: translateX(3px);
}

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

/* ============================================
   20 trades pill grid
   ============================================ */
.trades-list-section {
  background: var(--bg);
  padding: var(--s-16) 0;
}

.trades-list-header {
  text-align: center;
  margin-bottom: var(--s-10);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trades-list-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}

.trades-list-header p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.trades-pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}

.trade-pill {
  font-family: var(--font-heavy);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.6rem 1.1rem;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  transition: all 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

a.trade-pill {
  text-decoration: none;
}

a.trade-pill:hover,
a.trade-pill-featured:hover {
  background: var(--yellow);
  cursor: pointer;
  transform: translateY(-1px);
  box-shadow: 2px 2px 0 var(--ink);
}

.trade-pill-featured {
  background: var(--bg);
}

.trades-list-footer {
  text-align: center;
  margin-top: var(--s-8);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

.trades-list-footer strong {
  color: var(--ink);
}

/* Trades category cards */
.trades-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-bottom: var(--s-8);
}

.trades-category {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
}

.trades-category-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ink);
  background: var(--yellow);
  padding: var(--s-3) var(--s-5);
  border-bottom: 3px solid var(--ink);
}

.trades-category .trades-pills {
  justify-content: flex-start;
  padding: var(--s-4) var(--s-5);
  margin: 0;
}

@media (max-width: 1024px) {
  .trades-categories {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .trades-categories {
    grid-template-columns: 1fr;
  }
}

/* How it works - 3 steps */
.how-it-works {
  background: var(--bg-soft);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-8);
}

.step {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--s-8);
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: var(--s-4);
  background: var(--yellow);
  display: inline-block;
  padding: 0 0.4rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  box-shadow: 3px 3px 0 var(--ink);
}

.step h3 {
  margin-bottom: var(--s-3);
  font-size: 1.5rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

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

/* Pricing - the main event */
.pricing {
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-12);
}

.tier {
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
  transition: all 0.2s ease;
}

.tier-pro {
  background: var(--yellow);
  transform: translateY(-12px);
  box-shadow: 6px 6px 0 var(--ink);
  padding: var(--s-8) var(--s-10);
}

.tier-pro .tier-features li {
  border-bottom-color: rgba(14, 14, 12, 0.18);
}

.tier:hover {
  transform: translate(-2px, -4px);
  box-shadow: 6px 6px 0 var(--ink);
}

.tier-pro:hover {
  transform: translate(-2px, -14px);
  box-shadow: 8px 8px 0 var(--ink);
}

.tier-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-bottom: var(--s-2);
}

.tier-tagline {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: var(--s-6);
  padding-bottom: var(--s-5);
  border-bottom: 2px solid var(--ink);
}

.tier-pricing {
  margin-bottom: var(--s-6);
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  margin-bottom: var(--s-2);
}

.tier-price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ink);
}

.tier-price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.tier-price-unit {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tier-setup {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: var(--s-2);
}

.tier-setup strong {
  color: var(--ink);
  font-weight: 800;
}

.tier-first-month {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
}

.tier-pro .tier-first-month {
  background: var(--ink);
  color: var(--yellow);
}

.tier-features {
  list-style: none;
  margin-bottom: var(--s-8);
  flex-grow: 1;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(14, 14, 12, 0.1);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--ink);
}

.tier-features li:last-child { border-bottom: none; }

.tier-features li.included::before {
  content: "✓";
  color: var(--ink);
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
  width: 20px;
}

.tier-features li.excluded {
  color: var(--ink-dim);
  text-decoration: line-through;
}

.tier-features li.excluded::before {
  content: "—";
  color: var(--ink-dim);
  font-weight: 900;
  flex-shrink: 0;
  width: 20px;
}

.tier-features li strong {
  font-weight: 800;
}

/* Inherited features (from lower tiers) — visually muted */
.tier-features li.inherited {
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding: 0.55rem 0;
}

.tier-features li.inherited::before {
  color: var(--ink-soft);
  font-size: 0.9rem;
  opacity: 0.7;
}

.tier-features li.inherited strong {
  font-weight: 700;
  color: var(--ink-soft);
}

/* Divider between inherited and upgrade rows */
.tier-features li.tier-divider {
  border-bottom: 2px solid var(--ink);
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  font-weight: 700;
  margin-top: var(--s-2);
  padding-top: var(--s-3);
  padding-bottom: var(--s-2);
  display: block;
}

.tier-features li.tier-divider::before {
  content: none;
}

/* Pro tier (yellow bg) gets dark inherited text */
.tier-pro .tier-features li.inherited {
  color: var(--ink);
  opacity: 0.65;
}

.tier-pro .tier-features li.inherited::before {
  color: var(--ink);
  opacity: 0.55;
}

.tier-pro .tier-features li.inherited strong {
  color: var(--ink);
  opacity: 0.85;
}

.tier-pro .tier-features li.tier-divider {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.tier-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 1.25rem;
  background: var(--ink);
  color: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  text-decoration-color: transparent;
  transition: all 0.15s ease;
  box-shadow: 4px 4px 0 var(--ink);
}

.tier-pro .tier-cta {
  background: var(--ink);
  color: var(--yellow);
}

.tier-cta:hover {
  background: var(--gray);
  color: var(--bg);
  text-decoration: none;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.tier-pro .tier-cta:hover {
  color: var(--yellow);
}

@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .tier-pro {
    transform: translateY(0);
  }
  .tier-pro:hover {
    transform: translate(-2px, -2px);
  }
}

/* Tagline reinforcement */
.tagline-strip {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-10) 0;
  text-align: center;
}

.tagline-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
  justify-content: center;
}

.tagline-text .yellow { color: var(--yellow); }

.tagline-text .divider {
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Everything Included section */
.included {
  background: var(--bg-soft);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.included-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-12);
  align-items: start;
}

.included-list {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--s-8);
  box-shadow: 4px 4px 0 var(--ink);
}

.included-list h3 {
  font-size: 1.4rem;
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-4);
  border-bottom: 3px solid var(--ink);
}

.included-list ul {
  list-style: none;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}

.included-list li:last-child { border-bottom: none; }

.included-list li::before {
  content: "✓";
  color: var(--ink);
  font-weight: 900;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.compare-box {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-8);
  border-radius: var(--radius);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--yellow);
}

.compare-box h3 {
  color: var(--bg);
  font-size: 1.25rem;
  margin-bottom: var(--s-5);
}

.compare-list {
  list-style: none;
}

.compare-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-3) 0;
  border-bottom: 1px solid rgba(255, 211, 0, 0.2);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--bg-warm);
}

.compare-list li:last-child { border-bottom: none; }

.compare-list li strong {
  color: var(--yellow);
  font-weight: 700;
}

.compare-conclusion {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 2px solid var(--yellow);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--yellow);
  text-transform: none;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

@media (max-width: 968px) {
  .included-grid {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
}

/* What's NOT included */
.not-included {
  background: var(--bg);
}

.not-included-content {
  max-width: 760px;
}

.not-included h2 {
  margin-bottom: var(--s-6);
}

.not-included-intro {
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: var(--s-8);
  padding-left: var(--s-5);
  border-left: 4px solid var(--yellow);
}

.not-included-list {
  list-style: none;
  margin-bottom: var(--s-6);
}

.not-included-list li {
  font-family: var(--font-heavy);
  font-size: 1.15rem;
  font-weight: 700;
  padding: var(--s-4) 0;
  border-bottom: 2px solid var(--line);
  display: flex;
  align-items: center;
  gap: var(--s-4);
  color: var(--ink);
}

.not-included-list li::before {
  content: "✗";
  color: var(--bg);
  background: var(--ink);
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  flex-shrink: 0;
}

.not-included-footer {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--ink-mute);
  font-weight: 500;
  line-height: 1.55;
  margin-top: var(--s-6);
  padding: var(--s-5);
  background: var(--bg-soft);
  border-left: 4px solid var(--ink);
}

/* FAQ */
.faq {
  background: var(--bg-soft);
  border-top: 3px solid var(--ink);
}

.faq-list {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--ink);
}

.faq-list details {
  border-bottom: 2px solid var(--ink);
}

.faq-list details:last-child { border-bottom: none; }

.faq-list summary {
  list-style: none;
  font-family: var(--font-heavy);
  font-size: 1.15rem;
  font-weight: 800;
  padding: var(--s-5) var(--s-6);
  cursor: pointer;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
  transition: background 0.15s ease;
}

.faq-list summary:hover { background: var(--bg-warm); }

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  line-height: 0.9;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  padding: 0 var(--s-6) var(--s-6);
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 1rem;
}

.faq-list details p strong {
  color: var(--ink);
}

/* Final CTA */
.final-cta {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-24) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 60%);
  opacity: 0.15;
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.final-cta-overline {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(250, 250, 247, 0.55);
  letter-spacing: 0.05em;
  margin-bottom: var(--s-5);
  text-align: center;
}

.final-cta h2 {
  color: var(--bg);
  margin-bottom: var(--s-6);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.15;
}

.final-cta h2 .highlight {
  background: var(--yellow);
  color: var(--ink);
  padding: 0.1em 0.2em 0.2em;
  display: inline-block;
  margin-top: 0.15em;
  line-height: 1;
}

.final-cta p {
  color: var(--bg-warm);
  font-size: 1.25rem;
  margin-bottom: var(--s-10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .btn-primary {
  font-size: 1.15rem;
  padding: 1.25rem 2.25rem;
}

.final-cta-tagline {
  margin-top: var(--s-10);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--yellow);
  letter-spacing: -0.015em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
  justify-content: center;
}

.final-cta-tagline .divider {
  display: inline-block;
  width: 0.35em;
  height: 0.35em;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--bg-warm);
  padding: var(--s-12) 0 var(--s-6);
  border-top: 2px solid rgba(255, 211, 0, 0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-10);
}

.footer-brand-block {
  max-width: 380px;
}

.footer-brand-block p {
  color: var(--bg-warm);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-top: var(--s-4);
}

.footer-brand-block .brand,
.footer-brand-block .brand:hover {
  color: var(--bg);
}

.footer-brand-block .brand-name,
.footer-brand-block .brand-tag {
  color: var(--bg);
}

.footer-brand-block .brand-tag {
  color: var(--yellow);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: var(--s-4);
  font-weight: 700;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: var(--s-2); }

.footer-col a, .footer-col span {
  color: var(--bg-warm);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 211, 0, 0.15);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-dim);
  letter-spacing: 0.05em;
}

/* Site credit — for customer sites built by Easy Button Websites */
.site-credit {
  text-align: center;
  padding: 1.25rem 1rem;
  font-family: var(--font-mono), -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #888;
  opacity: 0.7;
  line-height: 1.4;
}

.site-credit a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted currentColor;
  transition: opacity 0.15s ease, color 0.15s ease;
}

.site-credit a:hover {
  opacity: 1;
  color: #555;
  border-bottom-style: solid;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-6);
  }
}

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

/* Portfolio page-specific */
.portfolio-page-hero {
  padding: var(--s-16) 0 var(--s-10);
}

.portfolio-page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: var(--s-5);
}

.portfolio-page-hero p {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 700px;
}

.portfolio-detail {
  padding: var(--s-12) 0;
  border-top: 3px solid var(--ink);
}

.portfolio-detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--s-10);
  align-items: start;
}

.portfolio-detail-snippet {
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
}

.portfolio-detail-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: var(--s-4);
}

.portfolio-detail-info .kicker {
  margin-bottom: var(--s-4);
}

.portfolio-detail-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
}

.portfolio-detail-info .recommended {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  padding: var(--s-3) var(--s-4);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 968px) {
  .portfolio-detail-grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .kicker-line,
.hero h1,
.hero-tagline,
.hero-subhead,
.hero-ctas,
.hero-trust {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero h1 { animation-delay: 0.1s; }
.hero-tagline { animation-delay: 0.2s; }
.hero-subhead { animation-delay: 0.3s; }
.hero-ctas { animation-delay: 0.4s; }
.hero-trust { animation-delay: 0.5s; }

.hero-visual {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.3s;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

/* ============================================
   SIGNUP & CONTACT pages
   ============================================ */

.page-hero {
  padding: var(--s-16) 0 var(--s-12);
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--s-5);
  letter-spacing: -0.025em;
}

.page-hero h1 .highlight {
  background: linear-gradient(180deg, transparent 8%, var(--yellow) 8%, var(--yellow) 92%, transparent 92%);
  padding: 0 0.1em;
}

.page-hero-sub {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto var(--s-8);
  line-height: 1.55;
}

.page-hero-trust {
  display: inline-flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: center;
  margin-top: var(--s-2);
}

.page-trust-pill {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 999px;
}

.tier-recap {
  background: var(--bg-soft);
  padding: var(--s-12) 0;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.tier-recap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  max-width: 980px;
  margin: 0 auto;
}

.tier-recap-card {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--s-6);
  text-align: center;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
  /* Button reset (works for both <button> and <div> usage) */
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 100%;
  display: block;
  transition: transform 0.08s ease, box-shadow 0.08s ease;
}

.tier-recap-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.tier-recap-card:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--ink);
}

.tier-recap-card:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.tier-recap-card.active {
  background: var(--yellow);
}

.tier-recap-card.active::before {
  content: "YOUR PICK";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.tier-recap-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-2);
}

.tier-recap-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.95;
  margin-bottom: var(--s-1);
}

.tier-recap-price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.tier-recap-setup {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: var(--s-3);
}

.tier-recap-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 600;
}

@media (max-width: 768px) {
  .tier-recap-grid {
    grid-template-columns: 1fr;
  }
}

.tally-section {
  padding: var(--s-16) 0;
  background: var(--bg);
}

.tally-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--s-10);
  box-shadow: 6px 6px 0 var(--ink);
}

.tally-placeholder {
  min-height: 480px;
  background: var(--bg);
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-12);
  text-align: center;
}

.tally-placeholder-icon {
  width: 56px;
  height: 56px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: var(--s-4);
}

.tally-placeholder h3 {
  font-size: 1.4rem;
  margin-bottom: var(--s-3);
}

.tally-placeholder p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: var(--s-4);
}

.tally-placeholder code {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
}

.signup-steps {
  margin-top: var(--s-10);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.signup-steps h3 {
  text-align: center;
  margin-bottom: var(--s-6);
  font-size: 1.3rem;
}

.signup-step-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-bottom: 2px solid var(--line);
}

.signup-step-row:last-child { border-bottom: none; }

.signup-step-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 2px 2px 0 var(--ink);
}

.signup-step-text {
  flex-grow: 1;
}

.signup-step-text strong {
  display: block;
  font-family: var(--font-heavy);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: var(--s-1);
}

.signup-step-text span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .tally-wrapper { padding: var(--s-5); }
}

/* ============================================
   STRIPE CHECKOUT BLOCK (signup.html)
   ============================================ */

.checkout-block {
  padding: var(--s-4);
}

.checkout-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
  background: var(--yellow);
  padding: 0.35rem 0.75rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  font-weight: 700;
  display: inline-block;
  margin-bottom: var(--s-5);
}

.checkout-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-3);
}

.checkout-summary {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: var(--s-6);
}

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

.checkout-totals {
  background: var(--bg);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--s-5);
  margin-bottom: var(--s-6);
  box-shadow: 4px 4px 0 var(--ink);
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--s-3) 0;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}

.checkout-line:nth-last-of-type(2) {
  border-bottom: 3px solid var(--ink);
}

.checkout-total-line {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  padding-top: var(--s-4);
  border-bottom: none;
}

.checkout-recur {
  margin-top: var(--s-3);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink-mute);
  font-weight: 500;
  text-align: center;
  padding-top: var(--s-3);
  border-top: 1px dashed var(--line);
}

.checkout-recur span {
  font-weight: 700;
  color: var(--ink);
}

.checkout-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.25rem;
  font-size: 1.1rem;
  margin-bottom: var(--s-5);
}

.checkout-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}

.checkout-trust-item {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.checkout-fineprint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-mute);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .checkout-trust { flex-direction: column; gap: var(--s-2); }
}

/* ============================================
   THANK YOU PAGE + INTAKE FORM
   ============================================ */

.thanks-hero {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-16) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thanks-hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--yellow) 0%, transparent 60%);
  opacity: 0.18;
  pointer-events: none;
}

.thanks-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--s-4);
}

.thanks-checkmark {
  width: 80px;
  height: 80px;
  background: var(--yellow);
  border: 4px solid var(--ink);
  border-radius: 50%;
  margin: 0 auto var(--s-6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.thanks-hero h1 {
  color: var(--bg);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: var(--s-4);
}

.thanks-hero p {
  color: var(--bg-warm);
  font-size: 1.2rem;
  line-height: 1.55;
  margin-bottom: var(--s-5);
}

.thanks-hero p strong {
  color: var(--yellow);
}

.thanks-status-bar {
  background: var(--bg-soft);
  padding: var(--s-4) 0;
  border-bottom: 3px solid var(--ink);
}

.thanks-status-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.thanks-status-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.thanks-status-item::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  font-weight: 900;
  font-size: 0.85rem;
}

.intake-section {
  padding: var(--s-16) 0;
  background: var(--bg);
}

.intake-intro {
  text-align: center;
  margin-bottom: var(--s-10);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.intake-intro h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: var(--s-4);
}

.intake-intro p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.intake-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--s-6);
  box-shadow: 6px 6px 0 var(--ink);
}

.intake-iframe-wrapper {
  position: relative;
  width: 100%;
  min-height: 800px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.intake-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 800px;
  border: none;
  display: block;
}

.intake-placeholder {
  min-height: 480px;
  border: 2px dashed var(--line-strong);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--s-10);
  text-align: center;
  background: var(--bg);
}

.intake-placeholder h3 {
  font-size: 1.4rem;
  margin-bottom: var(--s-3);
}

.intake-placeholder p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: var(--s-3);
}

.intake-placeholder code {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
}

.intake-help {
  margin-top: var(--s-8);
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-mute);
}

.intake-help a {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 600px) {
  .intake-wrapper { padding: var(--s-4); }
}

/* ============================================
   TRADE LANDING PAGES
   ============================================ */

/* Trade hero */
.trade-hero {
  padding: 3.5rem 0 3rem;
  background: var(--bg);
}

.trade-hero-content {
  max-width: 880px;
}

.trade-hero-content h1 {
  margin: var(--s-4) 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.15;
}

.trade-hero-content h1 .highlight {
  background: linear-gradient(180deg, transparent 8%, var(--yellow) 8%, var(--yellow) 92%, transparent 92%);
  color: var(--ink);
  padding: 0 0.15em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.trade-hero-sub {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: var(--s-6);
  max-width: 680px;
}

.trade-hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}

.trade-hero-trust {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}

/* Pain points section */
.trade-pain {
  background: var(--ink);
  color: var(--bg);
  padding: var(--s-16) 0;
}

.trade-pain .section-header h2,
.trade-pain .section-header p {
  color: var(--bg);
}

.trade-pain .section-header p {
  color: var(--bg-warm);
}

.trade-pain .kicker-line {
  color: var(--yellow);
}

.trade-pain .kicker-line::before {
  background: var(--yellow);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-8);
}

.pain-card {
  background: var(--ink-soft);
  border: 2px solid var(--bg);
  border-radius: var(--radius);
  padding: var(--s-6);
  color: var(--bg);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: var(--s-3);
}

.pain-card h3 {
  color: var(--yellow);
  font-size: 1.15rem;
  margin-bottom: var(--s-3);
  line-height: 1.3;
}

.pain-card p {
  color: var(--bg-warm);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* What we build section */
.trade-what {
  padding: var(--s-16) 0;
  background: var(--bg);
}

.trade-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-8);
}

.trade-feature {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
}

.trade-feature-icon {
  font-size: 2.25rem;
  line-height: 1;
}

.trade-feature h3 {
  font-size: 1.1rem;
  margin-bottom: var(--s-2);
  line-height: 1.3;
}

.trade-feature p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

@media (max-width: 700px) {
  .trade-features { grid-template-columns: 1fr; }
  .trade-feature { grid-template-columns: 50px 1fr; gap: var(--s-3); padding: var(--s-4); }
  .trade-feature-icon { font-size: 1.75rem; }
}

/* Sample preview section */
.trade-sample {
  padding: var(--s-16) 0;
  background: var(--bg-soft);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}

.trade-sample-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  align-items: center;
}

.trade-sample-content h2 {
  margin: var(--s-3) 0 var(--s-4);
}

.trade-sample-content p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: var(--s-6);
}

.trade-sample-image {
  display: block;
  width: 100%;
  height: 360px;
  background-size: cover;
  background-position: center;
  background-color: var(--yellow);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.2s ease;
}

.trade-sample-image:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

@media (max-width: 900px) {
  .trade-sample-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .trade-sample-image { height: 260px; }
}

/* Pricing recap (3 mini cards) */
.trade-pricing {
  padding: var(--s-16) 0;
  background: var(--bg);
}

.trade-pricing-recap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin: var(--s-8) 0 var(--s-6);
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.trade-pricing-card {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--ink);
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: var(--s-6);
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.trade-pricing-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
}

.trade-pricing-featured {
  background: var(--yellow);
  box-shadow: 4px 4px 0 var(--ink);
}

.trade-pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.trade-pricing-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: var(--s-3);
}

.trade-pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--s-1);
}

.trade-pricing-price span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
}

.trade-pricing-setup {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: var(--s-3);
}

.trade-pricing-featured .trade-pricing-setup {
  color: var(--ink);
  opacity: 0.85;
}

.trade-pricing-tagline {
  font-size: 0.9rem;
  color: var(--ink-mute);
}

.trade-pricing-featured .trade-pricing-tagline {
  color: var(--ink);
  opacity: 0.85;
  font-weight: 600;
}

.trade-pricing-note {
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.9rem;
}

.trade-pricing-note a {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 700px) {
  .trade-pricing-recap { grid-template-columns: 1fr; }
}

/* Trade FAQ */
.trade-faq {
  padding: var(--s-16) 0;
  background: var(--bg-soft);
  border-top: 3px solid var(--ink);
}

/* ============================================
   TRADE LANDING PAGES — POLISHED V2
   ============================================ */

/* Inline trust pills (subtle, no boxes) */
.trade-hero .trade-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: var(--s-6);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trade-trust-dot {
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Pricing recap V2 — cleaner, balanced */
.trade-pricing {
  padding: 4rem 0 3.5rem;
  background: var(--bg);
}

.trade-pricing-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-10);
}

.trade-pricing-header .kicker-line {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--s-3);
}

.trade-pricing-header h2 {
  margin-bottom: var(--s-4);
}

.trade-pricing-header p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.trade-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.trade-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
  background: var(--bg-soft);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.trade-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--ink);
}

.trade-card-featured {
  background: var(--yellow);
  margin-top: 0;
  padding-top: 2.5rem;
}

.trade-card-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.45rem 0.95rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.trade-card-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin-bottom: var(--s-1);
}

.trade-card-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
  font-weight: 600;
}

.trade-card-featured .trade-card-tagline {
  color: var(--ink);
  opacity: 0.7;
}

.trade-card-price {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: var(--s-2);
  line-height: 1;
}

.trade-card-dollar {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  margin-top: 0.4rem;
}

.trade-card-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.trade-card-period {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-top: 0.7rem;
}

.trade-card-featured .trade-card-period {
  color: var(--ink);
  opacity: 0.75;
}

.trade-card-build {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
}

.trade-card-featured .trade-card-build {
  color: var(--ink);
  opacity: 0.85;
  border-bottom-color: var(--ink);
  opacity: 0.85;
}

.trade-card-desc {
  font-size: 0.92rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: var(--s-6);
  flex-grow: 1;
}

.trade-card-cta {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: var(--s-3) 0 0;
  border-top: 2px solid var(--ink);
  text-align: center;
}

.trade-pricing-footer {
  text-align: center;
  margin-top: var(--s-8);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink-mute);
}

.trade-pricing-footer a {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 900px) {
  .trade-pricing-cards { grid-template-columns: 1fr; gap: 1.75rem; max-width: 480px; }
  .trade-card-featured { margin-top: var(--s-3); }
}

/* Override hero H1 sizing for landing pages — tighter */
.trade-hero-content h1 {
  font-size: clamp(2.25rem, 3.8vw, 3.5rem);
  line-height: 1.1;
  margin: var(--s-4) 0 var(--s-5);
  letter-spacing: -0.02em;
}

.trade-hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: var(--s-6);
}

/* Better CTA spacing */
.trade-hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: 0;
}
