:root {
  --ink-950: #030915;
  --ink-900: #07162f;
  --ink-800: #10386f;
  --blue-900: #18438f;
  --blue-700: #2458aa;
  --blue-500: #2c67c0;
  --blue-300: #6d9df0;
  --gold-500: #f5cf1a;
  --gold-300: #ffea7c;
  --sand-100: #fff7ea;
  --mist-100: rgba(255, 255, 255, 0.86);
  --mist-200: rgba(255, 255, 255, 0.12);
  --danger: #ff6a47;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 90px rgba(3, 11, 18, 0.25);
  --panel-bevel:
    inset 1px 1px 0 rgba(255, 255, 255, 0.16),
    inset -1px -1px 0 rgba(2, 8, 17, 0.72),
    7px 7px 0 rgba(2, 8, 17, 0.28);
  --panel-bevel-soft:
    inset 1px 1px 0 rgba(255, 255, 255, 0.14),
    inset -1px -1px 0 rgba(2, 8, 17, 0.62),
    5px 5px 0 rgba(2, 8, 17, 0.22);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max-width: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--sand-100);
  background: linear-gradient(145deg, #020811 0%, #05162b 42%, #002b5c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(5, 16, 35, 0.8), rgba(5, 16, 35, 0.8)),
    radial-gradient(circle at 12% 0%, rgba(245, 207, 26, 0.14), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(44, 103, 192, 0.18), transparent 24rem),
    url("./fernando-jorge-rMaWin9-9Gk-unsplash.jpg") center / cover no-repeat;
  opacity: 0.92;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  background-position: center;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.82), transparent 94%);
}

a {
  color: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2.5rem), var(--max-width));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0 0.4rem;
  transition: transform 240ms ease, opacity 240ms ease;
}

.site-header.is-hidden {
  transform: translateY(-140%);
  opacity: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
  padding: 0.5rem 0.85rem 0.5rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(4, 14, 26, 0.5);
  backdrop-filter: blur(18px);
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 2.5rem;
  min-width: 2.5rem;
  aspect-ratio: 1;
  padding: 0;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 0;
  overflow: hidden;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1;
}

.brand-copy strong,
.site-nav a,
.eyebrow,
.signal-label,
.panel-ribbon,
.card-index,
.card-tag {
  font-family: "Bricolage Grotesque", sans-serif;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.brand-copy span {
  color: rgba(255, 247, 234, 0.68);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(4, 14, 26, 0.46);
  backdrop-filter: blur(18px);
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 180ms ease, opacity 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  cursor: pointer;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 207, 26, 0.32);
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 220ms ease, opacity 180ms ease, width 220ms ease, background-color 180ms ease;
}

.nav-toggle > span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle > span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.nav-toggle > span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.nav-toggle[aria-expanded="true"] > span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.2);
}

.nav-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hero,
.section,
.signal-strip,
.site-footer {
  position: relative;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.85fr);
  gap: 2rem;
  align-items: center;
  min-height: min(44rem, calc(100vh - 7rem));
  padding: 3rem 0 2rem;
}

.hero-copy,
.hero-panel,
.signal-strip article,
.intro-grid article,
.priority-card,
.spotlight,
.playbook-grid article,
.join-layout,
.source-list article {
  border: 2px solid rgba(245, 207, 26, 0.34);
  box-shadow: var(--panel-bevel);
  backdrop-filter: blur(18px);
}

.hero-copy,
.hero-panel,
.spotlight,
.join-layout {
  border-radius: var(--radius-lg);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 34rem;
  padding: clamp(2rem, 4vw, 4.25rem);
  border: 3px solid var(--gold-500);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    linear-gradient(140deg, rgba(245, 207, 26, 0.08), rgba(36, 88, 170, 0.22) 52%, rgba(2, 8, 17, 0.12));
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 184, 0.18),
    10px 10px 0 rgba(2, 8, 17, 0.24);
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 11rem;
  height: 0.45rem;
  background: linear-gradient(90deg, var(--gold-500), rgba(245, 207, 26, 0));
  pointer-events: none;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 8rem;
  height: 8rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(135deg, rgba(245, 207, 26, 0.18), rgba(44, 103, 192, 0.16)),
    repeating-linear-gradient(
      135deg,
      transparent 0,
      transparent 10px,
      rgba(255, 255, 255, 0.08) 10px,
      rgba(255, 255, 255, 0.08) 11px
    );
  transform: rotate(10deg);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.spotlight-copy h2,
.signal-strip h2 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 0.98;
}

.hero h1 {
  max-width: 11.6ch;
  font-size: clamp(3rem, 4.6vw, 5.4rem);
  letter-spacing: -0.05em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-text,
.hero-note,
.panel-card,
.signal-strip p,
.intro-grid p,
.priority-card p,
.spotlight p,
.playbook-grid p,
.join-copy p,
.signup-form,
.source-list p,
.site-footer {
  color: rgba(255, 247, 234, 0.82);
}

.hero-text {
  max-width: 52ch;
  margin: 1.4rem 0 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions,
.join-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.join-links {
  justify-content: center;
}

.leader-label {
  margin: 0 0 0.25rem;
  color: var(--gold-300);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #f5cf1a, #ddb80d);
  color: var(--ink-950);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-panel {
  padding: 1.3rem;
  background:
    linear-gradient(180deg, rgba(24, 67, 143, 0.72), rgba(7, 22, 47, 0.84)),
    linear-gradient(135deg, rgba(44, 103, 192, 0.1), rgba(245, 207, 26, 0.06));
  overflow: hidden;
}

.panel-ribbon {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(244, 197, 64, 0.14);
  color: var(--gold-300);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 247, 234, 0.68);
  font-size: 0.85rem;
}

.panel-stats {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.panel-stats article,
.panel-card,
.signal-strip article,
.intro-grid article,
.priority-card,
.playbook-grid article,
.source-list article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  border: 2px solid rgba(245, 207, 26, 0.34);
  box-shadow: var(--panel-bevel-soft);
}

.panel-stats strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.3rem;
  line-height: 1.05;
}

.panel-stats span {
  color: rgba(255, 247, 234, 0.76);
  font-size: 0.95rem;
  line-height: 1.45;
}

.panel-card {
  margin-top: 0.9rem;
}

.panel-card-label {
  margin: 0 0 0.35rem;
  color: var(--gold-300);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.leader-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: stretch;
}

.leader-panel,
.leader-profile {
  padding: 1.35rem;
  border: 2px solid rgba(245, 207, 26, 0.36);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(140deg, rgba(245, 207, 26, 0.06), rgba(36, 88, 170, 0.16));
  box-shadow: var(--panel-bevel);
  backdrop-filter: blur(18px);
}

.leader-panel {
  display: grid;
  gap: 1.2rem;
}

.leader-portrait-card {
  display: grid;
  grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.leader-portrait-frame {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0.65rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.leader-portrait-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(245, 207, 26, 0.08), rgba(44, 103, 192, 0.14)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 12px,
      transparent 12px,
      transparent 24px
    );
  text-align: center;
  padding: 1rem;
}

.leader-portrait-placeholder span {
  color: rgba(255, 247, 234, 0.78);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.leader-panel h2,
.leader-profile h2,
.leader-columns h3 {
  font-family: "Bricolage Grotesque", sans-serif;
}

.leader-panel h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.02;
}

.leader-role {
  margin: 0.45rem 0 0;
  color: rgba(255, 247, 234, 0.72);
  font-size: 0.95rem;
}

.leader-bio {
  margin: 0.9rem 0 0;
  color: rgba(255, 247, 234, 0.8);
  line-height: 1.62;
}

.leader-details {
  display: grid;
  gap: 0.85rem;
}

.leader-details article,
.leader-columns article {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(245, 207, 26, 0.32);
  box-shadow: var(--panel-bevel-soft);
}

.leader-media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.media-placeholder {
  min-height: 12rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 2px solid rgba(245, 207, 26, 0.34);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--panel-bevel-soft);
}

.media-placeholder span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--gold-300);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-placeholder p {
  margin: 0;
  color: rgba(255, 247, 234, 0.76);
  line-height: 1.6;
}

.leader-details span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold-300);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leader-details a {
  color: var(--sand-100);
  text-decoration: none;
  font-weight: 700;
}

.leader-profile h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.leader-summary {
  margin: 1rem 0 0;
  color: rgba(255, 247, 234, 0.82);
  line-height: 1.65;
}

.leader-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.leader-columns h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.leader-columns p {
  margin: 0;
  color: rgba(255, 247, 234, 0.76);
  line-height: 1.6;
}

.signal-strip article {
  border-radius: var(--radius-md);
}

.signal-label {
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 800;
}

.signal-strip h2 {
  margin-top: 0.6rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
}

.signal-strip p {
  margin: 0.6rem 0 0;
  line-height: 1.55;
}

.section {
  margin-top: 5rem;
}

.section-heading {
  max-width: 50rem;
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  font-size: clamp(2.3rem, 4vw, 4.1rem);
  letter-spacing: -0.04em;
}

.intro-grid,
.priority-grid,
.playbook-grid,
.source-list {
  display: grid;
  gap: 1rem;
}

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

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

.priority-card {
  min-height: 15rem;
}

.card-index,
.card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.72rem;
  font-weight: 800;
}

.card-index {
  background: rgba(115, 185, 244, 0.18);
  color: var(--blue-300);
}

.priority-card h3,
.intro-grid h3,
.playbook-grid h3,
.source-list h3 {
  margin: 0.9rem 0 0.6rem;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.4rem;
  line-height: 1.05;
}

.priority-card p,
.intro-grid p,
.playbook-grid p,
.source-list p,
.spotlight p,
.join-copy p {
  margin: 0;
  line-height: 1.65;
}

.card-tag {
  margin-top: 1rem;
  background: rgba(244, 197, 64, 0.16);
  color: var(--gold-300);
}

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at top right, rgba(245, 207, 26, 0.1), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.spotlight-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  letter-spacing: -0.045em;
}

.spotlight-copy p {
  margin-top: 1rem;
}

.spotlight-rail {
  display: grid;
  gap: 0.8rem;
}

.spotlight-rail div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(245, 207, 26, 0.3);
  box-shadow: var(--panel-bevel-soft);
}

.spotlight-rail span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-300);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

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

.join-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(0, 75, 135, 0.22), rgba(6, 19, 36, 0.74)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.signup-form {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(245, 207, 26, 0.3);
  box-shadow: var(--panel-bevel-soft);
}

.signup-form label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.signup-form input,
.signup-form select,
.signup-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 0.85rem 0.95rem;
  font: inherit;
  color: var(--sand-100);
  background: rgba(3, 10, 16, 0.5);
}

.signup-form input::placeholder,
.signup-form textarea::placeholder {
  color: rgba(255, 247, 234, 0.48);
}

.signup-form input:focus-visible,
.signup-form select:focus-visible,
.signup-form textarea:focus-visible {
  outline: 2px solid rgba(244, 197, 64, 0.6);
  outline-offset: 2px;
}

.signup-form button {
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--gold-300);
  font-size: 0.9rem;
}

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

@media (min-width: 1180px) {
  .hero-copy {
    min-height: 32rem;
  }
}

.source-list article {
  display: grid;
  gap: 0.65rem;
}

.source-list a {
  color: var(--gold-300);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  line-height: 1.55;
}

[data-reveal] {
  position: relative;
  isolation: isolate;
}

.reveal-line {
  opacity: 0;
  transform: translateX(-10px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
  transition-delay: var(--line-delay, 0ms);
}

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateX(-0.1em);
  filter: blur(1px);
  transition:
    opacity 520ms ease,
    transform 680ms ease,
    filter 680ms ease;
  transition-delay: var(--word-delay, 0ms);
}

[data-reveal]:not(.is-ready) {
  color: transparent;
}

[data-reveal]:not(.is-ready)::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 0%,
      rgba(255, 255, 255, 0.09) 35%,
      rgba(255, 255, 255, 0.03) 70%
    ),
    rgba(255, 255, 255, 0.025);
  background-size: 220% 100%;
  animation: skeleton-shimmer 1.35s linear infinite;
  z-index: 2;
}

[data-reveal].is-ready::after {
  display: none;
}

.reveal-line.is-static,
[data-reveal].is-text-ready .reveal-line {
  opacity: 1;
  transform: translateX(0);
}

.word-reveal.is-static,
[data-reveal].is-text-ready .word-reveal {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

@keyframes skeleton-shimmer {
  from {
    background-position: 100% 0;
  }

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

@media (min-width: 961px) {
  .join-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    text-align: center;
  }

  .join-copy p {
    max-width: 34rem;
  }
}

@media (max-width: 960px) {
  .hero,
  .leader-section,
  .spotlight,
  .join-layout,
  .intro-grid,
  .priority-grid,
  .playbook-grid,
  .signal-strip,
  .source-list {
    grid-template-columns: 1fr;
  }

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

  .leader-media-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 1.5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(3.1rem, 9vw, 5rem);
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding-top: 0.6rem;
    align-items: center;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
    align-self: center;
  }

  .brand {
    width: 100%;
    padding-right: 0.75rem;
  }

  .brand-logo {
    width: 2.7rem;
    min-width: 2.7rem;
    border-radius: 14px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding: 0.7rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 16, 24, 0.82);
    backdrop-filter: blur(16px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 0.85rem 1rem;
    border-radius: 18px;
  }

  .hero-copy,
  .hero-panel,
  .spotlight,
  .join-layout {
    border-radius: 22px;
  }

  .hero-copy::after {
    width: 4.5rem;
    height: 4.5rem;
  }

  .leader-portrait-card {
    grid-template-columns: 1fr;
  }

}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal]:not(.is-ready)::after {
    display: none;
  }

  .word-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

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