/* ════════════════════════════════════════════════════════════
   Blue Star Advice · Financial Controller — recruiting landing
   Rebuilt to match bluestaradvice.it / lp.bluestaradvice.it.
   Jost (display, heavy uppercase) · Inter (body). Navy-dominant.
   ════════════════════════════════════════════════════════════ */

:root {
    --navy:       #051b2c;   /* signature BSA dark — hero, bands, footer */
    --navy-2:     #0a2638;   /* lighter navy — cards, faq rows */
    --navy-line:  rgba(255,255,255,.12);
    --ink:        #07142d;   /* near-black headings on light */
    --body:       #475467;   /* body text on light */
    --muted:      #8a94a6;
    --blue:       #155eef;   /* restrained accent — links, hover */
    --blue-soft:  #84adff;
    --paper:      #ffffff;
    --mist:       #f3f8fb;   /* light alternate section */
    --line:       #e6ebf1;

    --f-display: 'Jost', system-ui, -apple-system, sans-serif;
    --f-body:    'Inter', system-ui, -apple-system, sans-serif;

    --maxw: 1180px;
    --gutter: clamp(20px, 5vw, 56px);
    --t: 200ms cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-padding-top: 90px; }
html { background: var(--navy); }
body { font-family: var(--f-body); font-size: 16px; line-height: 1.65; color: var(--body); background: var(--navy); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Type ─────────────────────────────────────────── */
.eyebrow { display: inline-block; font-family: var(--f-body); font-size: 13px; font-weight: 600;
    letter-spacing: .18em; text-transform: uppercase; color: var(--blue); margin-bottom: 18px; }
.eyebrow.on-dark { color: var(--blue-soft); }

h1, h2, h3, h4 { font-family: var(--f-display); color: var(--ink); line-height: 1.08; font-weight: 600; }

.section-title {
    font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
    font-size: clamp(32px, 4.4vw, 54px); letter-spacing: -0.01em; line-height: 1; color: var(--ink);
}
.on-dark .section-title, .section-title.on-dark { color: #fff; }

.lead { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.7; }
.body-text { font-size: 16px; line-height: 1.75; color: var(--body); }
.body-text strong, .lead strong { color: var(--ink); font-weight: 600; }
.on-dark .body-text, .on-dark .lead { color: rgba(255,255,255,.78); }
.on-dark .body-text strong, .on-dark .lead strong { color: #fff; }

/* ── Sections ─────────────────────────────────────── */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--paper { background: var(--paper); }
.section--mist  { background: var(--mist); }
.section--navy  { background: var(--navy); color: #fff; }

/* ── Buttons ──────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--f-body); font-weight: 600; font-size: 15px; letter-spacing: .01em;
    padding: 15px 34px; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
    transition: transform var(--t), background var(--t), color var(--t), border-color var(--t); }
.btn:hover { transform: translateY(-2px); }
.btn-navy  { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0c2a40; }
.btn-light { background: #fff; color: var(--navy); border-color: #fff; }
.btn-light:hover { background: var(--mist); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-lg { padding: 17px 40px; font-size: 16px; }

/* ── Top bar ──────────────────────────────────────── */
.topbar { background: var(--navy); color: rgba(255,255,255,.85); font-size: 13px; border-bottom: 1px solid var(--navy-line); }
.topbar-inner { display: flex; gap: 10px; align-items: center; justify-content: center; padding: 9px 0; flex-wrap: wrap; text-align: center; }
.topbar strong { color: #fff; }
.topbar-sep { opacity: .5; }
@media (max-width: 640px) { .topbar { display: none; } }

/* ── Nav ──────────────────────────────────────────── */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(5,27,44,.92);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--navy-line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 30px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a, .dd-toggle { font-size: 14px; color: rgba(255,255,255,.78); font-weight: 400; letter-spacing: .02em; transition: color var(--t); white-space: nowrap; cursor: pointer; }
.nav-links a:hover, .dd-toggle:hover { color: #fff; }
.nav-cta { font-size: 14px; padding: 10px 24px; }
/* Servizi dropdown — mirrors bluestaradvice.it */
.has-dd { position: relative; display: inline-flex; align-items: center; }
.dd-toggle { display: inline-flex; align-items: center; gap: 5px; }
.dd-toggle .caret { font-size: 9px; opacity: .8; }
.has-dd::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 16px; } /* hover bridge */
.dd-menu { position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
    background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 8px; min-width: 232px;
    display: flex; flex-direction: column; gap: 2px; box-shadow: 0 18px 44px rgba(7,20,45,.18);
    opacity: 0; visibility: hidden; transition: opacity var(--t), transform var(--t); z-index: 60; }
.has-dd:hover .dd-menu, .has-dd:focus-within .dd-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dd-menu a { color: var(--ink); font-size: 14px; padding: 10px 14px; border-radius: 9px; }
.dd-menu a:hover { background: var(--mist); color: var(--blue); }
@media (max-width: 1024px) { .nav-links { display: none; } }

/* ── Hero ─────────────────────────────────────────── */
.hero { position: relative; background: var(--navy); color: #fff; overflow: hidden;
    padding: clamp(80px, 14vw, 170px) 0 clamp(70px, 11vw, 140px); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(900px 460px at 78% 18%, rgba(21,94,239,.20), transparent 60%); }
.hero-inner { position: relative; z-index: 1; }
.hero-pill { display: inline-flex; align-items: center; gap: 9px; padding: 8px 18px; border-radius: 999px;
    background: rgba(255,255,255,.08); border: 1px solid var(--navy-line); color: rgba(255,255,255,.9);
    font-size: 13px; font-weight: 500; letter-spacing: .02em; margin-bottom: 30px; }
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-soft); box-shadow: 0 0 0 4px rgba(132,173,255,.18); }
.hero-title { font-family: var(--f-display); font-weight: 700; text-transform: uppercase;
    font-size: clamp(44px, 9vw, 104px); line-height: .92; letter-spacing: -0.01em; color: #fff; }
.hero-sub { font-size: clamp(17px, 1.7vw, 21px); color: rgba(255,255,255,.8); margin-top: 26px; max-width: 560px; line-height: 1.6; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 64px); margin-top: 56px; }
.hero-stat dt { font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.hero-stat dd { font-family: var(--f-display); font-weight: 600; font-size: clamp(26px, 3vw, 36px); color: #fff; margin-top: 6px; }
.hero-stat dd span { font-size: .55em; color: var(--blue-soft); font-weight: 500; }

/* ── Two-column heading/body block ────────────────── */
.split { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.split--media { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
.split--reverse .split-media { order: -1; }
.split-body > * + * { margin-top: 18px; }
@media (max-width: 860px) { .split, .split--media { grid-template-columns: 1fr; gap: 28px; } .split--reverse .split-media { order: 0; } }

/* ── Bullet / cross lists ─────────────────────────── */
.ticks { list-style: none; display: grid; gap: 12px; }
.ticks li { position: relative; padding-left: 32px; line-height: 1.55; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
    background: rgba(21,94,239,.12) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23155eef' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13 L10 18 L19 6'/></svg>") no-repeat center / 12px; }
.on-dark .ticks li { color: rgba(255,255,255,.82); }
.on-dark .ticks li::before { background: rgba(255,255,255,.14) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M5 13 L10 18 L19 6'/></svg>") no-repeat center / 12px; }
.crosses { list-style: none; display: grid; gap: 12px; }
.crosses li { position: relative; padding-left: 32px; line-height: 1.55; }
.crosses li::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 50%;
    background: rgba(120,130,145,.14) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a94a6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M6 6 L18 18 M18 6 L6 18'/></svg>") no-repeat center / 11px; }

/* ── "Non sei / Sei la persona giusta" dark band ──── */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 72px); }
.fit-col h3 { font-family: var(--f-display); font-weight: 500; font-size: clamp(20px, 2.2vw, 26px); color: #fff; margin-bottom: 14px; }
.fit-col.no h3 { color: rgba(255,255,255,.62); }
@media (max-width: 720px) { .fit-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ── CTA band (centered button) ───────────────────── */
.cta-band { padding: clamp(40px, 6vw, 64px) 0; text-align: center; }
.cta-band .btn { box-shadow: 0 16px 40px rgba(5,27,44,.18); }

/* ── Duties: image card + dark checklist card ─────── */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 860px) { .duo { grid-template-columns: 1fr; } }
.panel { border-radius: 20px; padding: clamp(28px, 4vw, 44px); }
.panel h3 { font-family: var(--f-display); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    font-size: 15px; margin-bottom: 20px; }
.panel-photo { position: relative; color: #fff; overflow: hidden;
    background: linear-gradient(150deg, #0a2942 0%, #051b2c 70%); }
.panel-photo::before { content: ""; position: absolute; inset: 0; opacity: .35;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'><g fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.5'><path d='M40 400V150l30-12v262M90 400V120l26 8v272M150 400V90l34 14v296M200 400V60l40 16v324M260 400V120l30-10v290M320 400V160l34 12v228'/></g></svg>") no-repeat right bottom / auto 80%; }
.panel-photo h3, .panel-photo .body-text { position: relative; z-index: 1; }
.panel-photo h3 { color: #fff; }
.panel-photo .body-text { color: rgba(255,255,255,.85); }
.panel-dark { background: var(--navy); color: #fff; }
.panel-dark h3 { color: var(--blue-soft); }

/* ── Hero kicker ──────────────────────────────────── */
.hero-kicker { display: block; font-family: var(--f-body); font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 500; color: var(--blue-soft); margin-bottom: 18px; letter-spacing: .01em; }

/* ── VSL video ────────────────────────────────────── */
.vsl { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden;
    background: linear-gradient(150deg, #0a2942 0%, #051b2c 70%); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 24px 60px rgba(5,27,44,.22); }
.vsl iframe, .vsl video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: var(--navy); }
.vsl video { cursor: pointer; }

/* play icon shared by cover + control bar */
.vsl-play { display: inline-flex; align-items: center; justify-content: center; width: 74px; height: 74px; border-radius: 50%;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.45); transition: background var(--t), transform var(--t); }
.vsl-play::before { content: ""; width: 0; height: 0; border-style: solid; border-width: 13px 0 13px 22px;
    border-color: transparent transparent transparent #fff; margin-left: 5px; }

/* poster / cover */
.vsl-cover { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 14px; border: 0; cursor: pointer; color: #fff; transition: background var(--t);
    background: radial-gradient(130% 130% at 50% 42%, rgba(5,27,44,.5) 0%, rgba(5,27,44,.82) 100%); }
.vsl-cover:hover { background: radial-gradient(130% 130% at 50% 42%, rgba(5,27,44,.6) 0%, rgba(5,27,44,.9) 100%); }
.vsl-cover-txt { text-shadow: 0 1px 12px rgba(5,27,44,.5); }
.vsl-cover:hover .vsl-play, .vsl-cover:focus-visible .vsl-play { background: var(--blue); border-color: var(--blue); transform: scale(1.06); }
.vsl-cover-txt { font-family: var(--f-display); font-weight: 600; font-size: clamp(18px, 2.2vw, 22px); color: #fff; }
.vsl-sub { font-family: var(--f-body); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.65); }
.vsl.is-started .vsl-cover { display: none; }

/* control bar */
.vsl-bar { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    display: flex; align-items: center; gap: 12px; padding: 22px 16px 14px;
    background: linear-gradient(to top, rgba(5,27,44,.9) 0%, rgba(5,27,44,0) 100%);
    opacity: 0; transform: translateY(8px); pointer-events: none; transition: opacity var(--t), transform var(--t); }
.vsl.is-started .vsl-bar { opacity: 1; transform: none; pointer-events: auto; }

.vsl-btn { flex: none; width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
    border: 0; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; cursor: pointer; transition: background var(--t); }
.vsl-btn:hover { background: rgba(255,255,255,.26); }
.vsl-btn svg { width: 18px; height: 18px; fill: currentColor; }
.vsl [data-toggle] .i-pause { display: none; }
.vsl.is-playing [data-toggle] .i-play { display: none; }
.vsl.is-playing [data-toggle] .i-pause { display: block; }
.vsl [data-mute] .i-muted { display: none; }
.vsl.is-muted [data-mute] .i-vol { display: none; }
.vsl.is-muted [data-mute] .i-muted { display: block; }

.vsl-seek { -webkit-appearance: none; appearance: none; flex: 1; height: 5px; border-radius: 999px; outline: none; cursor: pointer;
    background: rgba(255,255,255,.25); }
.vsl-seek::-webkit-slider-thumb { -webkit-appearance: none; width: 14px; height: 14px; border-radius: 50%; background: #fff;
    box-shadow: 0 0 0 4px rgba(21,94,239,.45); transition: box-shadow var(--t); }
.vsl-seek::-moz-range-thumb { width: 14px; height: 14px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 0 0 4px rgba(21,94,239,.45); }
.vsl-seek:hover::-webkit-slider-thumb { box-shadow: 0 0 0 6px rgba(21,94,239,.4); }

.vsl-time { font-family: var(--f-body); font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.85);
    font-variant-numeric: tabular-nums; white-space: nowrap; }

.vsl-caption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 16px; }

@media (max-width: 520px) {
    .vsl-bar { gap: 8px; padding: 18px 10px 10px; }
    .vsl-btn { width: 34px; height: 34px; }
    .vsl-time { display: none; }
}

/* ── Numbers band ─────────────────────────────────── */
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 48px); margin-top: 8px; }
@media (max-width: 760px) { .num-grid { grid-template-columns: 1fr 1fr; } }
.num { text-align: center; }
.num dd { font-family: var(--f-display); font-weight: 700; font-size: clamp(34px, 5vw, 52px); color: #fff; line-height: 1; }
.num dt { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: 10px; }

/* ── Feature grid (reasons / benefits) ────────────── */
.feature-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-top: 44px; }
.feature { flex: 1 1 300px; max-width: 360px; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px;
    box-shadow: 0 1px 2px rgba(7,20,45,.04), 0 14px 34px rgba(7,20,45,.05); }
@media (max-width: 560px) { .feature { flex-basis: 100%; max-width: none; } }
.feature h3 { font-family: var(--f-display); font-weight: 600; font-size: 19px; color: var(--ink); margin-bottom: 10px; }
.feature p { font-size: 14.5px; line-height: 1.6; color: var(--body); }

/* ── Two-column requirement list ──────────────────── */
.two-col-list { columns: 2; column-gap: 48px; margin-top: 32px; }
@media (max-width: 680px) { .two-col-list { columns: 1; } }
.two-col-list li { break-inside: avoid; margin-bottom: 12px; }

/* ── Testimonials ─────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 44px; }
@media (max-width: 760px) { .testi-grid { grid-template-columns: 1fr; } }
.testi { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px 28px; }
.testi p { font-family: var(--f-display); font-weight: 500; font-size: 18px; line-height: 1.5; color: var(--ink); }
.testi-author { display: flex; align-items: center; gap: 14px; margin-top: 22px; }
.testi-author img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; object-position: top center; flex: none; }
.testi-author span { font-size: 13.5px; color: var(--muted); line-height: 1.45; }
.testi-author b { font-family: var(--f-display); font-weight: 600; font-size: 15.5px; color: var(--ink); }
.placeholder-note { display: block; font-size: 12.5px; color: var(--muted); margin-top: 20px; font-style: italic; }

/* ── Press / rassegna stampa ──────────────────────── */
.press-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 44px; align-items: start; }
@media (max-width: 760px) { .press-grid { grid-template-columns: 1fr; } }
.press-item { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
    box-shadow: 0 1px 2px rgba(7,20,45,.04), 0 18px 40px rgba(7,20,45,.06); }
.press-logo { height: 28px; width: auto; display: block; margin: 26px auto 20px; opacity: .92; }
.press-page { width: 100%; height: auto; display: block; border-top: 1px solid var(--line); cursor: zoom-in; }
.press-item figcaption { padding: 18px 24px; font-family: var(--f-display); font-weight: 600; font-size: 17px; color: var(--ink); text-align: center; }

/* "ne hanno parlato anche" logo strip */
.press-more { margin-top: 56px; text-align: center; }
.press-more-label { font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; }
.press-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(28px, 5vw, 56px); }
.press-logos img { height: 26px; width: auto; opacity: .6; transition: opacity var(--t); }
.press-logos img:hover { opacity: 1; }

/* image lightbox */
.lightbox[hidden] { display: none; }
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(5,27,44,.86); display: flex; align-items: center; justify-content: center; padding: 24px; cursor: zoom-out; }
.lightbox img { max-width: min(980px, 96vw); max-height: 92vh; border-radius: 10px; box-shadow: 0 30px 90px rgba(0,0,0,.55); }
.s-head { margin-bottom: 6px; }
.s-head .section-title { margin-top: 8px; }

/* ── Contractual / growth tiers ───────────────────── */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } }
.tier { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: 32px 30px;
    box-shadow: 0 1px 2px rgba(7,20,45,.04), 0 18px 40px rgba(7,20,45,.05); display: flex; flex-direction: column; gap: 8px; }
.tier--featured { background: var(--navy); border-color: var(--navy); color: #fff; }
.tier-level { font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue); }
.tier--featured .tier-level { color: var(--blue-soft); }
.tier h3 { font-family: var(--f-display); font-weight: 600; font-size: 24px; color: var(--ink); }
.tier--featured h3 { color: #fff; }
.tier-pay { font-family: var(--f-display); font-weight: 600; font-size: clamp(23px, 2.4vw, 29px); color: var(--ink); margin: 6px 0 14px; white-space: nowrap; }
.tier-pay span { font-size: .52em; font-weight: 600; color: var(--muted); display: block; letter-spacing: .12em; text-transform: uppercase; white-space: normal; margin-top: 4px; }
.tier--featured .tier-pay, .tier--featured .tier-pay span { color: #fff; }
.tier--featured .tier-pay span { color: var(--blue-soft); }
.tier p { font-size: 14.5px; line-height: 1.6; color: var(--body); }
.tier--featured p { color: rgba(255,255,255,.78); }

/* ── Application form ─────────────────────────────── */
.apply-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.apply-head .body-text { margin-top: 14px; }
.apply-card { max-width: 620px; margin: 0 auto; background: var(--paper); border: 1px solid var(--line);
    border-radius: 22px; box-shadow: 0 24px 60px rgba(7,20,45,.10); overflow: hidden; }
.apply-form { padding: clamp(26px, 4vw, 40px); }
.apply-kicker { display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--blue); margin-bottom: 8px; }
.apply-form > p { color: var(--body); font-size: 15px; margin-bottom: 24px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.wide { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 600; color: var(--ink); }
.field input { font-family: var(--f-body); font-size: 15px; padding: 13px 15px; border: 1px solid var(--line);
    border-radius: 12px; background: var(--mist); color: var(--ink); transition: border-color var(--t), background var(--t); }
.field input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(21,94,239,.12); }
@media (max-width: 560px) { .field-grid { grid-template-columns: 1fr; } }
.apply-status { margin-top: 18px; font-size: 14px; font-weight: 500; color: var(--blue); min-height: 20px; }
.apply-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.apply-submit-row > span { font-size: 13px; color: var(--muted); }
.apply-submit { background: var(--navy); color: #fff; border: none; border-radius: 999px; padding: 14px 30px;
    font-family: var(--f-body); font-weight: 600; font-size: 15px; cursor: pointer; transition: background var(--t), transform var(--t); }
.apply-submit:hover { background: #0c2a40; transform: translateY(-1px); }
.apply-submit:disabled { opacity: .6; cursor: default; transform: none; }

/* ── Application modal ────────────────────────────── */
body.modal-open { overflow: hidden; }
.modal[hidden] { display: none; }
.modal { position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,27,44,.55); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal-panel { position: relative; z-index: 1; width: 100%; max-width: 600px; max-height: 92vh; overflow-y: auto;
    background: #fff; border-radius: 22px; box-shadow: 0 30px 80px rgba(7,20,45,.4); padding: clamp(26px, 4vw, 40px);
    animation: modalIn .22s cubic-bezier(.4,0,.2,1); }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }
.modal-close { position: absolute; top: 16px; right: 18px; width: 36px; height: 36px; border: none; border-radius: 50%;
    background: var(--mist); color: var(--ink); font-size: 22px; line-height: 1; cursor: pointer; transition: background var(--t); }
.modal-close:hover { background: var(--line); }
.modal-head { margin-bottom: 24px; padding-right: 34px; }
.modal-head h2 { font-family: var(--f-display); font-weight: 600; font-size: clamp(24px, 3vw, 30px); color: var(--ink); margin: 8px 0 10px; }
.modal-head p { font-size: 14.5px; color: var(--body); line-height: 1.6; }
.form-sub { font-family: var(--f-display); font-weight: 600; font-size: 15px; color: var(--ink);
    margin: 24px 0 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.choice-row { display: flex; flex-wrap: wrap; gap: 9px; }
.choice-col { display: flex; flex-direction: column; gap: 9px; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
@media (max-width: 480px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; color: var(--ink); cursor: pointer;
    padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; transition: border-color var(--t), background var(--t); }
.choice:hover { border-color: var(--blue-soft); }
.choice:has(input:checked) { border-color: var(--blue); background: var(--tint-2); }
.choice input { accent-color: var(--blue); width: 16px; height: 16px; flex: none; margin: 0; }

/* ── Custom dropdown (single choice) ──────────────── */
.dropdown { position: relative; }
.dropdown-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
    font-family: var(--f-body); font-size: 15px; color: var(--ink); text-align: left;
    padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: var(--mist); cursor: pointer;
    transition: border-color var(--t), background var(--t), box-shadow var(--t); }
.dropdown-toggle:hover { border-color: var(--blue-soft); }
.dropdown.open .dropdown-toggle { border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px rgba(21,94,239,.12); }
.dropdown-value.placeholder { color: var(--muted); }
.dropdown-caret { font-size: 11px; color: var(--muted); transition: transform var(--t); }
.dropdown.open .dropdown-caret { transform: rotate(180deg); }
.dropdown-menu { margin-top: 6px; background: #fff; border: 1px solid var(--line); border-radius: 12px;
    box-shadow: 0 12px 30px rgba(7,20,45,.10); padding: 6px; max-height: 244px; overflow-y: auto; }
.dropdown-menu[hidden] { display: none; }
.dropdown-group { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 10px 12px 6px; }
.dropdown-sep { height: 1px; background: var(--line); margin: 6px 4px; }
.dropdown-option { display: block; width: 100%; text-align: left; font-size: 14px; color: var(--ink);
    padding: 10px 12px; border: none; background: none; border-radius: 8px; cursor: pointer; transition: background var(--t); }
.dropdown-option:hover { background: var(--mist); }
.dropdown-option[aria-selected="true"] { background: var(--tint-2); color: var(--blue); font-weight: 600; }
.dropdown.error .dropdown-toggle { border-color: #d33; }
.dropdown-error { display: block; font-size: 12.5px; color: #d33; margin-top: 6px; }
.dropdown-error[hidden] { display: none; }

/* ── Multi-step form ──────────────────────────────── */
.form-steps-bar { display: flex; gap: 6px; margin-bottom: 24px; }
.step-pip { height: 4px; flex: 1; border-radius: 999px; background: var(--line); transition: background var(--t); }
.step-pip.active { background: var(--blue); }
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn .22s ease; }
@keyframes stepIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.form-step > .form-sub:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.form-nav { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.form-nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; }
.form-step-count { font-size: 13px; color: var(--muted); }
.btn-back { background: transparent; border: 1.5px solid var(--line); color: var(--ink); border-radius: 999px;
    padding: 13px 22px; font-family: var(--f-body); font-weight: 600; font-size: 14px; cursor: pointer; transition: border-color var(--t); }
.btn-back:hover { border-color: var(--ink); }
.btn-back[hidden], .apply-submit[hidden] { display: none; }

/* ── Process steps ────────────────────────────────── */
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 50px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }
.step { border-top: 2px solid var(--line); padding-top: 18px; }
.step-n { font-family: var(--f-display); font-weight: 700; font-size: 30px; color: var(--blue); }
.step h3 { font-family: var(--f-display); font-weight: 600; font-size: 19px; color: var(--ink); margin: 8px 0 8px; }
.step p { font-size: 14.5px; color: var(--body); line-height: 1.55; }

/* ── CEO / quote ──────────────────────────────────── */
.ceo-photo { border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.quote { font-family: var(--f-display); font-weight: 500; font-size: clamp(18px, 2vw, 22px); line-height: 1.45; color: var(--ink); }
.quote + .quote { margin-top: 14px; }
.sign { margin-top: 22px; }
.sign-name { font-family: var(--f-display); font-weight: 600; font-size: 17px; color: var(--ink); }
.sign-role { font-size: 13px; color: var(--muted); letter-spacing: .04em; }

/* ── Partner / team grid ──────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }
.member-info span { display: block; }
.member { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 3/4; }
.member img { width: 100%; height: 100%; object-fit: cover; }
.member::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,27,44,.92) 0%, rgba(5,27,44,.1) 45%, transparent 70%); }
.member-info { position: absolute; left: 22px; bottom: 20px; z-index: 1; color: #fff; transition: opacity var(--t); }
.member-info h3 { font-family: var(--f-display); font-weight: 600; font-size: 22px; color: #fff; }
.member-info span { font-size: 13px; color: rgba(255,255,255,.75); letter-spacing: .04em; }
.member:hover .member-info { opacity: 0; }

/* hover bio overlay */
.member-bio { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 26px 22px; color: #fff; background: linear-gradient(to top, rgba(5,27,44,.96) 30%, rgba(5,27,44,.78) 100%);
    opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity var(--t), transform var(--t), visibility var(--t); }
.member:hover .member-bio, .member:focus-within .member-bio { opacity: 1; visibility: visible; transform: none; }
.member-bio h3 { font-family: var(--f-display); font-weight: 600; font-size: 21px; color: #fff; }
.member-bio-role { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--blue-soft); margin-top: 2px; }
.member-bio ul { list-style: none; margin-top: 16px; display: grid; gap: 9px; }
.member-bio li { position: relative; padding-left: 16px; font-size: 12.5px; line-height: 1.4; color: rgba(255,255,255,.86); }
.member-bio li::before { content: ""; position: absolute; left: 0; top: 7px; width: 5px; height: 5px; border-radius: 50%; background: var(--blue-soft); }

/* ── FAQ ──────────────────────────────────────────── */
.faq { max-width: 820px; margin: 44px auto 0; display: grid; gap: 12px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color var(--t); }
.faq details[open] { border-color: var(--blue); }
.faq summary { list-style: none; cursor: pointer; padding: 19px 24px; font-family: var(--f-display); font-weight: 500;
    font-size: 17px; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; color: var(--blue); font-weight: 400; line-height: 1; transition: transform var(--t); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 22px; font-size: 15px; line-height: 1.65; color: var(--body); }
.faq-a strong { color: var(--ink); }

/* ── Final CTA ────────────────────────────────────── */
.final { background: var(--navy); color: #fff; text-align: center; padding: clamp(72px, 10vw, 130px) 0; position: relative; overflow: hidden; }
.final::after { content: ""; position: absolute; inset: 0; background: radial-gradient(700px 380px at 50% 0%, rgba(21,94,239,.22), transparent 60%); }
.final > .container { position: relative; z-index: 1; }
.final .section-title { color: #fff; margin-bottom: 24px; }
.final .body-text strong { color: #fff; }
.final-deadline { display: inline-block; margin: 28px 0; font-size: 14px; color: rgba(255,255,255,.8); padding: 9px 20px;
    border: 1px solid var(--navy-line); border-radius: 999px; }
.final-deadline strong { color: #fff; }
.final-foot { margin-top: 24px; font-size: 14px; color: rgba(255,255,255,.6); }

/* ── Footer ───────────────────────────────────────── */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: clamp(56px, 7vw, 88px) 0 0; border-top: 1px solid var(--navy-line); }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-col h4 { font-family: var(--f-body); font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(255,255,255,.7); line-height: 1.7; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--navy-line); margin-top: clamp(40px, 6vw, 64px); padding: 24px 0; font-size: 13px; color: rgba(255,255,255,.5); }
