:root {
    --blue-950: #030b1d;
    --blue-900: #071638;
    --blue-800: #102448;
    --gold: #b9934f;
    --gold-soft: #dfc894;
    --ivory: #f3eee5;
    --paper: #fffdf8;
    --stone: #d6cbbb;
    --ink: #182034;
    --muted: #6f7480;
    --line: rgba(185, 147, 79, 0.28);
    --shadow: 0 26px 82px rgba(3, 11, 29, 0.12);
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans: "Manrope", Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(90deg, rgba(185, 147, 79, 0.045) 1px, transparent 1px),
        var(--paper);
    background-size: 112px 112px;
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

.container {
    width: calc(100% - 48px);
    max-width: 1200px;
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    min-height: 78px;
    padding: 0;
    background: rgba(3, 11, 29, 0.88);
    border-bottom: 1px solid rgba(223, 200, 148, 0.18);
    backdrop-filter: blur(18px);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 78px;
}

.brand img {
    width: 132px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    color: rgba(255, 253, 248, 0.82);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.site-nav a {
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--gold-soft);
}

.nav-cta {
    position: relative;
    padding: 11px 17px;
    border: 1px solid rgba(185, 147, 79, 0.54);
    color: var(--gold-soft);
    background: rgba(255, 253, 248, 0.025);
}

.nav-cta::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(223, 200, 148, 0.14);
    pointer-events: none;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(229, 212, 173, 0.24);
    background: transparent;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 1px;
    margin: 5px 0;
    background: var(--gold-soft);
}

.section {
    padding: clamp(76px, 9vw, 132px) clamp(22px, 4vw, 64px);
}

.section-dark {
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(3, 11, 29, 0.98), rgba(7, 22, 56, 0.98) 60%, rgba(9, 26, 61, 0.98)),
        var(--blue-950);
}

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

.narrow {
    width: min(900px, 100%);
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    color: inherit;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1;
}

h1 {
    max-width: 820px;
    font-size: clamp(54px, 5vw, 86px);
    font-weight: 500;
    line-height: 0.94;
}

h2 {
    font-size: clamp(36px, 4.6vw, 60px);
    font-weight: 500;
}

h3 {
    font-size: 28px;
}

p {
    margin: 0;
}

.hero {
    position: relative;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
    padding: 96px 0;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(3, 11, 29, 0.66) 0%, rgba(3, 11, 29, 0.3) 33%, rgba(3, 11, 29, 0.1) 57%, rgba(3, 11, 29, 0.3) 100%),
        linear-gradient(180deg, rgba(3, 11, 29, 0.12) 0%, rgba(3, 11, 29, 0.1) 52%, rgba(3, 11, 29, 0.58) 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 26px;
    z-index: 2;
    border: 1px solid rgba(223, 200, 148, 0.16);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: min(720px, calc(100vh - 270px));
}

.hero-grid > * {
    min-width: 0;
}

.hero-content {
    position: relative;
    z-index: 6;
    width: 100%;
    max-width: 820px;
    min-width: 0;
    text-align: center;
    text-shadow: 0 2px 22px rgba(5, 18, 44, 0.58);
}

.hero-content::before {
    content: "";
    display: block;
    width: 72px;
    height: 1px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
}

.hero-subtitle {
    max-width: 620px;
    margin-top: 24px;
    margin-inline: auto;
    color: rgba(255, 253, 248, 0.86);
    font-size: clamp(19px, 1.6vw, 24px);
    font-weight: 500;
    line-height: 1.45;
}

.hero-text {
    max-width: 610px;
    margin-top: 18px;
    margin-inline: auto;
    color: rgba(255, 253, 248, 0.72);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.75;
}

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

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    font-size: 14px;
    font-family: var(--font-sans);
    font-weight: 700;
    letter-spacing: 0;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);
    color: var(--blue-950);
    box-shadow: 0 14px 34px rgba(3, 11, 29, 0.16);
}

.btn-secondary {
    border-color: rgba(185, 147, 79, 0.5);
    color: var(--gold-soft);
    background: rgba(255, 253, 248, 0.04);
}

.btn-secondary.light {
    color: var(--blue-900);
}

.hero-visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    max-width: none;
    transform: none;
    opacity: 1;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border: 0;
    opacity: 1;
}

.problem,
.method,
.differentials,
.application {
    background: var(--ivory);
}

.problem h2,
.belief h2,
.manifesto h2 {
    margin-bottom: 30px;
}

.text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(24px, 5vw, 64px);
    color: var(--muted);
    font-size: 18px;
}

.text-columns span {
    color: var(--blue-900);
    font-weight: 700;
}

.belief p {
    max-width: 780px;
    color: rgba(255, 253, 248, 0.72);
    font-size: 19px;
}

.belief p + p {
    margin-top: 18px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.section-heading p:last-child {
    margin-top: 16px;
    color: var(--muted);
    font-size: 18px;
}

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

.journey-card,
.application-form {
    border: 1px solid rgba(7, 22, 56, 0.1);
    background: rgba(255, 253, 248, 0.82);
    box-shadow: var(--shadow);
}

.method-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding-top: 44px;
}

.method-grid::before {
    content: "";
    position: absolute;
    top: 62px;
    left: 9%;
    right: 9%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185, 147, 79, 0.72), transparent);
}

.step-card {
    position: relative;
    min-height: 292px;
    padding: 68px 30px 32px;
    border: 1px solid rgba(7, 22, 56, 0.07);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.58)),
        var(--paper);
    box-shadow: none;
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.step-card::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 30px;
    width: 12px;
    height: 12px;
    border: 1px solid rgba(185, 147, 79, 0.82);
    background: var(--paper);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(243, 238, 229, 0.92);
}

.step-card::after {
    content: "";
    position: absolute;
    top: 20px;
    right: 24px;
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, rgba(185, 147, 79, 0.62), transparent);
}

.step-card:last-child::after {
    content: "";
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 147, 79, 0.32);
    background: var(--paper);
    box-shadow: 0 18px 48px rgba(3, 11, 29, 0.08);
}

.step-card:hover::before {
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(185, 147, 79, 0.12), 0 0 28px rgba(185, 147, 79, 0.24);
}

.step-card span {
    display: block;
    margin-bottom: 22px;
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
}

.step-card p,
.journey-card p {
    margin-top: 16px;
    color: var(--muted);
}

.authority {
    position: relative;
    overflow: hidden;
    padding-top: clamp(96px, 9vw, 148px);
    padding-bottom: clamp(96px, 9vw, 148px);
    color: var(--paper);
    background:
        linear-gradient(135deg, rgba(3, 11, 29, 0.98), rgba(7, 22, 56, 0.97) 58%, rgba(13, 29, 63, 0.96)),
        var(--blue-950);
}

.authority::before {
    content: "";
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(223, 200, 148, 0.08);
    pointer-events: none;
}

.authority::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -220px;
    background: radial-gradient(circle, rgba(185, 147, 79, 0.14), transparent 62%);
    pointer-events: none;
}

.authority-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.86fr);
    gap: clamp(56px, 8vw, 120px);
    align-items: center;
}

.authority-copy h2 {
    max-width: 650px;
    font-size: clamp(46px, 4.7vw, 74px);
    line-height: 0.96;
}

.authority-copy p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 24px;
    color: rgba(255, 253, 248, 0.72);
    font-size: 19px;
    line-height: 1.75;
}

.authority-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    border: 0;
}

.authority-metrics div {
    position: relative;
    min-height: 168px;
    padding: 30px;
    border: 1px solid rgba(223, 200, 148, 0.18);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.055), rgba(255, 253, 248, 0.025)),
        rgba(7, 22, 56, 0.52);
}

.authority-metrics div::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(223, 200, 148, 0.065);
    pointer-events: none;
}

.authority-metrics strong {
    display: block;
    color: var(--gold-soft);
    font-family: var(--font-display);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 600;
    line-height: 1;
}

.authority-metrics span {
    display: block;
    max-width: 210px;
    margin-top: 18px;
    color: rgba(255, 253, 248, 0.74);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.founder {
    background:
        linear-gradient(90deg, rgba(3, 11, 29, 0.98), rgba(7, 22, 56, 0.91)),
        var(--blue-900);
    color: var(--paper);
}

.founder-grid,
.application-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
    gap: clamp(34px, 6vw, 84px);
    align-items: center;
}

.founder-copy p:not(.eyebrow) {
    max-width: 640px;
    color: rgba(255, 253, 248, 0.72);
    font-size: 18px;
}

.founder-copy p + p {
    margin-top: 18px;
}

.founder-copy .btn {
    margin-top: 30px;
}

.founder-photo {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 28px;
    border: 1px solid rgba(229, 212, 173, 0.24);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(255, 253, 248, 0.02)),
        linear-gradient(135deg, rgba(185, 147, 79, 0.18), transparent 42%),
        rgba(255, 253, 248, 0.03);
}

.founder-photo::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(223, 200, 148, 0.12);
}

.founder-photo::after {
    content: "";
    position: absolute;
    inset: auto 28px 96px 28px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(223, 200, 148, 0.34), transparent);
}

.founder-photo-mark {
    position: absolute;
    top: 44px;
    right: 44px;
    color: rgba(223, 200, 148, 0.13);
    font-family: var(--font-display);
    font-size: clamp(120px, 16vw, 220px);
    line-height: 0.8;
    pointer-events: none;
}

.founder-photo > div:not(.founder-photo-mark) {
    position: relative;
    z-index: 1;
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid rgba(229, 212, 173, 0.24);
}

.founder-photo span,
.card-label {
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.founder-photo strong {
    display: block;
    margin-top: 8px;
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
}

.journey {
    background: var(--paper);
}

.journey-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.journey-card {
    position: relative;
    min-height: 344px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.journey-card::before {
    content: "";
    width: 46px;
    height: 1px;
    margin-bottom: 34px;
    background: var(--gold);
}

.journey-card::after {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(7, 22, 56, 0.045);
    pointer-events: none;
}

.journey-card.featured {
    position: relative;
    z-index: 2;
    min-height: 380px;
    padding: 40px;
    transform: translateY(-16px) scale(1.025);
    border: 1px solid rgba(185, 147, 79, 0.68);
    background:
        linear-gradient(180deg, rgba(16, 36, 72, 0.96), var(--blue-950)),
        var(--blue-900);
    color: var(--paper);
    box-shadow: 0 28px 76px rgba(5, 18, 44, 0.24);
}

.journey-card.featured p {
    color: rgba(255, 253, 248, 0.72);
}

.journey-card.featured::after {
    border-color: rgba(223, 200, 148, 0.15);
}

.journey-card:hover {
    transform: translateY(-5px);
    border-color: rgba(185, 147, 79, 0.32);
    box-shadow: 0 22px 58px rgba(3, 11, 29, 0.12);
}

.journey-card.featured:hover {
    transform: translateY(-20px) scale(1.04);
    border-color: rgba(223, 200, 148, 0.86);
    box-shadow: 0 34px 88px rgba(3, 11, 29, 0.3);
}

.journey-card a {
    margin-top: auto;
    color: var(--blue-900);
    font-weight: 800;
}

.journey-card.featured a {
    color: var(--gold-soft);
}

.premium-badge {
    width: fit-content;
    margin-bottom: 20px;
    padding: 8px 12px;
    border: 1px solid rgba(185, 147, 79, 0.52);
    color: var(--gold-soft);
    background: rgba(185, 147, 79, 0.08);
    font-size: 11px;
    letter-spacing: 0;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(7, 22, 56, 0.08);
    border-left: 1px solid rgba(7, 22, 56, 0.08);
}

.differential-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 24px;
    align-content: start;
    min-height: 196px;
    padding: 34px;
    border: 0;
    border-right: 1px solid rgba(7, 22, 56, 0.08);
    border-bottom: 1px solid rgba(7, 22, 56, 0.08);
    background: rgba(255, 253, 248, 0.72);
    box-shadow: none;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.differential-card svg {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    margin: 2px 0 0;
    color: var(--gold);
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.differential-card h3 {
    max-width: 360px;
    color: var(--blue-900);
    font-size: 22px;
    line-height: 1.12;
}

.differential-card p {
    grid-column: 2;
    margin-top: 12px;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}

.differential-card:hover {
    transform: translateY(-3px);
    background: var(--paper);
    box-shadow: 0 24px 58px rgba(3, 11, 29, 0.09);
}

.differential-card:hover svg {
    filter: drop-shadow(0 0 12px rgba(200, 164, 93, 0.28));
}

.manifesto-copy {
    width: min(840px, 100%);
}

.manifesto-copy p {
    color: rgba(255, 253, 248, 0.73);
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.35;
}

.manifesto-copy p + p {
    margin-top: 12px;
}

.manifesto-copy strong {
    display: block;
    margin-top: 36px;
    color: var(--gold-soft);
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 600;
}

.application-copy {
    align-self: start;
}

.application-copy p:not(.eyebrow) {
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
}

.application-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    position: relative;
    padding: clamp(28px, 4vw, 42px);
    background:
        linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(255, 253, 248, 0.84)),
        var(--paper);
}

.application-form::before {
    content: "";
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(185, 147, 79, 0.12);
    pointer-events: none;
}

.form-intro {
    grid-column: 1 / -1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(7, 22, 56, 0.08);
}

.form-intro span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.form-intro strong {
    color: var(--blue-900);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
}

.application-form label {
    display: grid;
    gap: 8px;
    color: var(--blue-900);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.application-form input,
.application-form select {
    width: 100%;
    min-height: 52px;
    border: 0;
    border-bottom: 1px solid rgba(7, 22, 56, 0.2);
    background: rgba(255, 255, 255, 0.5);
    padding: 12px 4px;
    color: var(--ink);
    font: inherit;
}

.application-form input:focus,
.application-form select:focus {
    outline: 0;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.78);
}

.application-form .btn,
.form-intro,
.form-status,
.confidential-note {
    grid-column: 1 / -1;
}

.application-form .btn {
    min-height: 54px;
    margin-top: 6px;
}

.confidential-note {
    margin: 2px 0 -2px;
    color: var(--blue-900);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
}

.confidential-note::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    margin-right: 10px;
    vertical-align: middle;
    background: var(--gold);
}

.form-status {
    display: none;
    padding: 13px 14px;
    border: 1px solid rgba(7, 22, 56, 0.12);
    background: #fff;
    color: var(--blue-900);
    font-size: 14px;
}

.form-status.is-visible {
    display: block;
}

.form-status.is-error {
    border-color: rgba(128, 91, 34, 0.34);
    color: #6f4d19;
}

.site-footer {
    padding: 54px clamp(22px, 4vw, 64px) 28px;
    color: rgba(255, 253, 248, 0.72);
    background: #030b1d;
}

.footer-inner {
    width: min(1160px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 34px;
}

.footer-inner img {
    width: 120px;
    margin-bottom: 18px;
}

.footer-inner nav,
.footer-inner address {
    display: grid;
    gap: 10px;
    font-style: normal;
}

.footer-inner a:hover {
    color: var(--gold-soft);
}

.footer-note {
    width: min(1160px, 100%);
    margin: 38px auto 0;
    padding-top: 22px;
    border-top: 1px solid rgba(229, 212, 173, 0.12);
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.hero .reveal {
    opacity: 1;
    transform: none;
}

@media (max-width: 980px) {
    .container {
        width: calc(100% - 32px);
        max-width: 1200px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 76px 0 auto 0;
        display: grid;
        gap: 0;
        padding: 18px 22px 24px;
        background: rgba(5, 18, 44, 0.98);
        border-bottom: 1px solid rgba(229, 212, 173, 0.18);
        transform: translateY(-130%);
        transition: transform 220ms ease;
    }

    .site-nav.is-open {
        transform: translateY(0);
    }

    .site-nav a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(229, 212, 173, 0.12);
    }

    .nav-cta {
        margin-top: 12px;
        padding: 13px 16px;
        text-align: center;
    }

    .hero {
        min-height: calc(100vh - 78px);
        padding: 72px 0;
    }

    .founder-grid,
    .authority-grid,
    .application-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .authority-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .hero-grid {
        min-height: min(640px, calc(100vh - 222px));
    }

    h1 {
        max-width: 720px;
        font-size: 58px;
        line-height: 1;
    }

    .hero-subtitle {
        max-width: 620px;
    }

    .hero::after {
        background:
            linear-gradient(90deg, rgba(5, 18, 44, 0.58) 0%, rgba(5, 18, 44, 0.34) 46%, rgba(5, 18, 44, 0.28) 100%),
            linear-gradient(180deg, rgba(5, 18, 44, 0.08) 0%, rgba(5, 18, 44, 0.12) 55%, rgba(5, 18, 44, 0.55) 100%);
    }

    .founder-photo {
        min-height: 380px;
    }

    .method-grid,
    .differentials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .differentials-grid {
        gap: 18px;
        border: 0;
    }

    .differential-card {
        min-height: 230px;
        border: 1px solid rgba(7, 22, 56, 0.08);
    }

    .method-grid {
        grid-template-columns: 1fr;
        padding-top: 0;
        padding-left: 28px;
    }

    .method-grid::before {
        top: 10px;
        bottom: 10px;
        left: 6px;
        right: auto;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, rgba(200, 164, 93, 0.72), transparent);
    }

    .step-card,
    .step-card:first-child {
        min-height: auto;
        padding: 28px 28px 28px 34px;
        border: 1px solid rgba(7, 22, 56, 0.08);
        border-bottom: 0;
    }

    .step-card:last-child {
        border-bottom: 1px solid rgba(7, 22, 56, 0.08);
    }

    .step-card::before {
        top: 32px;
        left: -28px;
    }

    .step-card::after {
        content: "";
        top: auto;
        right: auto;
        bottom: -10px;
        left: -32px;
        width: 9px;
        height: 9px;
        border-right: 1px solid rgba(200, 164, 93, 0.6);
        border-bottom: 1px solid rgba(200, 164, 93, 0.6);
        transform: rotate(45deg);
    }

    .step-card:last-child::after {
        content: "";
        display: none;
    }

    .journey-grid,
    .text-columns {
        grid-template-columns: 1fr;
    }

    .journey-card.featured {
        min-height: 340px;
        transform: none;
    }

    .journey-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 620px) {
    .container {
        width: calc(100% - 32px);
        max-width: 1200px;
    }

    .brand img {
        width: 112px;
    }

    .section {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero {
        min-height: calc(100vh - 78px);
        padding: 54px 0 64px;
    }

    .hero-grid {
        min-height: min(610px, calc(100vh - 196px));
    }

    .hero::after {
        background:
            linear-gradient(90deg, rgba(5, 18, 44, 0.68) 0%, rgba(5, 18, 44, 0.54) 54%, rgba(5, 18, 44, 0.42) 100%),
            linear-gradient(180deg, rgba(5, 18, 44, 0.12) 0%, rgba(5, 18, 44, 0.22) 58%, rgba(5, 18, 44, 0.68) 100%);
    }

    .hero-visual img {
        object-position: center center;
    }

    h1 {
        max-width: 340px;
        margin-inline: auto;
        font-size: 34px;
        line-height: 1.04;
        text-wrap: balance;
    }

    .hero-subtitle {
        max-width: 340px;
        margin-top: 20px;
        font-size: 18px;
    }

    .hero-text {
        max-width: 340px;
        font-size: 15px;
    }

    .hero-content {
        max-width: 340px;
        margin-inline: auto;
    }

    .hero-content h1,
    .hero-content p {
        max-width: 100%;
    }

    .hero-actions,
    .btn {
        width: 100%;
    }

    .method-grid,
    .differentials-grid,
    .authority-metrics,
    .application-form,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .authority-metrics div {
        min-height: 130px;
    }

    .journey-card.featured {
        min-height: auto;
        padding: 32px;
    }

    .differential-card {
        min-height: auto;
        padding: 26px;
        grid-template-columns: 46px minmax(0, 1fr);
        column-gap: 18px;
    }

    .differential-card svg {
        margin-bottom: 22px;
        width: 34px;
        height: 34px;
    }

    .differential-card h3 {
        font-size: 21px;
    }

    .journey-card,
    .step-card {
        min-height: auto;
    }

    .form-intro {
        display: grid;
        gap: 8px;
        align-items: start;
    }

    .form-intro strong {
        font-size: 25px;
    }
}
