/* Theme Park Waits Times - Merged with Hall of Shame design language */
/* Mary Blair-inspired warm palette + Space Grotesk / Inter typography */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&family=Press+Start+2P&family=Space+Grotesk:wght@400;600;700;800&family=VT323&display=swap');

:root {
  --coral: #FF6B5A;
  --turquoise: #00B8C5;
  --gold: #FFB627;
  --soft-pink: #FF9BAA;
  --deep-teal: #007B8A;
  --warm-white: #FFF8F0;
  --charcoal: #2A2A2A;
  --light-gray: #F5F5F5;
  --slate: #7C8DB0;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.6;
}

a { color: var(--deep-teal); text-decoration: none; }
a:hover { color: var(--coral); }

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

/* Geometric top bar */
.geometric-bar {
  height: 12px;
  background: linear-gradient(
    to right,
    var(--coral) 0%, var(--coral) 25%,
    var(--turquoise) 25%, var(--turquoise) 50%,
    var(--gold) 50%, var(--gold) 75%,
    var(--soft-pink) 75%, var(--soft-pink) 100%
  );
}

/* Header */
header {
  background: white;
  border-bottom: 3px solid var(--charcoal);
  padding: 16px 0;
  position: relative;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img { height: 50px; }
.logo .logo-mark { font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.4rem; line-height: 1; letter-spacing: -0.4px; text-transform: uppercase; color: var(--charcoal); white-space: nowrap; }
.logo .logo-mark b { color: var(--coral); }

nav { display: flex; gap: 8px; }
nav a {
  color: var(--charcoal);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}
nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.3s ease;
}
nav a:nth-child(1)::before { background: var(--coral); }
nav a:nth-child(2)::before { background: var(--turquoise); }
nav a:nth-child(3)::before { background: var(--gold); }
nav a:nth-child(4)::before { background: var(--soft-pink); }
nav a:nth-child(5)::before { background: var(--deep-teal); }
nav a:nth-child(6)::before { background: var(--coral); }
nav a:hover::before { left: 0; }
nav a:hover { color: white; }
nav a span { position: relative; z-index: 1; }

.mobile-menu {
  display: none;
  background: none;
  border: none;
  color: var(--charcoal);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 24px;
  max-width: 800px;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.1;
  color: white;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  background: var(--coral);
  color: white;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--deep-teal);
  transition: left 0.3s ease;
}
.btn:hover::before { left: 0; }
.btn:hover { color: white; }
.btn span, .btn { z-index: 1; }

.btn-sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Sections */
section { padding: 64px 0; }

section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
  text-align: center;
  color: var(--charcoal);
}

.section-accent {
  display: block;
  width: 60px;
  height: 6px;
  background: var(--coral);
  margin: 0 auto 16px;
  border-radius: 3px;
}

/* Features grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature {
  background: white;
  border: 3px solid var(--charcoal);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--charcoal);
}

.feature h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.feature:nth-child(1) h3 { color: var(--coral); }
.feature:nth-child(2) h3 { color: var(--turquoise); }
.feature:nth-child(3) h3 { color: var(--deep-teal); }
.feature:nth-child(4) h3 { color: var(--gold); }
.feature:nth-child(5) h3 { color: var(--soft-pink); }
.feature:nth-child(6) h3 { color: var(--coral); }

.feature p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

/* Gallery section */
.gallery-section {
  background: white;
  border-top: 3px solid var(--charcoal);
  border-bottom: 3px solid var(--charcoal);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.gallery img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 2px solid var(--light-gray);
  transition: transform 0.2s ease;
}
.gallery img:hover { transform: scale(1.02); }

/* Parks section */
.parks-group { margin-bottom: 32px; }
.parks-group h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--deep-teal);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--light-gray);
}

.parks-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 6px 24px;
  list-style: none;
}

.parks-list li { padding: 4px 0; }
.parks-list a {
  font-size: 0.9rem;
  color: var(--charcoal);
  transition: color 0.2s;
}
.parks-list a:hover { color: var(--coral); }

/* Product / DIY page */
.product-gallery-full {
  max-width: 800px;
  margin: 0 auto;
}
.product-gallery-full .main-img {
  width: 100%;
  border-radius: 8px;
  border: 3px solid var(--charcoal);
  margin-bottom: 12px;
}
.product-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-thumbs img {
  width: 72px; height: 72px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid var(--light-gray);
  transition: border-color 0.2s;
}
.product-thumbs img:hover,
.product-thumbs img.active { border-color: var(--coral); }

.product-info h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.2;
  color: var(--charcoal);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}

.specs-table td {
  padding: 10px 16px;
  border-bottom: 2px solid var(--light-gray);
  font-size: 0.95rem;
}

.specs-table td:first-child {
  color: var(--slate);
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 40%;
}

/* Parts list */
.parts-list {
  list-style: none;
  margin: 16px 0;
}

.parts-list li {
  padding: 14px 16px;
  background: white;
  border: 3px solid var(--charcoal);
  border-radius: 8px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.2s ease;
}
.parts-list li:hover {
  box-shadow: 3px 3px 0 var(--charcoal);
}

.parts-list .part-name {
  font-weight: 600;
  color: var(--charcoal);
}
.parts-list .part-link { font-size: 0.85rem; }

/* Blog */
.blog-list { display: flex; flex-direction: column; gap: 16px; }

.blog-card {
  background: white;
  border: 3px solid var(--charcoal);
  border-radius: 8px;
  padding: 28px 32px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--charcoal);
}

.blog-card .date {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.blog-card h3 { margin-bottom: 8px; }
.blog-card h3 a {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--charcoal);
}
.blog-card h3 a:hover { color: var(--coral); }

.blog-card p {
  font-size: 0.95rem;
  color: var(--slate);
}

/* Blog post */
.blog-post { max-width: 800px; margin: 0 auto; }
.blog-post h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  text-align: left;
}
.blog-post .meta {
  color: var(--slate);
  margin-bottom: 32px;
  font-size: 0.9rem;
  font-family: 'Space Grotesk', sans-serif;
}
.blog-post h2 {
  font-family: 'Space Grotesk', sans-serif;
  text-align: left;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--deep-teal);
}
.blog-post h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  margin: 24px 0 12px;
}
.blog-post p { margin-bottom: 16px; }
.blog-post ul, .blog-post ol { margin: 0 0 16px 24px; }
.blog-post li { margin-bottom: 6px; }
.blog-post img { border-radius: 8px; margin: 16px 0; border: 2px solid var(--light-gray); }
.blog-post code {
  background: var(--light-gray);
  color: var(--coral);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
}
.blog-post .back-link {
  margin-top: 48px;
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.blog-post .warning {
  background: #FFF5E0;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  color: var(--charcoal);
}

/* Page content */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0;
}

.page-content h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--charcoal);
}

.page-content h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: left;
  margin: 32px 0 16px;
  color: var(--deep-teal);
}

.page-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 24px 0 12px;
  color: var(--coral);
}

.page-content p { margin-bottom: 16px; }
.page-content ul { margin: 0 0 16px 24px; }
.page-content li { margin-bottom: 6px; }

/* Code blocks (customize / dev guide) */
pre {
  background: var(--charcoal); color: #EAECEF; padding: 16px 18px;
  border-radius: 8px; overflow-x: auto; margin: 18px 0;
  font-size: 0.85rem; line-height: 1.55;
}
pre code { background: none; color: inherit; padding: 0; font-size: inherit; }

/* Contact form */
.contact-form { max-width: 600px; }
.contact-form label {
  display: block;
  margin-bottom: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  background: white;
  border: 3px solid var(--charcoal);
  border-radius: 4px;
  color: var(--charcoal);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--deep-teal);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form button {
  background: var(--coral);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.contact-form button:hover { background: var(--deep-teal); }

/* FAQ */
.faq-item {
  background: white;
  border: 3px solid var(--charcoal);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 12px;
  transition: box-shadow 0.2s ease;
}
.faq-item:hover {
  box-shadow: 3px 3px 0 var(--charcoal);
}

.faq-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.faq-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item code {
  background: var(--light-gray);
  color: var(--coral);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
}

/* Warning box (reusable) */
.warning-box {
  background: #FFF5E0;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

/* Footer */
footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 48px 0 32px;
  margin-top: 0;
}

.footer-bar {
  height: 12px;
  background: linear-gradient(
    to right,
    var(--coral) 0%, var(--coral) 25%,
    var(--turquoise) 25%, var(--turquoise) 50%,
    var(--gold) 50%, var(--gold) 75%,
    var(--soft-pink) 75%, var(--soft-pink) 100%
  );
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--coral); }

/* Responsive */
@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 3px solid var(--charcoal); z-index: 100; }
  nav a { padding: 14px 24px; border-bottom: 1px solid var(--light-gray); }
  .mobile-menu { display: block; }
  .hero h1 { font-size: 2rem; }
  .hero { min-height: 400px; }
  .product-hero { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .parts-list li { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============================================================================
   3.0 REFRESH — accessibility, nav, LED-retro showcase layer, components
   Added for the ScrollKit 3.0 rewrite. Extends (does not replace) the base.
   ============================================================================ */

:root {
  --ink: #0E0F13;          /* near-black showcase background */
  --ink-2: #181A22;        /* raised surface on dark */
  --ink-line: #2C2F3A;     /* hairline on dark */
  --led-green: #35E06B;
  --led-red: #FF4D4D;
  --led-amber: #FFC24B;
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }         /* safety net against showcase glows */

/* --- Accessibility --- */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--charcoal); color: #fff; padding: 10px 16px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 2px; }

/* Active nav item */
nav a[aria-current="page"] { color: var(--coral); }
nav a[aria-current="page"] span { border-bottom: 2px solid currentColor; padding-bottom: 2px; }

/* Mobile menu open state (JS toggles .open on #site-nav) */
@media (max-width: 768px) {
  #site-nav.open { display: flex; }
}

/* --- Buttons: extra sizes / variants --- */
.btn-lg { padding: 16px 38px; font-size: 1.05rem; }
.btn-ghost { background: transparent; color: var(--charcoal); border: 3px solid var(--charcoal); }
.btn-ghost::before { background: var(--charcoal); }
.btn-ghost:hover { color: #fff; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* --- Kickers, ledes, section intros --- */
.eyebrow {
  font-family: 'Space Grotesk', sans-serif; text-transform: uppercase;
  letter-spacing: 2px; font-size: 0.78rem; font-weight: 700; color: var(--deep-teal);
  margin-bottom: 14px; display: inline-flex; align-items: center; gap: 9px;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--led-green); box-shadow: 0 0 8px var(--led-green);
}
.lede { font-size: 1.2rem; line-height: 1.65; color: var(--slate); max-width: 62ch; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-head h2 { margin-bottom: 12px; }
.section-head .lede { margin: 0 auto; }
.led-text { color: var(--gold); text-shadow: 0 0 20px rgba(255, 182, 39, 0.55); }
.pixel { font-family: 'Press Start 2P', monospace; line-height: 1.5; }

/* --- Showcase (dark LED-retro) sections --- */
.showcase { background: var(--ink); color: #E7E9EE; position: relative; overflow: hidden; }
.showcase::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.5px);
  background-size: 16px 16px;
}
.showcase > * { position: relative; z-index: 1; }
.showcase h1, .showcase h2, .showcase h3, .showcase h4 { color: #fff; }
.showcase .lede, .showcase p { color: rgba(255,255,255,0.78); }
.showcase .eyebrow { color: var(--turquoise); }
.showcase a:not(.btn) { color: var(--gold); }
.showcase a:not(.btn):hover { color: var(--coral); }
.showcase .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.55); }
.showcase .btn-ghost::before { background: #fff; }
.showcase .btn-ghost:hover { color: var(--ink); }

/* --- LED device frame around simulator media --- */
.led-frame {
  background: #08090c; border: 3px solid #000; border-radius: 16px; padding: 14px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(255,255,255,0.05);
  position: relative; margin: 0;
}
.led-frame img, .led-frame video {
  display: block; width: 100%; height: auto; border-radius: 7px;
  image-rendering: pixelated;                 /* keep LED dots crisp when upscaled */
  background: #000;
}
.led-frame figcaption {
  margin-top: 12px; font-family: 'Space Grotesk', sans-serif; font-size: 0.82rem;
  letter-spacing: 0.5px; color: rgba(255,255,255,0.62); text-align: center;
}
.led-frame--sm { padding: 10px; border-radius: 12px; }

/* --- Home hero (LED) --- */
.hero-led { padding: 76px 0 84px; }
.hero-led .hero__inner { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center; }
.hero-led h1 { font-family: 'Space Grotesk', sans-serif; font-size: 3.1rem; font-weight: 800; line-height: 1.05; margin-bottom: 18px; }
.hero-led .lede { color: rgba(255,255,255,0.82); margin-bottom: 28px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero__stats { list-style: none; margin: 0; padding: 0; display: flex; gap: 30px; flex-wrap: wrap; }
.hero__stats b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; color: #fff; }
.hero__stats span { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); }

/* --- Generic cards & grids --- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.card {
  background: #fff; border: 3px solid var(--charcoal); border-radius: 10px; padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-2px); box-shadow: 4px 4px 0 var(--charcoal); }
.card h3 { font-family: 'Space Grotesk', sans-serif; color: var(--deep-teal); margin-bottom: 8px; }
.card p { font-size: 0.95rem; color: var(--charcoal); }
.card .icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }
.showcase .card { background: var(--ink-2); border-color: #000; }
.showcase .card:hover { box-shadow: 0 0 0 1px var(--turquoise), 6px 6px 0 rgba(0,0,0,0.6); }
.showcase .card h3 { color: var(--gold); }
.showcase .card p { color: rgba(255,255,255,0.72); }

/* --- Feature-clip grid (media + caption), used on What's New --- */
.media-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.feature-clip h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; color: #fff; margin: 16px 0 6px; }
.feature-clip p { font-size: 0.92rem; color: rgba(255,255,255,0.72); }

/* --- Stat band --- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 24px; text-align: center; }
.stat b { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; line-height: 1; display: block; color: var(--coral); }
.stat span { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; color: var(--slate); font-weight: 600; }
.showcase .stat b { color: var(--gold); }

/* --- Two column --- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }

/* --- Callouts --- */
.callout { border-left: 4px solid var(--turquoise); background: #EAF9FB; padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 22px 0; }
.callout--warn { border-color: var(--gold); background: #FFF5E0; }
.callout--tip { border-color: var(--led-green); background: #EAFBF0; }
.callout strong { font-family: 'Space Grotesk', sans-serif; }
.callout p:last-child { margin-bottom: 0; }

/* --- Tags / pills --- */
.tag { display: inline-block; font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 4px 11px; border-radius: 100px; background: var(--light-gray); color: var(--deep-teal); }
.tag--new { background: var(--coral); color: #fff; }

/* --- Numbered steps (assembly guide) --- */
.steps { max-width: 900px; margin: 0 auto; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 34px 0; border-top: 2px solid var(--light-gray); }
.step:first-child { border-top: none; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--charcoal); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center; box-shadow: 4px 4px 0 var(--coral);
}
.step__body { min-width: 0; }
.step__body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; color: var(--deep-teal); margin-bottom: 10px; }
.step__body > p { margin-bottom: 14px; }
.step__media { margin-top: 6px; }
.step__media img { border: 3px solid var(--charcoal); border-radius: 10px; width: 100%; display: block; }
/* Portrait phone-screen shots (e.g. the config page) shouldn't stretch full width */
.step__media.phone-shot, .step__media .phone-shot { max-width: 240px; }
.step__media.two figure { margin: 0; }
.step__media.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.step figcaption { font-size: 0.82rem; color: var(--slate); margin-top: 6px; }

/* --- Where-to-buy / BOM rows reuse .parts-list; add a small meta note --- */
.part-meta { font-size: 0.82rem; color: var(--slate); }

/* --- CTA band --- */
.cta-band { background: var(--coral); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band .lede { color: rgba(255,255,255,0.9); margin: 0 auto 24px; }
.cta-band .btn { background: var(--charcoal); }
.cta-band .btn::before { background: #fff; }
.cta-band .btn:hover { color: var(--charcoal); }

/* --- Scroll reveal (only hide when JS is active, so no-JS users still see content) --- */
.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* --- Responsive additions --- */
@media (max-width: 900px) {
  .hero-led .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .two-col { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .hero-led { padding: 52px 0 60px; }
  .hero-led h1 { font-size: 2.15rem; }
  .lede { font-size: 1.08rem; }
  .hero__stats { gap: 22px; }
  .step { grid-template-columns: 44px 1fr; gap: 16px; padding: 26px 0; }
  .step__num { width: 44px; height: 44px; font-size: 1.2rem; box-shadow: 3px 3px 0 var(--coral); }
  .step__media.two { grid-template-columns: 1fr; }
  section { padding: 48px 0; }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --- Print (assembly guide → clean PDF) --- */
@media print {
  .geometric-bar, .footer-bar, .site-header, .site-footer, .skip-link,
  .mobile-menu, .cta-band, .hero__cta, [data-noprint] { display: none !important; }
  body { background: #fff; color: #000; overflow: visible; }
  .showcase { background: #fff !important; color: #000 !important; }
  .showcase::before { display: none; }
  .showcase h1, .showcase h2, .showcase h3, .showcase p, .showcase .lede { color: #000 !important; }
  a { color: #000; text-decoration: underline; }
  section { padding: 16px 0; }
  .container, .page-content, .steps { max-width: none; }
  .step { break-inside: avoid; page-break-inside: avoid; border-top: 1px solid #999; }
  .step__num { background: #000; box-shadow: none; }
  .led-frame { background: #fff; border-color: #000; box-shadow: none; }
  .callout { border: 1px solid #999; }
}

