@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-variable.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  color-scheme: light;
  /* GAIA official tokens extracted from node 41:35973. */
  --gaia-white: #ffffff;
  --gaia-black: #0a0a0a;
  --gaia-active-purple: #8c00c5;
  --gaia-gray: #c1c4c9;
  --gaia-neutral: #f5f5f5;
  /* Named derivatives: interaction/accessibility roles not present as official tokens. */
  --text-secondary: #55575a;
  --black-hover: #262626;
  --focus-ring: rgba(10, 10, 10, 0.24);
  --gradient-active-24: linear-gradient(90deg, #e5a8ff 0%, #b478f7 6.4%, #4c16bb 12%, #090088 21.9%, #008a0e 43.9%, #00ff00 62.4%, #00eb4f 74.5%, #057daa 84.5%, #442cc9 88.5%, #fe00f2 100%);
  --gaia-mesh-bg: linear-gradient(180deg, rgba(140, 0, 197, 0.5), rgba(28, 5, 80, 0.34)), url("../img/gaia/gradiente-mesh-2-3.webp") center / cover no-repeat, var(--gaia-active-purple);
  --gaia-mesh-bg-dark: linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.26)), url("../img/gaia/gradiente-mesh-2-3.webp") center / cover no-repeat, var(--gaia-active-purple);
  --error: #b42318;
  --success: #1f6b3a;
  --shadow-floating: 0 12px 32px rgba(10, 10, 10, 0.1);
  --radius-card: 8px;
  --radius-hero: 25px;
  --radius-media: 32px;
  --container: 1200px;
  --section-space: 112px;
  --page-pad: clamp(20px, 5vw, 48px);
  --type-hero-title: 40px;
  --type-feature-title: 50px;
  --title-line-height: 1.05;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--gaia-white);
  color: var(--gaia-black);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: var(--font);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
p,
blockquote,
figcaption,
label,
legend {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font);
  font-weight: 300;
  text-wrap: balance;
}

h1 {
  margin-bottom: 0;
  font-size: var(--type-hero-title);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: var(--title-line-height);
}

h1 span {
  display: block;
  color: var(--text-secondary);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.15vw, 3.5rem);
  letter-spacing: -0.048em;
  line-height: 1.05;
}

h3 {
  letter-spacing: -0.034em;
  line-height: 1.2;
}

h4 {
  letter-spacing: -0.024em;
  line-height: 1.25;
}

h5 {
  letter-spacing: -0.014em;
  line-height: 1.3;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-180%);
  border-radius: var(--radius-card);
  background: var(--gaia-black);
  color: var(--gaia-white);
}

.skip-link:focus {
  transform: translateY(0);
}

.l-container {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--surface {
  background: var(--gaia-neutral);
}

.section--dark {
  background: var(--gaia-black);
  color: var(--gaia-white);
}

.mesh-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--gaia-mesh-bg-dark);
}

#causa {
  background: transparent;
  padding-bottom: 0;
}

#manifesto {
  background: transparent;
  padding-top: calc(var(--section-space) / 4);
}

#resultados {
  background: var(--gaia-mesh-bg);
}

#diagnostico {
  background: var(--gaia-black);
  color: var(--gaia-white);
}

#diagnostico .diagnostic-copy > p:not(.badge),
#diagnostico .diagnostic-benefits li {
  color: rgba(255, 255, 255, 0.78);
}

#diagnostico .diagnostic-benefits li {
  border-top-color: rgba(255, 255, 255, 0.22);
}

.section-heading {
  max-width: 710px;
  margin-bottom: 52px;
}

.section-heading--wide {
  max-width: 900px;
}

.section-heading > p:last-child:not(.badge),
.diagnostic-copy > p:not(.badge) {
  max-width: 760px;
  color: var(--text-secondary);
  font-size: 1.04rem;
}

.section-heading--light > p:last-child:not(.badge),
.prose--light,
.section--dark .section-heading > p:last-child:not(.badge) {
  color: rgba(255, 255, 255, 0.66);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-bottom: 28px;
  padding: 14px 16px;
  border-radius: 6px;
  background: var(--gaia-neutral);
  color: var(--gaia-black);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.badge img {
  width: 10px;
  height: 10px;
}

.badge--on-dark {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gaia-white);
}

.badge--on-dark img {
  filter: invert(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 434px;
  gap: 10px;
  padding-block: 70px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: var(--gaia-black);
  content: "";
  transform: translateX(-50%);
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  background: url("../img/gaia/pattern-13.svg") center / 980px auto repeat;
  animation: hero-pattern-drift 28s linear infinite;
  content: "";
  filter: brightness(0) invert(1);
  opacity: 0.08;
  transform: translateX(-50%);
  pointer-events: none;
}

@keyframes hero-pattern-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 980px 562px;
  }
}

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

.hero__copy,
.hero__panel {
  border-radius: var(--radius-hero);
}

.hero__panel {
  border-radius: 16px;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 68px) clamp(30px, 4.2vw, 50px);
  background: transparent;
  color: var(--gaia-white);
}

.hero__copy h1 {
  max-width: 500px;
}

.hero__copy h1 span {
  color: rgba(255, 255, 255, 0.72);
}

.hero__copy h1 [data-hero-typewriter].is-typing::after {
  display: inline-block;
  width: 0.08em;
  height: 0.86em;
  margin-left: 0.06em;
  background: currentColor;
  content: "";
  transform: translateY(0.08em);
  animation: cursor-blink 820ms steps(1) infinite;
}

.hero__copy .badge {
  background: rgba(255, 255, 255, 0.1);
  color: var(--gaia-white);
}

.hero__copy .badge img {
  filter: invert(1);
}

.hero__intro {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 29px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 21px;
}

.hero__intro p {
  margin: 0;
}

.hero__copy blockquote {
  margin: 28px 0 0;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--gaia-white);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 68px) clamp(30px, 4.2vw, 50px);
  background: var(--gaia-mesh-bg);
  color: var(--gaia-white);
}

.hero__panel h2 {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 2.7vw, var(--type-hero-title));
  line-height: var(--title-line-height);
}

#sintomas-title {
  font-size: clamp(2rem, 3.7vw, var(--type-feature-title));
  line-height: 1.06;
}

#causa-title,
#metodologia-title,
#conteudos-title,
#resultados-title,
#diagnostico-title {
  font-size: clamp(2rem, 3.7vw, var(--type-feature-title));
  line-height: 1.05;
}

.hero__panel > p:not(.badge) {
  max-width: 470px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

#sintomas .section-heading > p:last-child,
#metodologia .section-heading > p:last-child,
#conteudos .section-heading > p:last-child,
.diagnostic-copy > p:not(.badge),
.prose p,
.beliefs-grid p {
  font-size: 14px;
}

.signal-list,
.diagnostic-benefits {
  display: grid;
  gap: 0;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.signal-list li,
.diagnostic-benefits li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
}

.signal-list li::before,
.diagnostic-benefits li::before {
  position: absolute;
  top: 14px;
  left: 0;
  width: 14px;
  height: 14px;
  background: url("../img/gaia/icon-check.svg") center / contain no-repeat;
  content: "";
  filter: grayscale(1) brightness(0) invert(1);
}

.signal-list li::before {
  background-image: url("../img/gaia/icon-xmark.svg");
  filter: grayscale(1) brightness(0) invert(1);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  box-shadow: 0 0 0 rgba(10, 10, 10, 0);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button::before {
  position: absolute;
  z-index: 2;
  inset: -2px;
  padding: 1px;
  border-radius: calc(var(--radius-card) + 2px);
  animation: button-outline-flow 3.8s linear infinite paused;
  background: var(--gradient-active-24);
  background-size: 260% 100%;
  content: "";
  filter: drop-shadow(0 0 4px rgba(180, 120, 247, 0.2));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.button::after {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  margin-left: 9px;
  background: url("../img/gaia/icon-arrow-right.svg") center / contain no-repeat;
  content: "";
  filter: grayscale(1) brightness(0);
  transition: filter 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button[data-variant="primary"] {
  border-color: var(--gaia-active-purple);
  background: var(--gaia-active-purple);
  color: var(--gaia-white);
}

.button[data-variant="primary"]::after {
  filter: grayscale(1) brightness(0) invert(1);
}

.button[data-variant="secondary"] {
  border-color: var(--gaia-gray);
  background: var(--gaia-white);
  color: var(--gaia-black);
}

.button[data-variant="on-dark"] {
  border-color: var(--gaia-white);
  background: var(--gaia-white);
  color: var(--gaia-black);
}

.button:hover {
  border-color: transparent;
  background: transparent;
  transform: translateY(-3px) scale(1.015);
  box-shadow: none;
}

.button:hover::before,
.button:focus-visible::before {
  animation-play-state: running;
  opacity: 0.78;
}

.button:hover::after {
  transform: translateX(4px);
}

.button[data-variant="primary"]:hover {
  border-color: transparent;
  background: transparent;
  color: var(--gaia-black);
  box-shadow: none;
}

.button[data-variant="primary"]:hover::after {
  filter: grayscale(1) brightness(0);
}

.button[data-variant="secondary"]:hover {
  border-color: transparent;
  background: transparent;
  color: var(--gaia-black);
  box-shadow: none;
}

.button[data-variant="secondary"]:hover::after {
  filter: grayscale(1) brightness(0);
}

.button[data-variant="on-dark"]:hover {
  border-color: transparent;
  background: transparent;
  color: var(--gaia-white);
  box-shadow: none;
}

.button[data-variant="on-dark"]:hover::after {
  filter: grayscale(1) brightness(0) invert(1);
}

.section--dark .button[data-variant="primary"]:hover,
.section--dark .button[data-variant="secondary"]:hover,
.media-frame .button[data-variant="primary"]:hover,
.media-frame .button[data-variant="secondary"]:hover {
  border-color: transparent;
  background: transparent;
  color: var(--gaia-white);
  box-shadow: none;
}

.section--dark .button[data-variant="primary"]:hover::after,
.section--dark .button[data-variant="secondary"]:hover::after,
.media-frame .button[data-variant="primary"]:hover::after,
.media-frame .button[data-variant="secondary"]:hover::after {
  filter: grayscale(1) brightness(0) invert(1);
}

.button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.section--dark .button:focus-visible {
  outline-color: rgba(255, 255, 255, 0.58);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.button:disabled::before,
.button[aria-disabled="true"]::before {
  animation: none;
  opacity: 0;
}

@keyframes button-outline-flow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body {
    animation: page-enter 560ms ease both;
  }
}

@media (prefers-reduced-motion: reduce) {
  body {
    animation: none !important;
  }
}

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.form-submit[data-loading="true"]::after {
  display: none;
}

.cards-grid {
  display: grid;
  gap: 12px;
}

.cards-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid transparent;
  border-radius: var(--radius-card);
  background: var(--gaia-neutral);
}

.symptom-card {
  position: relative;
  isolation: isolate;
  min-height: 190px;
  padding: 24px;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.symptom-card::before,
.result-card::before {
  position: absolute;
  z-index: 2;
  inset: -2px;
  padding: 1px;
  border-radius: calc(var(--radius-card) + 2px);
  animation: button-outline-flow 3.8s linear infinite paused;
  background: var(--gradient-active-24);
  background-size: 260% 100%;
  content: "";
  filter: drop-shadow(0 0 4px rgba(180, 120, 247, 0.2));
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.symptom-card:hover,
.symptom-card:focus-within {
  border-color: transparent;
  background: transparent;
  transform: translateY(-2px);
}

.symptom-card:hover::before,
.symptom-card:focus-within::before,
.result-card:hover::before,
.result-card:focus-within::before {
  animation-play-state: running;
  opacity: 0.78;
}

.process-card > span {
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.symptom-card__icon {
  width: 24px;
  height: 24px;
  filter: grayscale(1) brightness(0);
}

.symptom-card p {
  max-width: 270px;
  margin: 58px 0 0;
  font-size: 1rem;
  line-height: 1.35;
}

.section-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--gaia-gray);
}

.section-callout p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.split-layout,
.media-section,
.diagnostic-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
}

.prose {
  display: grid;
  gap: 18px;
  padding-top: 46px;
}

.prose p {
  margin: 0;
}

.prose--light {
  color: var(--gaia-white);
}

.cause-layout,
.cause-heading {
  display: flex;
  justify-content: center;
  text-align: center;
}

.cause-heading {
  max-width: none;
  margin-bottom: 0;
}

.cause-heading .badge {
  padding: 14px 16px;
  font-size: 9px;
  margin-bottom: 0;
}

.losses-typewriter {
  display: grid;
  min-height: 112px;
  place-items: center;
  margin-top: 38px;
  text-align: center;
}

.losses-typewriter p {
  min-height: 1.2em;
  margin: 0;
  color: var(--gaia-white);
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.losses-typewriter p::after {
  display: inline-block;
  width: 0.08em;
  height: 0.86em;
  margin-left: 0.08em;
  background: currentColor;
  content: "";
  transform: translateY(0.08em);
  animation: cursor-blink 820ms steps(1) infinite;
}

.cause-copy {
  display: flex;
  justify-content: center;
  margin-top: clamp(20px, 3vw, 36px);
}

.cause-copy .prose {
  max-width: 720px;
  padding-top: 0;
  text-align: center;
}

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

.section-action {
  margin-top: 42px;
}

.section-action--center {
  text-align: center;
}

.media-section {
  --media-card-padding: clamp(26px, 4vw, 48px);
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 12px;
}

.media-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: var(--media-card-padding);
  overflow: hidden;
  border-radius: var(--radius-media);
  background: transparent;
  color: var(--gaia-white);
}

.media-frame::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("../img/gaia/pattern-13.svg") center / cover no-repeat;
  content: "";
  opacity: 0;
  pointer-events: none;
}

.media-frame > * {
  position: relative;
  z-index: 1;
}

.media-frame__topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.media-frame__statement {
  max-width: 520px;
  margin: clamp(50px, 8vh, 90px) 0 24px;
  font-size: clamp(2.2rem, 4vw, 50px);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 1.03;
}

.media-frame__description {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.media-frame .actions {
  margin-top: auto;
  padding-top: 34px;
}

.media-frame .button[data-variant="secondary"] {
  border-color: rgba(255, 255, 255, 0.52);
  background: transparent;
  color: var(--gaia-white);
}

.media-frame .button[data-variant="secondary"]::after {
  filter: grayscale(1) brightness(0) invert(1);
}

.media-frame .button[data-variant="secondary"]:hover {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.media-frame .button:focus-visible {
  outline-color: rgba(255, 255, 255, 0.58);
}

.media-frame .actions .button {
  height: 46px;
  min-height: 46px;
}

.media-video-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--gaia-neutral);
}

.media-video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

@media (min-width: 769px) {
  .media-frame {
    display: grid;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto;
    column-gap: 48px;
  }

  .media-frame__topline {
    grid-column: 1 / -1;
  }

  .media-frame__statement {
    grid-row: 2 / 4;
  }

  .media-frame__description {
    grid-column: 2;
    margin-top: clamp(50px, 8vh, 90px);
  }

  .media-frame .actions {
    grid-column: 2;
    margin-top: 0;
    padding-top: 0;
  }
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-card {
  min-height: 280px;
  padding: 26px 26px 20px;
  background: var(--gaia-white);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-card:hover,
.process-card:focus-within {
  transform: scale(1.025);
}

.process-card h3 {
  margin: 36px 0 16px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.process-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.manifesto-strip {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 42px;
  margin-top: 12px;
  padding: clamp(32px, 2.6vw, 40px) clamp(32px, 5vw, 60px);
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--gaia-mesh-bg);
  color: var(--gaia-white);
}

.manifesto-strip::before {
  position: absolute;
  inset: 0;
  animation: manifesto-pattern-loop 24s linear infinite;
  background: url("../img/gaia/pattern-13.svg") 0 0 / 760px auto repeat;
  content: "";
  opacity: 0.24;
  pointer-events: none;
}

.manifesto-strip p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.manifesto-strip p:last-child {
  color: var(--gaia-white);
  font-size: clamp(1.15rem, 2vw, 30px);
}

.manifesto-strip p:first-child {
  font-size: clamp(1.15rem, 2vw, 30px);
  font-weight: 500;
}

@keyframes manifesto-pattern-loop {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 760px 436px;
  }
}

#causa .manifesto-strip h2 {
  position: relative;
  z-index: 1;
  max-width: none;
  margin: 0;
  color: var(--gaia-white);
  font-size: clamp(1.15rem, 2vw, 30px);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

#causa .manifesto-strip h2 strong {
  font-weight: 300;
}

#causa .manifesto-strip p {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  letter-spacing: normal;
}

#causa .manifesto-strip .button {
  white-space: nowrap;
}

#causa .manifesto-strip {
  background: rgba(255, 255, 255, 0.1);
}

#causa .manifesto-strip::before {
  opacity: 0;
}

@media (min-width: 769px) {
  #causa .manifesto-strip {
    grid-template-columns: 1.3fr 0.7fr;
  }
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  margin-top: 70px;
}

.beliefs-grid article {
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  border-top: 1px solid var(--gaia-gray);
}

.beliefs-grid h3 {
  max-width: 480px;
  margin-bottom: 20px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  letter-spacing: -0.045em;
}

.beliefs-grid p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
}

.belief-cta {
  align-self: flex-start;
  max-width: 100%;
  margin-top: 28px;
}

.content-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  color: var(--gaia-black);
  text-decoration: none;
  isolation: isolate;
  transition: border-color 240ms ease, color 240ms ease;
}

.content-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(10, 10, 10, 0.72);
  content: "";
  opacity: 0;
  transition: opacity 320ms ease;
}

.content-card__background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 320ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.content-card__external {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 28px;
  height: 28px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0;
  transform: translate(-8px, 8px) rotate(-45deg);
  transition: opacity 240ms ease, transform 320ms ease;
}

.content-card:hover,
.content-card:focus-visible {
  border-color: transparent;
  background: var(--gaia-black);
  color: var(--gaia-white);
}

.content-card:hover::after,
.content-card:focus-visible::after,
.content-card:hover .content-card__external,
.content-card:focus-visible .content-card__external {
  opacity: 1;
}

.content-card:hover .content-card__background,
.content-card:focus-visible .content-card__background {
  opacity: 0.2;
  transform: scale(1);
  animation: card-pattern-drift 4s linear infinite alternate;
}

.content-card:hover .content-card__external,
.content-card:focus-visible .content-card__external {
  transform: translate(0, 0) rotate(-45deg);
}

.content-card__meta {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-card h3 {
  position: relative;
  z-index: 1;
  max-width: 330px;
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.045em;
}

.content-card:hover .content-card__meta,
.content-card:focus-visible .content-card__meta {
  color: rgba(255, 255, 255, 0.72);
}

@keyframes card-pattern-drift {
  from {
    transform: scale(1.05) translate3d(-2%, -2%, 0);
  }

  to {
    transform: scale(1.12) translate3d(2%, 2%, 0);
  }
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 20px;
  margin-top: 44px;
}

.result-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.025);
  color: var(--gaia-white);
  transition: border-color 220ms ease, background 220ms ease, transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.result-card:hover,
.result-card:focus-within {
  border-color: transparent;
  background: transparent;
  transform: translateY(-2px);
}

.result-card__rating {
  display: inline-flex;
  color: var(--gaia-white);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.result-card blockquote {
  flex: 0 0 auto;
  margin: 28px 0;
  color: var(--gaia-white);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.result-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.result-card__footer h3 {
  margin: 0;
  color: var(--gaia-white);
  font-size: 0.9rem;
  font-weight: 500;
}

.result-card__footer a {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.result-card__footer a:hover,
.result-card__footer a:focus-visible {
  color: var(--gaia-white);
}

.article-page {
  background: var(--gaia-neutral);
  color: var(--gaia-black);
}

.article-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--container), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: 24px 0;
}

.article-nav__logo img {
  width: 65px;
  height: auto;
}

.article-nav__back {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
}

.article-shell {
  width: min(var(--container), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px) 0 96px;
}

.article-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: var(--gaia-mesh-bg);
  color: var(--gaia-white);
  padding: clamp(48px, 8vw, 96px);
}

.article-hero::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  opacity: 0.24;
  background-image: url("../img/gaia/pattern-13.svg");
  background-size: 560px auto;
  background-position: 0 0;
  animation: article-pattern-drift 18s linear infinite;
  pointer-events: none;
}

.article-hero > * {
  position: relative;
  z-index: 1;
}

@keyframes article-pattern-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 560px 322px;
  }
}

.article-hero h1 {
  max-width: 820px;
  margin: 0;
  color: var(--gaia-white);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.article-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.article-body {
  display: grid;
  grid-template-columns: minmax(0, 820px) 280px;
  gap: 96px;
  align-items: start;
  padding: 56px clamp(48px, 8vw, 96px) 0;
}

.article-content {
  display: grid;
  gap: 22px;
  max-width: 680px;
}

.article-content h2 {
  margin: 34px 0 0;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.article-content p,
.article-content li {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

.article-content strong {
  color: var(--gaia-black);
  font-weight: 600;
}

.article-content ul,
.article-content ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.article-side {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius-card);
  background: var(--gaia-white);
}

.article-side p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.article-side .button {
  width: 100%;
}

.admin-page {
  min-height: 100vh;
  background: var(--gaia-neutral);
  color: var(--gaia-black);
}

.admin-shell {
  width: min(var(--container), calc(100% - (var(--page-pad) * 2)));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) 0 88px;
}

.admin-login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: 18px;
  align-items: stretch;
  min-height: min(620px, calc(100vh - 144px));
  margin-bottom: 28px;
}

.admin-page[data-admin-state="editing"] .admin-login-layout {
  display: none;
}

.admin-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 24px;
  padding: clamp(36px, 6vw, 72px);
  border-radius: var(--radius-media);
  background: var(--gaia-mesh-bg);
  color: var(--gaia-white);
}

.admin-login-layout .admin-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  margin-bottom: 0;
}

.admin-page[data-admin-state="editing"] .admin-hero {
  min-height: 0;
  margin-bottom: 24px;
}

.admin-hero::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background-image: url("../img/gaia/pattern-13.svg");
  background-size: 560px auto;
  opacity: 0.24;
  animation: article-pattern-drift 18s linear infinite;
}

.admin-hero h1,
.admin-editor h2,
.admin-login h2 {
  margin: 0;
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.admin-hero h1 {
  max-width: 760px;
  color: var(--gaia-white);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.admin-hero > p:not(.badge) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.admin-card,
.admin-card-mini {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-card);
  background: var(--gaia-white);
}

.admin-login {
  display: grid;
  gap: 18px;
  align-content: center;
  max-width: none;
  padding: clamp(28px, 4vw, 52px);
}

.admin-login form {
  display: grid;
  gap: 16px;
}

.admin-login h2,
.admin-editor h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.admin-login p,
.admin-status {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.admin-editor__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-mode-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  background: var(--gaia-white);
}

.admin-mode-tabs button {
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-secondary);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.admin-mode-tabs button[data-active="true"] {
  background: var(--gaia-active-purple);
  color: var(--gaia-white);
}

.admin-panel[hidden] {
  display: none;
}

.admin-editor__layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.admin-tabs {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 10px;
}

.admin-tabs button {
  display: grid;
  gap: 12px;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-card);
  background: var(--gaia-white);
  color: var(--gaia-black);
  font: inherit;
  font-size: 15px;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.admin-tabs button span {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
}

.admin-tabs button[data-active="true"] {
  border-color: var(--gaia-active-purple);
  background: var(--gaia-active-purple);
  color: var(--gaia-white);
}

.admin-tabs button[data-active="true"] span {
  color: rgba(255, 255, 255, 0.72);
}

.admin-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.admin-field {
  display: grid;
  gap: 8px;
}

.admin-field span {
  color: var(--gaia-black);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.admin-field small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 10, 0.18);
  border-radius: 10px;
  background: var(--gaia-white);
  color: var(--gaia-black);
  font: inherit;
  font-size: 14px;
  line-height: 1.5;
  outline: 0;
}

.admin-field input {
  min-height: 48px;
  padding: 0 14px;
}

.admin-field textarea {
  min-height: 110px;
  padding: 14px;
  resize: vertical;
}

.admin-field--visual-editor {
  gap: 10px;
}

.visual-editor {
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.14);
  border-radius: 14px;
  background: var(--gaia-white);
}

.visual-editor:focus-within {
  border-color: var(--gaia-active-purple);
}

.visual-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  background: #f4f4f4;
}

.visual-editor__toolbar button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 999px;
  background: var(--gaia-white);
  color: var(--gaia-black);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.visual-editor__toolbar button:hover {
  border-color: var(--gaia-active-purple);
  color: var(--gaia-active-purple);
}

.visual-editor__surface {
  min-height: 460px;
  max-height: 68vh;
  overflow: auto;
  padding: 22px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
  outline: 0;
}

.visual-editor__surface h2 {
  margin: 32px 0 12px;
  color: var(--gaia-black);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.visual-editor__surface h2:first-child,
.visual-editor__surface p:first-child,
.visual-editor__surface ul:first-child,
.visual-editor__surface ol:first-child {
  margin-top: 0;
}

.visual-editor__surface p,
.visual-editor__surface ul,
.visual-editor__surface ol {
  margin: 0 0 16px;
}

.visual-editor__surface strong {
  color: var(--gaia-black);
  font-weight: 700;
}

.visual-editor__surface ul,
.visual-editor__surface ol {
  padding-left: 22px;
}

.admin-field input:focus,
.admin-field textarea:focus {
  border-color: var(--gaia-active-purple);
}

.admin-form__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 16px;
}

.admin-card-mini {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.admin-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.admin-status[data-state="success"] {
  color: #087f23;
}

.admin-status[data-state="error"] {
  color: #b00020;
}

.diagnostic-layout {
  align-items: start;
}

.diagnostic-copy {
  position: sticky;
  top: 28px;
}

.diagnostic-copy h2 {
  max-width: 560px;
}

.diagnostic-benefits {
  margin-top: 34px;
}

.diagnostic-benefits li {
  border-top-color: var(--gaia-gray);
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-card);
  background: var(--gaia-white);
}

.field {
  display: grid;
  min-width: 0;
  gap: 7px;
  margin: 0;
  padding: 0;
  border: 0;
}

.field label,
.field legend {
  padding: 0;
  color: var(--gaia-black);
  font-size: 0.78rem;
  font-weight: 600;
}

.field label span,
.field legend span {
  color: var(--text-secondary);
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--gaia-gray);
  border-radius: var(--radius-card);
  background: var(--gaia-white);
  color: var(--gaia-black);
  font-size: 0.9rem;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #777a7e;
  opacity: 1;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--gaia-black);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gaia-gray);
  box-shadow: none;
  outline: 0;
}

.field input:disabled,
.field select:disabled,
.field textarea:disabled {
  cursor: not-allowed;
  border-color: var(--gaia-gray);
  background: var(--gaia-neutral);
  opacity: 0.62;
}

.field[data-state="error"] input,
.field[data-state="error"] select,
.field[data-state="error"] textarea,
.field[data-state="error"] .radio-option {
  border-color: var(--error);
}

.field-error {
  min-height: 0;
  color: var(--error);
  font-size: 0.72rem;
}

.field-error:empty {
  display: none;
}

.field--options {
  gap: 6px;
}

.field--options legend {
  margin-bottom: 1px;
}

.radio-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  min-height: 0;
  gap: 10px;
  padding: 2px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease;
}

.radio-option:hover {
  border-color: transparent;
  background: transparent;
}

.radio-option:has(input:checked) {
  border-color: transparent;
  background: transparent;
}

.radio-option input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
  accent-color: var(--gaia-black);
}

.radio-option:has(input:focus),
.radio-option:has(input:focus-visible),
.radio-option:has(input:checked),
.radio-option input:focus,
.radio-option input:focus-visible,
.radio-option input:checked {
  border: 0;
  outline: 0;
  box-shadow: none;
}

.radio-option span {
  display: block;
  min-width: 0;
  color: var(--gaia-black);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
}

.form-submit {
  width: 100%;
  min-height: 52px;
}

.loading-mark {
  display: none;
  width: 15px;
  height: 15px;
  margin-left: 9px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 650ms linear infinite;
}

.form-submit[data-loading="true"] .loading-mark {
  display: inline-block;
}

.privacy-note {
  margin: -4px 0 0;
  color: var(--text-secondary);
  font-size: 0.7rem;
  text-align: center;
}

.form-status {
  display: none;
  margin: 0;
  padding: 13px;
  border-radius: var(--radius-card);
  font-size: 0.82rem;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-state="error"] {
  background: #fff2f0;
  color: var(--error);
}

.form-status[data-state="success"] {
  background: #eef8f1;
  color: var(--success);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding-block: 28px 22px;
  border-top: 1px solid var(--gaia-gray);
  background: var(--gaia-white);
  color: var(--gaia-black);
}

.footer-shell {
  display: grid;
  gap: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gaia-gray);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: 65px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-nav,
.footer-social,
.footer-contact {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 30px);
}

.footer-nav {
  justify-content: flex-end;
}

.footer-nav a,
.footer-social a,
.footer-contact a,
.footer-contact span {
  width: fit-content;
  color: var(--text-secondary);
  font-size: 0.76rem;
  font-weight: 500;
}

.footer-contact {
  flex-wrap: wrap;
  font-style: normal;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.footer-contact img {
  width: 15px;
  height: 15px;
  filter: grayscale(1) brightness(0);
  opacity: 0.68;
}

.site-footer a:hover {
  color: var(--gaia-black);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-logo:hover,
.footer-cta:hover {
  text-decoration: none;
}

.site-footer .footer-cta:hover,
.site-footer .footer-cta:focus-visible {
  text-decoration: none;
}

body:not(.article-page) .site-footer {
  border-top-color: rgba(255, 255, 255, 0.14);
  background: var(--gaia-black);
  color: var(--gaia-white);
}

body:not(.article-page) .site-footer .footer-top {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

body:not(.article-page) .site-footer .footer-logo img,
body:not(.article-page) .site-footer .footer-contact img {
  filter: invert(1);
}

body:not(.article-page) .site-footer .footer-nav a,
body:not(.article-page) .site-footer .footer-social a,
body:not(.article-page) .site-footer .footer-contact a,
body:not(.article-page) .site-footer .footer-contact span,
body:not(.article-page) .site-footer .footer-bottomline,
body:not(.article-page) .site-footer .footer-mantra {
  color: rgba(255, 255, 255, 0.72);
}

body:not(.article-page) .site-footer a:hover {
  color: var(--gaia-white);
}

.footer-lower {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 22px;
}

.footer-social {
  justify-content: flex-end;
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta p {
  margin: 0;
  color: #777a7e;
  font-size: 0.61rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.sticky-cta {
  position: fixed;
  z-index: 40;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom));
  left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), 760px);
  gap: 18px;
  margin-inline: auto;
  padding: 12px 12px 12px 20px;
  transform: translateY(calc(100% + 48px));
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-floating);
  opacity: 0;
  pointer-events: none;
  transition: transform 220ms ease, opacity 220ms ease;
  backdrop-filter: blur(12px);
}

.sticky-cta[data-visible="true"] {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 500;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1024px) {
  :root {
    --section-space: 84px;
    --page-pad: 48px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .hero__panel {
    min-height: 520px;
  }

  .split-layout,
  .media-section,
  .diagnostic-layout {
    gap: 48px;
  }

  .media-section {
    gap: 12px;
  }

  .cards-grid--three,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --section-space: 64px;
    --page-pad: 20px;
  }

  html {
    scroll-padding-top: 12px;
  }

  h1 {
    font-size: 32px;
    letter-spacing: -0.055em;
    line-height: var(--title-line-height);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    gap: 8px;
    padding-block: 20px 64px;
  }

  #causa {
    padding-block: 52px 0;
  }

  #causa .split-layout {
    gap: 24px;
  }

  #causa .section-heading {
    margin-bottom: 20px;
  }

  #causa .prose {
    gap: 16px;
  }

  #causa .losses-typewriter {
    margin-top: 28px;
  }

  .cause-copy {
    margin-top: 28px;
  }

  .hero__copy,
  .hero__panel {
    min-height: auto;
    padding: 32px 24px;
  }

  .badge {
    margin-bottom: 22px;
  }

  .article-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-hero {
    padding: 40px 24px;
    border-radius: var(--radius-card);
  }

  .article-hero h1 {
    font-size: 38px;
  }

  .article-lead {
    font-size: 15px;
  }

  .article-body {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 24px 0;
  }

  .article-side {
    position: static;
    order: -1;
  }

  .admin-hero {
    padding: 40px 24px;
    border-radius: var(--radius-card);
  }

  .admin-login-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .admin-editor__top,
  .admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-editor__layout,
  .admin-form__split {
    grid-template-columns: 1fr;
  }

  .admin-tabs {
    position: static;
    grid-template-columns: 1fr;
  }

  .admin-tabs button {
    min-height: 0;
  }

  .actions,
  .section-callout {
    align-items: stretch;
    flex-direction: column;
  }

  .actions .button,
  .section-callout .button,
  .section-action .button,
  .hero__panel > .button {
    width: 100%;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .cards-grid--three,
  .process-grid,
  .split-layout,
  .media-section,
  .diagnostic-layout,
  .manifesto-strip,
  .beliefs-grid {
    grid-template-columns: 1fr;
  }

  .process-grid > :last-child {
    grid-column: auto;
  }

  .symptom-card {
    min-height: 160px;
  }

  .symptom-card p {
    margin-top: 42px;
  }

  .section-callout {
    align-items: flex-start;
  }

  .section-callout .button {
    margin-top: 6px;
  }

  .prose {
    padding-top: 0;
  }

  .losses-typewriter {
    min-height: 110px;
  }

  .losses-typewriter p {
    font-size: clamp(2rem, 12vw, 3.25rem);
  }

  .media-frame {
    min-height: 460px;
  }

  .media-video-frame {
    min-height: 230px;
  }

  .process-card,
  .content-card {
    min-height: 260px;
  }

  .manifesto-strip,
  .beliefs-grid {
    gap: 32px;
  }

  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .diagnostic-copy {
    position: static;
  }

  .lead-form {
    padding-inline: 20px;
  }

  .site-footer {
    padding-block: 24px 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 22px;
  }

  .footer-logo {
    width: 65px;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 22px;
  }

  .footer-cta {
    width: 100%;
  }

  .footer-lower,
  .footer-meta,
  .footer-contact {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-lower {
    gap: 20px;
  }

  .footer-contact {
    gap: 10px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-meta {
    gap: 8px;
  }

  .sticky-cta {
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 10px;
    width: calc(100% - 20px);
    padding: 10px;
  }

  .sticky-cta p {
    display: none;
  }

  .sticky-cta .button {
    width: 100%;
    min-height: 48px;
  }
}

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

  .result-card {
    min-height: 0;
  }

  .result-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 360px) {
  .hero__copy,
  .hero__panel,
  .symptom-card,
  .process-card,
  .content-card {
    padding-inline: 20px;
  }

  .media-frame {
    min-height: 400px;
  }

  .media-video-frame {
    min-height: 200px;
  }

  .media-frame__topline {
    font-size: 0.58rem;
  }
}

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

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

  .button::before {
    animation: none;
    background-position: 50% 50%;
  }

  .hero::before,
  .hero::after {
    animation: none;
  }

  .manifesto-strip::before {
    animation: none;
    transform: none;
  }
}

/* Brand marquee: auto-scrolling identity carousel + lightbox sequence. */
.brand-marquee {
  margin: 28px 0 0;
}

.brand-marquee__label {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-marquee__viewport {
  /* the lifted card's shadow has to fit inside the scroll box or it gets cut */
  padding: 38px 0 48px;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  cursor: grab;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent);
  scrollbar-width: none;
}

.brand-marquee__viewport::-webkit-scrollbar {
  display: none;
}

.brand-marquee__viewport.is-dragging {
  cursor: grabbing;
}

.brand-marquee__viewport.is-dragging .brand-card {
  pointer-events: none;
}

.brand-marquee__strip {
  display: flex;
  user-select: none;
  gap: 20px;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-marquee__strip > li {
  flex: 0 0 auto;
}

.brand-card {
  display: block;
  width: 248px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--gaia-neutral);
  box-shadow: 0 6px 18px rgba(10, 10, 10, 0.08);
  cursor: pointer;
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms ease;
}

.brand-card img {
  display: block;
  -webkit-user-drag: none;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.brand-card:hover,
.brand-card:focus-visible {
  box-shadow: 0 18px 34px rgba(10, 10, 10, 0.22);
  outline: none;
  transform: translateY(-14px) scale(1.03);
}

.brand-card:focus-visible {
  outline: 2px solid var(--gaia-active-purple);
  outline-offset: 3px;
}

.brand-lightbox {
  width: min(1400px, 92vw);
  max-width: none;
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-card);
  background: var(--gaia-white);
  box-shadow: var(--shadow-floating);
  color: var(--gaia-black);
}

.brand-lightbox::backdrop {
  backdrop-filter: blur(6px);
  background: rgba(10, 10, 10, 0.58);
}

.brand-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gaia-neutral);
}

.brand-lightbox__title {
  margin: 0;
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--gaia-neutral);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-lightbox__close {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--gaia-neutral);
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.brand-lightbox__close:hover {
  background: var(--gaia-active-purple);
  transform: scale(1.06);
}

.brand-lightbox__close:hover img {
  filter: invert(1);
}

.brand-lightbox__close:focus-visible {
  outline: 2px solid var(--gaia-active-purple);
  outline-offset: 3px;
}

.brand-lightbox__stage {
  position: relative;
}

.brand-lightbox__track {
  display: flex;
  gap: 16px;
  padding: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.brand-lightbox__track::-webkit-scrollbar {
  display: none;
}

.brand-lightbox__nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--gaia-white);
  box-shadow: var(--shadow-floating);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 200ms ease, opacity 200ms ease;
}

.brand-lightbox__nav[data-brand-prev] {
  left: 16px;
  rotate: 180deg;
}

.brand-lightbox__nav[data-brand-next] {
  right: 16px;
}

.brand-lightbox__nav:hover:not(:disabled) {
  background: var(--gaia-active-purple);
}

.brand-lightbox__nav:hover:not(:disabled) img {
  filter: invert(1);
}

.brand-lightbox__nav:focus-visible {
  outline: 2px solid var(--gaia-active-purple);
  outline-offset: 3px;
}

.brand-lightbox__nav:disabled {
  cursor: default;
  opacity: 0;
  pointer-events: none;
}

.brand-lightbox__track:focus-visible {
  outline: 2px solid var(--gaia-active-purple);
  outline-offset: -4px;
}

.brand-lightbox__track img {
  flex: 0 0 auto;
  width: auto;
  height: min(70vh, 720px);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  scroll-snap-align: center;
}

@media (max-width: 720px) {
  .brand-card {
    width: 200px;
  }

  .brand-lightbox {
    width: 100vw;
    max-height: 100dvh;
    height: 100dvh;
    border-radius: 0;
  }

  .brand-lightbox__bar {
    padding: 12px 14px;
  }

  .brand-lightbox__title {
    overflow: hidden;
    padding: 10px 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-lightbox__stage {
    display: flex;
    align-items: center;
    /* bar height */
    height: calc(100dvh - 63px);
  }

  .brand-lightbox__track {
    gap: 12px;
    width: 100%;
    padding: 12px;
  }

  /* one image per swipe instead of a sliver of the next one */
  .brand-lightbox__track img {
    flex: 0 0 calc(100% - 24px);
    width: calc(100% - 24px);
    height: auto;
    max-height: calc(100dvh - 111px);
    object-fit: contain;
  }

  .brand-lightbox__nav {
    width: 38px;
    height: 38px;
  }

  .brand-lightbox__nav[data-brand-prev] {
    left: 8px;
  }

  .brand-lightbox__nav[data-brand-next] {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-card {
    transition: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .brand-lightbox[open] {
    animation: brand-lightbox-enter 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .brand-lightbox[open]::backdrop {
    animation: brand-backdrop-enter 420ms ease both;
  }
}

@keyframes brand-lightbox-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes brand-backdrop-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.scroll-blur-edge {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
  height: 120px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  -webkit-mask-image: linear-gradient(to top, #000 40%, transparent 100%);
  mask-image: linear-gradient(to top, #000 40%, transparent 100%);
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms;
}

.scroll-blur-edge.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.page-end-sentinel {
  height: 1px;
  margin-top: -1px;
}

/* Layered so each step blurs the step below it. A single masked layer blends a
   sharp copy with a blurred one at partial alpha, which reads as a ghost/shadow
   on text. */
.scroll-blur-edge::before,
.scroll-blur-edge::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-mask-image: linear-gradient(to top, #000 40%, transparent 100%);
  mask-image: linear-gradient(to top, #000 40%, transparent 100%);
  content: "";
}

.scroll-blur-edge::before {
  height: 76px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.scroll-blur-edge::after {
  height: 38px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 720px) {
  .scroll-blur-edge {
    height: 88px;
  }

  .scroll-blur-edge::before {
    height: 56px;
  }

  .scroll-blur-edge::after {
    height: 28px;
  }
}
