/* FixDoc Website — Terminal Circuit Redesign */
/* Aesthetic: Matte black + neon green primary, PCB corner-bracket hover markers */

/* ── Import Design Tokens ─────────────────────────────────────────────── */
@import url('design-tokens.css');

/* ── Base ─────────────────────────────────────────────────────────────── */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  background-color: var(--bg-base);
  font-family: var(--font-body);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
}

code, .mono, pre, .font-mono {
  font-family: var(--font-mono) !important;
}

/* ── Scrollbar ─────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: var(--border-muted); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #333; }

/* ── Selection ─────────────────────────────────────────────────────────── */
::selection {
  background: var(--green-dim);
  color: var(--green);
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════════ */
.nav-wrap {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--duration-base) var(--ease-default),
              border-color var(--duration-base);
}

.nav-wrap.scrolled {
  background: rgba(10, 10, 10, 0.96);
  border-bottom-color: var(--border-base);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--duration-fast);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green);
  transition: width var(--duration-base) var(--ease-default);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--text-primary); }
.nav-link.active::after { width: 100%; }

/* ── Logo ─────────────────────────────────────────────────────────────── */
.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px var(--green-glow);
  transition: box-shadow var(--duration-base);
}

.logo-icon:hover {
  box-shadow: 0 0 28px var(--green-glow-lg);
}

.logo-icon svg rect,
.logo-icon svg line,
.logo-icon svg path {
  stroke: var(--green);
}

.logo-icon svg circle {
  fill: rgba(0, 255, 136, 0.4);
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* ── Nav CTA ──────────────────────────────────────────────────────────── */
.btn-nav {
  background: var(--green);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.5rem 1.125rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-default);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-nav:hover {
  background: var(--green-bright);
  box-shadow: var(--shadow-glow-md);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 8rem 1rem 5rem;
}

/* Circuit grid pattern */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center center;
  pointer-events: none;
  z-index: 0;
}

/* Dot accent at intersections */
.hero-dot-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 255, 136, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% -10%, rgba(0, 255, 136, 0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow-side {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--bg-base));
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-xs);
  padding: 0.3125rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1.75rem;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--green); }
  50%       { opacity: 0.5; box-shadow: 0 0 16px var(--green); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.hero-gradient-span {
  background: linear-gradient(120deg, var(--green) 0%, var(--cyan) 50%, var(--green-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 38rem;
  margin: 0 0 2rem 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-primary);
  letter-spacing: 0.01em;
  margin-bottom: 1.25rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--green);
  color: #000;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-default);
  box-shadow: var(--shadow-glow-sm);
}

.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: var(--shadow-glow-lg);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--border-base);
  color: var(--text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--duration-base) var(--ease-default);
}

.btn-secondary:hover {
  border-color: var(--border-green);
  color: var(--text-primary);
  background: var(--green-dim);
}

/* ═══════════════════════════════════════════════════════════════════════
   INSTALL SNIPPET
═══════════════════════════════════════════════════════════════════════ */
.install-snippet {
  position: relative;
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-left: 2px solid var(--green);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  text-align: left;
}

/* ═══════════════════════════════════════════════════════════════════════
   TRUST CALLOUT
═══════════════════════════════════════════════════════════════════════ */
.trust-callout {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════════════
   SECTION LABELS
═══════════════════════════════════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

/* ── Alternating section background ──────────────────────────────────── */
.section-alt {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ═══════════════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════════════ */
.steps-wrapper {
  position: relative;
}

.steps-connector {
  display: none;
  position: absolute;
  top: 19px;
  left: calc(16.667% + 22px);
  right: calc(16.667% + 22px);
  height: 0;
  border-top: 1px dashed var(--border-muted);
  z-index: 0;
  pointer-events: none;
}

@media (min-width: 768px) {
  .steps-connector { display: block; }
}

.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1.5px solid var(--green);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0 auto 1rem;
  box-shadow: 0 0 14px var(--green-glow);
}

.step-code {
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-align: left;
}

/* ═══════════════════════════════════════════════════════════════════════
   TERMINAL WINDOWS
═══════════════════════════════════════════════════════════════════════ */
.terminal-window {
  background: #080808;
  border: 1px solid var(--border-base);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.terminal-hdr {
  background: var(--bg-surface);
  padding: 0.5625rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  border-bottom: 1px solid var(--border-subtle);
}

.t-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.t-dot.red { background: #ff5f56; }
.t-dot.yel { background: #ffbd2e; }
.t-dot.grn { background: #27c93f; }

.terminal-hdr-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
  margin-left: 0.5rem;
}

.terminal-body {
  padding: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  line-height: 1.8;
}

/* Terminal color classes */
.t-prompt  { color: var(--green); }
.t-comment { color: var(--text-dim); }
.t-output  { color: var(--text-secondary); }
.t-success { color: var(--green-bright); }
.t-error   { color: var(--red); }
.t-info    { color: var(--cyan); }
.t-white   { color: var(--text-primary); }
.t-tag     { color: var(--cyan); font-size: 0.75rem; }
.t-hi      { color: var(--cyan-bright); }
.t-amber   { color: var(--amber); }

/* ═══════════════════════════════════════════════════════════════════════
   PROBLEM SECTION
═══════════════════════════════════════════════════════════════════════ */
.problem-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.problem-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   FEATURE CARDS — PCB Corner Bracket Hover Effect
═══════════════════════════════════════════════════════════════════════ */
.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--duration-base) var(--ease-default);
  position: relative;
  overflow: visible; /* allow corner brackets to overflow */
}

/* Green top line accent */
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity var(--duration-base);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-card:hover::before { opacity: 1; }

.feature-card:hover {
  border-color: var(--border-muted);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 24px var(--green-dim);
}

/* PCB Corner Brackets — appear on hover */
.feature-card .corner {
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-default),
              transform var(--duration-base) var(--ease-default);
}

.feature-card:hover .corner { opacity: 1; }

.feature-card .corner-tl {
  top: -3px; left: -3px;
  border-top: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: translate(3px, 3px);
}

.feature-card:hover .corner-tl { transform: translate(0, 0); }

.feature-card .corner-tr {
  top: -3px; right: -3px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: translate(-3px, 3px);
}

.feature-card:hover .corner-tr { transform: translate(0, 0); }

.feature-card .corner-bl {
  bottom: -3px; left: -3px;
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
  transform: translate(3px, -3px);
}

.feature-card:hover .corner-bl { transform: translate(0, 0); }

.feature-card .corner-br {
  bottom: -3px; right: -3px;
  border-bottom: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: translate(-3px, -3px);
}

.feature-card:hover .corner-br { transform: translate(0, 0); }

/* Icon wrap */
.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--duration-base) var(--ease-default);
}

.feature-card:hover .feature-icon-wrap {
  background: rgba(0, 255, 136, 0.14);
  box-shadow: var(--shadow-glow-sm);
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════
   BLAST RADIUS
═══════════════════════════════════════════════════════════════════════ */
.blast-radius-container {
  background: #060606;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 255, 136, 0.15);
  padding: 1.5rem;
  overflow-x: auto;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(0, 255, 136, 0.06),
    0 0 50px rgba(0, 255, 136, 0.06),
    0 0 100px rgba(0, 255, 136, 0.03);
  animation: blast-glow 4s ease-in-out infinite;
}

@keyframes blast-glow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(0, 255, 136, 0.06),
      0 0 50px rgba(0, 255, 136, 0.06),
      0 0 100px rgba(0, 255, 136, 0.03);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(0, 255, 136, 0.15),
      0 0 70px rgba(0, 255, 136, 0.12),
      0 0 120px rgba(0, 255, 136, 0.06);
  }
}

.blast-node {
  opacity: 0.1;
  transition: opacity var(--duration-slow) ease;
}

.blast-node.active { opacity: 1; }

.blast-edge {
  opacity: 0;
  stroke-dashoffset: 200;
  transition: opacity var(--duration-slow) ease, stroke-dashoffset 0.8s ease;
}

.blast-edge.active {
  opacity: 0.7;
  stroke-dashoffset: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   BADGES
═══════════════════════════════════════════════════════════════════════ */
.badge-coming-soon {
  display: inline-block;
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid var(--border-green);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  padding: 0.1875rem 0.625rem;
  border-radius: var(--radius-full);
  vertical-align: middle;
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
}

.badge-new {
  background: linear-gradient(135deg, var(--green), var(--cyan));
  color: #000;
  font-size: 0.6rem;
  font-family: var(--font-mono);
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   CONTRAST CARDS (is / is not)
═══════════════════════════════════════════════════════════════════════ */
.contrast-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  background: var(--bg-surface);
}

.contrast-card-is-not {
  border: 1px solid rgba(255, 77, 109, 0.2);
  border-left: 2px solid var(--red);
}

.contrast-card-is {
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-left: 2px solid var(--green);
}

/* ═══════════════════════════════════════════════════════════════════════
   USE CASES
═══════════════════════════════════════════════════════════════════════ */
.use-case-icon {
  width: 64px;
  height: 64px;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all var(--duration-base) var(--ease-default);
}

.use-case-icon:hover {
  box-shadow: var(--shadow-glow-md);
  border-color: var(--green);
}

/* ═══════════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════════ */
.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--duration-fast);
}

.faq-item:hover {
  border-color: var(--border-green);
}

/* ═══════════════════════════════════════════════════════════════════════
   ROADMAP CARDS
═══════════════════════════════════════════════════════════════════════ */
.roadmap-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-align: center;
  transition: all var(--duration-base) var(--ease-default);
}

.roadmap-card:hover {
  border-color: var(--border-green);
  box-shadow: 0 0 28px var(--green-dim);
  transform: translateY(-2px);
}

.roadmap-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dim);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   CODE BLOCK / COPY BUTTON
═══════════════════════════════════════════════════════════════════════ */
.code-block-wrapper {
  position: relative;
}

.copy-btn {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: var(--bg-surface-2);
  color: var(--text-secondary);
  border: 1px solid var(--border-base);
  border-radius: var(--radius-xs);
  padding: 0.1875rem 0.625rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  cursor: pointer;
  transition: all var(--duration-fast);
  z-index: 10;
  letter-spacing: 0.02em;
}

.copy-btn:hover {
  background: var(--border-base);
  color: var(--text-primary);
}

.copy-btn.copied {
  background: var(--green-dim);
  border-color: var(--border-green);
  color: var(--green);
}

/* ═══════════════════════════════════════════════════════════════════════
   LINK ACCENTS
═══════════════════════════════════════════════════════════════════════ */
.link-green {
  color: var(--green);
  transition: color var(--duration-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.link-green:hover { color: var(--green-bright); }

/* ── Legacy alias for any remaining .link-blue in the markup ─────────── */
.link-blue {
  color: var(--cyan);
  transition: color var(--duration-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
}

.link-blue:hover { color: var(--green); }

/* ═══════════════════════════════════════════════════════════════════════
   HERO TERMINAL ANIMATION
═══════════════════════════════════════════════════════════════════════ */
.hero-term-line {
  opacity: 0;
  animation: term-line-in 0.35s ease forwards;
}

.hero-term-line:nth-child(1) { animation-delay: 0.4s; }
.hero-term-line:nth-child(2) { animation-delay: 1.0s; }
.hero-term-line:nth-child(3) { animation-delay: 1.6s; }
.hero-term-line:nth-child(4) { animation-delay: 2.4s; }
.hero-term-line:nth-child(5) { animation-delay: 3.2s; }
.hero-term-line:nth-child(6) { animation-delay: 4.0s; }

@keyframes term-line-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.typewriter-cursor {
  display: inline-block;
  width: 8px;
  height: 1em;
  background: var(--green);
  vertical-align: text-bottom;
  border-radius: 1px;
  animation: cursor-blink 1s step-end infinite;
  box-shadow: 0 0 8px var(--green);
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease-default), transform 0.55s var(--ease-default);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }
.reveal-delay-7 { transition-delay: 0.56s; }
.reveal-delay-8 { transition-delay: 0.64s; }
.reveal-delay-9 { transition-delay: 0.72s; }

/* ═══════════════════════════════════════════════════════════════════════
   DIVIDERS
═══════════════════════════════════════════════════════════════════════ */
.section-divider {
  border: none;
  border-top: 1px solid var(--border-subtle);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════ */
.footer-wrap {
  border-top: 1px solid var(--border-subtle);
}

/* ═══════════════════════════════════════════════════════════════════════
   SLASH BANNER (Slack two-emoji explainer)
═══════════════════════════════════════════════════════════════════════ */
.slash-banner {
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   GET STARTED SECTION GLOW
═══════════════════════════════════════════════════════════════════════ */
.get-started-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0, 255, 136, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════
   ACCESSIBILITY
═══════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero-section { padding: 7rem 1rem 4rem; }
  .terminal-body { font-size: 0.75rem; }
  .problem-wrapper { padding: 1.5rem; }
  .hero-title { letter-spacing: -0.03em; }
}

/* ═══════════════════════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════════════════════ */
@media print {
  nav, footer, .copy-btn { display: none; }
  body { background: white; color: black; }
}
