:root {
    --bg: #101826;
    --bg-soft: #1a2435;
    --bg-deep: #0d1320;
    --paper: #f4efe7;
    --paper-soft: #fbf8f2;
    --paper-warm: #f1e7da;
    --line: #ddd2c4;
    --card: #ffffff;
    --ink: #121824;
    --ink-soft: rgba(18, 24, 36, 0.72);
    --ink-faint: rgba(18, 24, 36, 0.54);
    --text-inverse: #f8f5ef;
    --text-inverse-soft: rgba(248, 245, 239, 0.74);
    --orange: #ff6b2c;
    --orange-soft: #ff9a65;
    --amber: #efb04a;
    --plum: #6b3ad6;
    --cyan: #56d3df;
    --shadow-sm: 0 12px 24px rgba(14, 18, 26, 0.08);
    --shadow-md: 0 24px 60px rgba(14, 18, 26, 0.12);
    --shadow-lg: 0 34px 80px rgba(10, 14, 22, 0.26);
    --radius-sm: 18px;
    --radius-md: 26px;
    --radius-lg: 34px;
    --shell: min(1240px, calc(100vw - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 112px;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.shell {
    width: var(--shell);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    top: -3rem;
    left: 1rem;
    z-index: 160;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--ink);
    color: var(--text-inverse);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 150;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--amber), var(--plum));
    box-shadow: 0 0 18px rgba(255, 107, 44, 0.35);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
}

.header__shell {
    margin-top: 0.75rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    padding: 0.78rem 1.1rem;
    border-radius: 999px;
    background: rgba(251, 247, 239, 0.84);
    border: 1px solid rgba(18, 24, 36, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-sm);
    transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled .header__shell {
    background: rgba(255, 251, 244, 0.94);
    border-color: rgba(18, 24, 36, 0.1);
    box-shadow: 0 18px 38px rgba(14, 18, 26, 0.12);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0.12rem 0.3rem 0.12rem 0.5rem;
}

.brand img {
    width: clamp(132px, 15vw, 148px);
    height: auto;
}

.header__panel {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-self: end;
}

.site-nav,
.header__actions,
.hero-actions,
.contact-band__actions,
.social-row,
.payment-pills {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.site-nav a {
    position: relative;
    padding: 0.4rem 0;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--ink-soft);
    transition: color 0.2s ease;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.15rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--orange), var(--plum));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
    color: var(--text-inverse);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span + span {
    margin-top: 6px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
}

.button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0.95rem 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.button span {
    position: relative;
    z-index: 1;
}

.button::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:hover::before {
    transform: translateX(0);
}

.button--primary {
    color: var(--text-inverse);
    background: linear-gradient(135deg, var(--orange), var(--orange-soft));
    box-shadow: 0 18px 36px rgba(255, 107, 44, 0.24);
}

.button--primary::before {
    background: linear-gradient(135deg, var(--plum), #8b61ea);
}

.button--ghost {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.76);
    border-color: rgba(18, 24, 36, 0.1);
}

.button--ghost::before {
    background: linear-gradient(135deg, rgba(239, 176, 74, 0.18), rgba(107, 58, 214, 0.12));
}

.hero,
.section,
.contact-band,
.sector-strip {
    position: relative;
    overflow: clip;
}

.hero {
    padding: 9.75rem 0 5rem;
    background:
        radial-gradient(circle at 8% 18%, rgba(255, 107, 44, 0.12), transparent 26%),
        radial-gradient(circle at 88% 14%, rgba(107, 58, 214, 0.1), transparent 22%),
        linear-gradient(180deg, var(--paper-soft), var(--paper));
}

.hero__backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 24, 36, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 24, 36, 0.045) 1px, transparent 1px);
    background-size: 62px 62px;
    opacity: 0.35;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 88%);
}

.hero__halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(54px);
    opacity: 0.56;
    animation: haloFloat 10s ease-in-out infinite;
}

.hero__halo--one {
    width: 14rem;
    height: 14rem;
    top: 6rem;
    left: -3rem;
    background: rgba(255, 107, 44, 0.3);
}

.hero__halo--two {
    width: 18rem;
    height: 18rem;
    right: 8%;
    top: 5rem;
    background: rgba(107, 58, 214, 0.2);
    animation-delay: 1.2s;
}

.hero__routes,
.page-hero__routes,
.section-routes {
    position: absolute;
    pointer-events: none;
    left: 50%;
    transform: translateX(-50%);
}

.hero__routes {
    top: 2%;
    width: min(1520px, 118vw);
}

.page-hero__routes {
    top: 3%;
    width: min(1480px, 116vw);
    opacity: 0.9;
}

.section-routes {
    top: 0;
    bottom: 0;
    width: min(1580px, 122vw);
    height: 100%;
    opacity: 0.72;
    z-index: 0;
}

.route-path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 10 16;
    opacity: 0.58;
    animation: routeDrift 18s linear infinite;
}

.route-path--one {
    stroke: rgba(255, 107, 44, 0.56);
    stroke-width: 2.8;
}

.route-path--two {
    stroke: rgba(86, 211, 223, 0.62);
    stroke-width: 2.4;
    animation-direction: reverse;
}

.route-path--three {
    stroke: rgba(107, 58, 214, 0.48);
    stroke-width: 2.2;
}

.route-node {
    fill: var(--orange);
    opacity: 0.76;
    filter: drop-shadow(0 0 14px rgba(255, 107, 44, 0.5));
    animation: pulseNode 3.6s ease-in-out infinite;
}

.route-node--alt {
    fill: var(--cyan);
    opacity: 0.84;
    filter: drop-shadow(0 0 14px rgba(86, 211, 223, 0.5));
}

.route-cargo {
    opacity: 0.96;
    transform-origin: center center;
    will-change: transform;
    filter: drop-shadow(0 10px 14px rgba(18, 24, 36, 0.22));
}

.route-cargo image {
    overflow: visible;
}

.route-cargo--bag {
    opacity: 0.92;
    filter: drop-shadow(0 16px 22px rgba(18, 24, 36, 0.22));
}

.route-cargo--box-alt {
    opacity: 0.82;
}

.section-routes .route-path {
    opacity: 0.26;
}

.section-routes .route-node {
    opacity: 0.42;
}

.section-routes .route-cargo {
    opacity: 0.32;
    filter: drop-shadow(0 8px 12px rgba(18, 24, 36, 0.14));
}

.section--ink .section-routes .route-path,
.section--graphite .section-routes .route-path,
.contact-band .section-routes .route-path {
    opacity: 0.34;
}

.section--ink .section-routes .route-node,
.section--graphite .section-routes .route-node,
.contact-band .section-routes .route-node {
    opacity: 0.54;
}

.section--ink .section-routes .route-cargo,
.section--graphite .section-routes .route-cargo,
.contact-band .section-routes .route-cargo {
    opacity: 0.42;
}

.hero__shell,
.page-hero__shell,
.section > .shell,
.contact-band__shell,
.sector-strip__shell {
    position: relative;
    z-index: 1;
}

.hero__shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin: 0 0 1rem;
    color: rgba(248, 245, 239, 0.76);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: currentColor;
    opacity: 0.7;
}

.eyebrow--dark {
    color: rgba(18, 24, 36, 0.58);
}

.hero-copy {
    max-width: 620px;
}

.hero-copy .eyebrow {
    color: rgba(18, 24, 36, 0.56);
}

.hero-title,
.section-title,
.platform-card h3,
.service-panel h3,
.journey-step h3,
.pillar-card h3,
.team-card h3,
.contact-card strong {
    margin: 0;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.05em;
}

.hero-title {
    font-size: clamp(2.45rem, 5vw, 4.45rem);
    line-height: 0.94;
}

.hero-title .line {
    display: block;
    overflow: hidden;
    padding-bottom: 0.08em;
}

.hero-title .line-inner {
    display: block;
}

.hero-copy__text,
.section-copy,
.platform-card p,
.contact-card p,
.pillar-card p,
.team-card__role,
.proof-card__label,
.platform-point span,
.platform-card figcaption {
    font-size: 1.02rem;
}

.hero-copy__text {
    margin: 1.25rem 0 0;
    max-width: 35rem;
    color: var(--ink-soft);
}

.hero-actions,
.contact-band__actions {
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.fact-card {
    min-height: 100%;
    padding: 1.1rem 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(18, 24, 36, 0.08);
    box-shadow: 0 16px 32px rgba(18, 24, 36, 0.08);
}

.fact-card strong {
    display: block;
    margin-bottom: 0.3rem;
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

.fact-card span {
    display: block;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.hero-stage {
    position: relative;
    min-height: 640px;
}

.hero-stage__frame {
    position: absolute;
    inset: 0 0 88px 86px;
    padding: 1.1rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #18263a, #101826);
    color: var(--text-inverse);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.hero-stage__frame::before {
    content: "";
    position: absolute;
    top: -2.6rem;
    right: -2.6rem;
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.4), transparent 68%);
    opacity: 0.6;
}

.hero-stage__head {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-stage__head span,
.ticket-label,
.platform-card__eyebrow,
.service-panel__index,
.journey-step__eyebrow,
.team-card__role,
.contact-card__label,
.proof-card__label {
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-stage__head span,
.proof-card__label {
    color: rgba(248, 245, 239, 0.62);
}

.ticket-label,
.platform-card__eyebrow {
    color: var(--ink-faint);
}

.hero-stage__head strong {
    font-family: "Sora", sans-serif;
    font-size: 1.25rem;
    letter-spacing: -0.03em;
}

.hero-stage__screen {
    position: relative;
    margin-top: 1rem;
    overflow: hidden;
    border-radius: 28px;
    aspect-ratio: 16 / 10;
    background: #000000;
    clip-path: polygon(0 0, 100% 0, 100% 84%, 91% 100%, 0 100%);
}

.hero-stage__screen::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 24, 38, 0.15), rgba(16, 24, 38, 0.45));
}

.hero-stage__screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.78) saturate(0.92);
}

.hero-stage__metrics {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 1rem;
}

.metric-box {
    padding: 0.9rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-box span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(248, 245, 239, 0.54);
}

.metric-box strong {
    display: block;
    margin-top: 0.24rem;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    letter-spacing: -0.03em;
}

.hero-stage__van {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12rem;
    z-index: 2;
    filter: drop-shadow(0 30px 44px rgba(10, 14, 22, 0.24));
    animation: vanFloat 4.8s ease-in-out infinite;
}

.hero-stage__van img {
    width: min(760px, 100%);
    margin: 0 auto;
    will-change: transform;
}

.hero-stage__ticket {
    position: absolute;
    z-index: 3;
    max-width: 244px;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 24, 36, 0.08);
    box-shadow: 0 18px 38px rgba(18, 24, 36, 0.1);
}

.hero-stage__ticket strong {
    display: block;
    margin-top: 0.3rem;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.hero-stage__ticket--top {
    top: 4.2rem;
    left: 0;
}

.hero-stage__ticket--bottom {
    right: -7.6rem;
    bottom: 12.2rem;
}

.sector-strip {
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sector-strip__shell {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.sector-strip__shell span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 0.8rem;
    text-align: center;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-soft);
    border-right: 1px solid var(--line);
}

.sector-strip__shell span:last-child {
    border-right: 0;
}

.section {
    padding: clamp(4.4rem, 8vw, 7.2rem) 0;
}

.section--light {
    background: linear-gradient(180deg, var(--paper), var(--paper-soft));
}

.section--ink {
    color: var(--text-inverse);
    background:
        radial-gradient(circle at top left, rgba(255, 107, 44, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(107, 58, 214, 0.14), transparent 26%),
        linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.section--paper {
    background:
        radial-gradient(circle at top left, rgba(239, 176, 74, 0.12), transparent 20%),
        linear-gradient(180deg, #fffaf2, var(--paper-warm));
}

.section--graphite {
    color: var(--text-inverse);
    background:
        radial-gradient(circle at top left, rgba(255, 107, 44, 0.12), transparent 22%),
        radial-gradient(circle at 82% 18%, rgba(86, 211, 223, 0.12), transparent 18%),
        linear-gradient(180deg, #141b28, #1b2637);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 2.4rem;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
    gap: 2rem;
    align-items: end;
    max-width: none;
}

.section-title {
    font-size: clamp(2.15rem, 5vw, 1.85rem);
    line-height: 0.98;
}

.section-copy {
    margin: 1rem 0 0;
    color: var(--text-inverse-soft);
}

.section-copy--dark {
    color: var(--ink-soft);
}

.platform-grid,
.services-grid,
.proof__shell,
.contact-band__shell,
.footer__shell {
    display: grid;
    gap: 1.2rem;
}

.platform-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 1rem;
}

#platform .section-heading {
    margin-bottom: 1.7rem;
}

.platform-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: var(--card);
    border: 1px solid rgba(18, 24, 36, 0.08);
    box-shadow: var(--shadow-md);
}

.platform-card::before,
.service-panel::before,
.pillar-card::before,
.contact-card::before,
.team-card::before {
    content: "";
    position: absolute;
    width: 12rem;
    height: 12rem;
    right: -22%;
    bottom: -36%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.16), transparent 70%);
    pointer-events: none;
}

.platform-card--statement {
    grid-column: span 7;
    padding: 1.6rem;
}

.platform-card--statement h3,
.platform-card--brand h3 {
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    line-height: 1.05;
}

.platform-card--statement p,
.platform-card--brand p {
    margin: 0.95rem 0 0 4.1rem;
    color: var(--ink-soft);
}

.platform-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.platform-point {
    padding: 1rem;
    border-radius: 22px;
    background: #fbf8f2;
    border: 1px solid rgba(18, 24, 36, 0.06);
}

.platform-point strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.98rem;
}

.platform-point span {
    display: block;
    color: var(--ink-soft);
    font-size: 0.92rem;
}

.platform-card--photo {
    grid-column: span 5;
    padding: 1rem;
    display: grid;
    gap: 0.85rem;
}

.platform-card--photo img {
    width: 100%;
    aspect-ratio: 4 / 3.3;
    object-fit: cover;
    border-radius: 22px;
}

.platform-card--illustration {
    background: linear-gradient(180deg, #fffaf2, #f7efff);
}

.platform-card__art {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.platform-card--illustration .platform-card__art {
    aspect-ratio: 4 / 3.3;
    padding: 1rem;
    border-radius: 22px;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 44, 0.18), transparent 24%),
        radial-gradient(circle at bottom left, rgba(107, 58, 214, 0.12), transparent 26%),
        linear-gradient(135deg, #fff6ee, #f3ebff);
}

.platform-card__art--signal {
    transform: translateY(0.35rem) scale(1.02);
}

.platform-card figcaption {
    color: var(--ink-soft);
}

.platform-card--focus {
    grid-column: span 5;
    padding: 1rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    height: 100%;
    min-height: 27rem;
    align-items: end;
    padding-top: 1rem;
}

.focus-item {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    align-self: end;
    padding: 1.15rem 1.1rem 1.2rem;
    border-radius: 28px;
    background: linear-gradient(180deg, #fff9ef, #f5ebde);
    border: 1px solid rgba(18, 24, 36, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.focus-item::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 1px;
    height: 1.1rem;
    background: rgba(18, 24, 36, 0.14);
    transform: translateX(-50%);
}

.focus-item:nth-child(1) {
    min-height: 18rem;
}

.focus-item:nth-child(2) {
    min-height: 21.5rem;
}

.focus-item:nth-child(3) {
    min-height: 24.5rem;
}

.focus-item__eyebrow,
.focus-item__meta {
    color: var(--ink-faint);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.focus-item__body {
    display: grid;
    gap: 0.8rem;
    margin-top: auto;
}

.focus-item h3 {
    font-size: 1.08rem;
    line-height: 1.15;
}

.focus-item p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
}

.focus-item__meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(18, 24, 36, 0.08);
}

.focus-item__meta::before {
    content: "";
    width: 1.6rem;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.platform-card--brand {
    grid-column: span 7;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 0.55rem;
    padding: 1rem;
    align-items: center;
}

.platform-card__brand-media {
    position: relative;
    display: flex;
    align-items: end;
    justify-content: flex-start;
    min-height: 26.5rem;
    border-radius: 24px;
    background: #faf5ee;
    overflow: visible;
}

.platform-card__brand-media img {
    width: 100%;
    max-width: 480px;
    display: block;
    object-fit: cover;
}

.platform-card__brand-media--illustration {
    background:
        radial-gradient(circle at top left, rgba(107, 58, 214, 0.14), transparent 28%),
        linear-gradient(135deg, #fff1f5, #f7ecff);
}

.platform-card__brand-media--illustration .platform-card__art {
    width: clamp(25rem, 122%, 36rem);
    max-width: none;
    object-fit: contain;
    object-position: left bottom;
    filter: drop-shadow(0 18px 26px rgba(18, 24, 36, 0.16));
}

.platform-card__brand-copy {
    padding: 0 0.25rem 0 1.2rem;
}

.platform-card__eyebrow {
    display: block;
    margin-bottom: 0.65rem;
    color: var(--ink-faint);
}

.services-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, auto);
}

.service-panel {
    position: relative;
    grid-column: span 4;
    padding: 1.35rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    overflow: hidden;
}

.service-panel--wide {
    grid-column: span 8;
}

.service-panel--tall {
    grid-row: span 2;
}

.service-panel--accent {
    background: linear-gradient(140deg, rgba(255, 107, 44, 0.22), rgba(107, 58, 214, 0.16));
}

.service-panel::before {
    background: radial-gradient(circle, rgba(255, 107, 44, 0.22), transparent 70%);
}

.service-panel__top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.service-panel__index {
    color: rgba(248, 245, 239, 0.48);
}

.service-panel__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--amber);
    font-size: 1.1rem;
}

.service-panel h3 {
    position: relative;
    z-index: 1;
    font-size: 1.38rem;
}

.service-panel p {
    position: relative;
    z-index: 1;
    margin: 0.8rem 0 0;
    color: var(--text-inverse-soft);
}

.service-panel__list {
    position: relative;
    z-index: 1;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.55rem;
}

.service-panel__list li {
    position: relative;
    padding-left: 1rem;
    color: rgba(248, 245, 239, 0.88);
}

.service-panel__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--cyan);
}

.journey {
    display: grid;
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    gap: 2rem;
    align-items: start;
}

.journey__intro {
    position: sticky;
    top: 116px;
}

.journey__legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.7rem;
}

.journey__legend span {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.journey__legend i {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--plum));
}

.journey__rail {
    position: relative;
    display: grid;
    gap: 1.1rem;
    padding-left: 5.25rem;
}

.journey__line,
.journey__progress {
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 999px;
}

.journey__line {
    background: rgba(18, 24, 36, 0.12);
}

.journey__progress {
    background: linear-gradient(180deg, var(--orange), var(--amber), var(--plum));
    transform: scaleY(0);
    transform-origin: top center;
}

.journey-step {
    position: relative;
    padding: 1.3rem;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(18, 24, 36, 0.08);
    box-shadow: var(--shadow-sm);
}

.journey-step__node {
    position: absolute;
    left: -5.2rem;
    top: 1.1rem;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: var(--ink);
    color: var(--text-inverse);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(18, 24, 36, 0.18);
}

.journey-step__eyebrow {
    display: block;
    color: var(--ink-faint);
    margin-bottom: 0.35rem;
}

.journey-step h3 {
    font-size: 1.16rem;
    line-height: 1.2;
}

.journey-step p {
    margin: 0.7rem 0 0;
    color: var(--ink-soft);
}

.proof__shell {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    align-items: start;
}

.proof__visual {
    display: block;
}

.proof-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-lg);
}

.proof-card img {
    width: 100%;
    height: 100%;
}

.proof-card--main {
    min-height: 620px;
}

.proof-card--illustration {
    display: grid;
    place-items: center;
    padding: 1.4rem 1.4rem 7.2rem;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 44, 0.14), transparent 24%),
        radial-gradient(circle at bottom left, rgba(107, 58, 214, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
}

.proof-card__art {
    width: min(100%, 460px);
    height: auto;
    object-fit: contain;
}

.proof-card--main::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 27, 40, 0.02), rgba(20, 27, 40, 0.78));
}

.proof-card__label {
    display: block;
    margin-bottom: 0.35rem;
}

.proof-card__caption {
    position: absolute;
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1;
    padding: 1rem 1.05rem;
    border-radius: 22px;
    background: rgba(17, 24, 36, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.proof-card__caption strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.1rem;
    line-height: 1.28;
    letter-spacing: -0.03em;
}

.proof__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.pillar-card {
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.pillar-card h3 {
    font-size: 1.08rem;
}

.pillar-card p {
    margin: 0.7rem 0 0;
    color: var(--text-inverse-soft);
}

.systems-preview__layout,
.systems-ops__shell,
.page-hero__shell {
    display: grid;
    gap: 1.2rem;
}

.systems-preview__layout {
    grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1.24fr);
    align-items: start;
}

.systems-spotlight,
.systems-card,
.stack-card,
.ops-highlight,
.ops-card,
.dashboard-card,
.lifecycle-step {
    position: relative;
    overflow: hidden;
}

.systems-spotlight,
.ops-highlight {
    padding: 1.35rem;
    border-radius: 30px;
    color: var(--text-inverse);
    background:
        radial-gradient(circle at top right, rgba(255, 107, 44, 0.18), transparent 24%),
        radial-gradient(circle at bottom left, rgba(107, 58, 214, 0.18), transparent 26%),
        linear-gradient(180deg, var(--bg), var(--bg-soft));
    box-shadow: var(--shadow-lg);
}

.systems-spotlight__eyebrow,
.systems-card__tag,
.stack-card__tag,
.dashboard-card__label,
.lifecycle-step__index {
    display: block;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.systems-spotlight__eyebrow,
.dashboard-card__label {
    color: rgba(248, 245, 239, 0.6);
    margin-bottom: 0.6rem;
}

.systems-spotlight h3,
.stack-card h3,
.ops-highlight h2,
.ops-card h3,
.dashboard-card strong,
.lifecycle-step h3,
.systems-card h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    letter-spacing: -0.04em;
}

.systems-spotlight h3 {
    font-size: clamp(1.45rem, 2.8vw, 2.2rem);
    line-height: 1.08;
}

.systems-spotlight p,
.ops-highlight .section-copy,
.dashboard-card p,
.ops-card p,
.stack-card p,
.systems-card p,
.lifecycle-step p {
    margin: 0.85rem 0 0;
}

.systems-spotlight__media {
    display: grid;
    place-items: center;
    margin-top: 1.2rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.systems-spotlight__media img {
    width: min(100%, 290px);
    height: auto;
    object-fit: contain;
}

.systems-tags,
.ops-highlight__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.3rem;
}

.systems-tags span,
.ops-highlight__tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: rgba(248, 245, 239, 0.84);
}

.systems-grid,
.stack-grid,
.ops-grid,
.lifecycle-grid {
    display: grid;
    gap: 1rem;
}

.systems-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.systems-card,
.stack-card,
.ops-card,
.lifecycle-step {
    padding: 1.15rem;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(18, 24, 36, 0.08);
    box-shadow: var(--shadow-sm);
}

.systems-card::before,
.stack-card::before,
.ops-card::before,
.dashboard-card::before,
.lifecycle-step::before {
    content: "";
    position: absolute;
    width: 12rem;
    height: 12rem;
    right: -22%;
    bottom: -36%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.16), transparent 70%);
    pointer-events: none;
}

.systems-card__tag,
.stack-card__tag,
.lifecycle-step__index {
    color: var(--ink-faint);
    margin-bottom: 0.55rem;
}

.systems-card h3,
.stack-card h3,
.ops-card h3,
.lifecycle-step h3 {
    font-size: 1.16rem;
    line-height: 1.18;
}

.systems-card p,
.stack-card p,
.ops-card p,
.lifecycle-step p {
    color: var(--ink-soft);
}

.systems-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1rem;
    color: var(--plum);
    font-weight: 800;
}

.systems-preview__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.35rem;
}

.systems-preview__footer p {
    margin: 0;
    color: var(--ink-soft);
    font-weight: 700;
}

.page-hero {
    position: relative;
    padding: 9.4rem 0 4.9rem;
    overflow: clip;
}

.page-hero--systems {
    color: var(--text-inverse);
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 107, 44, 0.14), transparent 22%),
        radial-gradient(circle at 84% 16%, rgba(107, 58, 214, 0.14), transparent 20%),
        linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.page-hero__backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-hero__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    opacity: 0.22;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 88%);
}

.page-hero__halo {
    position: absolute;
    border-radius: 50%;
    filter: blur(54px);
    opacity: 0.5;
    animation: haloFloat 10s ease-in-out infinite;
}

.page-hero__halo--one {
    width: 15rem;
    height: 15rem;
    left: -4rem;
    top: 3rem;
    background: rgba(255, 107, 44, 0.26);
}

.page-hero__halo--two {
    width: 18rem;
    height: 18rem;
    right: 2%;
    top: 4rem;
    background: rgba(107, 58, 214, 0.2);
    animation-delay: 1.2s;
}

.page-hero__shell {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
    align-items: center;
}

.page-hero__copy {
    max-width: 640px;
}

.page-hero__copy .eyebrow {
    color: rgba(248, 245, 239, 0.94);
}

.page-hero__copy .eyebrow::before {
    opacity: 1;
}

.page-hero__copy h1 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.45rem, 4.8vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.page-hero__copy p {
    margin: 1rem 0 0;
    color: var(--text-inverse-soft);
    font-size: 1.03rem;
}

.page-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2rem;
}

.systems-dashboard {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.dashboard-card {
    padding: 1.15rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
    box-shadow: var(--shadow-lg);
}

.dashboard-card p {
    color: var(--text-inverse-soft);
}

.dashboard-card strong {
    display: block;
    font-size: 1.12rem;
    line-height: 1.2;
}

.dashboard-card--visual,
.dashboard-card--accent {
    grid-column: span 2;
}

.dashboard-card--visual {
    padding: 1rem;
}

.dashboard-card__photo {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
}

.dashboard-card--accent {
    background: linear-gradient(135deg, rgba(255, 107, 44, 0.2), rgba(107, 58, 214, 0.18));
}

.systems-media-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.systems-media-card {
    padding: 1rem;
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid rgba(18, 24, 36, 0.08);
    box-shadow: var(--shadow-sm);
}

.systems-media-card__visual {
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 1rem;
    border-radius: 24px;
    overflow: hidden;
}

.systems-media-card__visual img {
    width: min(88%, 340px);
    height: auto;
    object-fit: contain;
}

.systems-media-card__body {
    padding: 0.95rem 0.2rem 0.15rem;
}

.systems-media-card__body span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(18, 24, 36, 0.06);
    color: var(--ink-faint);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.systems-media-card__body h3 {
    margin: 0.85rem 0 0;
    font-family: "Sora", sans-serif;
    font-size: 1.18rem;
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.systems-media-card__body p {
    margin: 0.7rem 0 0;
    color: var(--ink-soft);
}

.systems-media-card--signal .systems-media-card__visual {
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 107, 44, 0.2), transparent 26%),
        linear-gradient(135deg, #f8eef9, #efe8ff);
}

.systems-media-card--handoff .systems-media-card__visual {
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 56, 146, 0.18), transparent 24%),
        linear-gradient(135deg, #fff2f6, #f4ecff);
}

.systems-media-card--coverage .systems-media-card__visual {
    background:
        radial-gradient(circle at 50% 8%, rgba(107, 58, 214, 0.18), transparent 22%),
        linear-gradient(135deg, #f5efff, #fff6ef);
}

.systems-media-card--driver .systems-media-card__visual {
    background:
        radial-gradient(circle at 20% 12%, rgba(107, 58, 214, 0.18), transparent 26%),
        linear-gradient(135deg, #f7eef9, #fff4ea);
}

.stack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stack-card__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.55rem;
}

.stack-card__list li {
    position: relative;
    padding-left: 1rem;
    color: var(--ink-soft);
}

.stack-card__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: var(--orange);
}

.systems-ops__shell {
    grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
    align-items: start;
}

.ops-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ops-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-inverse);
}

.ops-card p {
    color: var(--text-inverse-soft);
}

.lifecycle-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lifecycle-step {
    min-height: 100%;
    background: linear-gradient(180deg, #fff9ef, #f4eadb);
}

.page-contact .contact-band__copy .section-copy {
    max-width: 42rem;
}

.seo-section .section-heading {
    max-width: none;
    margin-bottom: 1.5rem;
}

.seo-copy-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.seo-copy-grid {
    margin-bottom: 1rem;
}

.seo-copy-card,
.faq-card {
    position: relative;
    padding: 1.2rem;
    border-radius: 28px;
    border: 1px solid rgba(18, 24, 36, 0.08);
    box-shadow: var(--shadow-sm);
}

.seo-copy-card {
    background: linear-gradient(180deg, #fffaf2, #f5ecdf);
}

.seo-section--systems .seo-copy-card {
    background: linear-gradient(180deg, #fffdf7, #f4ece2);
}

.faq-card {
    background: #ffffff;
}

.faq-card::before {
    content: "FAQ";
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0.2rem 0.72rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    background: rgba(18, 24, 36, 0.06);
    color: var(--ink-faint);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.seo-copy-card h3,
.faq-card h3 {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.12rem;
    line-height: 1.18;
    letter-spacing: -0.03em;
}

.seo-copy-card p,
.faq-card p {
    margin: 0.8rem 0 0;
    color: var(--ink-soft);
    line-height: 1.7;
}

.seo-copy-card a,
.faq-card a {
    color: var(--plum);
    font-weight: 800;
}

.team-heading {
    max-width: 900px;
    margin-bottom: 1.9rem;
}

.leader-spotlight {
    margin-bottom: 1.25rem;
}

.leader-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 107, 44, 0.12), transparent 24%),
        radial-gradient(circle at bottom left, rgba(107, 58, 214, 0.1), transparent 24%),
        linear-gradient(180deg, #ffffff, #f8f1e8);
    border: 1px solid rgba(18, 24, 36, 0.08);
    box-shadow: var(--shadow-md);
}

.leader-card__media {
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4eadf, #e8ddd0);
    min-height: 100%;
}

.leader-card__media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
}

.leader-card__body {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 0.55rem 0.45rem 0.45rem 0;
}

.leader-card__role,
.team-cluster__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink-faint);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.leader-card__role::before,
.team-cluster__eyebrow::before {
    content: "";
    width: 1.6rem;
    height: 1px;
    background: currentColor;
    opacity: 0.6;
}

.leader-card h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 0.98;
}

.leader-card__lead {
    margin: 0;
    max-width: 40rem;
    font-size: 1.12rem;
    line-height: 1.55;
    color: var(--ink);
}

.leader-card__copy {
    margin: 0;
    max-width: 42rem;
    color: var(--ink-soft);
    line-height: 1.75;
}

.leader-card__pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 0.15rem;
}

.leader-pillar {
    padding: 1rem 1rem 1.05rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 24, 36, 0.06);
}

.leader-pillar span {
    display: block;
    margin-bottom: 0.55rem;
    color: var(--ink-faint);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.leader-pillar strong {
    display: block;
    font-size: 0.98rem;
    line-height: 1.5;
}

.leader-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    padding-top: 0.2rem;
}

.team-cluster {
    display: grid;
    gap: 1.1rem;
}

.team-cluster__intro {
    display: grid;
    gap: 0.55rem;
    max-width: 48rem;
}

.team-cluster__intro h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    line-height: 1.08;
}

.team-cluster__intro p {
    margin: 0;
    color: var(--ink-soft);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid rgba(18, 24, 36, 0.08);
    box-shadow: var(--shadow-md);
}

.team-card__media {
    aspect-ratio: 4 / 4.85;
    overflow: hidden;
    background: #ebe2d6;
}

.team-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.team-card:hover .team-card__media img {
    transform: scale(1.05);
}

.team-card__content {
    padding: 1.2rem;
}

.team-card__role {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--ink-faint);
}

.team-card h3 {
    font-size: 1.1rem;
}

.team-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 0.85rem;
    color: var(--plum);
    font-weight: 800;
}

.team-card__link--muted {
    color: var(--ink-soft);
    font-weight: 700;
}

.contact-band {
    padding: 4.4rem 0;
    color: var(--text-inverse);
    background:
        radial-gradient(circle at 14% 18%, rgba(255, 107, 44, 0.18), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(107, 58, 214, 0.16), transparent 20%),
        linear-gradient(135deg, #101826, #1b2637 55%, #422313);
}

.contact-band__shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
    align-items: start;
}

.contact-band__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 100%;
    padding: 1.2rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239, 176, 74, 0.34);
    background: rgba(255, 255, 255, 0.1);
}

.contact-card__label {
    display: block;
    margin-bottom: 0.65rem;
    color: rgba(248, 245, 239, 0.6);
}

.contact-card strong {
    display: block;
    font-size: 1.14rem;
}

.contact-card p {
    margin: 0.55rem 0 0;
    color: var(--text-inverse-soft);
}

.social-row {
    margin-top: 1rem;
}

.social-row a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.2s ease, background 0.2s ease;
}

.social-row a:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.16);
}

.site-footer {
    padding: 2rem 0 2.4rem;
    background: var(--bg-deep);
    color: var(--text-inverse-soft);
}

.footer__shell {
    grid-template-columns: 1.1fr 0.7fr 1fr;
    align-items: start;
}

.footer__brand img {
    width: 148px;
    height: auto;
    margin-bottom: 1rem;
}

.footer__brand p,
.footer__payments p {
    margin: 0;
}

.footer__links {
    display: grid;
    gap: 0.7rem;
}

.footer__links a {
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: var(--text-inverse);
}

.footer__payments {
    display: grid;
    gap: 1rem;
}

.payment-pills {
    flex-wrap: wrap;
}

.payment-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 108px;
    min-height: 58px;
    padding: 0.85rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-pill img {
    width: auto;
    max-width: 100%;
    max-height: 26px;
    object-fit: contain;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1rem;
    margin-top: 1.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.92rem;
}

.footer__bottom a {
    color: rgba(248, 245, 239, 0.82);
    font-weight: 700;
}

.footer__bottom a:hover {
    color: var(--text-inverse);
}

[data-reveal] {
    will-change: transform, opacity;
}

@keyframes routeDrift {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -220;
    }
}

@keyframes pulseNode {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.16);
    }
}

@keyframes haloFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, 16px, 0);
    }
}

@keyframes vanFloat {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 1180px) {
    .hero__shell,
    .proof__shell,
    .contact-band__shell,
    .footer__shell,
    .section-heading--split {
        grid-template-columns: 1fr;
    }

    .systems-preview__layout,
    .page-hero__shell,
    .systems-ops__shell {
        grid-template-columns: 1fr;
    }

    .hero__routes,
    .page-hero__routes,
    .section-routes {
        width: min(1280px, 150vw);
    }

    .page-hero__routes {
        top: 6%;
    }

    .stack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lifecycle-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-stage {
        min-height: auto;
        display: grid;
        gap: 1rem;
    }

    .hero-stage__frame,
    .hero-stage__van,
    .hero-stage__ticket {
        position: relative;
        inset: auto;
        right: auto;
        left: auto;
        bottom: auto;
        top: auto;
    }

    .hero-stage__van {
        margin-top: -0.5rem;
    }

    .hero-stage__ticket {
        max-width: none;
    }

    .platform-card--statement,
    .platform-card--brand {
        grid-column: span 12;
    }

    .platform-card--photo,
    .platform-card--focus {
        grid-column: span 6;
    }

    .journey {
        grid-template-columns: 1fr;
    }

    .journey__intro {
        position: static;
    }
}

@media (max-width: 980px) {
    .header__shell {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .header__panel {
        position: fixed;
        top: 84px;
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 1rem;
        padding: 1rem;
        border-radius: 28px;
        background: rgba(255, 250, 243, 0.98);
        border: 1px solid rgba(18, 24, 36, 0.08);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease;
    }

    .header__panel.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav,
    .header__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav a,
    .header__actions .button {
        width: 100%;
    }

    .hero {
        padding-top: 8.5rem;
    }

    .hero__shell {
        grid-template-columns: 1fr;
    }

    .hero-facts,
    .contact-band__cards,
    .systems-grid,
    .ops-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sector-strip__shell {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
    }

    .sector-strip__shell span {
        min-width: 180px;
        border-right: 1px solid var(--line);
        scroll-snap-align: start;
    }

    .platform-grid,
    .services-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .platform-card--photo,
    .platform-card--focus,
    .platform-card--statement,
    .platform-card--brand,
    .service-panel,
    .service-panel--wide,
    .service-panel--tall {
        grid-column: span 6;
        grid-row: auto;
    }

    .proof__pillars {
        grid-template-columns: 1fr 1fr;
    }

    .proof-card--main {
        min-height: 460px;
    }
}

@media (max-width: 720px) {
    :root {
        --shell: min(calc(100vw - 1.25rem), 100%);
    }

    .button,
    .hero-actions .button,
    .contact-band__actions .button {
        width: 100%;
    }

    .hero-title {
        font-size: clamp(1.95rem, 7.2vw, 2.95rem);
    }

    .hero-facts,
    .platform-points,
    .focus-grid,
    .contact-band__cards,
    .proof__pillars,
    .systems-media-grid,
    .systems-grid,
    .stack-grid,
    .ops-grid,
    .lifecycle-grid {
        grid-template-columns: 1fr;
    }

    .systems-preview__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .focus-grid {
        min-height: auto;
        padding-top: 0;
    }

    .focus-item {
        min-height: auto;
    }

    .focus-item::before {
        display: none;
    }

    .page-hero__copy h1 {
        font-size: clamp(2.2rem, 8vw, 3.35rem);
    }

    .hero__routes,
    .page-hero__routes,
    .section-routes {
        width: min(1100px, 190vw);
    }

    .page-hero__routes {
        top: 8%;
    }

    .systems-media-card__visual {
        min-height: 220px;
    }

    .page-hero__actions .button {
        width: 100%;
    }

    .dashboard-card--visual,
    .dashboard-card--accent {
        grid-column: auto;
    }

    .systems-dashboard {
        grid-template-columns: 1fr;
    }

    .hero-stage__van {
        margin-top: 1.5rem;
    }

    .hero-stage__metrics {
        grid-template-columns: 1fr;
    }

    .platform-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .platform-card--photo,
    .platform-card--focus,
    .platform-card--statement,
    .platform-card--brand,
    .service-panel,
    .service-panel--wide,
    .service-panel--tall {
        grid-column: auto;
    }

    .platform-card--brand {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .platform-card__brand-media {
        min-height: 22rem;
        overflow: hidden;
        justify-content: center;
    }

    .platform-card__brand-media--illustration .platform-card__art {
        width: min(100%, 29rem);
        transform: translate(0.55rem, 0.65rem);
    }

    .platform-card__brand-copy {
        padding: 0;
    }

    .journey__rail {
        padding-left: 4.5rem;
    }

    .journey-step__node {
        left: -4.45rem;
        width: 52px;
        height: 52px;
    }

    .proof-card--main {
        grid-column: auto;
        min-height: 340px;
    }

    .leader-card {
        grid-template-columns: 1fr;
    }

    .leader-card__media {
        min-height: 420px;
    }

    .leader-card__pillars {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}