/* ════════════════════════════════════════════════════════════
   Blue Star Next · Landing — Business Automation Developer
   Built against the BSN design system (tokens.jsx).
   60% Ink Navy · 30% Cool Gray · 10% Star Blue (+Signal Cyan).
   Newsreader = display/serif · Geist = UI/body · JetBrains Mono = metrics.
   ════════════════════════════════════════════════════════════ */

:root {
    /* — Color · Ink scale — */
    --ink:       #0E1A2D;
    --ink-deep:  #070E1A;
    --ink-2:     #15243C;
    --ink-3:     #1E3252;

    /* — Color · Accent — */
    /* Single accent (Star Blue) — aligned with BlueStar Advice's minimal palette.
       Signal Cyan is collapsed onto Star Blue per the design system default
       (showSignal:false), keeping semantic naming intact in the CSS. */
    --star:      #4F7CFF;
    --star-hi:   #7FA0FF;
    --star-lo:   #2D5BDB;
    --signal:    #4F7CFF;
    --signal-lo: #2D5BDB;

    /* — Color · Cool gray scale — */
    --g50:  #F4F6FA;
    --g100: #E8ECF4;
    --g200: #D2D9E6;
    --g300: #A8B3CF;
    --g400: #7B89A7;
    --g500: #54627F;
    --g600: #3A4660;
    --g700: #26314A;
    --g800: #172238;
    --g900: #0E1A2D;

    --paper:    #FAFBFD;
    --paper-dk: #F0F3F8;

    /* — Type — */
    /* Jost for display/titles (geometric, Advice-aligned). Inter for body/UI.
       JetBrains Mono retained for metrics, KPI values and technical labels. */
    --f-serif: 'Jost', 'Futura', system-ui, -apple-system, sans-serif;
    --f-sans:  'Inter', system-ui, -apple-system, sans-serif;
    --f-mono:  'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;

    /* — Motion — */
    --t: 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
    font-family: var(--f-sans);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ── Layout ──────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.container.narrow { max-width: 880px; }

/* ── Star glyph ──────────────────────────────────── */
.star-glyph {
    width: 14px;
    height: 14px;
    fill: currentColor;
    color: var(--star);
    flex-shrink: 0;
    display: inline-block;
}
.star-glyph.signal { color: var(--signal); }

/* ════════════════════════════════════════════════════════════
   LOGO
   ════════════════════════════════════════════════════════════ */
.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: var(--paper);
    line-height: 1;
}
.logo-mark {
    font-family: var(--f-serif);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.02em;
}
.logo-mark i {
    font-style: italic;
    font-weight: 400;
}
.logo-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid currentColor;
    color: var(--star);
    padding: 5px 9px 4px;
    border-radius: 2px;
}
.logo-badge .star-glyph {
    width: 10px;
    height: 10px;
}
.logo-next {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(14, 26, 45, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ink-3);
}
.deadline-bar {
    background: var(--ink-deep);
    border-bottom: 1px solid var(--ink-3);
}
.deadline-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}
.deadline-bar-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--signal);
    text-transform: uppercase;
    line-height: 1;
}
.deadline-bar-tag .star-glyph {
    width: 11px;
    height: 11px;
}
.deadline-bar-date {
    font-family: var(--f-serif);
    font-size: 15px;
    font-weight: 500;
    color: var(--paper);
    letter-spacing: -0.01em;
    line-height: 1;
}
.deadline-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--signal);
    line-height: 1;
    padding: 6px 12px;
    border: 1px solid rgba(127, 227, 213, 0.4);
    border-radius: 2px;
    transition: all var(--t);
}
.deadline-bar-cta .arrow {
    font-family: var(--f-mono);
    transition: transform var(--t);
}
.deadline-bar-cta:hover {
    background: var(--signal);
    color: var(--ink);
    border-color: var(--signal);
}
.deadline-bar-cta:hover .arrow { transform: translateX(3px); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-top: 18px;
    padding-bottom: 18px;
}
.nav-links {
    display: flex;
    gap: 32px;
    font-size: 14px;
    color: var(--g200);
}
.nav-links a {
    transition: color var(--t);
}
.nav-links a:hover { color: var(--paper); }

/* ════════════════════════════════════════════════════════════
   SECTION HEAD (tag · hairline · code)
   ════════════════════════════════════════════════════════════ */
.section-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}
.tag {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--star-lo);
    line-height: 1;
}
.tag-signal { color: var(--signal); }
.hairline {
    flex: 1;
    height: 1px;
    background: var(--g200);
}
.section-head-dark .hairline { background: var(--ink-3); }
.bsn-code {
    font-family: var(--f-mono);
    font-size: 11px;
    color: var(--g400);
    letter-spacing: 0.12em;
    line-height: 1;
}

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY SCALE
   ════════════════════════════════════════════════════════════ */
.display-xl, .display-l, .display-m,
h1, h2, h3, h4 {
    font-family: var(--f-serif);
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.025em;
}
.display-xl {
    font-size: clamp(44px, 6.4vw, 92px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    text-wrap: balance;
}
.display-l {
    font-size: clamp(36px, 4.8vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.03em;
}
.display-m {
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.022em;
    margin-bottom: 28px;
}
.display-xl em,
.display-l em,
.display-m em {
    font-style: italic;
    font-weight: 400;
    color: var(--star);
}
.display-xl em.signal,
.display-l em.signal,
.display-m em.signal {
    color: var(--signal);
}

.light { color: var(--paper); }
.light em { color: var(--star-hi); }
.light em.signal { color: var(--signal); }

.body-l {
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.55;
    color: var(--g600);
    max-width: 720px;
    margin-bottom: 20px;
    font-weight: 400;
}
.body-l.light { color: var(--g200); }
.body-l strong { color: var(--ink); font-weight: 600; }
.body-l.light strong { color: var(--paper); }

.section p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--g600);
    max-width: 720px;
    margin-bottom: 18px;
}
.section-ink p { color: var(--g200); }
.section-ink strong { color: var(--paper); }

.emphasis-line {
    font-family: var(--f-serif);
    font-size: clamp(20px, 1.8vw, 26px);
    font-weight: 500;
    line-height: 1.4;
    color: var(--ink);
    margin: 28px 0 0;
    max-width: 720px;
}
.emphasis-line.light { color: var(--paper); }

/* ════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-sans);
    font-weight: 500;
    font-size: 15px;
    padding: 14px 22px;
    border: 1.5px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--t);
    line-height: 1.2;
    text-align: left;
}
.btn .arrow {
    font-family: var(--f-mono);
    font-size: 14px;
    font-weight: 500;
    transition: transform var(--t);
    display: inline-block;
}
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
    background: var(--star);
    color: var(--paper);
    border-color: var(--star);
    font-weight: 600;
}
.btn-primary:hover {
    background: var(--star-lo);
    border-color: var(--star-lo);
}

.btn-ghost {
    background: transparent;
    border-color: var(--star);
    color: var(--paper);
}
.btn-ghost:hover {
    background: var(--star);
    color: var(--paper);
}

.btn-link {
    background: transparent;
    border: none;
    color: var(--paper);
    padding: 14px 4px;
    border-bottom: 1px solid var(--g400);
    border-radius: 0;
    font-weight: 500;
}
.btn-link:hover {
    border-bottom-color: var(--star);
    color: var(--star-hi);
}

.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-xl { padding: 20px 32px; font-size: 17px; }

/* Section-level CTA wrapper — repeated through the page */
.section-cta {
    margin-top: 56px;
    display: flex;
    justify-content: flex-start;
}
.section-cta .btn {
    max-width: 520px;
}

/* ════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    background: var(--ink);
    color: var(--paper);
    padding: 80px 0 100px;
    overflow: hidden;
}
.hero-inner {
    position: relative;
    z-index: 1;
}
.constellation {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    opacity: 0.7;
    pointer-events: none;
    z-index: 0;
}
.constellation-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 60%;
    opacity: 0.5;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    background: var(--ink-2);
    border: 1px solid var(--ink-3);
    color: var(--signal);
    margin: 12px 0 36px;
}
.hero-pill span {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero .display-xl {
    color: var(--paper);
    margin-bottom: 32px;
    max-width: 1100px;
}
.hero .lead {
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.55;
    color: var(--g200);
    max-width: 720px;
    margin-bottom: 44px;
    font-weight: 400;
}
.hero .lead strong {
    color: var(--paper);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 88px;
}

/* Trust bar */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-top: 32px;
    border-top: 1px solid var(--ink-3);
}
.kpi {
    padding: 0 32px 0 0;
}
.kpi + .kpi {
    padding-left: 32px;
    border-left: 1px solid var(--ink-3);
}
.kpi-value {
    font-family: var(--f-mono);
    font-size: clamp(28px, 2.6vw, 38px);
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--paper);
    line-height: 1;
}
.kpi-value .kpi-sub {
    font-size: 0.55em;
    color: var(--g400);
    font-weight: 400;
}
.kpi-label {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--g300);
    margin-top: 12px;
    line-height: 1.3;
}

/* ════════════════════════════════════════════════════════════
   SECTIONS — general
   ════════════════════════════════════════════════════════════ */
.section {
    padding: 110px 0;
    position: relative;
}
.section-paper {
    background: var(--paper);
    color: var(--ink);
}
.section-ink {
    background: var(--ink);
    color: var(--paper);
}

/* ════════════════════════════════════════════════════════════
   CHECKLIST
   ════════════════════════════════════════════════════════════ */
.checklist {
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.checklist li {
    position: relative;
    padding-left: 28px;
    font-family: var(--f-sans);
    font-size: 17px;
    line-height: 1.55;
    color: var(--ink);
}
.checklist.light li { color: var(--g100); }
.checklist.light li strong { color: var(--paper); }

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 13px;
    height: 13px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234F7CFF'><path d='M12 0 L13.4 10.6 L24 12 L13.4 13.4 L12 24 L10.6 13.4 L0 12 L10.6 10.6 Z'/></svg>") no-repeat center / contain;
}
.checklist.light li::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237FA0FF'><path d='M12 0 L13.4 10.6 L24 12 L13.4 13.4 L12 24 L10.6 13.4 L0 12 L10.6 10.6 Z'/></svg>");
}

.checklist.cross li::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D6443A' stroke-width='2.5' stroke-linecap='round'><path d='M6 6 L18 18 M18 6 L6 18'/></svg>");
    top: 7px;
    width: 14px;
    height: 14px;
}
.checklist.light.cross li::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E08577' stroke-width='2.5' stroke-linecap='round'><path d='M6 6 L18 18 M18 6 L6 18'/></svg>");
}

.checklist.compact li {
    padding-left: 24px;
    font-size: 15px;
    line-height: 1.5;
}
.checklist.compact li::before {
    top: 6px;
    width: 11px;
    height: 11px;
}

/* ════════════════════════════════════════════════════════════
   CALLOUT
   ════════════════════════════════════════════════════════════ */
.callout {
    margin-top: 40px;
    padding: 28px 32px;
    background: var(--paper-dk);
    border-left: 3px solid var(--star);
}
.callout-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--star-lo);
    margin-bottom: 10px;
}
.callout p {
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    max-width: none;
}

/* ════════════════════════════════════════════════════════════
   NUMBERS GRID (BSN/HIRE · 05)
   ════════════════════════════════════════════════════════════ */
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 48px;
    border-top: 1px solid var(--ink-3);
    border-left: 1px solid var(--ink-3);
}
.num-card {
    padding: 36px 32px;
    border-right: 1px solid var(--ink-3);
    border-bottom: 1px solid var(--ink-3);
    transition: background var(--t);
    background: transparent;
}
.num-card:hover {
    background: var(--ink-2);
}
.num-card-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--star-hi);
    margin-bottom: 18px;
}
.num-card-value {
    font-family: var(--f-mono);
    font-size: clamp(28px, 2.6vw, 36px);
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--paper);
    line-height: 1;
    margin-bottom: 12px;
}
.num-card-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--g300);
    max-width: 280px;
}

.pull-quote {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-top: 64px;
    padding: 36px 0;
    border-top: 1px solid var(--ink-3);
    border-bottom: 1px solid var(--ink-3);
    max-width: 1000px;
}
.pull-quote .star-glyph {
    width: 28px;
    height: 28px;
    margin-top: 6px;
}
.pull-quote p {
    font-family: var(--f-serif);
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 400;
    line-height: 1.4;
    color: var(--paper);
    margin: 0;
    max-width: none;
}
.pull-quote em {
    color: var(--signal);
    font-style: italic;
}

/* ════════════════════════════════════════════════════════════
   METRIC CALLOUT (mercato)
   ════════════════════════════════════════════════════════════ */
.metric-callout {
    margin-top: 48px;
    padding: 40px;
    background: var(--ink-2);
    border: 1px solid var(--ink-3);
    border-left: 3px solid var(--signal);
}
.metric-value {
    font-family: var(--f-mono);
    font-size: clamp(56px, 7vw, 88px);
    font-weight: 500;
    letter-spacing: -0.025em;
    color: var(--paper);
    line-height: 1;
    margin-bottom: 14px;
}
.metric-label {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--signal);
    margin-bottom: 14px;
}
.metric-text {
    font-size: 16px;
    line-height: 1.55;
    color: var(--g200);
    max-width: 600px;
}

/* ════════════════════════════════════════════════════════════
   PROFILE GRID
   ════════════════════════════════════════════════════════════ */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
}
.profile-card {
    padding: 36px 32px;
    background: var(--paper);
    border: 1px solid var(--g200);
    transition: all var(--t);
    display: flex;
    flex-direction: column;
}
.profile-card:hover {
    border-color: var(--star);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(14, 26, 45, 0.08);
}
.profile-card-featured {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}
.profile-card-featured:hover {
    border-color: var(--star);
}
.profile-card-featured .profile-card-title { color: var(--paper); }
.profile-card-featured .checklist li { color: var(--g100); }
.profile-card-featured .checklist li::before {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237FA0FF'><path d='M12 0 L13.4 10.6 L24 12 L13.4 13.4 L12 24 L10.6 13.4 L0 12 L10.6 10.6 Z'/></svg>");
}

.profile-card-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
}
.tag-must     { color: var(--star-lo); }
.tag-essential{ color: var(--signal-lo); }
.tag-negative { color: #B03434; }
.profile-card-featured .tag-essential { color: var(--signal); }

.profile-card-title {
    font-family: var(--f-serif);
    font-size: 26px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

/* ════════════════════════════════════════════════════════════
   CAREER PATH
   ════════════════════════════════════════════════════════════ */
.career-path {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 56px;
    align-items: stretch;
}
.career-step {
    position: relative;
    background: var(--ink-2);
    border: 1px solid var(--ink-3);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: all var(--t);
}
.career-step:hover {
    border-color: var(--star);
}
.career-step-featured {
    background: linear-gradient(155deg, rgba(79, 124, 255, 0.18) 0%, rgba(79, 124, 255, 0.04) 100%);
    border-color: var(--star-lo);
}
.career-badge {
    position: absolute;
    top: -14px;
    left: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--star);
    color: var(--paper);
    padding: 6px 12px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1;
}
.career-badge .star-glyph {
    width: 10px;
    height: 10px;
    color: var(--paper);
}
.career-year {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--star-hi);
    margin-bottom: 14px;
}
.career-step-featured .career-year { color: var(--signal); }
.career-role {
    font-family: var(--f-serif);
    font-size: clamp(26px, 2.4vw, 34px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--paper);
    margin-bottom: 18px;
    letter-spacing: -0.015em;
}
.career-salary {
    padding: 14px 0 20px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--ink-3);
}
.salary-label {
    display: block;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--g400);
    margin-bottom: 6px;
}
.salary-value {
    font-family: var(--f-mono);
    font-size: clamp(20px, 1.8vw, 24px);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--paper);
    line-height: 1.1;
}
.salary-value em {
    color: var(--signal);
    font-style: italic;
    font-weight: 500;
}
.career-perks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.career-perks li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--g100);
}
.career-perks li strong { color: var(--paper); }
.career-perks li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%234F7CFF'><path d='M12 0 L13.4 10.6 L24 12 L13.4 13.4 L12 24 L10.6 13.4 L0 12 L10.6 10.6 Z'/></svg>") no-repeat center / contain;
}

/* ════════════════════════════════════════════════════════════
   WEEK SCHEDULE
   ════════════════════════════════════════════════════════════ */
.week {
    margin-top: 48px;
    border-top: 1px solid var(--g200);
}
.day {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid var(--g200);
    align-items: baseline;
    transition: background var(--t);
}
.day:hover { background: var(--paper-dk); }
.day-marker {
    font-family: var(--f-mono);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--star-lo);
    line-height: 1;
}
.day-title {
    font-family: var(--f-serif);
    font-size: 20px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.day-body p {
    font-size: 15px;
    color: var(--g600);
    margin: 0;
    max-width: none;
}

.not-block {
    margin-top: 48px;
    padding: 28px 32px;
    background: var(--paper-dk);
    border-left: 3px solid #D6443A;
}
.not-block-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #B03434;
    margin-bottom: 14px;
}
.not-block .checklist { margin: 0; }

/* ════════════════════════════════════════════════════════════
   PROCESS — 5 steps with timeline
   ════════════════════════════════════════════════════════════ */
.process {
    position: relative;
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.process.process-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.process-line {
    position: absolute;
    top: 24px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: var(--ink-3);
    z-index: 0;
}
.process-step {
    position: relative;
    padding: 0 18px 0 0;
    z-index: 1;
}
.process-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--star);
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px var(--ink);
}
.process-dot.signal { background: var(--signal); }
.process-num {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--g400);
    margin-bottom: 12px;
}
.process-title {
    font-family: var(--f-serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--paper);
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.process-step p {
    font-size: 14px;
    line-height: 1.55;
    color: var(--g300);
    margin: 0;
    max-width: none;
}
.process-step p strong { color: var(--signal); font-family: var(--f-mono); font-size: 13px; }

.timeline-strip {
    margin-top: 56px;
    padding: 20px 28px;
    background: var(--ink-2);
    border: 1px solid var(--ink-3);
    border-left: 3px solid var(--signal);
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.timeline-strip .star-glyph {
    width: 16px;
    height: 16px;
}
.timeline-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--signal);
}
.timeline-value {
    font-family: var(--f-mono);
    font-size: 22px;
    font-weight: 500;
    color: var(--paper);
    letter-spacing: -0.01em;
}
.timeline-context {
    font-size: 14px;
    color: var(--g300);
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIAL — Cosa dicono i clienti
   ════════════════════════════════════════════════════════════ */
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.testimonial-card {
    background: var(--paper);
    border: 1px solid var(--g200);
    border-left: 3px solid var(--star);
    padding: 32px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: all var(--t);
}
.testimonial-card:hover {
    border-color: var(--star);
    border-left-color: var(--star);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(14, 26, 45, 0.08);
}
.testimonial-metric {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--g200);
}
.testimonial-metric-value {
    font-family: var(--f-mono);
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 500;
    color: var(--star-lo);
    line-height: 1;
    letter-spacing: -0.015em;
}
.testimonial-metric-label {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--g500);
    text-transform: uppercase;
}
.testimonial-quote p {
    font-family: var(--f-serif);
    font-size: 19px;
    font-weight: 400;
    line-height: 1.45;
    color: var(--ink);
    font-style: italic;
    margin: 0;
    max-width: none;
    letter-spacing: -0.005em;
}
.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.testimonial-name {
    font-family: var(--f-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}
.testimonial-role {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--g500);
    text-transform: uppercase;
}
.testimonial-footnote {
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--g500);
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   FOUNDER — Chi siamo
   ════════════════════════════════════════════════════════════ */
.founder-list {
    display: grid;
    gap: 42px;
    margin-top: 48px;
}
.founder-block {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
    padding: 34px 0;
    border-top: 1px solid var(--g200);
}
.founder-block:first-child {
    padding-top: 0;
    border-top: 0;
}
.founder-photo {
    aspect-ratio: 4 / 5;
    background: var(--paper-dk);
    border: 1px solid var(--g200);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: saturate(0.92) contrast(1.03);
}
.founder-photo-initials {
    background:
        linear-gradient(90deg, rgba(79, 124, 255, 0.12), transparent 1px) 0 0 / 24px 24px,
        linear-gradient(0deg, rgba(79, 124, 255, 0.08), transparent 1px) 0 0 / 24px 24px,
        var(--ink);
    border-color: var(--ink-3);
}
.founder-photo-initials span {
    font-family: var(--f-serif);
    font-size: 52px;
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--paper);
}
.founder-photo-placeholder {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--g400);
}
.founder-content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.founder-kicker {
    margin-bottom: -14px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--star-lo);
    text-transform: uppercase;
}
.founder-content h3 {
    margin: 0 0 -8px;
    font-family: var(--f-serif);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    line-height: 1.08;
    color: var(--ink);
    letter-spacing: -0.02em;
}
.founder-content .body-l {
    margin-bottom: 0;
}
.founder-bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--g200);
}
.founder-bullets li {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 20px;
    align-items: baseline;
    font-size: 15px;
    line-height: 1.5;
    color: var(--g600);
}
.founder-bullet-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--star-lo);
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   RESPONSE TIMELINE — Cosa succede dopo la candidatura
   ════════════════════════════════════════════════════════════ */
.response-timeline {
    margin-top: 32px;
    padding: 28px 32px;
    background: var(--ink-2);
    border: 1px solid var(--ink-3);
    border-left: 3px solid var(--star);
}
.response-timeline-head {
    margin-bottom: 18px;
}
.response-timeline-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.response-timeline-list li {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: baseline;
    padding: 10px 0;
    border-bottom: 1px dashed var(--ink-3);
}
.response-timeline-list li:last-child {
    border-bottom: none;
}
.response-timeline-when {
    font-family: var(--f-mono);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--signal);
    line-height: 1;
}
.response-timeline-what {
    font-family: var(--f-sans);
    font-size: 15px;
    line-height: 1.5;
    color: var(--g100);
}

/* ════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════ */
.faq {
    margin-top: 40px;
    border-top: 1px solid var(--g200);
}
.faq-item {
    border-bottom: 1px solid var(--g200);
    transition: background var(--t);
}
.faq-item[open] {
    background: var(--paper-dk);
}
.faq-item summary {
    display: grid;
    grid-template-columns: 56px 1fr 32px;
    gap: 16px;
    align-items: center;
    padding: 24px 24px 24px 0;
    cursor: pointer;
    list-style: none;
    transition: all var(--t);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { color: var(--star-lo); }
.faq-num {
    font-family: var(--f-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--g400);
    padding-left: 4px;
}
.faq-q {
    font-family: var(--f-serif);
    font-size: clamp(18px, 1.6vw, 22px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.3;
}
.faq-icon {
    font-family: var(--f-mono);
    font-size: 24px;
    font-weight: 300;
    color: var(--star);
    text-align: right;
    transition: transform var(--t);
    line-height: 1;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}
.faq-a {
    padding: 0 24px 28px 76px;
    font-size: 16px;
    line-height: 1.65;
    color: var(--g600);
}

/* ════════════════════════════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════════════════════════════ */
.section.final {
    padding: 120px 0 130px;
    overflow: hidden;
}
.final-inner {
    position: relative;
    z-index: 1;
    text-align: left;
}
.final .display-l {
    margin-bottom: 36px;
}
.deadline-card {
    margin: 48px 0;
    padding: 28px 32px;
    background: var(--ink-2);
    border: 1px solid rgba(127, 227, 213, 0.3);
    border-left: 3px solid var(--signal);
    display: inline-block;
}
.deadline-tag {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--signal);
    margin-bottom: 10px;
}
.deadline-date {
    font-family: var(--f-serif);
    font-size: clamp(22px, 2vw, 28px);
    font-weight: 500;
    color: var(--paper);
    letter-spacing: -0.015em;
    line-height: 1.15;
}
.final-line {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-serif);
    font-size: clamp(17px, 1.6vw, 21px);
    color: var(--g200);
    max-width: none;
}
.final-line em {
    font-style: italic;
    color: var(--signal);
}
.final-line .star-glyph {
    width: 14px;
    height: 14px;
}

/* ════════════════════════════════════════════════════════════
   APPLICATION MODAL
   ════════════════════════════════════════════════════════════ */
body.modal-open {
    overflow: hidden;
}
.application-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 24px;
}
.application-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 14, 26, 0.16);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.application-modal-panel {
    position: relative;
    z-index: 1;
    width: min(820px, 100%);
    max-height: min(860px, calc(100vh - 48px));
    overflow: auto;
    background: var(--ink-deep);
    border: 1px solid var(--ink-3);
    box-shadow: 0 32px 90px rgba(7, 14, 26, 0.42);
}
.application-modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px 20px;
    background: var(--ink-deep);
    border-bottom: 1px solid var(--ink-3);
}
.application-modal-tag {
    margin-bottom: 8px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--signal);
}
.application-modal-head h2 {
    font-family: var(--f-serif);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 500;
    line-height: 1.12;
    color: var(--paper);
    letter-spacing: -0.015em;
}
.application-modal-close {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 1px solid var(--ink-3);
    border-radius: 0;
    background: var(--ink-2);
    color: var(--paper);
    font-family: var(--f-mono);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: background var(--t), border-color var(--t), color var(--t);
}
.application-modal-close:hover,
.application-modal-close:focus-visible {
    background: var(--signal);
    border-color: var(--signal);
    color: var(--ink);
    outline: none;
}
.application-form {
    background:
        linear-gradient(90deg, rgba(79, 124, 255, 0.12), transparent 1px) 0 0 / 34px 34px,
        linear-gradient(0deg, rgba(79, 124, 255, 0.08), transparent 1px) 0 0 / 34px 34px,
        var(--ink);
    border-top: 1px solid var(--ink-3);
}
.application-form-intro {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    padding: 28px 32px 0;
    align-items: baseline;
}
.application-form-kicker {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--signal);
    text-transform: uppercase;
}
.application-form-intro p {
    margin: 0;
    max-width: none;
    color: var(--g200);
    font-size: 15px;
    line-height: 1.55;
}
.application-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    padding: 28px 32px 30px;
}
.application-field {
    margin-bottom: 0;
}
.application-field-wide {
    grid-column: 1 / -1;
}
.application-field label,
.application-choice-field legend {
    display: block;
    margin-bottom: 8px;
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.14em;
    color: var(--g300);
    text-transform: uppercase;
}
.application-field input[type="text"],
.application-field input[type="email"],
.application-field input[type="tel"],
.application-field input[type="url"] {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid var(--ink-3);
    border-radius: 0;
    background: rgba(7, 14, 26, 0.74);
    color: var(--paper);
    font-family: var(--f-sans);
    font-size: 15px;
    outline: none;
    transition: border-color var(--t), box-shadow var(--t), background var(--t);
}
.application-field input::placeholder {
    color: var(--g500);
}
.application-field input:focus {
    border-color: var(--star);
    background: var(--ink-deep);
    box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.18);
}
.application-form-status {
    min-height: 22px;
    padding: 0 32px 20px;
    color: var(--g300);
    font-size: 14px;
}
.application-form-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 32px 28px;
    border-top: 1px solid var(--ink-3);
    background: var(--ink-deep);
}
.application-form-actions span {
    font-family: var(--f-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--g400);
    text-transform: uppercase;
}
.application-form-actions button {
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--star);
    background: var(--star);
    color: var(--paper);
    font-family: var(--f-sans);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--t), color var(--t), border-color var(--t), transform var(--t);
}
.application-form-actions button:hover,
.application-form-actions button:focus-visible {
    background: var(--star-hi);
    border-color: var(--star-hi);
    transform: translateY(-1px);
    outline: none;
}
.application-form-actions button:disabled {
    cursor: wait;
    opacity: 0.65;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--ink-deep);
    padding: 92px 0 38px;
    border-top: 1px solid var(--ink-3);
}
.footer-inner {
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 2.4fr);
    gap: clamp(44px, 7vw, 96px);
    align-items: start;
}
.footer-brand {
    min-width: 0;
}
.footer-logo {
    display: block;
    width: min(190px, 100%);
    height: auto;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(28px, 4vw, 56px);
}
.footer-block h2 {
    margin: 0 0 22px;
    font-family: var(--f-sans);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--paper);
}
.footer-block p {
    margin: 0;
    max-width: 280px;
    color: var(--g200);
    font-size: 17px;
    line-height: 1.52;
}
.footer-block a {
    color: inherit;
    text-decoration: none;
    transition: color var(--t);
}
.footer-block a:hover,
.footer-block a:focus-visible {
    color: var(--signal);
    outline: none;
}
.footer-legal p {
    color: var(--g300);
}
.footer-copyright {
    grid-column: 2;
    justify-self: end;
    margin: 52px 0 0;
    color: var(--g400);
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
    .nav-links { display: none; }
    .numbers-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-grid { grid-template-columns: 1fr; }
    .career-path { grid-template-columns: 1fr; }
    .process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process.process-4 { grid-template-columns: repeat(2, 1fr); }
    .process-line { display: none; }
    .site-header .btn-sm { display: none; }
    .deadline-bar-cta { font-size: 12px; padding: 5px 10px; }
}

@media (max-width: 720px) {
    .container { padding: 0 20px; }
    body { font-size: 14px; }

    /* ── Typography on mobile: Jost reads larger than Newsreader,
          so we tame the display scales and drop the forced <br/>s
          to let text-wrap:balance do the work. ─────────────────── */
    .display-xl {
        font-size: clamp(32px, 8.6vw, 40px);
        line-height: 1.05;
        letter-spacing: -0.02em;
    }
    .display-xl br { display: none; }
    .display-l {
        font-size: clamp(28px, 7vw, 36px);
        line-height: 1.1;
        letter-spacing: -0.015em;
    }
    .display-l br { display: none; }
    .display-m {
        font-size: clamp(24px, 6.4vw, 30px);
        line-height: 1.15;
        letter-spacing: -0.012em;
        margin-bottom: 20px;
    }
    .display-m br { display: none; }
    .body-l { font-size: 16px; line-height: 1.55; }

    /* ── Hero ─────────────────────────────────────────────────── */
    .hero { padding: 48px 0 64px; }
    .hero .display-xl { margin-bottom: 24px; }
    .hero .lead { font-size: 15px; line-height: 1.55; margin-bottom: 32px; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 56px; }
    .hero-cta .btn-lg { text-align: center; }
    .hero-pill {
        gap: 8px;
        padding: 6px 10px;
        margin: 8px 0 24px;
        max-width: 100%;
    }
    .hero-pill span {
        font-size: 10px;
        letter-spacing: 0.14em;
        line-height: 1.35;
    }

    /* ── Deadline bar: stack tight on a single visual unit,
          hide the long CTA (the page has 7+ others anyway). ──── */
    .deadline-bar-inner {
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding-top: 11px;
        padding-bottom: 12px;
    }
    .deadline-bar-tag {
        font-size: 10px;
        letter-spacing: 0.14em;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
    }
    .deadline-bar-tag .star-glyph { width: 9px; height: 9px; }
    .deadline-bar-date {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
    }
    .deadline-bar-cta { display: none; }

    /* ── Sections ─────────────────────────────────────────────── */
    .section { padding: 56px 0; }
    .section-head { gap: 10px; margin-bottom: 28px; }
    .bsn-code { display: none; }
    .tag { font-size: 10px; letter-spacing: 0.14em; }

    /* ── Trust bar / KPIs ─────────────────────────────────────── */
    .trust-bar { grid-template-columns: 1fr 1fr; gap: 20px; padding-top: 24px; }
    .kpi, .kpi + .kpi {
        padding: 14px 0 0;
        border-left: none;
        border-top: 1px solid var(--ink-3);
    }
    .kpi:nth-child(-n+2) { border-top: none; padding-top: 0; }
    .kpi-value { font-size: 24px; }
    .kpi-label { font-size: 10px; letter-spacing: 0.12em; margin-top: 8px; }

    /* ── Numbers grid ─────────────────────────────────────────── */
    .numbers-grid { grid-template-columns: 1fr; margin-top: 32px; }
    .num-card { padding: 26px 22px; }
    .num-card-tag { margin-bottom: 14px; font-size: 10px; }
    .num-card-value { font-size: 26px; }

    /* ── Testimonial ──────────────────────────────────────────── */
    .testimonial-grid { grid-template-columns: 1fr; margin-top: 32px; gap: 18px; }
    .testimonial-card { padding: 24px 22px; gap: 18px; }
    .testimonial-metric { flex-wrap: wrap; gap: 8px; padding-bottom: 14px; }
    .testimonial-metric-value { font-size: 24px; }
    .testimonial-metric-label { font-size: 10px; letter-spacing: 0.14em; }
    .testimonial-quote p { font-size: 16px; line-height: 1.45; }
    .testimonial-footnote { font-size: 11px; margin-top: 24px; }

    /* ── Profile / Career / Process / Pull quote ──────────────── */
    .profile-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
    .profile-card { padding: 26px 22px; }
    .profile-card-title { font-size: 22px; }
    .career-path { grid-template-columns: 1fr; gap: 32px; margin-top: 56px; }
    .career-step { padding: 28px 22px; }
    .career-role { font-size: 24px; margin-bottom: 14px; }
    .salary-value { font-size: 20px; }
    .process, .process.process-4 { grid-template-columns: 1fr; gap: 28px; }
    .process-line { display: none; }
    .process-title { font-size: 20px; }
    .pull-quote { gap: 14px; padding: 28px 0; margin-top: 48px; }
    .pull-quote .star-glyph { width: 22px; height: 22px; }
    .pull-quote p { font-size: 19px; line-height: 1.4; }
    .metric-callout { padding: 26px 22px; }
    .metric-value { font-size: 52px; line-height: 1; }
    .callout { padding: 22px 20px; }

    /* ── Response timeline (inside Prossimi step) ─────────────── */
    .response-timeline { padding: 20px 18px; margin-top: 24px; }
    .response-timeline-list li { grid-template-columns: 52px 1fr; gap: 14px; padding: 8px 0; }
    .response-timeline-when { font-size: 15px; }
    .response-timeline-what { font-size: 14px; }
    .timeline-strip { padding: 16px 20px; gap: 10px; }
    .timeline-value { font-size: 18px; }

    /* ── Founder ──────────────────────────────────────────────── */
    .founder-list { gap: 28px; margin-top: 36px; }
    .founder-block { grid-template-columns: 1fr; gap: 24px; padding: 28px 0; }
    .founder-photo { max-width: 160px; }
    .founder-content { gap: 22px; }
    .founder-content h3 { font-size: 30px; }
    .founder-bullets { gap: 12px; padding-top: 18px; }
    .founder-bullets li { grid-template-columns: 1fr; gap: 4px; font-size: 14px; }
    .founder-bullet-tag { font-size: 10px; }

    /* ── FAQ ──────────────────────────────────────────────────── */
    .faq-item summary { grid-template-columns: 32px 1fr 24px; gap: 10px; padding: 20px 18px 20px 0; }
    .faq-q { font-size: 16px; line-height: 1.3; }
    .faq-num { font-size: 11px; letter-spacing: 0.14em; padding-left: 0; }
    .faq-a { padding: 0 18px 22px 42px; font-size: 15px; }

    /* ── Final CTA section ────────────────────────────────────── */
    .section.final { padding: 72px 0 88px; }
    .deadline-card { padding: 22px 24px; margin: 32px 0; display: block; }
    .deadline-date { font-size: 20px; }
    .final-line { margin-top: 28px; font-size: 16px; }

    /* ── Application modal ────────────────────────────────────── */
    .application-modal { padding: 12px; align-items: start; }
    .application-modal-panel { max-height: calc(100vh - 24px); }
    .application-modal-head { padding: 18px 18px 16px; gap: 14px; }
    .application-modal-tag { font-size: 10px; letter-spacing: 0.16em; }
    .application-modal-close { width: 34px; height: 34px; flex-basis: 34px; }
    .application-form-intro {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 22px 18px 0;
    }
    .application-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px 18px 24px;
    }
    .application-field label,
    .application-choice-field legend { font-size: 10px; }
    .application-form-status { padding: 0 18px 16px; }
    .application-form-actions {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }
    .application-form-actions button {
        width: 100%;
        min-height: 54px;
        font-size: 16px;
    }

    /* ── Buttons / CTAs ───────────────────────────────────────── */
    .btn-lg, .btn-xl { width: 100%; justify-content: center; text-align: center; padding: 16px 20px; }
    .btn-xl { font-size: 16px; padding: 18px 20px; }
    .section-cta { justify-content: stretch; margin-top: 36px; }
    .section-cta .btn { width: 100%; max-width: none; justify-content: center; text-align: center; }
    .btn { line-height: 1.3; }

    /* ── Footer ───────────────────────────────────────────────── */
    .site-footer { padding: 72px 0 34px; }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .footer-logo { width: 168px; }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .footer-block h2 { margin-bottom: 16px; font-size: 16px; }
    .footer-block p { max-width: none; font-size: 16px; }
    .footer-copyright {
        grid-column: 1;
        justify-self: start;
        margin-top: 6px;
        text-align: left;
        font-size: 13px;
    }

    /* ── Reduce visual noise from constellation on small screens */
    .constellation { opacity: 0.35; }
}

@media (max-width: 420px) {
    .display-xl { font-size: clamp(28px, 9vw, 34px); }
    .container { padding: 0 16px; }
    .deadline-bar .deadline-bar-inner { padding: 11px 16px 12px; }
    .hero-pill span { font-size: 9.5px; letter-spacing: 0.12em; }
    .testimonial-metric { flex-direction: column; align-items: flex-start; gap: 4px; }
    .testimonial-metric-value { font-size: 22px; }
}
