:root {
    --bg: #020817;
    --bg-2: #061a2f;
    --bg-3: #0b2a4a;
    --cyan: #00d4ff;
    --teal: #13f2c2;
    --ucla-blue: #2774ae;
    --ucla-gold: #ffd100;
    --text: #eaf6ff;
    --muted: #9fb7c8;
    --line: rgba(255, 255, 255, 0.12);
    --glass: rgba(255, 255, 255, 0.055);
    --glass-strong: rgba(255, 255, 255, 0.09);
    --shadow: 0 24px 90px rgba(0, 0, 0, 0.36);
    --radius: 8px;
    --section: 112px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(2, 8, 23, 0.94), rgba(2, 8, 23, 1)),
        radial-gradient(circle at 12% 18%, rgba(19, 242, 194, 0.1), transparent 28%),
        radial-gradient(circle at 82% 8%, rgba(255, 209, 0, 0.05), transparent 24%),
        var(--bg);
    color: var(--text);
    font-family: Inter, sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.38;
    z-index: -1;
    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: 64px 64px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

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

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

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

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 20;
    top: 12px;
    left: 12px;
    padding: 10px 14px;
    background: var(--text);
    color: var(--bg);
}

.site-header {
    position: fixed;
    z-index: 15;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px clamp(18px, 5%, 56px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 8, 23, 0.72);
    backdrop-filter: blur(18px);
    transition: background 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled {
    padding-top: 12px;
    padding-bottom: 12px;
    background: rgba(2, 8, 23, 0.92);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: max-content;
}

.brand-mark {
    display: grid;
    min-width: 50px;
    height: 42px;
    padding: 0 9px;
    place-items: center;
    border: 1px solid rgba(0, 212, 255, 0.42);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.18), rgba(255, 209, 0, 0.09));
    color: var(--text);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.brand small {
    color: var(--muted);
    font-size: 0.76rem;
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.nav-link,
.nav-dropdown > button {
    border: 0;
    background: transparent;
    color: rgba(234, 246, 255, 0.82);
    cursor: pointer;
    padding: 10px 9px;
    font-size: 0.88rem;
}

.nav-link:hover,
.nav-link.is-active,
.nav-dropdown > button:hover,
.nav-dropdown > button.is-active {
    color: var(--text);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 270px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(2, 8, 23, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 180ms ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px;
    color: var(--muted);
    border-radius: 6px;
}

.dropdown-menu a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 12px 18px;
    border-radius: 8px;
    border: 1px solid rgba(0, 212, 255, 0.4);
    font-weight: 700;
    font-size: 0.92rem;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta,
.button-primary {
    background: linear-gradient(135deg, var(--cyan), var(--teal));
    color: #00131f;
    box-shadow: 0 16px 40px rgba(0, 212, 255, 0.18);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
}

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

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    padding: 132px clamp(18px, 5%, 56px) 46px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(2, 8, 23, 0.52), rgba(6, 26, 47, 0.78));
}

.hero-canvas,
.page-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.84;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(2, 8, 23, 0.34), transparent 38%, rgba(2, 8, 23, 0.3)),
        linear-gradient(180deg, transparent 56%, var(--bg) 98%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.98fr);
    gap: clamp(22px, 3vw, 42px);
    align-items: center;
    width: min(100%, 1320px);
    margin: 0 auto;
}

.hero h1,
.page-hero h1,
.section-heading h2,
.final-cta h2 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.03;
    font-weight: 700;
}

.hero h1 {
    max-width: 780px;
    font-size: clamp(3.3rem, 5.1rem, 5.1rem);
}

.hero-subhead {
    max-width: 820px;
    color: var(--text);
    font-size: 1.22rem;
}

.hero-copy > p:not(.hero-subhead) {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.02rem;
}

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

.cred-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
    max-width: 780px;
}

.cred-strip span,
.pill-grid span,
.topic-grid span,
.proof-list span {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(234, 246, 255, 0.86);
    padding: 10px 12px;
    font-size: 0.86rem;
}

.hero-visual {
    position: relative;
    min-height: 760px;
    margin-right: -132px;
}

.portrait-frame {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(0, 212, 255, 0.22);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.04);
}

.portrait-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 8, 23, 0.08), rgba(2, 8, 23, 0.42));
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    transform: scale(1);
}

.hud-panel {
    position: absolute;
    z-index: 2;
    width: min(250px, 72%);
    border: 1px solid rgba(0, 212, 255, 0.32);
    border-radius: 8px;
    background: rgba(2, 8, 23, 0.74);
    backdrop-filter: blur(14px);
    padding: 16px;
    box-shadow: var(--shadow);
}

.hud-panel span,
.section-label,
.offer-card span,
.venture-card span,
.case-card span,
.article-row span,
.architecture-detail span {
    display: block;
    color: var(--teal);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.76rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hud-panel strong {
    display: block;
    margin-top: 7px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.1rem;
}

.hud-panel small {
    color: var(--muted);
}

.hud-panel-one {
    top: 112px;
    left: -118px;
}

.hud-panel-two {
    right: -24px;
    bottom: 132px;
}

.section,
.final-cta {
    padding: var(--section) clamp(18px, 5%, 56px);
    position: relative;
}

.section-inner {
    width: min(100%, var(--max));
    margin: 0 auto;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading.align-left {
    margin-left: 0;
    text-align: left;
}

.section-label {
    margin-bottom: 14px;
}

.section-heading h2,
.final-cta h2 {
    font-size: clamp(2.15rem, 3rem, 3rem);
}

.section-heading p,
.final-cta p {
    color: var(--muted);
    font-size: 1.02rem;
}

.pill-grid,
.topic-grid,
.proof-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: start;
}

.sticky-copy {
    position: sticky;
    top: 112px;
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-step {
    position: relative;
    min-height: 138px;
    padding: 28px 28px 28px 70px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
    overflow: hidden;
}

.timeline-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.16), transparent);
    opacity: 0;
    transition: opacity 220ms ease;
}

.timeline-step:hover::before {
    opacity: 1;
}

.timeline-step span {
    position: absolute;
    left: 28px;
    top: 34px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.55);
}

.timeline-step h3,
.glass-card h3,
.offer-card h3,
.venture-card h3,
.case-card h3,
.article-row h2,
.architecture-detail h3 {
    position: relative;
    margin: 0 0 12px;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.15;
}

.card-grid,
.offer-grid,
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.glass-card,
.offer-card,
.venture-card,
.case-card,
.lead-form,
.article-row,
.architecture-detail,
.cta-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--glass), rgba(255, 255, 255, 0.025));
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
}

.glass-card,
.offer-card,
.case-card,
.article-row {
    padding: 26px;
}

.experience-list {
    display: grid;
    gap: 14px;
}

.experience-item,
.download-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--glass), rgba(255, 255, 255, 0.025));
    padding: 22px 24px;
}

.experience-item span,
.download-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--teal);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
}

.experience-item h3,
.download-card h3 {
    margin: 0 0 5px;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.15;
}

.experience-item p,
.download-card p,
.article-row p {
    margin: 0;
    color: var(--muted);
}

.experience-item small {
    display: block;
    margin-top: 8px;
    color: rgba(234, 246, 255, 0.72);
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 54px;
}

.download-card {
    display: block;
    min-height: 190px;
    transition: transform 180ms ease, border-color 180ms ease;
}

.download-card:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 242, 194, 0.5);
}

.download-links {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.download-links a {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    padding: 12px 14px;
    font-weight: 700;
}

.project-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0 54px;
}

.project-index-card {
    min-height: 270px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(8, 19, 37, 0.95), rgba(7, 13, 27, 0.82)),
        radial-gradient(circle at 16% 0%, rgba(19, 242, 194, 0.14), transparent 38%);
    color: var(--text);
    padding: 24px;
    text-decoration: none;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.24);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.project-index-card:hover {
    transform: translateY(-5px);
    border-color: rgba(19, 242, 194, 0.54);
    background:
        linear-gradient(145deg, rgba(10, 27, 50, 0.98), rgba(7, 13, 27, 0.9)),
        radial-gradient(circle at 16% 0%, rgba(19, 242, 194, 0.2), transparent 42%);
}

.project-index-card span,
.project-detail-grid span,
.project-fact-card span {
    color: var(--teal);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.project-index-card h3 {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.15;
}

.project-index-card p {
    margin: 0;
    color: var(--muted);
}

.project-index-card small {
    margin-top: auto;
    color: var(--teal);
    font-weight: 700;
}

.project-hero .page-hero-inner {
    max-width: 980px;
}

.project-fact-card {
    border: 1px solid rgba(19, 242, 194, 0.32);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--glass), rgba(19, 242, 194, 0.035));
    padding: 28px;
    box-shadow: inset 0 0 40px rgba(19, 242, 194, 0.04);
}

.project-fact-card h3 {
    margin: 10px 0;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.45rem;
    line-height: 1.15;
}

.project-fact-card p {
    color: var(--muted);
}

.project-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.project-detail-grid .glass-card {
    min-height: 170px;
}

.project-detail-grid .glass-card p {
    margin-bottom: 0;
}

.project-context-section {
    background: linear-gradient(180deg, rgba(19, 242, 194, 0.035), rgba(2, 8, 23, 0));
}

.governance-section {
    background:
        radial-gradient(circle at 20% 10%, rgba(19, 242, 194, 0.08), transparent 36%),
        linear-gradient(180deg, rgba(6, 26, 47, 0.38), rgba(2, 8, 23, 0));
}

.project-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.project-chip-grid span {
    border: 1px solid rgba(19, 242, 194, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    padding: 12px 16px;
    font-weight: 700;
    box-shadow: inset 0 0 22px rgba(19, 242, 194, 0.035);
}

.compact-card {
    min-height: auto;
    padding: 20px 22px;
}

.compact-card h3 {
    margin-bottom: 0;
    font-size: 1.05rem;
}

.project-list-panel,
.outcome-list {
    display: grid;
    gap: 12px;
}

.project-list-row,
.outcome-row,
.governance-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
        radial-gradient(circle at 0% 0%, rgba(19, 242, 194, 0.08), transparent 32%);
    padding: 16px 18px;
}

.project-list-row {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
}

.project-list-row span,
.governance-card span {
    color: var(--teal);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.project-list-row p,
.governance-card p,
.outcome-row p {
    margin: 0;
    color: var(--text);
    font-weight: 700;
    line-height: 1.45;
}

.governance-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

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

.governance-card p {
    margin-top: 8px;
    color: var(--muted);
    font-weight: 500;
}

.outcome-row {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
}

.outcome-row span {
    width: 8px;
    height: 8px;
    margin-top: 8px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 16px rgba(19, 242, 194, 0.8);
}

.related-projects {
    margin-bottom: 0;
}

.trust-section,
.faq-section {
    background:
        radial-gradient(circle at 14% 0%, rgba(19, 242, 194, 0.07), transparent 34%),
        linear-gradient(180deg, rgba(6, 26, 47, 0.34), rgba(2, 8, 23, 0));
}

.trust-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.trust-card,
.faq-item,
.confidentiality-note {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(145deg, var(--glass), rgba(255, 255, 255, 0.025));
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.22);
}

.trust-card,
.faq-item {
    padding: 24px;
}

.trust-card h3,
.faq-item h3 {
    margin: 0 0 10px;
    font-family: "Space Grotesk", sans-serif;
    line-height: 1.15;
}

.trust-card p,
.faq-item p {
    margin: 0;
    color: var(--muted);
}

.confidentiality-note {
    margin: 0 auto 34px;
    max-width: 980px;
    padding: 20px 24px;
}

.confidentiality-note span {
    display: block;
    margin-bottom: 8px;
    color: var(--teal);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.confidentiality-note p {
    margin: 0;
    color: var(--muted);
}

.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.breadcrumb-nav a {
    color: var(--teal);
    font-weight: 700;
}

.breadcrumb-nav strong {
    color: var(--text);
}

.compact-section {
    padding-top: 34px;
    padding-bottom: 34px;
}

.proof-note {
    margin-top: 46px;
}

.glass-card {
    min-height: 245px;
}

.glass-card p,
.offer-card p,
.venture-card p,
.case-card p,
.article-row p {
    color: var(--muted);
}

.glass-card a,
.venture-card a,
.article-row a {
    color: var(--teal);
    font-weight: 700;
}

.tilt-card {
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.tilt-card:hover {
    transform: translateY(-6px) rotateX(1deg);
    border-color: rgba(0, 212, 255, 0.46);
    background: linear-gradient(145deg, rgba(0, 212, 255, 0.09), rgba(255, 255, 255, 0.04));
}

.architecture-section {
    background: linear-gradient(180deg, rgba(6, 26, 47, 0.48), rgba(2, 8, 23, 0));
}

.architecture-diagram {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.48fr);
    gap: 24px;
    align-items: stretch;
}

.layer-stack {
    display: grid;
    gap: 10px;
}

.architecture-layer {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    cursor: pointer;
    padding: 16px 18px;
    text-align: left;
    transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.architecture-layer:hover,
.architecture-layer.is-selected {
    border-color: rgba(19, 242, 194, 0.58);
    background: rgba(19, 242, 194, 0.08);
    transform: translateX(4px);
}

.architecture-detail {
    padding: 28px;
    align-self: stretch;
}

.architecture-summary {
    margin-bottom: 22px;
    color: var(--text);
    font-size: 1.04rem;
    line-height: 1.65;
}

.architecture-detail-block {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    margin-top: 16px;
}

.architecture-detail-block strong {
    display: block;
    margin-bottom: 8px;
    color: var(--teal);
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.architecture-detail-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.venture-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.venture-card {
    padding: 32px;
    min-height: 280px;
}

.offer-card span {
    color: var(--ucla-gold);
    margin-bottom: 30px;
}

.proof-list {
    justify-content: flex-start;
}

.lead-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.download-list {
    color: var(--muted);
    padding-left: 20px;
}

.download-list li + li {
    margin-top: 9px;
}

.lead-form {
    padding: 28px;
}

.form-heading {
    margin-bottom: 22px;
}

.form-heading h2,
.form-heading h3 {
    margin: 0 0 8px;
    font-family: "Space Grotesk", sans-serif;
}

.form-heading p,
.form-note {
    color: var(--muted);
}

.lead-form label {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: rgba(234, 246, 255, 0.9);
    font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(2, 8, 23, 0.76);
    color: var(--text);
    padding: 13px 14px;
    outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 16px;
}

.honeypot {
    display: none !important;
}

.turnstile-wrap {
    margin: 8px 0 18px;
    min-height: 65px;
}

.compact-form .turnstile-wrap {
    margin-top: 2px;
}

.page-hero {
    position: relative;
    min-height: 58vh;
    display: grid;
    align-items: end;
    padding: 150px clamp(18px, 5%, 56px) 70px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(2, 8, 23, 0.62), rgba(11, 42, 74, 0.45));
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, var(--bg));
}

.page-hero-inner {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    max-width: 850px;
    font-size: clamp(3rem, 4.6rem, 4.6rem);
}

.page-hero p:not(.section-label) {
    max-width: 760px;
    color: var(--muted);
    font-size: 1.08rem;
}

.content-stack {
    display: grid;
    gap: 16px;
}

.article-list {
    display: grid;
    gap: 14px;
}

.article-row {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
}

.final-cta {
    padding-top: 70px;
}

.cta-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 42px;
    background:
        linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(255, 209, 0, 0.06)),
        rgba(255, 255, 255, 0.045);
}

.site-footer {
    padding: 70px clamp(18px, 5%, 56px) 28px;
    border-top: 1px solid var(--line);
    background: rgba(2, 8, 23, 0.9);
}

.footer-grid {
    width: min(100%, var(--max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px 230px;
    gap: 38px;
}

.site-footer h2 {
    margin: 0 0 16px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
}

.site-footer p,
.site-footer a,
.footer-bottom {
    color: var(--muted);
}

.site-footer a {
    display: block;
    margin-bottom: 9px;
}

.footer-bottom {
    width: min(100%, var(--max));
    margin: 34px auto 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.86rem;
}
