/* ═══════════════════════════════════════════════════════════════
   HOME.CSS — Complete design system for moazarshad.com
   Agency-clean aesthetic: Poppins-first, black + off-white + acid yellow.
   No gradients. No shadows. 8-12px border-radius. Yellow as accent only.
═══════════════════════════════════════════════════════════════ */

/* ── 1. Design Tokens ───────────────────────────────────────────── */
:root {
  /* Brand palette */
  --black:          #0A0A0A;
  --off-white:      #FAF9F5;
  --yellow:         #E9FF5C;
  --yellow-hover:   #D4FF2E;
  --white:          #FFFFFF;
  --card-dark:      #151515;

  /* Text */
  --text-dark:      #0A0A0A;
  --text-light:     #FAF9F5;
  --gray-text:      #6B6B6B;
  --gray-text-dark: #A8A8A8;
  --red-dot:        #EF4444;

  /* Borders */
  --gray-line:       rgba(255, 255, 255, 0.08);
  --gray-line-light: rgba(10, 10, 10, 0.08);
  --yellow-border:   rgba(233, 255, 92, 0.3);

  /* Typography */
  --font-primary: 'Poppins', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', 'Courier New', monospace;

  /* Type scale */
  --h1-size:     clamp(40px, 5.5vw, 72px);
  --h2-size:     clamp(32px, 4vw, 52px);
  --h3-size:     24px;
  --h4-size:     20px;
  --body-size:   17px;
  --body-large:  19px;
  --small-size:  14px;
  --mono-label:  12px;

  /* Layout */
  --container-max:    1200px;
  --section-pad:      120px;
  --section-pad-md:   80px;
  --section-pad-sm:   64px;

  /* Radius */
  --radius-card: 10px;
  --radius-btn:  8px;
  --radius-tile: 8px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 250ms ease;
}

/* ── 2. Base Reset for Homepage ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--off-white);
  color: var(--text-dark);
  font-family: var(--font-primary);
  font-size: var(--body-size);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01";
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: inherit;
}

h1 { font-size: var(--h1-size); line-height: 1.1; }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); line-height: 1.3; }
h4 { font-size: var(--h4-size); }

p {
  color: inherit;
  line-height: 1.7;
  max-width: 65ch;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }

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

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

/* ── 3. Layout Primitives ───────────────────────────────────────── */
.page-wrap {
  padding-top: 80px; /* header height */
}

@media (max-width: 1023px) {
  .page-wrap { padding-top: 64px; } /* header height at tablet/mobile */
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (max-width: 768px) {
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }
}

.section {
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

@media (max-width: 1023px) {
  .section { padding-top: var(--section-pad-md); padding-bottom: var(--section-pad-md); }
}

@media (max-width: 639px) {
  .section { padding-top: var(--section-pad-sm); padding-bottom: var(--section-pad-sm); }
}

.section-light { background-color: var(--off-white); color: var(--text-dark); }
.section-dark  { background-color: var(--black);     color: var(--text-light); }

/* ── 4. Shared Components ───────────────────────────────────────── */

/* Mono section label */
.section-label {
  font-family: var(--font-mono);
  font-size: var(--mono-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  display: block;
  margin-bottom: 20px;
}

/* Primary CTA button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--yellow);
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  border: none;
  text-decoration: none;
  transition: background-color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--yellow-hover);
  transform: translateY(-2px);
  color: var(--black);
}

.btn-sm { padding: 12px 24px; font-size: 14px; }

/* Ghost / secondary button */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--text-dark);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--text-dark);
  text-decoration: none;
  transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.btn-ghost:hover {
  background-color: var(--text-dark);
  color: var(--off-white);
  transform: translateY(-2px);
}

.btn-ghost-light {
  color: var(--text-light);
  border-color: var(--text-light);
}

.btn-ghost-light:hover {
  background-color: var(--text-light);
  color: var(--black);
}

/* Text link with arrow */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--t-fast);
}

.text-link:hover { opacity: 0.8; text-decoration: underline; }

/* ── 5. Status Bar ──────────────────────────────────────────────── */
.status-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 32px;
  background-color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.status-bar-inner {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--gray-text-dark);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  display: inline-block;
  animation: pulse-status 2.5s ease infinite;
}

.status-bar-book {
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity var(--t-fast);
}

.status-bar-book:hover { opacity: 0.8; color: var(--yellow); }

@keyframes pulse-status {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* ── 6. Header / Nav ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--off-white);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  border-bottom: 1px solid var(--gray-line-light);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem 0 0.75rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

/* Logo */
.nav-logo {
  text-decoration: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 60px;
  max-width: 190px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  display: block;
}

/* Desktop nav list */
.nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Industries dropdown */
.nav-dropdown-wrapper { position: relative; }

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  padding-bottom: 2px;
  transition: color var(--t-fast);
}

.nav-dropdown-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}

.nav-dropdown-btn:hover::after,
.nav-dropdown-btn.active::after,
.nav-dropdown-btn.open::after { transform: scaleX(1); }

.nav-dropdown-chevron {
  transition: transform var(--t-fast);
}

.nav-dropdown-btn.open .nav-dropdown-chevron { transform: rotate(180deg); }

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--white);
  border: 1px solid var(--gray-line-light);
  border-radius: var(--radius-card);
  padding: 8px;
  min-width: 200px;
  display: none;
  z-index: 50;
}

.nav-dropdown-panel.open { display: block; }

.nav-dropdown-item {
  display: block;
  padding: 10px 16px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  border-radius: 6px;
  transition: background-color var(--t-fast), color var(--t-fast);
}

.nav-dropdown-item:hover {
  background-color: var(--off-white);
  color: var(--black);
}

/* CTA in header */
.nav-cta-wrap { flex-shrink: 0; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--black);
  transition: transform var(--t-fast), opacity var(--t-fast);
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5.3px, 5.3px); }
.nav-hamburger.open span:nth-child(2) { transform: rotate(-45deg) translate(5.3px, -5.3px); }

@media (max-width: 1023px) {
  .nav-list,
  .nav-cta-wrap { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { height: 64px; }
}

@media (max-width: 768px) {
  .nav-container { padding: 0 1.25rem; }
}

/* ── 7. Mobile Menu Overlay ─────────────────────────────────────── */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background-color: var(--off-white);
  transform: translateX(100%);
  transition: transform 250ms ease;
  overflow-y: auto;
}

.nav-mobile.open {
  transform: translateX(0);
}

.nav-mobile-inner {
  padding: 80px 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
}

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--black);
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-link {
  display: block;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-line-light);
  text-decoration: none;
  transition: color var(--t-fast);
}

.nav-mobile-link:hover,
.nav-mobile-link.active { color: var(--black); text-decoration: underline; text-decoration-color: var(--yellow); text-underline-offset: 4px; }

.nav-mobile-industries-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-primary);
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-line-light);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--t-fast);
}

.nav-mobile-industries-btn svg { transition: transform var(--t-fast); }
.nav-mobile-industries-btn.open svg { transform: rotate(180deg); }

.nav-mobile-subnav {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base);
}

.nav-mobile-subnav.open { max-height: 500px; }

.nav-mobile-sublink {
  display: block;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-text);
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid var(--gray-line-light);
  text-decoration: none;
  transition: color var(--t-fast);
}

.nav-mobile-sublink:hover { color: var(--black); }

.nav-mobile-cta {
  margin-top: auto;
  padding-top: 32px;
}

/* ── 8. Hero Section ────────────────────────────────────────────── */
.hero {
  background-color: var(--off-white);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
}

/* Hero identity badge */
.hero-identity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-identity-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
}

.hero-identity-sep {
  color: var(--black);
  opacity: 0.3;
  font-size: 14px;
}

.hero-identity-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 3px 8px;
  border-radius: 3px;
}

/* Hero portrait (replaces dashboard) */
.hero-portrait {
  align-self: stretch;
  border-radius: var(--radius-card);
  overflow: hidden;
  max-height: 540px;
  min-height: 400px;
}

.hero-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--mono-label);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-text);
  display: block;
  margin-bottom: 24px;
}

.hero-eyebrow .em { color: var(--yellow); background-color: var(--black); padding: 1px 4px; border-radius: 2px; font-size: 10px; }

.hero-h1 {
  font-size: var(--h1-size);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 24px;
  max-width: 14ch;
}

.hero-h1 .accent {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.hero-sub {
  font-size: var(--body-large);
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 52ch;
  margin-bottom: 40px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  text-transform: uppercase;
}

.hero-trust-sep { margin: 0 8px; opacity: 0.4; }

/* ── Hero Results Dashboard ──────────────────────────────────── */
.hero-dashboard {
  background-color: var(--white);
  border: 1px solid var(--gray-line-light);
  border-radius: 12px;
  animation: dash-entrance 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
  padding: 28px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--t-fast);
}

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

/* Dashboard header row */
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-period {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray-text);
  text-transform: uppercase;
}

.dash-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background-color: rgba(233, 255, 92, 0.15);
  border: 1px solid rgba(233, 255, 92, 0.35);
  border-radius: 20px;
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--black);
}

.dash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  animation: pulse-live 2s ease infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

/* Primary metric block */
.dash-primary { display: flex; flex-direction: column; gap: 4px; }

.dash-big-num {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.03em;
}

.dash-big-label {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-text);
}

.dash-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-text);
  margin-top: 4px;
}

.dash-trend-arrow {
  color: var(--yellow);
  font-size: 14px;
  background-color: rgba(233, 255, 92, 0.15);
  padding: 1px 5px;
  border-radius: 4px;
}

/* Secondary metrics 2-col grid */
.dash-secondary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.dash-secondary-item {
  background-color: var(--off-white);
  border: 1px solid var(--gray-line-light);
  border-radius: 8px;
  padding: 14px 16px;
}

.dash-secondary-num {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.dash-secondary-label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-text);
  margin-top: 3px;
}

/* Line chart area */
.dash-chart {
  width: 100%;
  overflow: hidden;
}

/* ── Dashboard animation sequence ───────────────────────────── */

/* 1. Card entrance */
@keyframes dash-entrance {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 2. Metric fade-up */
@keyframes dash-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* 3. Chart line draw */
@keyframes draw-chart {
  to { stroke-dashoffset: 0; }
}

/* 4. Area fill fade */
@keyframes chart-area-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 5. Dot pop */
@keyframes dot-pop {
  0%   { opacity: 0; transform: scale(0); }
  70%  { transform: scale(1.4); }
  100% { opacity: 1; transform: scale(1); }
}

/* SVG line draw */
.chart-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw-chart 1.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

/* Area fill — fades in as line finishes */
.chart-area {
  opacity: 0;
  animation: chart-area-in 0.8s ease-out 1.7s forwards;
}

/* Dots — pop in sequentially (delay set inline per dot) */
.chart-dot {
  opacity: 0;
  transform-origin: center;
  animation: dot-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Primary metric block */
.dash-anim-primary {
  animation: dash-fade-up 0.55s ease-out 0.45s both;
}

/* Secondary metrics */
.dash-anim-secondary {
  animation: dash-fade-up 0.55s ease-out 0.65s both;
}

/* Dashboard footer row */
.dash-footer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid var(--gray-line-light);
}

.dash-footer-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--yellow);
  display: inline-block;
  flex-shrink: 0;
}

.dash-footer-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gray-text);
  text-transform: uppercase;
}

@media (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-h1 { max-width: unset; }
  .dash-big-num { font-size: 40px; }
}

@media (max-width: 639px) {
  .hero { min-height: unset; padding-top: 48px; padding-bottom: 64px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-portrait { max-height: 360px; min-height: 280px; }
  .dash-big-num { font-size: 36px; }
}

@media (max-width: 639px) {
  .cta-final { padding-top: var(--section-pad-sm); padding-bottom: var(--section-pad-sm); }
  .cta-final-btns { flex-direction: column; align-items: center; }
}

/* ── 9. Section 2 — What is Marketing Automation (Editorial) ────── */
.overview-editorial {
  margin-top: 52px;
}

.overview-editorial-h2 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 22ch;
  margin-bottom: 40px;
}

.overview-editorial-divider {
  width: 48px;
  height: 3px;
  background: var(--yellow);
  margin-bottom: 40px;
  border-radius: 2px;
}

.overview-editorial-body {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin-bottom: 40px;
}

.overview-editorial-body p {
  font-size: 17px;
  color: var(--gray-text-dark);
  line-height: 1.8;
  margin: 0;
}

.overview-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--yellow);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--t-fast);
}

.overview-editorial-link:hover { opacity: 0.72; }

/* Dashboard in section 2 (dark background variant) */
.overview-dashboard {
  margin-top: 56px;
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 860px;
}

@media (max-width: 1023px) {
  .overview-editorial-body { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 639px) {
  .overview-editorial-h2 { font-size: clamp(32px, 8vw, 48px); }
  .overview-editorial-body { grid-template-columns: 1fr; gap: 20px; }
}

/* ── 10. Problem → Solution ──────────────────────────────────────── */
.problem-h2 {
  max-width: 20ch;
  margin-bottom: 64px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.problem-col-label {
  font-family: var(--font-mono);
  font-size: var(--mono-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 20px;
  display: block;
}

.problem-col-label.yellow { color: var(--yellow); }

/* Wait, this section is on off-white so labels should be dark. Yellow label only for "THE SYSTEM" side */

.problem-items { display: flex; flex-direction: column; gap: 12px; }

.problem-item {
  background: var(--white);
  border: 1px solid var(--gray-line-light);
  border-radius: var(--radius-tile);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--body-size);
  font-weight: 500;
  color: var(--text-dark);
}

.problem-item-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.dot-red    { background-color: var(--red-dot); }
.dot-yellow { background-color: var(--yellow); }

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

/* ── 11. Services Grid ──────────────────────────────────────────── */
.services-intro {
  max-width: 800px;
  margin-bottom: 64px;
}

.services-subhead {
  font-size: var(--body-large);
  color: var(--gray-text-dark);
  line-height: 1.6;
  max-width: 70ch;
  margin-top: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background-color: var(--card-dark);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--t-fast), transform var(--t-fast);
}

.service-card:hover {
  border-color: var(--yellow-border);
  transform: translateY(-2px);
}

.service-num {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  display: block;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 15px;
  color: var(--gray-text-dark);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 24px;
  max-width: unset;
}

.service-link {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: opacity var(--t-fast);
}

.service-link:hover { opacity: 0.75; }

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

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

/* ── 12. Process Section ────────────────────────────────────────── */
.process-intro {
  max-width: 700px;
  margin-bottom: 72px;
}

.process-subhead {
  font-size: var(--body-size);
  color: var(--gray-text);
  margin-top: 16px;
  max-width: 55ch;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Horizontal connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background-color: var(--gray-line-light);
  z-index: 0;
}

.process-step {
  position: relative;
  padding: 0 20px;
  text-align: left;
}

.process-step-num {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 600;
  color: var(--yellow);
  line-height: 1;
  display: block;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  background-color: var(--off-white);
  display: inline-block;
  padding-right: 16px;
}

.process-step-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.process-step-time {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.process-step-desc {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 22ch;
}

@media (max-width: 1023px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .process-steps::before { display: none; }
  .process-step { padding: 0; }
}

@media (max-width: 639px) {
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
}

/* ── 13. Packages ───────────────────────────────────────────────── */
.packages-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.packages-intro h2 { color: var(--text-light); }

.packages-subhead {
  font-size: var(--body-size);
  color: var(--gray-text-dark);
  margin-top: 16px;
  max-width: 55ch;
  margin-left: auto;
  margin-right: auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pkg-card {
  background-color: var(--card-dark);
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--t-fast);
}

.pkg-card.featured {
  border: 2px solid var(--yellow);
  position: relative;
}

.pkg-badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--yellow);
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.pkg-name {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
}

.pkg-tagline {
  font-size: 14px;
  color: var(--gray-text-dark);
  margin-bottom: 24px;
}

.pkg-pricing {
  margin-bottom: 24px;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.pkg-price-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-text-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-width: 70px;
}

.pkg-price-amount {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-light);
  line-height: 1;
}

.pkg-divider {
  height: 1px;
  background-color: var(--gray-line);
  margin: 24px 0;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  list-style: none;
}

.pkg-features li {
  font-size: 14px;
  color: var(--gray-text-dark);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pkg-features li::before {
  content: '→';
  color: var(--yellow);
  flex-shrink: 0;
}

.pkg-cta {
  margin-top: auto;
}

.packages-footer {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1023px) {
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .packages-intro { max-width: unset; }
}

/* ── 14. Industries ─────────────────────────────────────────────── */
.industries-intro {
  max-width: 800px;
  margin-bottom: 64px;
}

.industries-subhead {
  font-size: var(--body-size);
  color: var(--gray-text);
  margin-top: 16px;
  max-width: 65ch;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.industry-tile {
  background-color: var(--white);
  border: 1px solid var(--gray-line-light);
  border-radius: var(--radius-tile);
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--text-dark);
  transition: border-color var(--t-fast), transform var(--t-fast);
  position: relative;
}

.industry-tile:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  color: var(--text-dark);
}

.industry-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 16px;
}

/* Yellow dot — not color */
.industry-num { color: var(--black); opacity: 0.35; }
/* Override: make industry numbers yellow */
.industry-tile .industry-num { color: var(--yellow); opacity: 1; font-family: var(--font-mono); }

.industry-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.industry-use {
  font-size: var(--small-size);
  color: var(--gray-text);
  line-height: 1.5;
  flex: 1;
}

.industry-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  color: var(--gray-text);
  font-size: 16px;
  transition: color var(--t-fast);
}

.industry-tile:hover .industry-arrow { color: var(--yellow); }

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

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

/* ── 15. Case Studies ───────────────────────────────────────────── */
.proof-intro {
  max-width: 700px;
  margin-bottom: 64px;
}

.proof-subhead {
  font-size: var(--body-size);
  color: var(--gray-text-dark);
  margin-top: 16px;
  max-width: 60ch;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.proof-card {
  background-color: var(--card-dark);
  border: 1px solid var(--gray-line);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.proof-industry {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 24px;
}

.proof-metric {
  font-size: clamp(56px, 8vw, 72px);
  font-weight: 700;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.03em;
}

.proof-result {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.proof-desc {
  font-size: 14px;
  color: var(--gray-text-dark);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 24px;
  max-width: unset;
}

.proof-footer {
  text-align: center;
}

@media (max-width: 1023px) {
  .proof-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ── 16. About Preview ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 40fr 60fr;
  gap: 64px;
  align-items: center;
}

.about-portrait {
  aspect-ratio: 4/5;
  background-color: #F0EDE4;
  border: 1px solid var(--gray-line-light);
  border-radius: var(--radius-card);
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
  overflow: hidden;
  max-height: 480px;
}

.about-portrait-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--gray-text);
  letter-spacing: 0.06em;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: var(--radius-card);
}

.about-content {}

.about-h2 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--text-dark);
  margin-bottom: 24px;
  max-width: 16ch;
}

.about-body {
  font-size: var(--body-size);
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 58ch;
  margin-bottom: 16px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  color: var(--black);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 2px;
  transition: opacity var(--t-fast);
}

.about-link:hover { opacity: 0.75; }

@media (max-width: 1023px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-portrait {
    aspect-ratio: unset;
    max-height: unset;
    overflow: hidden;
    position: relative;
    height: auto;
    min-height: unset;
    padding: 0;
  }
  .about-portrait img,
  .about-portrait .about-portrait-img {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: fill !important;
    object-position: unset !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
  }
  .about-h2 { max-width: unset; }
}

/* ── 17. Final CTA Block ────────────────────────────────────────── */
.cta-final {
  background-color: var(--yellow);
  color: var(--black);
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

/* Section 11: center-aligned, full container width */
.cta-final-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-final-inner {
  max-width: 800px;
}

.cta-final-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--mono-label);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  display: block;
  margin-bottom: 20px;
}

.cta-final-h2 {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 16ch;
}

.cta-final-sub {
  font-size: var(--body-large);
  color: var(--black);
  opacity: 0.75;
  max-width: 52ch;
  line-height: 1.6;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.cta-final-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--black);
  color: var(--yellow);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  border: none;
  text-decoration: none;
  transition: opacity var(--t-fast), transform var(--t-fast);
}

.btn-dark:hover { opacity: 0.9; transform: translateY(-2px); color: var(--yellow); }

.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--black);
  text-decoration: none;
  transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.btn-ghost-dark:hover {
  background-color: var(--black);
  color: var(--yellow);
  transform: translateY(-2px);
}

.cta-final-note {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--black);
  opacity: 0.6;
  text-transform: uppercase;
}

@media (max-width: 639px) {
  .cta-final { padding-top: var(--section-pad-sm); padding-bottom: var(--section-pad-sm); }
  .cta-final-btns { flex-direction: column; align-items: center; gap: 12px; }
  .cta-final-btns .btn-dark,
  .cta-final-btns .btn-ghost-dark { width: 100%; max-width: 300px; justify-content: center; }
}

/* ── 18. FAQ Section ────────────────────────────────────────────── */
.faq-intro {
  max-width: 700px;
  margin-bottom: 56px;
}

/* Section 12: center-aligned header and accordion */
.faq-intro-centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  max-width: 800px;
}

.faq-list-centered {
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  list-style: none;
  gap: 24px;
}

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

.faq-indicator {
  font-size: 22px;
  font-weight: 300;
  color: var(--yellow);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--t-fast);
}

.faq-item[open] .faq-indicator { transform: rotate(45deg); }

.faq-body {
  font-size: 15px;
  color: var(--gray-text-dark);
  line-height: 1.7;
  padding-bottom: 28px;
  max-width: 70ch;
}

/* ── 19. Footer ─────────────────────────────────────────────────── */
.site-footer {
  background-color: var(--black);
  color: var(--text-light);
  border-top: 1px solid var(--yellow-border);
  padding-top: 72px;
  padding-bottom: 40px;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

/* 4-column grid: brand (wider) | navigate | contact | legal */
.footer-grid {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1.2fr 0.9fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--gray-line);
}

/* Brand column */
.footer-col-brand {
  padding-right: 24px;
}

.footer-logo {
  text-decoration: none;
  display: block;
  margin-bottom: 16px;
  margin-left: -14px;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray-text-dark);
  line-height: 1.7;
  max-width: 30ch;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text-dark);
  border: 1px solid var(--gray-line);
  border-radius: 6px;
  text-decoration: none;
  transition: color var(--t-fast), border-color var(--t-fast), background-color var(--t-fast);
}

.footer-social-link:hover {
  color: var(--yellow);
  border-color: var(--yellow-border);
  background-color: rgba(233, 255, 92, 0.05);
}

/* Column labels */
.footer-col-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--yellow);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

/* Link lists */
.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}

.footer-link-list a {
  font-size: 14px;
  color: var(--gray-text-dark);
  text-decoration: none;
  transition: color var(--t-fast);
  line-height: 1.4;
}

.footer-link-list a:hover { color: var(--text-light); }

/* CTA link in contact col */
.footer-cta-link {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--yellow) !important;
  letter-spacing: 0.01em;
}

.footer-cta-link:hover { opacity: 0.8; }

/* Bottom bar */
.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-family: var(--font-primary);
  font-size: 13px;
  color: rgba(250, 249, 245, 0.35);
  max-width: unset;
}

.footer-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: unset;
}

.footer-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  animation: pulse-status 2.5s ease infinite;
  display: inline-block;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-col-brand { padding-right: 0; }
}

@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-container { padding: 0 1.25rem; }
  .site-footer { padding-top: 56px; }
}

/* ── 20. Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }
.stagger > *:nth-child(7) { transition-delay: 480ms; }
.stagger > *:nth-child(8) { transition-delay: 560ms; }

/* ── 21. Page Banner (interior pages) ──────────────────────────── */
/* Compact intro for About, Services, Contact, etc.                */
/* Replaces the full-size homepage hero on all interior pages.     */
.page-banner {
  background-color: var(--off-white);
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--gray-line-light);
}

.page-banner-inner { max-width: 680px; }

.page-banner-h1 {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-top: 16px;
  margin-bottom: 18px;
}

.page-banner-h1 .accent {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.page-banner-sub {
  font-size: var(--body-large);
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 56ch;
  margin-bottom: 28px;
}

.page-banner-meta {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 8px;
}

.page-banner-meta-item {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  text-transform: uppercase;
}

.page-banner-meta-sep {
  margin: 0 14px;
  color: var(--gray-text);
  opacity: 0.35;
}

@media (max-width: 639px) {
  .page-banner { padding-top: 48px; padding-bottom: 48px; }
  .page-banner-h1 { font-size: clamp(26px, 7vw, 36px); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .flow-dot,
  .status-dot,
  .footer-status-dot {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
