:root {
    --navy: #10233f;
    --ink: #172033;
    --muted: #5c6b7c;
    --orange: #f26a1b;
    --orange-deep: #d85612;
    --line: #e7edf3;
    --bg: #f5f7fa;
    --white: #fff;
    --blue: #2c6cb5;
    --green: #2e8b62;
    --shadow: 0 18px 50px rgba(16, 35, 63, 0.08);
    --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
    line-height: 1.55;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.skip {
    position: absolute;
    left: 1rem;
    top: -4rem;
    background: var(--navy);
    color: #fff;
    padding: 0.6rem 1rem;
    z-index: 20;
}
.skip:focus { top: 1rem; }
.wrap { width: min(1180px, calc(100% - 2.4rem)); margin-inline: auto; }
h1, h2, h3, h4, h5, h6 { line-height: 1.12; letter-spacing: -0.03em; margin: 0 0 0.7rem; font-weight: 600; }
h1 { font-size: clamp(1.65rem, 2.55vw, 2.25rem); }
.ico { width: 22px; height: 22px; display: block; }
h2 { font-size: clamp(1.25rem, 1.9vw, 1.7rem); }
h2.slim { font-weight: 500; }
p { margin: 0 0 1rem; }
.lead { font-size: 1.08rem; color: var(--muted); max-width: 42rem; }
.orange { color: var(--orange); line-height: 0.95; }
h1 .orange { font-size: 1.45em; }
.eyebrow {
    color: var(--orange);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.82rem;
    margin-bottom: 0.7rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(16, 35, 63, 0.05);
}
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: calc(100% - 2.4rem);
    max-width: none;
    min-height: 76px;
}
.header-brandline { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
.brand { flex: 0 0 auto; }
.brand img { width: 112px; height: auto; }
.header-menu { position: relative; flex: 0 0 auto; }
.nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 40;
    width: min(320px, calc(100vw - 2rem));
    max-height: min(72vh, 540px);
    overflow: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(16, 35, 63, 0.16);
    padding: 0.45rem;
    flex-direction: column;
    align-items: stretch;
}
.nav.is-open { display: flex; }
.nav a { text-decoration: none; font-size: 0.98rem; color: var(--navy); padding: 0.7rem 0.8rem; border-radius: 12px; }
.nav a.is-active, .nav a:hover { color: var(--orange); background: var(--bg); }
.nav .btn {
    margin: 0.35rem 0.25rem 0.3rem;
    justify-content: center;
    color: #fff;
    background: var(--navy);
    border-radius: 999px;
}
.nav .btn:hover { color: #fff; background: #1b355c; }
.nav-drop { display: grid; }
.nav-panel { display: grid; padding: 0 0 0.15rem 0.7rem; }
.nav-panel a { font-size: 0.92rem; color: var(--muted); }
.byline { display: flex; align-items: center; gap: 0.45rem; margin: 0; color: var(--navy); font-weight: 700; text-decoration: none; }
.byline img { width: 96px; height: auto; }
.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(16, 35, 63, 0.12);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
}
.nav-toggle:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.nav-toggle-box {
    width: 18px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.nav-toggle-box span {
    display: block;
    height: 2px;
    border-radius: 2px;
    background: var(--navy);
    transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
body.is-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}
body.is-home .header-bar { padding-top: 0.75rem; }
body.is-home .header-brandline,
body.is-home .nav-toggle {
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 28px rgba(16, 35, 63, 0.12);
}
body.is-home .header-brandline { border-radius: 18px; padding: 0.3rem 0.85rem 0.3rem 0.45rem; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    border: 0;
    border-radius: 999px;
    padding: 0.85rem 1.25rem;
    font-weight: 700;
    cursor: pointer;
}
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #1b355c; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-deep); }
.btn span { animation: nudge 2.8s ease-in-out infinite; display: inline-block; }

.hero { padding: 1.6rem 0 0.6rem; }
.home-hero { position: relative; padding: 0 0 2.5rem; min-height: 100dvh; }
.home-hero .wrap {
    z-index: 1;
    width: 100%;
    max-width: none;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    padding-top: 5.2rem;
    box-sizing: border-box;
}
.home-hero h1 { margin-bottom: 0.35rem; }
.home-hero .lead { font-size: 1rem; margin-bottom: 0.7rem; }
.home-hero .hero-action { margin-bottom: 0; }
.home-hero .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) min(58vw, 980px);
    align-items: center;
    width: 100%;
    min-height: calc(100dvh - 5.2rem);
    gap: 0;
}
.home-hero .hero-copy {
    width: min(500px, calc(100% - 2.5rem));
    justify-self: end;
    margin-right: clamp(1rem, 2.4vw, 2rem);
}
.hero-grid, .split { display: grid; grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.15fr); gap: clamp(1.2rem, 3vw, 2.5rem); align-items: center; }
.hero-grid > *, .split > * { min-width: 0; }
.hero-visual { position: relative; width: 100%; }
.home-hero .hero-visual {
    position: relative;
    align-self: start;
    z-index: 0;
    width: 100%;
    height: 100dvh;
    margin: -5.2rem 0 0;
}
.hero-arc {
    position: absolute;
    z-index: 0;
    top: -16px;
    left: -16px;
    height: calc(100% + 32px);
    aspect-ratio: 1;
    width: auto;
    clip-path: inset(0 50% 0 0);
    pointer-events: none;
}
.hero-arc span {
    display: block;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(242, 106, 27, 0.75);
    border-radius: 50%;
    animation: spin 48s linear infinite;
}
.home-hero .photo-round {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 999px 0 0 999px;
    background: transparent;
}
.home-hero .photo-round img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center 38%;
}
.home-hero .scribble {
    position: absolute;
    right: 7%;
    bottom: 9%;
    margin: 0;
    color: var(--navy);
}
.rule { width: 64px; height: 4px; border-radius: 4px; background: var(--orange); margin: 0.7rem 0 0.85rem; }
.quote {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    color: var(--navy);
    font-weight: 650;
    margin-bottom: 1rem;
}
.chevrons { color: var(--orange); font-size: 1.35rem; line-height: 1; font-weight: 800; }
.photo-round, .frame {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    background: #e7eef5;
}
.photo-round img, .frame {
    width: 100%;
    height: auto;
    max-height: min(78vh, 820px);
    object-fit: contain;
    object-position: center;
}
.scribble {
    margin: -2.4rem 0.4rem 0 auto;
    width: fit-content;
    font-family: "Segoe Script", "Bradley Hand", cursive;
    color: var(--navy);
    font-size: 1.25rem;
    line-height: 1.15;
    transform: rotate(-6deg);
    position: relative;
}

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0 2.5rem; }
.pillar {
    background: #fff;
    border-radius: 22px;
    padding: 1.3rem 1.2rem 1.4rem;
    box-shadow: var(--shadow);
    text-decoration: none;
    min-height: 180px;
}
.pillar strong { display: block; letter-spacing: 0.06em; margin: 0.8rem 0 0.4rem; }
.pillar p { color: var(--muted); margin: 0; }
.pillar .soon { font-size: 0.88rem; }
.pillar.recruit strong { color: var(--orange); }
.pillar.brand strong { color: var(--blue); }
.pillar.growth strong { color: var(--green); }
.dot {
    width: 54px; height: 54px; border-radius: 50%;
    display: grid; place-items: center;
    border: 2px solid currentColor;
    animation: floaty 6s ease-in-out infinite;
}
.recruit .dot { color: var(--orange); }
.brand .dot { color: var(--blue); }
.growth .dot { color: var(--green); }

.steps {
    background: var(--navy);
    color: #fff;
    border-radius: 28px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    margin-bottom: 2.4rem;
}
.step { padding: 2rem 1.35rem 2.1rem; }
.step + .step { border-left: 1px solid rgba(255,255,255,0.12); }
.step h3 { font-size: 0.92rem; letter-spacing: 0.04em; text-transform: uppercase; }
.step p { color: rgba(255,255,255,0.78); font-size: 0.92rem; margin: 0; }
.icon-ring {
    width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid var(--orange);
    display: grid; place-items: center;
    margin-bottom: 0.8rem;
    color: var(--orange);
}

.section { padding: 1rem 0 3.5rem; }
.page-talente.hero { padding: 2.6rem 0 1.4rem; }
.page-talente.section { padding: 2.2rem 0 4.5rem; }
.page-talente .hero-grid { gap: clamp(2rem, 4vw, 3.6rem); }
.page-talente .lead { margin-bottom: 1.35rem; }
.page-talente .ticks { gap: 0.7rem; margin-top: 1.3rem; }
.page-talente .match { gap: 1.25rem; margin: 1.8rem 0 3.2rem; }
.page-talente .match article,
.page-talente .process article { padding: 1.7rem 1.35rem 1.6rem; }
.page-talente .process { gap: 1rem; margin-bottom: 3rem; }
.page-talente .stats { gap: 1.4rem; margin-top: 0.4rem; }
.page-talente .stat { padding: 1.7rem 1.6rem; gap: 1.15rem; }
.page-talente .quote-card { padding: 2rem 1.8rem; }
.page-talente .cta-photo { margin-top: 2.6rem; padding: 0.4rem; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2.4rem; }
.quad { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 2.4rem; }
.quad .card { height: 100%; }
.photo-note { margin: 0.45rem 0 0; font-size: 0.75rem; color: var(--muted); }
.photo-note a { text-decoration: underline; text-underline-offset: 2px; }
.hero-action { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.card, .person, .stat, .quote-card, .form, .legal, .placeholder {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.card { padding: 1.4rem; text-decoration: none; display: block; }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--muted); }
.band {
    background: var(--navy);
    color: #fff;
    border-radius: 28px;
    padding: 2.4rem 2.6rem;
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    align-items: center;
    margin: 0 0 3rem;
}
.band p { margin: 0; color: rgba(255,255,255,0.8); }

.orbit-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 1rem; align-items: center; }
.orbit {
    position: relative;
    width: min(100%, 640px);
    aspect-ratio: 1;
    margin-inline: auto;
}
.orbit-ring {
    position: absolute;
    inset: 8%;
    border: 2px dashed rgba(242, 106, 27, 0.7);
    border-radius: 50%;
    animation: spin 48s linear infinite;
}
.orbit-photo {
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    overflow: hidden;
}
.orbit-photo { background: #1c2c3f; }
.orbit-photo img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.spin-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin-inline: auto;
    justify-self: end;
}
.frame-trace {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}
.frame-trace rect {
    fill: none;
    stroke: rgba(242, 106, 27, 0.78);
    stroke-width: 1.5;
    stroke-dasharray: 0.85 0.6;
    animation: trace 60s linear infinite;
}
.spin-frame .orbit-photo {
    position: absolute;
    inset: 14px;
    border-radius: 20px;
    background: #e7eef5;
}
.spin-frame .orbit-photo img { object-fit: cover; object-position: center 35%; }
.node {
    position: absolute;
    width: 168px;
    background: #fff;
    border-radius: 999px;
    box-shadow: var(--shadow);
    padding: 0.85rem 0.9rem 0.95rem;
    text-align: center;
    animation: floaty 7s ease-in-out infinite;
}
.node strong { display: block; color: var(--orange); font-size: 0.78rem; letter-spacing: 0.04em; }
.node p { margin: 0.25rem 0 0; font-size: 0.78rem; color: var(--muted); }
.node-core {
    position: absolute;
    left: 50%;
    bottom: 16%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
}
.node-core strong { font-size: 0.78rem; letter-spacing: 0.04em; }
.node-core span { font-size: 0.75rem; color: rgba(255,255,255,0.75); }
.n1 { top: 0; left: 50%; transform: translateX(-50%); }
.n2 { top: 22%; right: 0; animation-delay: -1s; }
.n3 { bottom: 16%; right: 0; animation-delay: -2s; }
.n4 { bottom: 8%; left: 0; animation-delay: -3s; }
.n5 { top: 24%; left: 0; animation-delay: -4s; }

.belief {
    background: var(--navy);
    color: #fff;
    border-radius: 24px;
    padding: 2.6rem 2.8rem 2.4rem;
    margin-top: 1.4rem;
}
.belief-logo {
    width: 148px;
    height: auto;
    background: #fff;
    border-radius: 14px;
    padding: 0.45rem 0.7rem;
    margin-bottom: 1.1rem;
}
.belief p { color: rgba(255,255,255,0.86); }
.belief a, .band p a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.mini-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; margin-top: 1.5rem; }
.belief .mini-points { margin-top: 1.8rem; }
.mini-points div { text-align: center; font-size: 0.82rem; }
.belief .icon-ring { width: 38px; height: 38px; margin: 0 auto 0.45rem; border-color: rgba(255,255,255,0.45); color: #fff; }
.ticks { list-style: none; padding: 0; margin: 0 0 0.4rem; display: grid; gap: 0.4rem; }
.ticks li { display: flex; align-items: center; gap: 0.5rem; font-weight: 650; color: var(--navy); }
.ticks .ico { width: 18px; height: 18px; color: var(--orange); flex: none; }

.people { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 1.4rem; align-items: stretch; }
.person {
    padding: 0.85rem 0.9rem 0.95rem;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    column-gap: 0.7rem;
    row-gap: 0.15rem;
    align-content: start;
}
.person img {
    width: 84px;
    height: 112px;
    max-width: none;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    grid-row: 1;
    grid-column: 1;
}
.person blockquote {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--ink);
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    min-width: 0;
}
.person h3 {
    font-size: 0.78rem;
    margin: 0.45rem 0 0;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    grid-column: 1 / -1;
}
.person .role { color: var(--muted); font-size: 0.75rem; margin: 0; grid-column: 1 / -1; }

.match { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0.8rem; align-items: stretch; }
.match article, .process article {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 1.3rem;
    text-align: center;
}
.times { align-self: center; font-size: 1.6rem; color: var(--orange); font-weight: 700; }
.bubble {
    width: 64px; height: 64px; margin: 0 auto 0.8rem;
    border-radius: 50%; background: var(--orange); color: #fff;
    display: grid; place-items: center;
}
.bubble .ico { width: 26px; height: 26px; }
.process { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.7rem; position: relative; margin-bottom: 2.4rem; }
.process article { position: relative; z-index: 1; }
.process .icon-ring { margin-inline: auto; background: #fff; }
.process::before {
    content: "";
    position: absolute;
    top: 2.4rem;
    left: 8%;
    right: 8%;
    border-top: 2px dotted rgba(242, 106, 27, 0.75);
}
.process.plain::before { display: none; }
.process h3 { font-size: 0.95rem; }
.stats { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 1rem; align-items: stretch; margin-top: 1.4rem; }
.stat { padding: 1.3rem 1.4rem; display: grid; gap: 0.85rem; }
.stat p { display: flex; gap: 0.75rem; align-items: flex-start; margin: 0; }
.stat .ico { color: var(--orange); flex: none; margin-top: 0.15rem; }
.stat strong { display: block; color: var(--orange); font-size: 1.7rem; }
.quote-card { padding: 1.5rem; }
.quote-card footer { color: var(--muted); font-size: 0.9rem; }
.cta-photo {
    margin-top: 1.5rem;
    border-radius: 28px;
    background: var(--navy);
    display: grid;
    grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem 1rem;
    overflow: hidden;
}
.cta-photo img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
    justify-self: end;
}
.cta-photo .panel {
    color: #fff;
    padding: 1.4rem 1.3rem 1.4rem 1.6rem;
}
.cta-photo .panel p { color: rgba(255,255,255,0.82); }

.contact-layout { align-items: start; }
.contact-points { list-style: none; margin: 0 0 1.2rem; padding: 0; display: grid; gap: 0.7rem; }
.contact-points li { display: flex; gap: 0.65rem; align-items: flex-start; font-weight: 650; }
.contact-points .ico { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 0.15rem; color: var(--orange); }
.contact-direct { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1rem; }
.contact-direct .btn { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.contact-direct .btn:hover { border-color: var(--orange); color: var(--orange); }
.contact-meta { color: var(--muted); font-size: 0.92rem; }
.form { padding: 1.5rem 1.4rem 1.4rem; display: grid; gap: 0.8rem; }
.form h2 { font-size: 1.45rem; margin-bottom: 0; }
.form-lead { color: var(--muted); margin: -0.2rem 0 0.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
label { font-weight: 700; font-size: 0.92rem; display: grid; gap: 0.35rem; }
input, textarea, select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.75rem 0.8rem;
    background: #fff;
    color: var(--ink);
}
select { appearance: none; padding-right: 2rem; background-image: linear-gradient(45deg, transparent 50%, var(--navy) 50%), linear-gradient(135deg, var(--navy) 50%, transparent 50%); background-position: calc(100% - 18px) 1.15rem, calc(100% - 12px) 1.15rem; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form input:focus-visible, .form textarea:focus-visible, .form select:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; }
@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
}
.check { font-weight: 500; grid-template-columns: auto 1fr; align-items: start; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.note { background: #eef8f1; color: #14663a; border-radius: 12px; padding: 0.8rem 1rem; }
.note.bad { background: #fff1ee; color: #9d2b16; }
.legal, .placeholder { padding: 1.4rem 1.5rem; }
.placeholder { max-width: 640px; }

.site-footer { background: #f4f7fb; color: var(--navy); padding: 2rem 0 1.2rem; margin-top: 1rem; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1.2fr 1.4fr 0.8fr; gap: 1.5rem; align-items: start; }
.footer-brand p, .footer-zeitgeist p { color: var(--muted); }
.brand-logos { display: inline-block; text-decoration: none; }
.brand-logos img { display: block; }
.footer-brand strong { color: var(--orange); }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem 1rem; }
.footer-nav a { color: var(--ink); text-decoration: none; }
.footer-nav a:hover { color: var(--orange); }
.footer-zeitgeist img { width: 160px; height: auto; }
.footer-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid var(--line);
    margin-top: 1.4rem;
    padding-top: 0.9rem;
    color: var(--muted);
    font-size: 0.85rem;
}
.footer-meta a { color: inherit; }
.footer-meta p { margin: 0; }

@keyframes floaty {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -6px; }
}
@keyframes spin { to { rotate: 360deg; } }
@keyframes trace { to { stroke-dashoffset: -100; } }
@keyframes nudge {
    0%, 70%, 100% { translate: 0 0; }
    85% { translate: 4px 0; }
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        scroll-behavior: auto !important;
    }
}
@media (max-width: 1180px) {
    .hero-grid, .split, .orbit-layout, .stats, .footer-main, .home-hero .hero-grid, .cta-photo { grid-template-columns: 1fr; }
    .home-hero { min-height: 0; }
    .home-hero .wrap { display: block; min-height: 0; padding-top: 6rem; }
    .home-hero .hero-grid { width: auto; min-height: 0; }
    .home-hero .hero-copy { width: min(560px, 100%); justify-self: start; padding-right: 0; }
    .home-hero .hero-visual {
        position: relative;
        top: auto;
        width: calc(100% + 1.2rem);
        height: min(68vw, 520px);
        margin: 1.4rem -1.2rem 0 auto;
    }
    .photo-round img, .frame, .cta-photo img { max-height: 62vh; }
    .home-hero .photo-round img { max-height: none; }
    .pillars, .cards, .people, .quad { grid-template-columns: 1fr 1fr; }
    .steps, .process, .match { grid-template-columns: 1fr; }
    .step + .step { border-left: 0; border-top: 1px solid rgba(255,255,255,0.12); }
    .times { display: none; }
    .process::before { display: none; }
    .node { width: 130px; }
    .n2, .n3 { right: -10px; }
    .n4, .n5 { left: -10px; }
}
@media (min-width: 1181px) {
    .nav-toggle { display: none; }
    .header-menu { flex: 1; display: flex; justify-content: flex-end; }
    .nav {
        display: flex;
        position: static;
        width: auto;
        max-height: none;
        overflow: visible;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 0.1rem;
    }
    .nav a { padding: 0.4rem 0.55rem; }
    .nav a:hover, .nav a.is-active { background: transparent; }
.nav .btn { margin: 0 0 0 0.45rem; color: #fff; background: var(--navy); border-radius: 999px; }
.nav .btn:hover,
.nav a.btn:hover { color: #fff; background: #1b355c; }
    .nav-drop { position: relative; display: block; }
    .nav-panel {
        display: none;
        position: absolute;
        top: calc(100% + 0.35rem);
        right: 0;
        left: auto;
        min-width: 230px;
        background: #fff;
        border-radius: 16px;
        box-shadow: var(--shadow);
        padding: 0.4rem;
    }
    .nav-drop:hover .nav-panel,
    .nav-drop:focus-within .nav-panel { display: grid; }
    .nav-panel a:hover { background: var(--bg); }
}
body.is-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}
@media (min-width: 1181px) {
    body.is-home .nav {
        background: rgba(255, 255, 255, 0.94);
        border-radius: 999px;
        padding: 0.15rem 0.3rem 0.15rem 0.55rem;
        box-shadow: 0 10px 28px rgba(16, 35, 63, 0.1);
    }
}
@media (max-width: 640px) {
    .pillars, .cards, .people, .mini-points, .quad { grid-template-columns: 1fr; }
    .band, .footer-meta { flex-direction: column; align-items: flex-start; }
    .byline span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
    .byline img { width: 78px; }
}
