/* ============================================
   ECHELON COMMERCE — echeloncommerce.com
   The Provocateur. Manifesto site.
   Zero border-radius. Bold borders. Hard edges.
   Dark manifesto — protest poster meets premium fintech.
   Near-black + electric green NEON GLOW.
   ============================================ */

/* --- Color Palette --- */
:root {
  --color-primary:       #0a0a0f;                    /* tinted near-black */
  --color-primary-90:    hsl(240, 15%, 11%);         /* slightly lighter dark */
  --color-primary-80:    hsl(240, 12%, 18%);         /* dark grey */
  --color-primary-60:    hsl(220, 14%, 40%);         /* muted text on dark */
  --color-accent:        hsl(150, 70%, 45%);         /* electric green */
  --color-accent-hover:  hsl(150, 70%, 38%);         /* green pressed */
  --color-accent-subtle: hsl(150, 40%, 90%);         /* faint green tint */
  --color-accent-glow:   hsla(150, 70%, 45%, 0.4);   /* green glow */
  --color-accent-glow-soft: hsla(150, 70%, 45%, 0.15); /* softer green glow */
  --color-light:         hsl(40, 5%, 93%);           /* warm light grey bg */
  --color-light-dim:     hsla(0, 0%, 100%, 0.75);    /* body text on dark — NOT pure white */
  --color-white:         hsl(40, 5%, 97%);           /* warm near-white */
  --color-body-text:     hsl(220, 15%, 25%);         /* body text on light */
  --color-muted:         hsl(220, 10%, 50%);         /* muted text on light */
  --color-error:         hsl(0, 70%, 55%);           /* form errors */
  --color-border-light:  hsl(220, 10%, 85%);         /* borders on light sections */
  --color-border-dark:   rgba(255, 255, 255, 0.05);  /* subtle white borders on dark */
}

/* --- Type Scale --- */
:root {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body:    'IBM Plex Sans', sans-serif;

  --text-hero:      clamp(2.5rem, 6vw + 1rem, 5rem);    /* MASSIVE: 40-80px */
  --text-h2:        clamp(1.75rem, 3.5vw, 2.75rem);     /* 28-44px */
  --text-h3:        clamp(1.35rem, 2.8vw, 2rem);        /* 22-32px */
  --text-body:      clamp(1rem, 1.2vw, 1.125rem);       /* 16-18px */
  --text-small:     0.875rem;                            /* 14px */

  --leading-tight:  1.1;
  --leading-body:   1.65;
  --leading-loose:  1.8;

  --tracking-tight:  -0.04em;
  --tracking-normal: 0;
  --tracking-section: 0.08em;
}

/* --- Spacing Scale --- */
:root {
  --space-xs:  0.5rem;    /* 8px */
  --space-sm:  1rem;      /* 16px */
  --space-md:  1.5rem;    /* 24px */
  --space-lg:  2.5rem;    /* 40px */
  --space-xl:  4rem;      /* 64px */
  --space-2xl: 6rem;      /* 96px */
  --space-3xl: 8rem;      /* 128px */

  --container-max: 760px;
  --container-wide: 1100px;
  --container-padding: 24px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-body-text);
  background: var(--color-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

p {
  max-width: 65ch;
}

/* --- Section headings: ALL UPPERCASE with wide tracking --- */
.manifesto-heading,
.lead-magnet h2,
.final-cta h2 {
  text-transform: uppercase;
  letter-spacing: var(--tracking-section);
}

/* --- Layout: Full-Bleed Sections --- */
.section-dark {
  background: var(--color-primary);
  color: var(--color-light);
  position: relative;
  overflow: hidden;
}

/* Ambient glow blobs on dark sections — each positioned differently via nth-child */
.section-dark::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, hsla(150, 70%, 45%, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Hero gets its own mesh, so skip its ::before blob */
.manifesto-hero::before {
  display: none;
}

/* Alternate blob positions for visual variety */
.section-dark:nth-of-type(4n+1)::before {
  top: -200px;
  right: -200px;
}
.section-dark:nth-of-type(4n+2)::before {
  bottom: -150px;
  left: -250px;
}
.section-dark:nth-of-type(4n+3)::before {
  top: 50%;
  right: -300px;
  transform: translateY(-50%);
}
.section-dark:nth-of-type(4n)::before {
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.section-dark p,
.section-dark li {
  color: var(--color-light-dim);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-light);
}

/* --- Light sections with angled clip-path transitions --- */
.section-light {
  background: var(--color-light);
  color: var(--color-body-text);
  position: relative;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-top: -40px;
  margin-bottom: -40px;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 2;
}

.section-white {
  background: var(--color-white);
  color: var(--color-body-text);
  position: relative;
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-top: -40px;
  margin-bottom: -40px;
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 2;
}

/* Line pattern overlay on alternate dark sections */
.section-dark:nth-of-type(even)::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    hsla(150, 70%, 45%, 0.03),
    hsla(150, 70%, 45%, 0.03) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
  z-index: 0;
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-2xl) var(--container-padding);
}

.section-inner--wide {
  max-width: var(--container-wide);
}

/* --- Gradient dividers between sections --- */
.section-dark + .section-light::before,
.section-light + .section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.4;
  z-index: 3;
}

/* --- Buttons: NEON GLOW --- */
.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-body);
  padding: 16px 32px;
  border: 3px solid var(--color-accent);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.3s ease, transform 0.2s ease;
  min-height: 48px;
  text-align: center;
  box-shadow:
    0 0 20px var(--color-accent-glow),
    0 0 40px var(--color-accent-glow-soft);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  text-decoration: none;
  transform: scale(1.02);
  box-shadow:
    0 0 30px var(--color-accent-glow),
    0 0 60px var(--color-accent-glow-soft),
    0 0 80px hsla(150, 70%, 45%, 0.08);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-body);
  padding: 16px 32px;
  border: 2px solid var(--color-accent);
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.3s ease, transform 0.2s ease;
  min-height: 48px;
  text-align: center;
}

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  text-decoration: none;
  transform: scale(1.02);
  box-shadow:
    0 0 20px var(--color-accent-glow),
    0 0 40px var(--color-accent-glow-soft);
}

/* ============================================
   HERO — Gradient mesh + noise + massive type
   ============================================ */
.manifesto-hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  /* Gradient mesh: 3 offset radial gradients at different positions */
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, hsla(150, 70%, 45%, 0.10), transparent),
    radial-gradient(ellipse 60% 80% at 80% 60%, hsla(150, 70%, 45%, 0.08), transparent),
    radial-gradient(ellipse 70% 50% at 50% 80%, hsla(150, 60%, 40%, 0.12), transparent),
    var(--color-primary);
}

/* Noise/grain texture overlay */
.manifesto-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

.manifesto-hero > * {
  position: relative;
  z-index: 2;
}

.manifesto-hero .section-inner {
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-3xl);
}

.manifesto-hero h1 {
  margin-bottom: var(--space-md);
  max-width: 16ch;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: var(--leading-body);
  color: var(--color-light-dim);
  max-width: 55ch;
  margin-bottom: var(--space-lg);
}

.transition-hook {
  font-style: italic;
  color: var(--color-muted);
  margin-top: var(--space-xl);
  font-size: var(--text-body);
}

.section-dark .transition-hook {
  color: var(--color-primary-60);
}

/* ============================================
   MANIFESTO / PROVOCATION BLOCK
   ============================================ */
.provocation-block {
  border-left: 4px solid var(--color-accent);
  padding-left: var(--space-md);
  margin-bottom: var(--space-lg);
  box-shadow: -4px 0 15px var(--color-accent-glow-soft);
}

.provocation-block p {
  margin-bottom: var(--space-sm);
}

.fee-callout {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h3);
  color: var(--color-accent);
  border: 3px solid var(--color-accent);
  padding: var(--space-md) var(--space-lg);
  margin: var(--space-lg) 0;
  text-align: center;
  line-height: var(--leading-tight);
  box-shadow:
    0 0 15px var(--color-accent-glow-soft),
    inset 0 0 15px var(--color-accent-glow-soft);
}

.manifesto-text {
  font-size: var(--text-body);
  line-height: var(--leading-loose);
}

.manifesto-text p {
  margin-bottom: var(--space-md);
}

.manifesto-heading {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-xs);
  border-bottom: 3px solid var(--color-accent);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: var(--tracking-section);
}

.section-dark .manifesto-heading {
  border-color: var(--color-accent);
  text-shadow: 0 0 20px var(--color-accent-glow-soft);
}

/* --- Value props with green left border + glow --- */
.value-block {
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md) 0 var(--space-md) var(--space-md);
  margin-bottom: var(--space-lg);
  border: 1px solid var(--color-border-dark);
  border-left: 4px solid var(--color-accent);
  padding: var(--space-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.value-block:hover {
  box-shadow: 0 0 20px var(--color-accent-glow-soft);
  transform: translateX(4px);
}

.value-block h3 {
  margin-bottom: var(--space-xs);
}

.value-block p {
  color: var(--color-light-dim);
}

/* ============================================
   PROOF
   ============================================ */
.proof-story {
  border: 1px solid var(--color-border-light);
  padding: var(--space-lg);
  margin-bottom: var(--space-lg);
  background: hsla(0, 0%, 100%, 0.5);
  transition: box-shadow 0.3s ease;
}

.proof-story:hover {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.proof-story p {
  font-size: var(--text-body);
  line-height: var(--leading-loose);
  max-width: 65ch;
}

/* Green gradient text on stat callouts */
.proof-highlight {
  font-family: var(--font-heading);
  font-weight: 700;
  display: block;
  font-size: var(--text-h3);
  margin-top: var(--space-sm);
  background: linear-gradient(135deg, hsl(150, 70%, 45%), hsl(150, 80%, 55%), hsl(140, 70%, 40%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section .section-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-text p {
  margin-bottom: var(--space-sm);
  line-height: var(--leading-loose);
}

.about-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-h3);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.about-meta {
  color: var(--color-muted);
  font-size: var(--text-small);
  margin-top: var(--space-sm);
}

/* ============================================
   LEAD MAGNET
   ============================================ */
.lead-magnet {
  border: 3px solid var(--color-accent);
  padding: var(--space-lg);
  margin: 0 auto;
  max-width: var(--container-max);
  box-shadow:
    0 0 20px var(--color-accent-glow-soft),
    inset 0 0 30px hsla(150, 70%, 45%, 0.03);
}

.lead-magnet h2 {
  margin-bottom: var(--space-sm);
}

.lead-magnet p {
  margin-bottom: var(--space-md);
}

.lead-magnet-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 420px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-body-text);
}

.section-dark .form-group label {
  color: var(--color-light);
}

.form-group input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 16px;
  border: 2px solid var(--color-border-light);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-body-text);
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 10px var(--color-accent-glow-soft);
}

.form-group input.input-error {
  border-color: var(--color-error);
}

.form-error {
  color: var(--color-error);
  font-size: var(--text-small);
  min-height: 1.2em;
}

.section-dark .form-group input {
  background: var(--color-primary-90);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-light);
}

.section-dark .form-group input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 15px var(--color-accent-glow-soft);
}

.section-dark .form-group input.input-error {
  border-color: var(--color-error);
}

.form-success {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-body);
  color: var(--color-accent);
  padding: var(--space-md) 0;
  display: none;
  text-shadow: 0 0 15px var(--color-accent-glow-soft);
}

.form-success.visible {
  display: block;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
}

.final-cta .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loss-line {
  font-style: italic;
  color: var(--color-primary-60);
  margin-bottom: var(--space-md);
  font-size: var(--text-body);
}

.reassurance {
  color: var(--color-primary-60);
  font-size: var(--text-small);
  margin-top: var(--space-sm);
}

.final-cta-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  width: 100%;
  max-width: 420px;
  margin-top: var(--space-md);
  text-align: left;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-primary);
  color: var(--color-primary-60);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer .section-inner {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  font-size: var(--text-small);
}

.site-footer a {
  color: var(--color-light-dim);
}

.site-footer a:hover {
  color: var(--color-accent);
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-xs);
}

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 60px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
}

.sticky-cta .btn-primary {
  flex: 1;
  padding: 10px 16px;
  font-size: var(--text-small);
  min-height: 44px;
}

.sticky-cta-close {
  background: none;
  border: none;
  color: var(--color-light-dim);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticky-cta-close:hover {
  color: var(--color-light);
}

.sticky-cta.visible {
  display: flex;
}

/* ============================================
   MANIFESTO DECLARATION — NEON GLOW BARS
   ============================================ */
.manifesto-declaration {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: transparent;
  border: 3px solid var(--color-accent);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-xl);
  text-align: center;
  line-height: var(--leading-tight);
  box-shadow:
    0 0 15px var(--color-accent-glow-soft),
    inset 0 0 15px var(--color-accent-glow-soft);
  text-shadow: 0 0 10px var(--color-accent-glow);
  position: relative;
  overflow: hidden;
}

/* Animated underline on declaration bars */
.manifesto-declaration::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  animation: declaration-underline 3s ease-in-out infinite;
}

@keyframes declaration-underline {
  0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
  50% { opacity: 1; transform: scaleX(1); }
}

.section-dark .manifesto-declaration {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.section-light .manifesto-declaration {
  color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow:
    0 0 10px var(--color-accent-glow-soft);
  text-shadow: none;
}

.section-white .manifesto-declaration {
  color: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow:
    0 0 10px var(--color-accent-glow-soft);
  text-shadow: none;
}

/* ============================================
   FEE TRAJECTORY BAR CHART — GLOWING BARS
   ============================================ */
.fee-trajectory {
  margin: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 500px;
}

.fee-bar-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.fee-bar-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-small);
  color: var(--color-muted);
  min-width: 48px;
  text-align: right;
}

.section-dark .fee-bar-label {
  color: var(--color-light-dim);
}

.fee-bar {
  background: var(--color-accent);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: var(--space-xs);
  min-width: 48px;
  transition: width 0.3s ease;
  position: relative;
}

/* Glow intensity scales with bar width */
.fee-bar-row:nth-child(1) .fee-bar {
  box-shadow: 0 0 8px var(--color-accent-glow-soft);
}
.fee-bar-row:nth-child(2) .fee-bar {
  box-shadow: 0 0 12px var(--color-accent-glow-soft), 0 0 25px hsla(150, 70%, 45%, 0.08);
}
.fee-bar-row:nth-child(3) .fee-bar {
  box-shadow: 0 0 15px var(--color-accent-glow), 0 0 30px var(--color-accent-glow-soft);
}
.fee-bar-row:nth-child(4) .fee-bar {
  box-shadow: 0 0 20px var(--color-accent-glow), 0 0 40px var(--color-accent-glow-soft);
}

.fee-bar-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-small);
  color: var(--color-primary);
}

.fee-bar-unknown {
  background: transparent;
  border: 3px dashed var(--color-accent);
  justify-content: center;
  padding-right: 0;
  animation: pulse-unknown 2s ease-in-out infinite;
  box-shadow: 0 0 25px var(--color-accent-glow), 0 0 50px var(--color-accent-glow-soft) !important;
}

@keyframes pulse-unknown {
  0%, 100% {
    box-shadow:
      0 0 20px var(--color-accent-glow),
      0 0 40px var(--color-accent-glow-soft);
    border-color: var(--color-accent);
  }
  50% {
    box-shadow:
      0 0 35px var(--color-accent-glow),
      0 0 70px var(--color-accent-glow-soft),
      0 0 100px hsla(150, 70%, 45%, 0.06);
    border-color: hsl(150, 80%, 55%);
  }
}

.fee-bar-unknown .fee-bar-value {
  color: var(--color-accent);
  font-size: var(--text-h3);
  text-shadow: 0 0 10px var(--color-accent-glow);
}

/* ============================================
   PROOF TESTIMONIALS — Green border with glow
   ============================================ */
.proof-testimonial {
  border-left: 4px solid var(--color-accent);
  padding: var(--space-sm) 0 var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
  font-style: italic;
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--color-body-text);
  box-shadow: -4px 0 15px var(--color-accent-glow-soft);
}

.proof-testimonial cite {
  display: block;
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-small);
  color: var(--color-accent);
  margin-top: var(--space-xs);
}

/* ============================================
   ABOUT SECTION — Avatar + Header
   ============================================ */
.about-header {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.about-avatar {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  color: var(--color-accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  flex-shrink: 0;
  border: 3px solid var(--color-accent);
  box-shadow: 0 0 15px var(--color-accent-glow-soft);
}

.about-name-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-name-group .about-name {
  margin-bottom: 0;
}

.about-credential {
  font-size: var(--text-small);
  color: var(--color-muted);
  font-style: normal;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
/* Initial hidden state for scroll reveal elements */
.reveal {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

/* Dark sections: slide in from left */
.section-dark .reveal {
  transform: translateX(-30px);
}

/* Light/white sections: fade up */
.section-light .reveal,
.section-white .reveal {
  transform: translateY(30px);
}

/* When revealed */
.reveal.revealed {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger children */
.reveal-stagger-1 { transition-delay: 0.1s; }
.reveal-stagger-2 { transition-delay: 0.2s; }
.reveal-stagger-3 { transition-delay: 0.3s; }
.reveal-stagger-4 { transition-delay: 0.4s; }
.reveal-stagger-5 { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE: TABLET (768 - 1100px)
   ============================================ */
@media (max-width: 1100px) {
  .section-inner {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* ============================================
   RESPONSIVE: MOBILE (< 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .manifesto-hero {
    min-height: auto;
  }

  .manifesto-hero h1 {
    max-width: none;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    display: block;
  }

  .fee-callout {
    padding: var(--space-sm) var(--space-md);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
  }

  .proof-story {
    padding: var(--space-md);
  }

  .lead-magnet {
    padding: var(--space-md);
  }

  .fee-trajectory {
    max-width: 100%;
  }

  .manifesto-declaration {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-sm);
    letter-spacing: 0.08em;
  }

  .lead-magnet-form {
    max-width: none;
  }

  .final-cta-form {
    max-width: none;
  }

  /* Reduce clip-path angle on mobile */
  .section-light,
  .section-white {
    clip-path: polygon(0 20px, 100% 0, 100% calc(100% - 20px), 0 100%);
    margin-top: -20px;
    margin-bottom: -20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  /* Show sticky CTA bar on mobile */
  body.sticky-active .sticky-cta {
    display: flex;
  }

  /* Pad bottom of page so sticky bar doesn't cover content */
  body.sticky-active {
    padding-bottom: 68px;
  }

  /* Reduce scroll reveal offset on mobile */
  .section-dark .reveal {
    transform: translateX(-15px);
  }
  .section-light .reveal,
  .section-white .reveal {
    transform: translateY(15px);
  }
}

/* ============================================
   RESPONSIVE: SMALL MOBILE (< 480px)
   ============================================ */
@media (max-width: 480px) {
  :root {
    --space-2xl: 3rem;
    --space-3xl: 3.5rem;
  }

  .section-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .provocation-block {
    padding-left: var(--space-sm);
  }

  .value-block {
    padding-left: var(--space-sm);
  }
}

/* ============================================
   ACCESSIBILITY: Respect reduced motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .fee-bar-unknown {
    animation: none;
  }

  .manifesto-declaration::after {
    animation: none;
    opacity: 0.6;
    transform: scaleX(1);
  }

  html {
    scroll-behavior: auto;
  }
}

/* Real photo avatar */
.about-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent, hsl(150, 70%, 45%));
  box-shadow: 0 0 15px hsla(150, 70%, 45%, 0.2);
}
