/**
 * BEAM CONNECT — MARKETING WEBSITE SYSTEM
 * Phase 1 Leadership Review implementation.
 *
 * Scope: public marketing pages only (index, about, signal-preview).
 * Depends on css/color-system.css for brand tokens:
 * Obsidian Black, Covenant Gold, Ash Slate, Mind Blue, Body Red,
 * Soul Purple, Lifestyle Yellow.
 *
 * Do NOT load this on authenticated app pages.
 */

/* ========================================
   RESET + BASE
   ======================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-obsidian);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

ul {
  list-style: none;
}

::selection {
  background: var(--color-gold);
  color: var(--color-obsidian);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

.w-display {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.w-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.w-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

.w-eyebrow--center::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--color-gold);
}

.w-lede {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* ========================================
   LAYOUT
   ======================================== */

.w-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.w-container--wide {
  max-width: 1360px;
}

.w-container--narrow {
  max-width: 760px;
}

.w-section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
}

.w-section--alt {
  background: #101010;
  border-top: 1px solid var(--color-border-subtle);
  border-bottom: 1px solid var(--color-border-subtle);
}

.w-section-head {
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.w-section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.w-section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin: 1rem 0 1.125rem;
}

.w-section-head .w-lede {
  margin: 0 auto;
}

/* ========================================
   BUTTONS
   ======================================== */

.w-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    background var(--transition-base), border-color var(--transition-base),
    color var(--transition-base);
  min-height: 48px;
}

.w-btn--gold {
  background: var(--color-gold);
  color: var(--color-obsidian);
}

.w-btn--gold:hover {
  background: #EFC65A;
  box-shadow: 0 10px 30px rgba(226, 182, 68, 0.28);
  transform: translateY(-2px);
}

.w-btn--ghost {
  background: transparent;
  color: var(--color-text-primary);
  border-color: rgba(255, 255, 255, 0.28);
}

.w-btn--ghost:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.w-btn--lg {
  padding: 1.05rem 2.25rem;
  font-size: 1.0625rem;
  border-radius: 6px;
}

.w-btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* ========================================
   NAVIGATION
   ======================================== */

.w-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-slow);
}

.w-nav.scrolled {
  background: rgba(12, 12, 12, 0.96);
  border-bottom-color: var(--color-border);
}

.w-nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.w-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  white-space: nowrap;
}

.w-logo span:last-child {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--color-gold);
}

.w-nav-links {
  display: none;
}

.w-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.w-nav-actions .w-btn {
  padding: 0.55rem 1.15rem;
  min-height: 40px;
  font-size: 0.9rem;
}

.w-nav-login {
  display: none;
}

.w-nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  cursor: pointer;
}

.w-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--color-text-primary);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.w-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.w-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.w-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.w-nav-menu {
  display: none;
  border-top: 1px solid var(--color-border-subtle);
  background: rgba(12, 12, 12, 0.98);
  padding: 1rem 1.25rem 1.5rem;
}

.w-nav-menu.open {
  display: block;
}

.w-nav-menu a {
  display: block;
  padding: 0.85rem 0.25rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-subtle);
}

.w-nav-menu a:hover {
  color: var(--color-gold);
}

@media (min-width: 992px) {
  .w-nav-links {
    display: flex;
    gap: 1.9rem;
    align-items: center;
  }

  .w-nav-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.25rem 0;
    transition: color var(--transition-base);
  }

  .w-nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -2px;
    height: 2px;
    background: var(--color-gold);
    transition: right var(--transition-slow);
  }

  .w-nav-links a:hover {
    color: var(--color-text-primary);
  }

  .w-nav-links a:hover::after {
    right: 0;
  }

  .w-nav-toggle,
  .w-nav-menu {
    display: none !important;
  }

  .w-nav-login {
    display: inline-flex;
  }
}

/* ========================================
   HERO — CINEMATIC
   ======================================== */

.w-hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 120px;
}

.w-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.w-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: kenburns 28s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from { transform: scale(1) translateY(0); }
  to { transform: scale(1.08) translateY(-1.5%); }
}

.w-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.72) 0%, rgba(12, 12, 12, 0.35) 34%, rgba(12, 12, 12, 0.82) 72%, var(--color-obsidian) 100%),
    linear-gradient(100deg, rgba(12, 12, 12, 0.75) 0%, rgba(12, 12, 12, 0.15) 60%);
}

.w-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(3.5rem, 8vw, 6.5rem);
}

.w-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.w-hero-badge::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}

.w-hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.9rem);
  max-width: 15ch;
  margin-bottom: 1.25rem;
}

.w-hero h1 em {
  font-style: italic;
  color: var(--color-gold);
}

.w-hero .w-lede {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.25rem;
}

.w-hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: stretch;
  margin-bottom: 2.5rem;
}

@media (min-width: 560px) {
  .w-hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

.w-hero-note {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.w-hero-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.w-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 rgba(34, 197, 94, 0.5);
  animation: livepulse 2.4s ease-out infinite;
}

@keyframes livepulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ========================================
   MISSION BAND
   ======================================== */

.w-mission-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .w-mission-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.w-mission-item {
  border-top: 2px solid var(--color-gold);
  padding-top: 1.5rem;
}

.w-mission-item h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.9rem;
}

.w-mission-item p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.5;
  color: var(--color-text-primary);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */

.w-problem-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .w-problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.w-problem-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-body);
  border-radius: 6px;
  padding: 1.75rem;
}

.w-problem-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.w-problem-card p {
  color: var(--color-text-secondary);
  font-size: 0.98rem;
}

.w-problem-turn {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.w-problem-turn p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: var(--color-gold);
  font-weight: 700;
}

/* ========================================
   WHY CONNECT — OPERATING SYSTEM DIAGRAM
   ======================================== */

.w-os {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .w-os {
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
  }
}

.w-os-core {
  background: #121212;
  border: 1px solid rgba(226, 182, 68, 0.4);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  position: relative;
}

.w-os-core-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 0.75rem;
}

.w-os-core-name {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.w-os-core-name span {
  color: var(--color-gold);
}

.w-os-core p {
  margin-top: 0.75rem;
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.w-os-stem {
  width: 1px;
  height: 34px;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(226, 182, 68, 0.6), rgba(226, 182, 68, 0.08));
}

.w-os-branches {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .w-os-branches {
    grid-template-columns: repeat(3, 1fr);
  }
}

.w-os-branch {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1rem 0.85rem;
  text-align: center;
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.w-os-branch:hover {
  border-color: var(--branch-accent, var(--color-gold));
  transform: translateY(-3px);
}

.w-os-branch strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.w-os-branch span {
  font-size: 0.75rem;
  color: var(--color-text-tertiary);
  letter-spacing: 0.04em;
}

/* ========================================
   ONE SYSTEM — FLOW RAIL
   ======================================== */

.w-flow {
  display: grid;
  gap: 0.85rem;
  counter-reset: flowstep;
}

@media (min-width: 992px) {
  .w-flow {
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
  }
}

.w-flow-stop {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--stop-accent, var(--color-gold));
  border-radius: 6px;
  padding: 1.25rem 1rem;
  position: relative;
}

.w-flow-stop::before {
  counter-increment: flowstep;
  content: counter(flowstep, decimal-leading-zero);
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--stop-accent, var(--color-gold));
  margin-bottom: 0.5rem;
}

.w-flow-stop strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.w-flow-stop span {
  font-size: 0.8rem;
  color: var(--color-text-tertiary);
}

/* ========================================
   PLATFORM MODULE CARDS
   ======================================== */

.w-module-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .w-module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .w-module-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.w-module-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform var(--transition-slow), border-color var(--transition-slow),
    box-shadow var(--transition-slow);
}

.w-module-card:hover {
  transform: translateY(-6px);
  border-color: var(--module-accent, var(--color-gold));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

.w-module-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.w-module-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.w-module-card:hover .w-module-media img {
  transform: scale(1.06);
}

.w-module-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 12, 12, 0.75) 100%);
}

.w-module-tag {
  position: absolute;
  bottom: 0.9rem;
  left: 1.1rem;
  z-index: 1;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--module-accent, var(--color-gold));
}

.w-module-body {
  padding: 1.4rem 1.4rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.w-module-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.w-module-body > p {
  color: var(--color-text-secondary);
  font-size: 0.96rem;
  margin-bottom: 1.1rem;
  flex: 1;
}

.w-module-benefit {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-primary);
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 0.9rem;
}

.w-module-benefit::before {
  content: '→';
  color: var(--module-accent, var(--color-gold));
}

/* ========================================
   EDITORIAL FIGURES
   ======================================== */

.w-figure {
  margin: 0;
}

.w-figure img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid var(--color-border);
}

.w-figure figcaption {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
}

.w-figure figcaption::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}

/* ========================================
   AFTER YOU JOIN — STEPS
   ======================================== */

.w-steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .w-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.w-step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 1.9rem 1.6rem;
}

.w-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.w-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.w-step p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* ========================================
   LEADERSHIP — EXECUTIVE EDITORIAL
   ======================================== */

.w-leader-feature {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .w-leader-feature {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
  }
}

.w-leader-portrait {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background:
    radial-gradient(120% 90% at 20% 10%, rgba(226, 182, 68, 0.16) 0%, transparent 55%),
    linear-gradient(160deg, #1B1B1B 0%, #101010 100%);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.w-leader-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 1px solid rgba(226, 182, 68, 0.18);
  margin: 12px;
  pointer-events: none;
}

.w-leader-monogram {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4.5rem, 9vw, 7rem);
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: 0.05em;
}

.w-leader-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.w-leader-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.w-leader-info blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-primary);
  border-left: 3px solid var(--color-gold);
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.w-leader-info > p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
}

.w-leader-video-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.75rem;
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.w-leader-video-note::before {
  content: '▶';
  font-size: 0.65rem;
  color: var(--color-gold);
}

/* ========================================
   STATS BAND — LIVING COMMUNITY
   ======================================== */

.w-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .w-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.w-stat h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.w-stat p {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

/* ========================================
   FAQ
   ======================================== */

.w-faq {
  max-width: 820px;
  margin: 0 auto;
}

.w-faq details {
  border-bottom: 1px solid var(--color-border);
}

.w-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0.25rem;
  font-size: 1.08rem;
  font-weight: 600;
  transition: color var(--transition-base);
}

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

.w-faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-gold);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.w-faq details[open] summary {
  color: var(--color-gold);
}

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

.w-faq details p {
  padding: 0 2.5rem 1.5rem 0.25rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ========================================
   FINAL CTA
   ======================================== */

.w-cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(5rem, 10vw, 8.5rem) 0;
  background:
    radial-gradient(60% 80% at 50% 110%, rgba(226, 182, 68, 0.14) 0%, transparent 70%),
    #0F0F0F;
  border-top: 1px solid var(--color-border-subtle);
}

.w-cta-band h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  max-width: 18ch;
  margin: 1rem auto 1.25rem;
}

.w-cta-band .w-lede {
  max-width: 46ch;
  margin: 0 auto 2.5rem;
}

.w-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
}

@media (min-width: 560px) {
  .w-cta-actions {
    flex-direction: row;
  }
}

/* ========================================
   FOOTER
   ======================================== */

.w-footer {
  background: #090909;
  border-top: 1px solid var(--color-border-subtle);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}

.w-footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 700px) {
  .w-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.w-footer-brand p {
  color: #969696;
  font-size: 0.9rem;
  max-width: 34ch;
  margin-top: 1rem;
}

.w-footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #969696;
  margin-bottom: 1.1rem;
}

.w-footer li {
  margin-bottom: 0.7rem;
}

.w-footer a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color var(--transition-base);
}

.w-footer a:hover {
  color: var(--color-gold);
}

.w-footer-bottom {
  border-top: 1px solid var(--color-border-subtle);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: #969696;
  font-size: 0.85rem;
}

/* ========================================
   PAGE HERO (interior pages: About, Signal)
   ======================================== */

.w-page-hero {
  position: relative;
  padding: clamp(9rem, 16vw, 13rem) 0 clamp(3.5rem, 7vw, 6rem);
  overflow: hidden;
}

.w-page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.w-page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.w-page-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.8) 0%, rgba(12, 12, 12, 0.62) 55%, var(--color-obsidian) 100%);
}

.w-page-hero .w-container {
  position: relative;
  z-index: 1;
}

.w-page-hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  margin: 1rem 0 1.25rem;
  max-width: 18ch;
}

.w-page-hero .w-lede {
  max-width: 58ch;
}

/* ========================================
   EDITORIAL PROSE (About page)
   ======================================== */

.w-prose h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.w-prose p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.35rem;
}

.w-prose p strong {
  color: var(--color-text-primary);
}

.w-values-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .w-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.w-value-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--value-accent, var(--color-gold));
  border-radius: 6px;
  padding: 1.75rem;
}

.w-value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.w-value-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* ========================================
   SCROLL REVEAL + MOTION DISCIPLINE
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* If JS never runs, never hide content */
.no-js .reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .w-hero-media img {
    animation: none;
  }
}
