@font-face {
    font-family: "Noto Sans";
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url("../fonts/noto-sans-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Noto Serif";
    font-style: normal;
    font-weight: 600 700;
    font-display: swap;
    src: url("../fonts/noto-serif-latin.woff2") format("woff2");
}

@font-face {
    font-family: "Noto Serif";
    font-style: italic;
    font-weight: 600 700;
    font-display: swap;
    src: url("../fonts/noto-serif-italic-latin.woff2") format("woff2");
}

:root {
    --ink: #17201e;
    --ink-soft: #53605c;
    --paper: #f4f2eb;
    --paper-strong: #ffffff;
    --mist: #e9ede7;
    --line: rgba(15, 55, 49, 0.14);
    --forest: #166355;
    --forest-strong: #003b34;
    --forest-deep: #002923;
    --forest-ink: #00211d;
    --burgundy: #9b2247;
    --burgundy-dark: #611232;
    --gold: #a57f2c;
    --gold-soft: #ead79c;
    --cyan: #74c7b8;
    --gray: #797f7d;
    --font-sans: "Noto Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-serif: "Noto Serif", Georgia, "Times New Roman", serif;
    --shadow-soft: 0 14px 38px rgba(7, 44, 38, 0.1);
    --shadow-card: 0 20px 56px rgba(0, 32, 27, 0.16);
    --shadow-gold: 0 18px 48px rgba(165, 127, 44, 0.22);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;
    --max: 1180px;
    --header-h: 74px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

button,
summary {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid #d4aa4b;
    outline-offset: 4px;
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 1.2em;
    height: 1.2em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-inline {
    width: 0.95em;
    height: 0.95em;
    opacity: 0.68;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 11px 15px;
    color: #fff;
    background: var(--burgundy);
    border-radius: var(--radius-sm);
    transform: translateY(-180%);
    transition: transform 160ms ease;
}

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

/* Header */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px clamp(20px, 4vw, 52px);
    color: #fff;
    background: rgba(0, 47, 41, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px) saturate(130%);
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
    background: rgba(0, 43, 37, 0.97);
    border-bottom-color: rgba(234, 215, 156, 0.24);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

.brand-lockup {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: clamp(100px, 10vw, 136px);
    height: auto;
    flex: 0 0 auto;
}

.brand-divider {
    width: 1px;
    height: 36px;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.34);
}

.brand-text {
    min-width: 0;
    display: grid;
    gap: 2px;
    line-height: 1.18;
}

.brand-text strong {
    font-size: 0.89rem;
    font-weight: 700;
}

.brand-text small {
    color: rgba(255, 255, 255, 0.67);
    font-size: 0.7rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}

.primary-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 12px;
    color: rgba(255, 255, 255, 0.78);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.primary-nav a:hover,
.primary-nav a[aria-current="location"] {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.primary-nav .nav-action {
    margin-left: 6px;
    padding-inline: 16px;
    color: var(--forest-deep);
    background: var(--gold-soft);
    box-shadow: 0 8px 26px rgba(165, 127, 44, 0.22);
}

.primary-nav .nav-action:hover,
.primary-nav .nav-action[aria-current="location"] {
    color: #fff;
    background: var(--gold);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
}

.nav-toggle .icon {
    width: 22px;
    height: 22px;
}

.nav-icon-close {
    display: none;
}

.site-header.is-open .nav-icon-menu {
    display: none;
}

.site-header.is-open .nav-icon-close {
    display: block;
}

/* Shared */

.section-shell {
    width: min(var(--max), calc(100% - 44px));
    margin-inline: auto;
}

.section {
    padding: clamp(76px, 8vw, 108px) 0;
}

.eyebrow {
    margin: 0 0 13px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.section-heading h2 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(1.9rem, 3.3vw, 2.75rem);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.015em;
    text-wrap: balance;
}

.section-heading > p:not(.eyebrow),
.section-heading > div + p {
    max-width: 650px;
    margin: 16px 0 0;
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.72;
}

.section-heading-split,
.coords-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: clamp(36px, 7vw, 96px);
    align-items: end;
}

.section-heading-split > p,
.coords-heading > p {
    margin: 0;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.94rem;
    font-weight: 750;
    transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

/* Hero */

.hero {
    position: relative;
    min-height: min(820px, 100svh);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-h) + 42px) 22px 46px;
    color: #fff;
    text-align: left;
    background:
        radial-gradient(circle at 76% 36%, rgba(56, 144, 126, 0.3), transparent 28%),
        radial-gradient(circle at 10% 10%, rgba(165, 127, 44, 0.12), transparent 24%),
        linear-gradient(150deg, #064f45 0%, var(--forest-strong) 42%, var(--forest-ink) 100%);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-deep), var(--gold) 36%, var(--gold-soft) 50%, var(--burgundy) 100%);
}

.hero-tech-field,
.tech-grid,
.tech-orbit,
.tech-contours {
    position: absolute;
    pointer-events: none;
}

.hero-tech-field {
    inset: 0;
    overflow: hidden;
}

.tech-grid {
    inset: 0;
    opacity: 0.13;
    background-image:
        linear-gradient(rgba(116, 199, 184, 0.22) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 199, 184, 0.22) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(ellipse at center, #000 12%, transparent 74%);
}

.tech-orbit {
    width: min(72vw, 960px);
    aspect-ratio: 1;
    top: 49%;
    left: 50%;
    border: 1px solid rgba(234, 215, 156, 0.13);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
}

.tech-orbit::before,
.tech-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(116, 199, 184, 0.12);
    border-radius: 50%;
}

.tech-orbit::before {
    inset: 12%;
}

.tech-orbit::after {
    inset: 29%;
}

.orbit-two {
    width: min(52vw, 700px);
    transform: translate(-50%, -50%) rotate(58deg) scaleY(0.56);
    border-color: rgba(234, 215, 156, 0.19);
}

.tech-contours {
    inset: auto -6% -6%;
    width: 112%;
    height: 63%;
    opacity: 0.16;
}

.tech-contours path {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 1.15;
    vector-effect: non-scaling-stroke;
}

.hero-layout {
    position: relative;
    z-index: 2;
    width: min(var(--max), 100%);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
    gap: clamp(44px, 6vw, 86px);
    align-items: center;
    margin-inline: auto;
}

.hero-inner {
    min-width: 0;
    display: grid;
    justify-items: start;
}

.hero-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 17px;
    padding: 7px 12px;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(116, 199, 184, 0.26);
    border-radius: 999px;
    background: rgba(0, 33, 29, 0.28);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 5px rgba(116, 199, 184, 0.12);
}

.hero-seal {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-soft);
    border: 1px solid rgba(234, 215, 156, 0.4);
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(234, 215, 156, 0.16), rgba(116, 199, 184, 0.08));
    box-shadow: 0 0 0 8px rgba(234, 215, 156, 0.04);
    transform: rotate(45deg);
}

.hero-seal .icon {
    width: 27px;
    height: 27px;
    transform: rotate(-45deg);
}

.hero .eyebrow {
    margin-bottom: 14px;
    color: #caa650;
}

.hero h1 {
    max-width: 660px;
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 4.5vw, 4.45rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

.hero-subtitle {
    margin: 22px 0 0;
    color: var(--gold-soft);
    font-family: var(--font-serif);
    font-size: clamp(1.08rem, 2.1vw, 1.42rem);
    font-style: italic;
    font-weight: 600;
}

.hero-brief {
    max-width: 620px;
    margin: 15px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.66;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px;
    margin-top: 27px;
}

.button-primary {
    color: var(--forest-deep);
    background: linear-gradient(135deg, var(--gold-soft), #f4e6b5);
    box-shadow: 0 12px 34px rgba(165, 127, 44, 0.28);
}

.button-primary:hover {
    box-shadow: 0 18px 42px rgba(165, 127, 44, 0.42);
}

.button-ghost {
    color: #fff;
    border-color: rgba(234, 215, 156, 0.42);
    background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

.capability-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 9px;
    margin-top: 29px;
}

.capability-strip span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 13px;
    color: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(116, 199, 184, 0.25);
    border-radius: 999px;
    background: rgba(0, 33, 29, 0.24);
    font-size: 0.75rem;
    font-weight: 650;
}

.capability-strip .icon {
    color: var(--cyan);
}

.hero-visual {
    position: relative;
    width: min(100%, 500px);
    margin: 0;
    isolation: isolate;
}

.hero-visual::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 10% -10% 18% 8%;
    border: 1px solid rgba(234, 215, 156, 0.14);
    border-radius: 50%;
    box-shadow:
        0 0 0 44px rgba(116, 199, 184, 0.035),
        0 0 80px rgba(116, 199, 184, 0.13);
}

.hero-visual-frame {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border: 1px solid rgba(234, 215, 156, 0.42);
    border-radius: 28px 28px 78px 28px;
    background: #022d2a;
    box-shadow:
        0 32px 80px rgba(0, 19, 16, 0.42),
        inset 0 0 0 7px rgba(0, 33, 29, 0.28);
    transform: none;
}

.hero-visual-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(0, 33, 29, 0.02) 48%, rgba(0, 24, 20, 0.48)),
        radial-gradient(circle at 50% 50%, transparent 50%, rgba(0, 21, 18, 0.22));
}

.hero-visual-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.05);
}

.hero-visual-grid,
.hero-visual-scan,
.hero-visual-label,
.hero-visual-target {
    position: absolute;
    z-index: 2;
}

.hero-visual-grid {
    inset: 0;
    opacity: 0.24;
    background-image:
        linear-gradient(rgba(177, 227, 218, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(177, 227, 218, 0.2) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(135deg, transparent 4%, #000 38%, transparent 96%);
}

.hero-visual-scan {
    inset: 0 auto 0 42%;
    width: 1px;
    opacity: 0.8;
    background: linear-gradient(transparent 5%, var(--cyan), transparent 95%);
    box-shadow: 0 0 26px 7px rgba(116, 199, 184, 0.2);
    animation: mapScan 6s ease-in-out infinite alternate;
}

.hero-visual-label {
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 11px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(0, 39, 34, 0.7);
    box-shadow: 0 8px 28px rgba(0, 24, 20, 0.25);
    backdrop-filter: blur(12px);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-visual-target {
    top: 55%;
    left: 51%;
    width: 68px;
    height: 68px;
    border: 1px solid rgba(234, 215, 156, 0.88);
    border-radius: 50%;
    box-shadow:
        0 0 0 8px rgba(234, 215, 156, 0.08),
        0 0 30px rgba(234, 215, 156, 0.2);
}

.hero-visual-target::before,
.hero-visual-target::after {
    content: "";
    position: absolute;
    inset: 50% auto auto 50%;
    background: var(--gold-soft);
    transform: translate(-50%, -50%);
}

.hero-visual-target::before {
    width: 92px;
    height: 1px;
}

.hero-visual-target::after {
    width: 1px;
    height: 92px;
}

.hero-visual figcaption {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 3px;
    width: calc(100% - 44px);
    margin: -45px 0 0 22px;
    padding: 16px 18px;
    color: #fff;
    border: 1px solid rgba(234, 215, 156, 0.26);
    border-radius: 14px;
    background: rgba(0, 38, 33, 0.88);
    box-shadow: 0 16px 38px rgba(0, 19, 16, 0.3);
    backdrop-filter: blur(16px) saturate(130%);
}

.hero-visual figcaption > span {
    color: var(--cyan);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-visual figcaption strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.hero-visual figcaption small {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.68rem;
    line-height: 1.45;
}

.hero-visual figcaption a,
.mission-visual figcaption a {
    color: var(--gold-soft);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Mission */

.mission-band {
    position: relative;
    padding-top: 0;
    background: var(--paper-strong);
    border-bottom: 1px solid var(--line);
}

.mission-band::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.24;
    background:
        linear-gradient(120deg, transparent 65%, rgba(22, 99, 85, 0.08)),
        radial-gradient(circle at 92% 22%, rgba(165, 127, 44, 0.12), transparent 19%);
}

.mission-band .section-shell {
    position: relative;
    z-index: 1;
}

.mission-facts {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: clamp(62px, 7vw, 92px);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    transform: translateY(-34px);
}

.mission-facts > span {
    min-width: 0;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 13px;
    padding: 20px clamp(14px, 2.2vw, 26px);
}

.mission-facts > span + span {
    border-left: 1px solid var(--line);
}

.mission-facts .icon {
    grid-row: 1 / 3;
    align-self: center;
    width: 25px;
    height: 25px;
    color: var(--forest);
}

.mission-facts strong {
    font-size: 0.88rem;
}

.mission-facts small {
    margin-top: 2px;
    color: var(--ink-soft);
    font-size: 0.72rem;
    line-height: 1.35;
}

.mission-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(42px, 7vw, 88px);
    align-items: start;
}

.mission-visual {
    position: relative;
    min-height: 390px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(22, 99, 85, 0.15);
    border-radius: 18px 54px 18px 18px;
    background: var(--forest-deep);
    box-shadow: var(--shadow-card);
}

.mission-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, transparent 45%, rgba(0, 31, 27, 0.88)),
        linear-gradient(90deg, rgba(0, 59, 52, 0.14), transparent 45%);
}

.mission-visual img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform 600ms ease;
}

.mission-visual:hover img {
    transform: scale(1.025);
}

.mission-visual figcaption {
    position: absolute;
    z-index: 2;
    inset: auto 24px 23px;
    display: grid;
    gap: 4px;
    color: #fff;
}

.mission-visual figcaption > span {
    color: var(--gold-soft);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mission-visual figcaption strong {
    font-family: var(--font-serif);
    font-size: 1.25rem;
}

.mission-visual figcaption small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    line-height: 1.45;
}

.mission-quote {
    margin: 25px 0 0;
    padding: 2px 0 2px 25px;
    border-left: 3px solid var(--gold);
}

.mission-quote blockquote {
    margin: 0;
    color: var(--forest-strong);
    font-family: var(--font-serif);
    font-size: clamp(1.08rem, 1.9vw, 1.36rem);
    font-style: italic;
    font-weight: 600;
    line-height: 1.55;
}

.mission-quote figcaption {
    margin-top: 14px;
    color: var(--ink-soft);
    font-size: 0.74rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.mission-note {
    margin: 21px 0 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
    line-height: 1.68;
}

.dg-stack {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.dg-kicker {
    grid-column: 1 / -1;
    margin: 0 0 4px;
    color: var(--ink-soft);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.dg-card {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 18px 19px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(135deg, #fff, #f6f8f4);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.dg-card:hover {
    transform: translateX(4px);
    border-color: rgba(22, 99, 85, 0.28);
    box-shadow: var(--shadow-soft);
}

.dg-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: var(--forest);
    border: 1px solid rgba(22, 99, 85, 0.13);
    border-radius: 11px;
    background: rgba(22, 99, 85, 0.07);
}

.dg-icon .icon {
    width: 22px;
    height: 22px;
}

.dg-card h3 {
    margin: 0 0 5px;
    font-size: 0.96rem;
    line-height: 1.34;
}

.dg-card p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.84rem;
    line-height: 1.55;
}

/* Areas */

.materias-section {
    position: relative;
    background:
        linear-gradient(rgba(0, 59, 52, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 59, 52, 0.025) 1px, transparent 1px),
        var(--paper);
    background-size: 48px 48px;
}

.materias-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 44px;
}

.materia-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.materia-card:hover {
    transform: translateY(-3px);
    border-color: rgba(22, 99, 85, 0.26);
    box-shadow: var(--shadow-soft);
}

.materia-card summary {
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 19px 19px 10px;
    list-style: none;
}

.materia-card summary::-webkit-details-marker {
    display: none;
}

.materia-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    border-radius: 12px;
    background: rgba(22, 99, 85, 0.08);
}

.materia-icon .icon {
    width: 22px;
    height: 22px;
}

.materia-card h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.3;
}

.materia-chevron {
    display: none;
    color: var(--forest);
    transition: transform 180ms ease;
}

.materia-card[open] .materia-chevron {
    transform: rotate(180deg);
}

.materia-body {
    padding: 0 19px 19px 74px;
}

.materia-body p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.85rem;
    line-height: 1.58;
}

/* Platforms */

.coords-section {
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 84% 8%, rgba(56, 144, 126, 0.26), transparent 28%),
        linear-gradient(155deg, var(--forest-strong), var(--forest-ink) 70%);
}

.coords-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.14;
    background-image:
        linear-gradient(rgba(116, 199, 184, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 199, 184, 0.2) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.coords-section::after {
    content: "";
    position: absolute;
    width: 660px;
    height: 660px;
    right: -280px;
    top: 260px;
    pointer-events: none;
    border: 1px solid rgba(234, 215, 156, 0.1);
    border-radius: 50%;
    box-shadow:
        0 0 0 90px rgba(116, 199, 184, 0.03),
        0 0 0 180px rgba(234, 215, 156, 0.025);
}

.coords-section .section-shell {
    position: relative;
    z-index: 2;
}

.coords-heading h2 {
    color: #fff;
}

.coords-heading > p {
    color: rgba(255, 255, 255, 0.69);
}

.coord-group {
    margin-top: clamp(52px, 7vw, 78px);
}

.coord-group + .coord-group {
    padding-top: clamp(54px, 7vw, 76px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.coord-header {
    max-width: 760px;
}

.coord-num {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-soft);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.coord-num::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--gold);
}

.coord-header h3 {
    margin: 11px 0 0;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    line-height: 1.22;
}

.coord-header p {
    max-width: 700px;
    margin: 11px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
    line-height: 1.64;
}

.project-cards {
    max-width: 960px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 28px;
}

.project-card {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    padding: 25px;
    color: var(--ink);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 44px rgba(0, 24, 20, 0.16);
    transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.project-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--cyan), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 240ms ease;
}

.project-card.is-active:hover,
.project-card.is-active:focus-within {
    transform: translateY(-5px);
    border-color: rgba(234, 215, 156, 0.7);
    box-shadow: var(--shadow-gold);
}

.project-card.is-active:hover::before,
.project-card.is-active:focus-within::before {
    transform: scaleX(1);
}

.project-card-top {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.project-logo,
.project-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
}

.project-logo {
    object-fit: contain;
    border-radius: 10px;
}

.project-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--forest);
    border: 1px solid rgba(22, 99, 85, 0.16);
    border-radius: 12px;
    background: rgba(22, 99, 85, 0.07);
}

.project-icon .icon {
    width: 25px;
    height: 25px;
}

.status-badge {
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-active {
    color: #fff;
    background: var(--forest);
}

.status-soon {
    color: #7a5c17;
    border: 1px solid rgba(165, 127, 44, 0.38);
    background: rgba(234, 215, 156, 0.34);
}

.badge-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: 0 0 0 4px rgba(234, 215, 156, 0.14);
}

.access-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.access-pill {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    padding: 5px 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 750;
}

.access-institutional {
    color: var(--forest-strong);
    border-color: rgba(22, 99, 85, 0.16);
    background: rgba(22, 99, 85, 0.08);
}

.access-public {
    color: var(--burgundy-dark);
    border-color: rgba(155, 34, 71, 0.14);
    background: rgba(155, 34, 71, 0.07);
}

.access-pending {
    color: #755918;
    border-color: rgba(165, 127, 44, 0.18);
    background: rgba(165, 127, 44, 0.08);
}

.project-copy {
    display: grid;
    gap: 10px;
}

.project-copy h4 {
    margin: 0;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.25;
}

.project-copy h4 small {
    display: block;
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.35;
}

.project-copy p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.6;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.project-tags li {
    padding: 5px 9px;
    color: var(--forest);
    border-radius: 999px;
    background: rgba(22, 99, 85, 0.08);
    font-size: 0.67rem;
    font-weight: 750;
}

.project-cta {
    width: fit-content;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    padding: 10px 13px;
    color: #fff;
    border-radius: 9px;
    background: var(--burgundy-dark);
    font-size: 0.84rem;
    font-weight: 750;
    transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.project-cta:hover {
    background: var(--burgundy);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(97, 18, 50, 0.2);
}

.project-cta .icon {
    transition: transform 160ms ease;
}

.project-cta:hover .icon {
    transform: translateX(3px);
}

.project-card.is-upcoming {
    color: #343a38;
    border: 1px dashed rgba(234, 215, 156, 0.45);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(234, 215, 156, 0.17)),
        #f1f0e9;
    box-shadow: none;
}

.project-upcoming-note {
    margin: auto 0 0;
    padding-top: 8px;
    color: var(--gray);
    border-top: 1px solid rgba(23, 32, 30, 0.1);
    font-size: 0.76rem;
    font-style: italic;
    line-height: 1.5;
}

/* Closing */

.closing-strip {
    position: relative;
    overflow: hidden;
    padding: clamp(58px, 7vw, 82px) 0;
    background:
        radial-gradient(circle at 10% 30%, rgba(22, 99, 85, 0.12), transparent 25%),
        linear-gradient(120deg, #ece7d7, var(--mist));
}

.closing-strip::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -210px;
    border: 1px solid rgba(0, 59, 52, 0.09);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(0, 59, 52, 0.025), 0 0 0 130px rgba(165, 127, 44, 0.02);
}

.closing-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.closing-strip h2 {
    max-width: 720px;
    margin: 0;
    color: var(--forest-strong);
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    line-height: 1.18;
    text-wrap: balance;
}

.closing-strip p:not(.eyebrow) {
    max-width: 620px;
    margin: 13px 0 0;
    color: var(--ink-soft);
    line-height: 1.65;
}

.button-dark {
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(135deg, var(--forest-strong), var(--forest));
    box-shadow: 0 14px 34px rgba(0, 59, 52, 0.22);
}

/* Footer */

.pleca-institucional {
    color: rgba(255, 255, 255, 0.68);
    background: #17201e;
    font-size: 0.78rem;
}

.pleca-gold-line {
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy-dark), var(--gold) 35%, var(--gold-soft) 50%, var(--forest) 100%);
}

.pleca-body {
    width: min(var(--max), calc(100% - 40px));
    min-height: 96px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    margin-inline: auto;
    padding: 20px 0;
}

.pleca-logos {
    display: flex;
    align-items: center;
    gap: 13px;
}

.pleca-profepa {
    width: 116px;
    height: auto;
    opacity: 0.88;
}

.pleca-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
}

.pleca-gob-mx {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.pleca-center {
    text-align: center;
}

.pleca-center p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.45;
}

.pleca-center p + p {
    margin-top: 3px;
}

.pleca-center a {
    color: var(--gold-soft);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.pleca-links {
    display: flex;
    gap: 16px;
}

.pleca-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.58);
}

.pleca-links a:hover {
    color: var(--gold-soft);
}

/* Progressive animation */

[data-reveal] {
    opacity: 1;
    transform: none;
}

.js [data-reveal] {
    opacity: 1;
    transform: translateY(14px);
    transition: transform 420ms ease;
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes mapScan {
    from { transform: translateX(-115px); }
    to { transform: translateX(115px); }
}

/* Responsive */

@media (max-width: 1050px) {
    .brand-text strong {
        max-width: 230px;
    }

    .primary-nav a {
        padding-inline: 10px;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) minmax(330px, 0.7fr);
        gap: 34px;
    }

    .hero h1 {
        font-size: clamp(2.65rem, 5.4vw, 4rem);
    }
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 18px;
        right: 18px;
        display: none;
        overflow: hidden;
        padding: 9px;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 12px;
        background: rgba(0, 43, 37, 0.99);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
    }

    .site-header.is-open .primary-nav {
        display: grid;
    }

    .primary-nav a {
        justify-content: flex-start;
        padding-inline: 14px;
    }

    .primary-nav .nav-action {
        margin-left: 0;
    }

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

    .mission-visual {
        min-height: 360px;
    }

    .mission-visual img {
        min-height: 360px;
    }

    .section-heading-split,
    .coords-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }

    .section-heading-split > p,
    .coords-heading > p {
        max-width: 720px;
    }

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

    .pleca-body {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .hero-layout {
        display: block;
    }

    .hero-inner {
        position: relative;
        z-index: 2;
        width: min(690px, 84%);
    }

    .hero-visual {
        position: absolute;
        z-index: 0;
        top: 3%;
        right: -17%;
        width: min(58vw, 500px);
        opacity: 0.24;
        pointer-events: none;
    }

    .hero-visual-frame {
        border-color: rgba(234, 215, 156, 0.22);
        box-shadow: none;
        transform: none;
    }

    .hero-visual figcaption,
    .hero-visual-label {
        display: none;
    }
}

@media (max-width: 700px) {
    :root {
        --header-h: 72px;
    }

    .site-header {
        gap: 12px;
        padding-inline: 18px;
    }

    .brand-lockup {
        gap: 10px;
    }

    .brand-logo {
        width: 88px;
    }

    .brand-divider {
        height: 32px;
    }

    .brand-text strong {
        max-width: 178px;
        font-size: 0.78rem;
        line-height: 1.22;
    }

    .brand-text small {
        display: none;
    }

    .nav-toggle {
        width: 44px;
        height: 44px;
    }

    .section-shell {
        width: min(100% - 36px, var(--max));
    }

    .section {
        padding: 64px 0;
    }

    .hero {
        min-height: 770px;
        padding: calc(var(--header-h) + 28px) 18px 32px;
        text-align: center;
    }

    .hero-layout {
        width: 100%;
    }

    .hero-inner {
        width: 100%;
        justify-items: center;
    }

    .hero-visual {
        top: 14%;
        right: -45%;
        width: 92vw;
        opacity: 0.16;
    }

    .hero-status {
        display: none;
    }

    .hero-seal {
        width: 50px;
        height: 50px;
        margin-bottom: 17px;
        border-radius: 14px;
    }

    .hero-seal .icon {
        width: 23px;
        height: 23px;
    }

    .hero .eyebrow {
        max-width: 310px;
        margin-bottom: 12px;
        font-size: 0.63rem;
        line-height: 1.45;
    }

    .hero h1 {
        max-width: 360px;
        font-size: clamp(2.15rem, 10.2vw, 2.72rem);
        line-height: 1.04;
    }

    .hero-subtitle {
        max-width: 340px;
        margin-top: 17px;
        font-size: 1rem;
        line-height: 1.42;
    }

    .hero-brief {
        max-width: 344px;
        margin-top: 12px;
        font-size: 0.9rem;
        line-height: 1.55;
    }

    .hero-actions {
        width: min(100%, 340px);
        display: grid;
        gap: 9px;
        margin-top: 21px;
    }

    .hero-actions .button {
        width: 100%;
    }

    .capability-strip {
        width: min(100%, 350px);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        justify-content: center;
        gap: 5px;
        margin-top: 18px;
    }

    .capability-strip span {
        min-width: 0;
        min-height: 54px;
        display: grid;
        justify-items: center;
        align-content: center;
        gap: 4px;
        padding: 6px 3px;
        border-radius: 10px;
        font-size: 0.6rem;
        line-height: 1.2;
    }

    .capability-strip .icon {
        width: 17px;
        height: 17px;
    }

    .tech-grid {
        background-size: 38px 38px;
    }

    .tech-orbit {
        width: 170vw;
    }

    .orbit-two {
        width: 120vw;
    }

    .mission-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-bottom: 42px;
        transform: translateY(-25px);
    }

    .mission-facts > span {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        padding: 14px 6px;
        text-align: center;
    }

    .mission-facts .icon {
        width: 20px;
        height: 20px;
    }

    .mission-facts strong {
        font-size: 0.66rem;
        line-height: 1.3;
    }

    .mission-facts small {
        display: none;
    }

    .mission-layout {
        gap: 42px;
    }

    .mission-visual {
        min-height: 300px;
        border-radius: 15px 42px 15px 15px;
    }

    .mission-visual img {
        min-height: 300px;
    }

    .mission-visual figcaption {
        inset: auto 18px 18px;
    }

    .dg-stack {
        grid-template-columns: 1fr;
    }

    .mission-quote {
        padding-left: 18px;
    }

    .dg-card {
        padding: 16px;
    }

    .materias-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 32px;
    }

    .materia-card:hover {
        transform: none;
    }

    .materia-card summary {
        min-height: 68px;
        padding: 13px 15px;
        cursor: pointer;
    }

    .materia-chevron {
        display: block;
    }

    .materia-body {
        padding: 0 15px 16px 70px;
    }

    .project-cards {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .coord-group + .coord-group {
        padding-top: 52px;
    }

    .project-card {
        padding: 21px;
    }

    .closing-layout {
        display: grid;
        gap: 25px;
    }

    .closing-layout .button {
        width: 100%;
    }

    .pleca-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 380px) {
    .site-header {
        padding-inline: 14px;
    }

    .brand-logo {
        width: 78px;
    }

    .brand-text strong {
        max-width: 158px;
        font-size: 0.72rem;
    }

    .hero h1 {
        font-size: 2.05rem;
    }

    .project-card {
        padding: 19px;
    }

    .status-badge {
        font-size: 0.62rem;
    }
}

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

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

    .hero-visual-scan {
        display: none;
    }
}
