:root {
  color-scheme: dark;
  --bg: #03040b;
  --bg-elevated: #070a15;
  --bg-panel: rgba(9, 13, 29, 0.82);
  --bg-panel-solid: #0a0f20;
  --text: #f6f9ff;
  --muted: #aab5c9;
  --soft: #d8e2ff;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(85, 190, 255, 0.44);
  --electric: #159cff;
  --cyan: #5ff1ff;
  --violet: #8d62ff;
  --purple: #5b2bca;
  --valorant: #ff4655;
  --success: #47ffa6;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --radius: 8px;
  --max: 1180px;
  --header-height: 54px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(3, 4, 11, 0.08), #03040b 44rem),
    linear-gradient(120deg, rgba(21, 156, 255, 0.12), transparent 34rem),
    linear-gradient(250deg, rgba(141, 98, 255, 0.12), transparent 36rem),
    var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

::selection {
  background: var(--electric);
  color: #fff;
}

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

.skip-link:focus {
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  white-space: normal;
  background: #fff;
  color: #02030a;
  border-radius: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(3, 4, 11, 0.78), rgba(3, 4, 11, 0));
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(3, 4, 11, 0.84);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-width: max-content;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 2.1rem;
  height: 2.1rem;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(21, 156, 255, 0.34));
}

.site-header .brand {
  gap: 0.58rem;
}

.site-header .brand img {
  width: 3.15rem;
  height: 3.15rem;
  filter: drop-shadow(0 0 16px rgba(21, 156, 255, 0.4));
}

.brand span {
  font-size: 0.86rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.5rem, 1.1vw, 1.05rem);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-menu a {
  position: relative;
  padding: 0.34rem 0;
  color: rgba(246, 249, 255, 0.82);
  transition: color 160ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.2rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(90deg, var(--electric), var(--violet));
  transition: transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] {
  color: #fff;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu .nav-cta {
  min-height: 2.22rem;
  padding: 0.52rem 0.92rem;
  color: #fff;
  border: 1px solid rgba(95, 241, 255, 0.58);
  background: linear-gradient(135deg, rgba(21, 156, 255, 0.9), rgba(141, 98, 255, 0.92));
  box-shadow: 0 0 18px rgba(21, 156, 255, 0.22);
}

.nav-menu .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.nav-toggle span:not(.sr-only) {
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-shell {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.56fr);
  align-items: end;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  font-size: clamp(2.1rem, 5.3vw, 5.25rem);
  max-width: 12ch;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow),
.section-copy p,
.split-heading > p,
.cta-shell p {
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
}

.btn {
  position: relative;
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn::after {
  content: "";
  width: 1.6rem;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  transition: transform 180ms ease;
}

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

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(0.25rem);
}

.btn-primary {
  border-color: rgba(95, 241, 255, 0.72);
  background: linear-gradient(135deg, var(--electric), var(--purple));
  box-shadow: 0 0 34px rgba(21, 156, 255, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
}

.btn-card {
  width: 100%;
  min-height: 2.85rem;
  margin-top: auto;
  background: rgba(255, 255, 255, 0.05);
}

.hero {
  min-height: 100svh;
  padding: calc(var(--header-height) + 2rem) 0 3rem;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-overlay,
.particle-field {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -4;
  background-image: url("../recursos/web_images/Fondos/FONDO ACTUAL EDITs.png");
  background-position: center calc(50% + var(--hero-y, 0px));
  background-size: cover;
  filter: saturate(1.12) contrast(1.08);
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.9) 0%, rgba(3, 4, 11, 0.46) 34%, rgba(3, 4, 11, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 4, 11, 0.16) 0%, rgba(3, 4, 11, 0.12) 56%, #03040b 100%);
}

.particle-field {
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.38;
  pointer-events: none;
}

.hero-content {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  transform: translate3d(0, var(--content-y, 0), 0);
}

.hero h1 {
  max-width: min(100%, 1080px);
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(21, 156, 255, 0.32);
}

.hero h1 span,
.hero h1 strong {
  display: block;
  white-space: nowrap;
}

.hero h1 span {
  font-size: clamp(3.2rem, 9.8vw, 9.75rem);
  font-weight: 950;
}

.hero h1 strong {
  margin-top: 0.05em;
  color: transparent;
  font-size: clamp(3.45rem, 10.9vw, 11rem);
  font-weight: 950;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, #fff 10%, var(--cyan) 38%, var(--violet) 70%, #fff 94%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy {
  max-width: 660px;
  margin: 1.2rem 0 0;
  color: rgba(246, 249, 255, 0.86);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-rail {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(3, 4, 11, 0.46);
  backdrop-filter: blur(12px);
}

.hero-rail span {
  min-height: 3.4rem;
  display: grid;
  place-items: center;
  padding: 0.7rem;
  color: rgba(246, 249, 255, 0.78);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.about {
  background:
    linear-gradient(180deg, #03040b 0%, #070912 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.home-brief {
  background:
    linear-gradient(180deg, #03040b 0%, #070912 100%);
}

.home-brief-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 0.5fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}

.home-brief-intro {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 24rem;
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(21, 156, 255, 0.12), rgba(141, 98, 255, 0.08)),
    rgba(8, 12, 26, 0.82);
}

.home-brief-intro h2 {
  display: grid;
  gap: 0.02em;
  max-width: min(100%, 20rem);
  font-size: clamp(2.35rem, 3.35vw, 3.25rem);
  line-height: 1.08;
}

.home-brief-intro h2 span {
  display: block;
}

.home-brief-intro .btn {
  width: max-content;
}

.kypex-blueprint {
  position: relative;
  min-height: 24rem;
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding: clamp(1rem, 2.4vw, 1.6rem);
  overflow: hidden;
  border: 1px solid rgba(95, 241, 255, 0.24);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 10%, rgba(95, 241, 255, 0.18), transparent 34%),
    radial-gradient(circle at 85% 78%, rgba(141, 98, 255, 0.2), transparent 34%),
    linear-gradient(150deg, rgba(21, 156, 255, 0.09), rgba(141, 98, 255, 0.07)),
    rgba(3, 4, 11, 0.78);
  box-shadow: inset 0 0 42px rgba(21, 156, 255, 0.08);
}

.kypex-blueprint::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(95, 241, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 241, 255, 0.05) 1px, transparent 1px),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.035) 18px 19px);
  background-size: 34px 34px, 34px 34px, auto;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.52));
}

.kypex-blueprint::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(95, 241, 255, 0.14);
  border-radius: 4px;
  pointer-events: none;
}

.blueprint-core,
.blueprint-row,
.blueprint-output,
.blueprint-connector {
  position: relative;
  z-index: 1;
}

.blueprint-core,
.blueprint-output,
.blueprint-node {
  border: 1px solid rgba(95, 241, 255, 0.3);
  border-radius: 4px;
  background: rgba(3, 4, 11, 0.72);
  text-align: center;
  text-transform: uppercase;
}

.blueprint-core {
  width: min(15rem, 100%);
  margin: 0 auto;
  padding: 0.9rem 1rem;
  box-shadow: 0 0 34px rgba(21, 156, 255, 0.14);
}

.blueprint-core strong {
  display: block;
  color: #fff;
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
  line-height: 1;
}

.blueprint-core span,
.blueprint-output span {
  display: block;
  margin-top: 0.35rem;
  color: var(--cyan);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
}

.blueprint-connector {
  width: 1px;
  height: 1.2rem;
  margin: 0 auto;
  background: linear-gradient(180deg, rgba(95, 241, 255, 0), rgba(95, 241, 255, 0.9), rgba(141, 98, 255, 0));
}

.blueprint-connector::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(95, 241, 255, 0.75);
}

.blueprint-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.blueprint-row::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(95, 241, 255, 0.38), transparent);
}

.blueprint-node {
  position: relative;
  z-index: 1;
  min-height: 3.4rem;
  display: grid;
  place-items: center;
  padding: 0.6rem;
  color: var(--soft);
  font-size: clamp(0.68rem, 1vw, 0.82rem);
  font-weight: 950;
}

.blueprint-row-secondary .blueprint-node {
  border-color: rgba(141, 98, 255, 0.36);
}

.blueprint-output {
  width: min(20rem, 100%);
  margin: 0 auto;
  padding: 0.85rem 1rem;
  border-color: rgba(95, 241, 255, 0.42);
  background:
    linear-gradient(90deg, rgba(21, 156, 255, 0.14), rgba(141, 98, 255, 0.14)),
    rgba(3, 4, 11, 0.8);
}

.blueprint-output strong {
  display: block;
  margin-top: 0.3rem;
  color: #fff;
  font-size: 0.95rem;
  line-height: 1.15;
}

.brief-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.brief-card {
  position: relative;
  min-height: 14.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1rem, 2vw, 1.25rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 26, 0.88);
  transition: transform 200ms ease, border-color 200ms ease;
}

.brief-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(21, 156, 255, 0.22), transparent 48%),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px);
  opacity: 0.42;
}

.brief-card-accent::before {
  background:
    linear-gradient(145deg, rgba(141, 98, 255, 0.26), transparent 48%),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px);
}

.brief-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.brief-icon,
.access-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(95, 241, 255, 0.35);
  border-radius: 4px;
  background: rgba(3, 4, 11, 0.56);
  color: var(--cyan);
}

.brief-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: auto;
}

.brief-icon svg,
.access-icon svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brief-card span,
.brief-card h3,
.brief-card p {
  position: relative;
  z-index: 1;
}

.brief-card span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-card h3 {
  margin-top: 0.65rem;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  text-transform: uppercase;
}

.brief-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.brief-signal-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(95, 241, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(3, 4, 11, 0.62);
}

.brief-signal-strip span {
  min-height: 4.2rem;
  display: grid;
  align-content: center;
  padding: 0.85rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.brief-signal-strip span:last-child {
  border-right: 0;
}

.brief-signal-strip strong {
  color: #fff;
}

.section-copy h2 {
  margin-bottom: 1.35rem;
}

.section-copy p {
  max-width: 65ch;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.about-points span {
  padding: 0.6rem 0.75rem;
  border: 1px solid rgba(95, 241, 255, 0.28);
  border-radius: 4px;
  color: var(--soft);
  background: rgba(95, 241, 255, 0.05);
  font-size: 0.9rem;
  font-weight: 800;
}

.identity-panel {
  position: relative;
  min-height: 34rem;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(21, 156, 255, 0.2), rgba(141, 98, 255, 0.12) 45%, rgba(255, 255, 255, 0.03)),
    var(--bg-panel-solid);
  box-shadow: var(--shadow);
}

.identity-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.identity-panel img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(92%, 34rem);
  opacity: 0.88;
  transform: translate(-50%, -54%);
  filter: drop-shadow(0 0 34px rgba(141, 98, 255, 0.42));
}

.identity-details {
  position: relative;
  margin: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 4, 11, 0.7);
  backdrop-filter: blur(12px);
}

.identity-details span,
.status {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.identity-details strong {
  display: block;
  margin-top: 0.25rem;
  color: #fff;
  font-size: 1.5rem;
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  text-transform: uppercase;
}

.identity-details p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.pillars {
  background:
    linear-gradient(180deg, #070912 0%, #03040b 100%),
    linear-gradient(90deg, rgba(21, 156, 255, 0.12), rgba(141, 98, 255, 0.12));
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pillar-card,
.division-card,
.community-item,
.stat-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
}

.pillar-card {
  --pillar-color: var(--electric);
  --pillar-glow: rgba(21, 156, 255, 0.24);
  min-height: 22rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 3vw, 2rem);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.pillar-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, var(--pillar-glow), transparent 34%),
    linear-gradient(140deg, var(--pillar-glow), transparent 44%),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px);
  opacity: 0.36;
  transition: opacity 220ms ease;
}

.pillar-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--pillar-color);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.pillar-card:hover {
  transform: translateY(-7px);
  border-color: var(--line-strong);
  background: rgba(16, 24, 45, 0.74);
}

.pillar-card:hover::before {
  opacity: 0.62;
}

.pillar-card:hover::after {
  transform: scaleX(1);
}

.pillar-performance {
  --pillar-color: var(--electric);
  --pillar-glow: rgba(21, 156, 255, 0.24);
}

.pillar-competition {
  --pillar-color: var(--violet);
  --pillar-glow: rgba(141, 98, 255, 0.25);
}

.pillar-content {
  --pillar-color: var(--cyan);
  --pillar-glow: rgba(95, 241, 255, 0.22);
}

.pillar-competition::before {
  background:
    radial-gradient(circle at 20% 18%, var(--pillar-glow), transparent 34%),
    linear-gradient(140deg, var(--pillar-glow), transparent 44%),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px);
}

.pillar-content::before {
  background:
    radial-gradient(circle at 20% 18%, var(--pillar-glow), transparent 34%),
    linear-gradient(140deg, var(--pillar-glow), transparent 44%),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px);
}

.pillar-icon {
  position: relative;
  z-index: 1;
  width: 5.7rem;
  height: 5.7rem;
  display: grid;
  place-items: center;
  margin-bottom: 2.4rem;
  border: 1px solid color-mix(in srgb, var(--pillar-color) 56%, transparent);
  border-radius: 4px;
  background: rgba(3, 4, 11, 0.6);
  color: var(--pillar-color);
  box-shadow: 0 0 24px color-mix(in srgb, var(--pillar-color) 18%, transparent);
}

.pillar-icon svg {
  width: 3rem;
  height: 3rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-tag,
.pillar-card h3,
.pillar-card p {
  position: relative;
  z-index: 1;
}

.pillar-tag {
  width: max-content;
  max-width: 100%;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.48rem;
  border: 1px solid color-mix(in srgb, var(--pillar-color) 34%, transparent);
  border-radius: 4px;
  color: var(--pillar-color);
  background: rgba(3, 4, 11, 0.44);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pillar-card h3 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  text-transform: uppercase;
}

.pillar-card p {
  max-width: 24ch;
  margin: 0.9rem 0 0;
  color: rgba(246, 249, 255, 0.82);
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  font-weight: 800;
}

.philosophy {
  overflow: hidden;
  background:
    linear-gradient(180deg, #03040b, rgba(7, 9, 18, 0.98)),
    #03040b;
}

.philosophy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}

.philosophy-shell {
  position: relative;
}

.manifesto-lines {
  display: grid;
  gap: clamp(1.4rem, 3vw, 2.4rem);
}

.manifesto-lines blockquote {
  position: relative;
  margin: 0;
  padding: clamp(1.2rem, 3vw, 2rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.manifesto-lines blockquote:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.manifesto-lines span,
.manifesto-lines strong {
  display: block;
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  line-height: 0.95;
  text-transform: uppercase;
}

.manifesto-lines span {
  color: rgba(246, 249, 255, 0.55);
  font-size: clamp(2rem, 6.5vw, 6.5rem);
  font-weight: 800;
}

.manifesto-lines strong {
  color: #fff;
  font-size: clamp(2.15rem, 7.2vw, 7.25rem);
  text-shadow: 0 0 30px rgba(21, 156, 255, 0.28);
}

.divisions {
  background:
    linear-gradient(180deg, rgba(7, 9, 18, 0.98), #03040b);
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.division-card {
  min-height: 28rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease;
}

.division-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.division-card.is-active {
  border-color: rgba(255, 70, 85, 0.48);
  box-shadow: 0 0 34px rgba(255, 70, 85, 0.12);
}

.division-media {
  position: relative;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(21, 156, 255, 0.1), rgba(141, 98, 255, 0.16)),
    #050712;
}

.division-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 4, 11, 0), rgba(3, 4, 11, 0.82));
}

.division-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.division-card:not(.is-active) .division-media img {
  object-fit: contain;
  padding: 2rem;
  opacity: 0.58;
  filter: grayscale(0.35) saturate(0.9);
}

.division-card:hover .division-media img {
  transform: scale(1.08);
}

.division-body {
  min-height: 17rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
}

.division-body h3 {
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  text-transform: uppercase;
}

.division-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.status {
  width: max-content;
  padding: 0.32rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.status-active {
  color: #fff;
  border-color: rgba(255, 70, 85, 0.5);
  background: rgba(255, 70, 85, 0.18);
}

.roadmap {
  background:
    linear-gradient(180deg, #03040b, #080b16 50%, #03040b);
}

.roadmap-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.36fr);
  gap: 1.25rem;
  align-items: start;
}

.roadmap-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.roadmap-track::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 156, 255, 0), rgba(21, 156, 255, 0.5), rgba(141, 98, 255, 0));
  pointer-events: none;
}

.roadmap-node {
  position: relative;
  min-height: 6.4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 12, 26, 0.92);
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.roadmap-node span {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-node strong {
  color: #fff;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.roadmap-node:hover,
.roadmap-node:focus-visible,
.roadmap-node.is-current {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  background: rgba(21, 36, 70, 0.86);
}

.roadmap-node.is-current {
  box-shadow: 0 0 26px rgba(21, 156, 255, 0.16);
}

.roadmap-detail {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  min-height: 20rem;
  padding: 1.2rem;
  border: 1px solid rgba(95, 241, 255, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(21, 156, 255, 0.18), rgba(141, 98, 255, 0.1)),
    rgba(8, 12, 26, 0.92);
}

.roadmap-detail span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.roadmap-detail h3 {
  margin-top: 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  text-transform: uppercase;
}

.roadmap-detail p {
  margin: 1rem 0 0;
  color: var(--muted);
}

.community {
  background:
    linear-gradient(90deg, rgba(255, 70, 85, 0.08), transparent 42%),
    linear-gradient(180deg, #03040b, #070912);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.community-item {
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2rem;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease;
}

.community-item:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.community-item span {
  color: transparent;
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  font-size: 4.2rem;
  font-weight: 950;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(95, 241, 255, 0.4);
}

.community-item h3 {
  margin-top: auto;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  text-transform: uppercase;
}

.community-item p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.stats {
  background:
    linear-gradient(180deg, #070912, #03040b);
}

.stats-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-item {
  min-height: 12rem;
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1rem;
  text-align: center;
}

.stat-item strong {
  color: #fff;
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 1;
  text-shadow: 0 0 24px rgba(21, 156, 255, 0.28);
}

.stat-item span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.final-cta {
  min-height: 70svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.9), rgba(3, 4, 11, 0.64)),
    url("../recursos/web_images/Fondos/FONDO ACTUAL EDITs.png") center / cover no-repeat;
}

.cta-shell {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.cta-shell h2 {
  max-width: none;
  font-size: clamp(3rem, 8vw, 8.5rem);
}

.final-cta .cta-shell h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(3rem, 6.6vw, 6.8rem);
}

.cta-shell p {
  max-width: 720px;
  margin: 1.1rem auto 0;
  color: rgba(246, 249, 255, 0.82);
}

.cta-shell .hero-actions {
  justify-content: center;
}

.page-hero {
  min-height: 74svh;
  display: grid;
  align-items: center;
  padding: calc(var(--header-height) + 4rem) 0 clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  isolation: isolate;
  background: #03040b;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.92), rgba(3, 4, 11, 0.58) 48%, rgba(3, 4, 11, 0.78)),
    linear-gradient(180deg, rgba(3, 4, 11, 0.26), #03040b 100%),
    url("../recursos/web_images/Fondos/FONDO ACTUAL EDITs.png") center / cover no-repeat;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.02);
}

.page-hero-shell {
  max-width: 900px;
}

.page-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8.5vw, 8rem);
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 1.2rem 0 0;
  color: rgba(246, 249, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.manifesto-hero .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.94), rgba(3, 4, 11, 0.68)),
    linear-gradient(180deg, rgba(3, 4, 11, 0.18), #03040b 100%),
    url("../recursos/web_images/Fondos/FONDO 4K.jpg") center / cover no-repeat;
}

.community-hero .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.94), rgba(3, 4, 11, 0.62)),
    linear-gradient(180deg, rgba(3, 4, 11, 0.18), #03040b 100%),
    url("../recursos/web_images/Aatares/AVATAR DISCORD.png") center / cover no-repeat;
}

.contact-hero .page-hero-bg {
  background:
    linear-gradient(90deg, rgba(3, 4, 11, 0.92), rgba(3, 4, 11, 0.64)),
    linear-gradient(180deg, rgba(3, 4, 11, 0.18), #03040b 100%),
    url("../recursos/web_images/Fondos/YOUTUBE.png") center / cover no-repeat;
}

.access-section,
.process-section,
.values-section,
.objectives-section,
.applications-section,
.contact-section,
.rules-section,
.creators-section,
.editorial-section {
  background: linear-gradient(180deg, #03040b, #070912);
}

.access-section {
  padding-top: clamp(5.5rem, 10vw, 9rem);
  padding-bottom: clamp(7.5rem, 13vw, 11rem);
}

.access-grid,
.process-grid,
.values-grid,
.objective-grid,
.application-grid,
.rules-grid,
.social-grid {
  display: grid;
  gap: 1rem;
}

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

.access-card,
.process-grid article,
.values-grid article,
.objective-grid article,
.application-card,
.rules-grid article,
.social-grid a {
  position: relative;
  min-height: 23.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.access-card::before,
.process-grid article::before,
.values-grid article::before,
.objective-grid article::before,
.application-card::before,
.rules-grid article::before,
.social-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(21, 156, 255, 0.14), rgba(141, 98, 255, 0.08) 46%, transparent);
  opacity: 0.62;
  pointer-events: none;
}

.access-teams::before {
  background:
    linear-gradient(145deg, rgba(255, 70, 85, 0.18), rgba(21, 156, 255, 0.08) 48%, transparent),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px);
}

.access-manifest::before {
  background:
    linear-gradient(145deg, rgba(141, 98, 255, 0.2), rgba(21, 156, 255, 0.08) 48%, transparent),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px);
}

.access-community::before {
  background:
    linear-gradient(145deg, rgba(95, 241, 255, 0.15), rgba(141, 98, 255, 0.12) 48%, transparent),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px);
}

.access-contact::before {
  background:
    linear-gradient(145deg, rgba(71, 255, 166, 0.14), rgba(21, 156, 255, 0.1) 48%, transparent),
    repeating-linear-gradient(115deg, transparent 0 18px, rgba(255, 255, 255, 0.04) 18px 19px);
}

.access-card:hover,
.process-grid article:hover,
.values-grid article:hover,
.objective-grid article:hover,
.application-card:hover,
.rules-grid article:hover,
.social-grid a:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: rgba(16, 24, 45, 0.72);
}

.access-card span,
.process-grid span,
.application-card span,
.social-grid span {
  position: relative;
  z-index: 1;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.access-card span,
.process-grid span {
  color: transparent;
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  -webkit-text-stroke: 1px rgba(95, 241, 255, 0.45);
}

.access-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: auto;
}

.access-top > span {
  color: rgba(246, 249, 255, 0.7);
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1;
  -webkit-text-stroke: 0;
}

.access-icon {
  width: 3.9rem;
  height: 3.9rem;
}

.access-card h3,
.process-grid h3,
.values-grid h3,
.objective-grid h3,
.application-card h3,
.rules-grid h3,
.social-grid strong {
  position: relative;
  z-index: 1;
  margin-top: auto;
  color: #fff;
  font-family: "Orbitron", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.access-card p,
.process-grid p,
.values-grid p,
.objective-grid p,
.application-card p,
.rules-grid p {
  position: relative;
  z-index: 1;
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.access-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.45rem;
  margin: 1.15rem 0 0;
  padding: 0;
  list-style: none;
}

.access-meta li {
  width: auto;
  max-width: 100%;
  padding: 0.32rem 0.48rem;
  border: 1px solid rgba(95, 241, 255, 0.2);
  border-radius: 4px;
  color: var(--soft);
  background: rgba(95, 241, 255, 0.05);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.access-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.15rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.access-action::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.access-card:hover .access-action::after {
  transform: translateX(0.25rem);
}

.compact-identity {
  min-height: 28rem;
}

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

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

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

.application-card {
  min-height: 22rem;
}

.application-card .btn {
  position: relative;
  z-index: 1;
}

.editorial-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.editorial-copy {
  padding-top: 0.55rem;
}

.editorial-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.65vw, 1.18rem);
}

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

.social-grid a {
  min-height: 8.5rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #03040b;
}

.footer-shell {
  width: min(var(--max), calc(100% - 2rem));
  min-height: 8rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(10rem, 0.5fr) 1fr minmax(12rem, 0.6fr);
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: right;
}

.section-observe {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-observe.is-visible,
.hero.section-observe {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .division-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .division-card.is-active {
    grid-column: span 2;
  }

  .stats-shell,
  .split-heading,
  .roadmap-layout,
  .editorial-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .access-grid,
  .process-grid,
  .rules-grid,
  .objective-grid,
  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-brief-layout {
    grid-template-columns: 1fr;
  }

  .home-brief-intro {
    min-height: 18rem;
  }

  .kypex-blueprint {
    min-height: 22rem;
  }

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

  .roadmap-detail {
    position: static;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 2rem 0;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 54px;
  }

  .nav-toggle {
    display: grid;
    align-content: center;
    gap: 5px;
  }

  .site-header .brand img {
    width: 2.85rem;
    height: 2.85rem;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(3, 4, 11, 0.94);
    backdrop-filter: blur(16px);
    transform: translateY(-0.75rem);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .nav-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-menu a {
    padding: 0.86rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu .nav-cta {
    margin-top: 0.65rem;
    border-bottom: 0;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 5rem;
  }

  .page-hero {
    min-height: 68svh;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 4, 11, 0.9), rgba(3, 4, 11, 0.66)),
      linear-gradient(180deg, rgba(3, 4, 11, 0.12), #03040b 100%);
  }

  .hero-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .pillar-grid,
  .community-grid,
  .brief-grid {
    grid-template-columns: 1fr;
  }

  .brief-card,
  .pillar-card,
  .identity-panel {
    min-height: 18rem;
  }

  .brief-signal-strip {
    grid-template-columns: 1fr;
  }

  .brief-signal-strip span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .brief-signal-strip span:last-child {
    border-bottom: 0;
  }

  .kypex-blueprint {
    min-height: 21rem;
  }

  .blueprint-row {
    gap: 0.5rem;
  }

  .blueprint-node {
    min-height: 3rem;
    padding: 0.5rem;
  }

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

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

@media (max-width: 560px) {
  .section {
    padding: 4rem 0;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .hero h1 span {
    font-size: clamp(2.35rem, 14vw, 4.2rem);
  }

  .hero h1 strong {
    font-size: clamp(2.5rem, 14.2vw, 4.25rem);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.9);
  }

  .hero-actions,
  .cta-shell .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-brief-intro .btn {
    width: 100%;
  }

  .kypex-blueprint {
    min-height: auto;
    padding: 1rem;
  }

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

  .blueprint-row::before {
    display: block;
  }

  .blueprint-node {
    font-size: 0.62rem;
  }

  .blueprint-core,
  .blueprint-output {
    width: 100%;
  }

  .access-section {
    padding-top: 4.75rem;
    padding-bottom: 6rem;
  }

  .access-card {
    min-height: 21rem;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.25rem);
  }

  .btn {
    width: 100%;
  }

  .hero-rail {
    display: none;
  }

  .identity-panel {
    min-height: 20rem;
  }

  .pillar-icon {
    width: 4.9rem;
    height: 4.9rem;
  }

  .pillar-icon svg {
    width: 2.55rem;
    height: 2.55rem;
  }

  .division-grid,
  .roadmap-track,
  .stats-grid,
  .access-grid,
  .process-grid,
  .values-grid,
  .rules-grid,
  .objective-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .division-card.is-active {
    grid-column: auto;
  }

  .community-item,
  .stat-item {
    min-height: 13rem;
  }

  .manifesto-lines span,
  .manifesto-lines strong {
    line-height: 1.04;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .particle-field {
    display: none;
  }
}
