/* ============================================================
   PromptBuildShip — Theme CSS
   Extracted verbatim from the approved landing-preview.html mockup.
   Design is LOCKED. Do not redesign.
============================================================ */

/* ============================================================
   Design Tokens
============================================================ */
:root {
  --orange:  #FF8235;
  --blue:    #2D9CFF;
  --purple:  #9D5DFF;
  --green:   #00D084;
  --yellow:  #FFD200;
  --cream:   #FDFBF7;
  --black:   #1A1A1A;
  --cream-dark: #F5F0E8;

  --font-display: 'Bangers', cursive;
  --font-body:    'Quicksand', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --shadow-card: 6px 6px 0px var(--black);
  --shadow-btn:  4px 4px 0px var(--black);
  --border:      2px solid var(--black);
  --radius-btn:  9999px;
  --radius-card: 16px;
}

/* ============================================================
   Reset & Base
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================================
   Accessibility — skip link
============================================================ */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 0 0 12px 0;
}
.skip-link:focus {
  left: 0;
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}

/* ============================================================
   Utility — Cartoon Shadow Decoration
============================================================ */
.star {
  display: inline-block;
  font-style: normal;
  color: var(--yellow);
  font-size: 1.2rem;
  line-height: 1;
}
.motion-lines::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(255,210,0,0.4);
  border-radius: inherit;
  pointer-events: none;
}

/* ============================================================
   Layout
============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;            /* content sits on top of the decorative band */
}
section { padding: 80px 0; }

/* ============================================================
   Right-side decorative band
============================================================ */
.rail-wrap { position: relative; }
.side-band {
  position: absolute;
  top: 0;
  right: 0;
  width: 443px;          /* native — not resized */
  height: 1102px;        /* native — not resized */
  max-width: none;
  z-index: 0;            /* above section backgrounds, behind content */
  pointer-events: none;
  user-select: none;
}
@media (max-width: 900px) {
  .side-band { display: none; }   /* hide the band on tablet / mobile */
}

/* ============================================================
   NAV
============================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: var(--border);
  padding: 0 24px;
}
.nav-inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  min-height: 174px;
  gap: 16px 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo .logo-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--black);
}
.nav-logo img {
  display: block;
  width: 583px;
  height: 150px;
  max-width: none; /* native size — not resized, not shrunk by flex */
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  font-weight: 600;
  font-size: 1.3rem;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 16px 40px;
  border: var(--border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--black); }
.nav-cta:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--black); }

/* ============================================================
   Floating CTA (moved out of the header)
============================================================ */
.floating-cta {
  position: fixed;
  top: 190px;            /* just below the ~174px header */
  right: 24px;
  z-index: 90;           /* above content, below the sticky nav (100) */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 16px 40px;
  border: var(--border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  white-space: nowrap;
}
.floating-cta:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.floating-cta:active { transform: translate(2px,2px);   box-shadow: 2px 2px 0 var(--black); }
.floating-cta:focus-visible { outline: 3px solid var(--black); outline-offset: 3px; }
@media (max-width: 600px) {
  .floating-cta {
    top: auto;
    bottom: 20px;
    right: 16px;
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* ============================================================
   HERO
============================================================ */
.hero {
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Tilted decorative background stripe */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: -10%; right: -10%;
  height: 220px;
  background: var(--yellow);
  transform: rotate(-2deg);
  opacity: 0.18;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  border: var(--border);
  border-radius: var(--radius-btn);
  padding: 4px 16px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 3px 3px 0 var(--black);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero h1 .accent-orange { color: var(--orange); }
.hero h1 .accent-blue   { color: var(--blue);   }
.hero h1 .accent-purple { color: var(--purple);  }
.hero-headline-img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: var(--black);
  opacity: 0.7;
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 36px;
  color: #444;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border: var(--border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn-primary:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.btn-primary:active { transform: translate(2px,2px);   box-shadow: 2px 2px 0 var(--black); }
.btn-primary:focus-visible { outline: 3px solid var(--black); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border: var(--border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}
.btn-secondary:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); background: var(--cream-dark); }
.btn-secondary:active { transform: translate(2px,2px);   box-shadow: 2px 2px 0 var(--black); }
.btn-secondary:focus-visible { outline: 3px solid var(--black); outline-offset: 3px; }

.hero-no-sub {
  font-size: 0.82rem;
  font-family: var(--font-mono);
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-no-sub::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

/* Hero illustration placeholder */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.hero-stop-img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
}
/* tall hero image — displayed at native 590x1469, never resized */
.hero-tall-img {
  display: block;
  width: 590px;
  height: 1469px;
  max-width: none;
}
.hero-card-stack {
  position: relative;
  width: 340px;
  height: 300px;
}
.hero-card-stack .stacked-card {
  position: absolute;
  width: 280px;
  border: var(--border);
  border-radius: var(--radius-card);
  background: var(--cream);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}
.hero-card-stack .stacked-card:nth-child(1) { top: 20px; left: 60px; transform: rotate(4deg); background: var(--purple); color: white; z-index: 1; }
.hero-card-stack .stacked-card:nth-child(2) { top: 60px; left: 30px; transform: rotate(-3deg); background: var(--blue);   color: white; z-index: 2; }
.hero-card-stack .stacked-card:nth-child(3) { top: 100px; left: 0px; transform: rotate(1deg);  background: var(--orange); color: var(--black); z-index: 3; }
.stacked-card .card-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stacked-card .card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 1px;
  line-height: 1.1;
}
.stacked-card .card-price {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--black);
  color: var(--cream);
  padding: 16px 0;
  border-top: var(--border);
  border-bottom: var(--border);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.trust-item .check { color: var(--green); }

/* ============================================================
   PRODUCTS
============================================================ */
.products { background: var(--cream); }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1.05rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto;
}
.section-tag {
  display: inline-block;
  background: var(--cream-dark);
  border: var(--border);
  border-radius: var(--radius-btn);
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  box-shadow: 2px 2px 0 var(--black);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.product-card {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.product-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--black);
}
/* Featured card spans the full width with a horizontal layout */
.product-card-featured {
  grid-column: 1 / -1;
  flex-direction: row;
}
.product-card-featured .product-card-tab {
  width: 10px;
  height: auto;
}
.product-card-featured .product-card-body {
  flex: 1;
}
.product-card-featured .product-card-footer {
  border-top: none;
  border-left: var(--border);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-width: 240px;
  background: var(--orange);
  padding: 32px 28px;
  gap: 18px;
}
.product-card-featured .product-price {
  font-size: 3rem;
}
.product-card-featured .btn-buy {
  background: var(--black);
  color: var(--cream);
  box-shadow: 3px 3px 0 var(--cream);
}
.product-card-featured .btn-buy:hover {
  box-shadow: 5px 5px 0 var(--cream);
}
.featured-label {
  display: inline-block;
  background: var(--yellow);
  border: var(--border);
  border-radius: var(--radius-btn);
  padding: 3px 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  box-shadow: 2px 2px 0 var(--black);
}
@media (max-width: 700px) {
  .product-card-featured {
    flex-direction: column;
  }
  .product-card-featured .product-card-tab {
    width: auto;
    height: 10px;
  }
  .product-card-featured .product-card-footer {
    border-left: none;
    border-top: var(--border);
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    min-width: unset;
    padding: 20px 28px;
  }
}
.product-card-tab {
  height: 8px;
}
.tab-orange { background: var(--orange); }
.tab-blue   { background: var(--blue);   }
.tab-purple { background: var(--purple);  }

.product-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-buy-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.product-logo {
  width: 150px;
  height: 150px;
  max-width: 100%;
  border: var(--border);
  border-radius: 16px;
  box-shadow: 4px 4px 0 var(--black);
  background: var(--cream);
  object-fit: contain;
  padding: 8px;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding: 3px 10px;
  border: var(--border);
  border-radius: var(--radius-btn);
  background: var(--cream-dark);
}
.product-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 10px;
}
.product-one-liner {
  font-size: 0.92rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}
.product-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 8px;
  color: #333;
}
.product-features li::before {
  content: '▸';
  color: var(--orange);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.product-card-footer {
  border-top: var(--border);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-price {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
}
.product-price-note {
  font-size: 0.75rem;
  color: #666;
  font-family: var(--font-mono);
}
.btn-buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border: var(--border);
  border-radius: var(--radius-btn);
  box-shadow: 3px 3px 0 var(--orange);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  white-space: nowrap;
}
.btn-buy:hover  { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--orange); }
.btn-buy:active { transform: translate(2px,2px);   box-shadow: 1px 1px 0 var(--orange); }
.btn-buy:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

/* ============================================================
   LEAD MAGNET
============================================================ */
.lead-magnet {
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.08;
}
.lead-magnet::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 200px; height: 200px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.08;
}
.lead-magnet-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lead-magnet h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 2px;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 16px;
}
.lead-magnet h2 span { color: var(--yellow); }
.lead-magnet p {
  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.lead-magnet-list {
  list-style: none;
  margin-top: 16px;
}
.lead-magnet-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.lead-magnet-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}
.lead-form {
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
}
.lead-form h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.lead-form p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  transition: outline 0.1s, box-shadow 0.15s;
}
.form-group input:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  box-shadow: 3px 3px 0 var(--orange);
}
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  border: var(--border);
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow-btn);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  margin-top: 8px;
}
.btn-submit:hover  { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--black); }
.btn-submit:active { transform: translate(2px,2px);   box-shadow: 2px 2px 0 var(--black); }
.form-fine-print {
  font-size: 0.75rem;
  color: #888;
  text-align: center;
  margin-top: 12px;
  font-family: var(--font-mono);
}

/* ============================================================
   BUILDER CREDIBILITY
============================================================ */
.cred {
  background: var(--cream-dark);
  border-top: var(--border);
  border-bottom: var(--border);
}
.cred-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.cred-photo-wrap {
  flex-shrink: 0;
}
.cred-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid var(--black);
  box-shadow: 6px 6px 0 var(--orange);
  object-fit: cover;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  overflow: hidden;
}
.cred-photo img { width: 100%; height: 100%; object-fit: cover; }
.cred-eyebrow {
  display: inline-block;
  background: var(--orange);
  border: var(--border);
  border-radius: var(--radius-btn);
  padding: 4px 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  box-shadow: 2px 2px 0 var(--black);
}
.cred h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.cred p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  max-width: 600px;
  margin-bottom: 24px;
}
.cred-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cred-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream);
  border: var(--border);
  border-radius: var(--radius-btn);
  padding: 8px 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  box-shadow: 3px 3px 0 var(--black);
  transition: transform 0.1s, box-shadow 0.1s;
}
.cred-link:hover  { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--black); }
.cred-link:active { transform: translate(1px,1px);   box-shadow: 2px 2px 0 var(--black); }
.cred-link .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--black);
}
.cred-link .dot-blue   { background: var(--blue); }
.cred-link .dot-purple { background: var(--purple); }

/* ============================================================
   FAQ
============================================================ */
.faq { background: var(--cream); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--black);
  background: var(--cream);
}
.faq-item summary {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--cream-dark); }
.faq-item summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: -3px;
}
.faq-item[open] summary { border-bottom: 1px solid rgba(26,26,26,0.1); }
.faq-chevron {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--black);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform 0.2s;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 16px 24px 20px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}
.faq-answer code {
  font-family: var(--font-mono);
  background: var(--cream-dark);
  border: 1px solid rgba(26,26,26,0.2);
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 0.88em;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--black);
  color: var(--cream);
  padding: 48px 0 32px;
  border-top: var(--border);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.footer-brand .footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #aaa;
  letter-spacing: 2px;
}
.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: #bbb;
  line-height: 1.6;
}
.footer-nav h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--yellow);
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 0.88rem;
  color: #aaa;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #aaa;
}
.footer-bottom a { color: #bbb; }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   Decorative Doodles
============================================================ */
.doodle-star {
  display: inline-block;
  width: 32px; height: 32px;
  background: var(--yellow);
  border: var(--border);
  border-radius: 50%;
  position: absolute;
}

/* ============================================================
   Generic Page Template (page.php)
============================================================ */
.page-band {
  background: var(--black);
  color: var(--cream);
  border-bottom: var(--border);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-band::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.08;
}
.page-band h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 2px;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 0;
}
.page-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 1px;
  margin: 32px 0 14px;
}
.page-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1px;
  margin: 24px 0 12px;
}
.page-content p,
.page-content ul,
.page-content ol {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}
.page-content ul,
.page-content ol {
  padding-left: 24px;
}
.page-content li { margin-bottom: 8px; }
.page-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-content a:hover { color: var(--orange); }
.page-content a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 2px;
}
.page-content img {
  border: var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  margin: 24px 0;
}
.page-content blockquote {
  border-left: 4px solid var(--orange);
  background: var(--cream-dark);
  padding: 16px 24px;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
}
.page-content pre {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.88rem;
  padding: 20px 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 24px 0;
}
.page-content code {
  font-family: var(--font-mono);
  background: var(--cream-dark);
  border: 1px solid rgba(26,26,26,0.2);
  border-radius: 6px;
  padding: 1px 6px;
  font-size: 0.88em;
}
.page-content pre code {
  background: transparent;
  border: none;
  padding: 0;
}

/* 404 */
.error-404 {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 96px 0;
}
.error-404 .error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  letter-spacing: 4px;
  line-height: 1;
  color: var(--orange);
  -webkit-text-stroke: 2px var(--black);
}
.error-404 h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 2px;
  margin: 16px 0 12px;
}
.error-404 p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 32px;
}

/* ============================================================
   Responsive
============================================================ */
@media (max-width: 900px) {
  .hero-inner,
  .lead-magnet-inner,
  .cred-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .products-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .trust-strip-inner { gap: 24px; }
  .product-card-footer { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Scroll reveal hint (no JS, pure CSS)
============================================================ */
@media (prefers-reduced-motion: no-preference) {
  .product-card, .faq-item, .lead-form {
    animation: fadeUp 0.4s ease both;
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0);    }
  }
}
