:root {
    --bg: #08111c;
    --bg-soft: #0f1a28;
    --panel: rgba(10, 20, 34, 0.88);
    --panel-strong: rgba(13, 24, 40, 0.96);
    --panel-soft: rgba(255, 255, 255, 0.05);
    --text: #f5f7fb;
    --muted: #b6c4d6;
    --muted-strong: #d6dfeb;
    --line: rgba(255, 255, 255, 0.11);
    --line-strong: rgba(255, 255, 255, 0.18);
    --accent: #ff7b3d;
    --accent-deep: #ffb07c;
    --accent-alt: #53b7ff;
    --success: #59d892;
    --radius: 26px;
    --radius-sm: 18px;
    --shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.22);
    --container: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(83, 183, 255, 0.15), transparent 26%),
        radial-gradient(circle at top right, rgba(255, 123, 61, 0.16), transparent 28%),
        linear-gradient(180deg, #09131f 0%, #08111c 34%, #091420 100%);
    color: var(--text);
    line-height: 1.65;
}

.home-page .site-header {
    background: rgba(7, 14, 24, 0.28);
    border-bottom-color: rgba(255, 255, 255, 0.06);
}

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

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

input,
select,
textarea,
button {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.narrow {
    max-width: 760px;
}

.skip-link,
.sr-only {
    position: absolute;
    left: -9999px;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
    z-index: 1001;
    padding: 0.75rem 1rem;
    background: #fff;
    color: #000;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(18px);
    background: rgba(7, 14, 24, 0.84);
    border-bottom: 1px solid var(--line);
}

.header-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 82px;
}

.brand img,
.footer-logo {
    height: 54px;
    width: auto;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
}

.primary-nav a {
    color: var(--muted);
    transition: color 0.2s ease, opacity 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: var(--text);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--panel-soft);
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: var(--text);
    display: block;
}

.button,
.button-secondary,
.button-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    padding: 0.95rem 1.35rem;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    overflow-wrap: anywhere;
}

.button {
    background: linear-gradient(135deg, var(--accent), #ff9c61);
    color: #fff;
    box-shadow: 0 16px 38px rgba(255, 123, 61, 0.28);
}

.button-secondary {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
}

.button-small {
    padding: 0.8rem 1.15rem;
    background: linear-gradient(135deg, var(--accent), #ff9c61);
    color: #fff;
}

.button:hover,
.button-secondary:hover,
.button-small:hover {
    transform: translateY(-2px);
}

.hero-section,
.page-hero {
    padding: 6rem 0 4rem;
}

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

.hero-archive {
    padding: 20px;
    margin: 0;
}

.hero-background-video {
    position: absolute;
    inset: 20px;
    z-index: 1;
    border-radius: 24px;
    overflow: hidden;
}

.hero-background-video .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.08);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.78) 12%, rgba(0, 0, 0, 0.28) 50%, rgba(0, 0, 0, 0.68) 100%),
        radial-gradient(circle at 24% 20%, rgba(255, 123, 61, 0.16), transparent 24%),
        radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.08), transparent 20%);
    z-index: 2;
}

.hero-content-archive {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    min-height: calc(100vh - 40px);
    display: flex;
    align-items: center;
}

.hero-main {
    display: block;
    width: 100%;
}

.hero-text-archive {
    position: relative;
    max-width: 920px;
    z-index: 2;
}

.hero-text-archive::before {
    content: "";
    position: absolute;
    top: -24px;
    left: -24px;
    right: -24px;
    bottom: -24px;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(28px);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.72;
}

.hero-badge-archive {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(14px);
}

.hero-archive h1 {
    font-size: clamp(4.2rem, 11vw, 8.8rem);
    font-weight: 400;
    line-height: 0.9;
    margin-bottom: 2rem;
    letter-spacing: 0.01em;
    font-family: 'Varela Round', 'Inter', sans-serif;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.78) 32%, rgba(255, 255, 255, 0.98) 60%, rgba(255, 255, 255, 0.82) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.45);
    text-shadow: 0 0 24px rgba(255, 255, 255, 0.18);
}

.hero-archive .highlight {
    color: #fff;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.92);
    font-style: normal;
}

.hero-subtitle-archive {
    font-size: clamp(1rem, 2vw, 1.28rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.86);
    max-width: 760px;
}

.hero-actions-archive {
    justify-content: flex-start;
    margin-bottom: 0;
}

.hero-cta {
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.02rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-cta.primary {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.34);
}

.hero-cta.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(10px);
}

.hero-cta:hover {
    transform: translateY(-3px);
}

.archive-founder-card {
    position: absolute;
    left: 46px;
    bottom: 42px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    width: min(360px, calc(100% - 92px));
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(7, 15, 24, 0.7);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.founder-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #ff6b35, #ff9c61);
}

.founder-info h4,
.founder-info p {
    margin: 0;
}

.founder-info h4 {
    margin-bottom: 0.2rem;
    color: #fff;
    font-size: 1rem;
}

.founder-info p {
    margin-bottom: 0.7rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.92rem;
}

.founder-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #fff;
    font-weight: 600;
}

.button-dott {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ffb07c);
    box-shadow: 0 0 14px rgba(255, 107, 53, 0.4);
}

.hero-footer-archive {
    position: absolute;
    right: 44px;
    bottom: 34px;
    z-index: 4;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-cinematic {
    position: relative;
    overflow: hidden;
}

.hero-cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 123, 61, 0.12), transparent 24%),
        radial-gradient(circle at 82% 16%, rgba(83, 183, 255, 0.12), transparent 22%);
    pointer-events: none;
}

.hero-grid,
.split-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 2rem;
    align-items: center;
}

.hero-grid-rich {
    gap: 2.75rem;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-copy-premium {
    padding: 1.25rem 0;
}

.hero-copy h1,
.page-hero h1 {
    max-width: 11ch;
}

.hero-copy-premium h1 {
    max-width: 10.5ch;
}

.eyebrow,
.card-kicker,
.overlay-kicker {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: var(--accent-deep);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
}

h1,
h2,
h3 {
    margin: 0 0 1rem;
    font-family: 'Manrope', sans-serif;
    line-height: 1.08;
}

h1 {
    font-size: clamp(2.65rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(1.85rem, 3vw, 3rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin: 0 0 1rem;
    color: var(--muted);
}

.lead {
    font-size: 1.1rem;
    color: var(--muted-strong);
    max-width: 62ch;
}

.hero-lead-short {
    max-width: 54ch;
}

.hero-support,
.form-helper {
    max-width: 60ch;
}

.button-row,
.footer-cta-shell {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-cta-row {
    margin-bottom: 1.25rem;
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.4rem;
}

.hero-trust-row span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted-strong);
    font-size: 0.92rem;
}

.hero-proof-band {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.proof-chip {
    padding: 1.1rem 1.15rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
}

.proof-chip strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text);
    font-size: 1.05rem;
}

.proof-chip span {
    color: var(--muted);
    font-size: 0.94rem;
}

.stat-strip {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-strip li,
.compact-card {
    padding: 1.3rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.stat-strip strong,
.compact-card strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
    color: var(--text);
}

.hero-panel,
.card,
.alert-success {
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.hero-panel,
.card {
    padding: 1.5rem;
}

.feature-card,
.tool-card {
    height: 100%;
}

.section {
    padding: 1.5rem 0 4.75rem;
}

.section-muted {
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025));
}

.section-header {
    margin-bottom: 2rem;
}

.card-grid {
    display: grid;
    gap: 1.5rem;
}

.three-up {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.four-up {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-split {
    align-items: stretch;
}

.hero-visual,
.contact-stack,
.image-stack {
    position: relative;
}

.hero-video-shell,
.image-stack {
    overflow: hidden;
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.03);
}

.hero-video-shell {
    min-height: 560px;
}

.hero-video-shell-premium {
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    filter: saturate(0.92) contrast(1.03) brightness(0.82);
}

.hero-video-shell::after,
.image-stack::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 11, 20, 0.02), rgba(4, 11, 20, 0.62));
    pointer-events: none;
}

.hero-video-tint {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(125deg, rgba(6, 13, 23, 0.78) 10%, rgba(6, 13, 23, 0.18) 52%, rgba(6, 13, 23, 0.66) 100%),
        radial-gradient(circle at 22% 30%, rgba(255, 123, 61, 0.18), transparent 25%),
        radial-gradient(circle at 80% 22%, rgba(83, 183, 255, 0.14), transparent 24%);
    pointer-events: none;
}

.hero-overlay-card,
.image-caption-card {
    position: absolute;
    z-index: 1;
    max-width: 280px;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(8, 17, 28, 0.78);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
}

.hero-overlay-card strong,
.image-caption-card strong {
    display: block;
    color: var(--text);
    line-height: 1.35;
}

.hero-overlay-card.top-right {
    top: 1.5rem;
    right: 1.5rem;
}

.hero-overlay-card.bottom-left {
    left: 1.5rem;
    bottom: 1.5rem;
}

.hero-overlay-card.bottom-right {
    right: 1.5rem;
    bottom: 1.5rem;
}

.image-stack img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.image-stack-tall {
    min-height: 420px;
}

.image-caption-card {
    left: 1.25rem;
    right: 1.25rem;
    bottom: 1.25rem;
    max-width: none;
}

.mini-list,
.check-list,
.footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}

.mini-list li,
.check-list li,
.footer-grid li {
    color: var(--muted);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.check-list li::before {
    content: "•";
    color: var(--accent);
    margin-right: 0.6rem;
}

.text-link,
.footer-grid a {
    color: var(--text);
    font-weight: 600;
    overflow-wrap: anywhere;
}

.text-link:hover,
.footer-grid a:hover {
    color: var(--accent-deep);
}

.media-card {
    padding: 0;
    overflow: hidden;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.compact-media-card .card-image {
    aspect-ratio: 16 / 9;
}

.card-body {
    padding: 1.35rem 1.35rem 1.45rem;
}

.result-line,
.result-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent-deep);
    font-weight: 700;
}

.result-line {
    margin: 0.5rem 0 1rem;
}

.result-pill {
    margin-top: 0.5rem;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 176, 124, 0.28);
    background: rgba(255, 176, 124, 0.08);
}

.newsletter-shell,
.footer-grid,
.footer-bottom {
    display: grid;
    gap: 1.5rem;
}

.newsletter-shell,
.footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.newsletter-shell {
    align-items: center;
}

.inline-form,
.contact-form,
.tool-form {
    display: grid;
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.form-grid label,
.contact-form label,
.tool-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--text);
    font-weight: 600;
}

.inline-form input {
    min-width: 0;
}

.full-span {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    padding: 0.95rem 1rem;
}

textarea {
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: #8fa1b8;
}

input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus {
    outline: 2px solid rgba(255, 123, 61, 0.76);
    outline-offset: 2px;
}

.alert-success {
    margin-bottom: 1rem;
    padding: 1rem 1.25rem;
    color: #fff;
    border-color: rgba(89, 216, 146, 0.35);
}

.tool-card .result-box {
    min-height: 52px;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.12);
    color: var(--muted);
}

.article-shell {
    max-width: 760px;
}

.hero-detail-grid {
    align-items: center;
}

.legal-shell h2 {
    margin-top: 2rem;
}

.contact-stack {
    display: grid;
    gap: 1.25rem;
}

.contact-card {
    position: sticky;
    top: 108px;
}

.site-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--line);
}

.footer-cta {
    padding: 1rem 0 2rem;
}

.footer-cta-shell {
    justify-content: space-between;
    padding: 1.6rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(255, 123, 61, 0.2), rgba(83, 183, 255, 0.08));
}

.footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    padding: 2rem 0;
}

.footer-copy,
.footer-bottom p {
    max-width: 34ch;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-bottom {
    grid-template-columns: 1fr;
    padding: 1rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1120px) {
    .hero-grid,
    .split-section {
        grid-template-columns: 1fr;
    }

    .hero-copy h1,
    .page-hero h1 {
        max-width: 14ch;
    }

    .hero-video-shell,
    .hero-video {
        min-height: 460px;
    }

    .three-up,
    .four-up {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .hero-content-archive {
        padding: 0 28px;
    }

    .archive-founder-card {
        left: 36px;
        bottom: 34px;
    }

    .hero-footer-archive {
        right: 36px;
        bottom: 28px;
    }
}

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-flex;
    }

    .primary-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        padding: 1rem;
        border-radius: 20px;
        border: 1px solid var(--line);
        background: rgba(9, 17, 28, 0.98);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav ul {
        flex-direction: column;
    }

    .primary-nav .nav-cta {
        width: 100%;
    }

    .hero-section,
    .page-hero {
        padding-top: 4.5rem;
    }

    .hero {
        min-height: auto;
    }

    .hero-archive {
        padding: 14px;
    }

    .hero-background-video {
        inset: 14px;
    }

    .hero-content-archive {
        min-height: auto;
        padding: 4rem 1.25rem 10rem;
        align-items: flex-end;
    }

    .hero-text-archive::before {
        top: -16px;
        left: -16px;
        right: -16px;
        bottom: -16px;
    }

    .hero-archive h1 {
        font-size: clamp(3rem, 11vw, 5rem);
    }

    .hero-actions-archive {
        align-items: stretch;
    }

    .two-up,
    .three-up,
    .four-up,
    .stat-strip,
    .hero-proof-band,
    .form-grid,
    .newsletter-shell,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .button-row,
    .footer-cta-shell,
    .inline-form {
        align-items: stretch;
    }

    .button,
    .button-secondary,
    .inline-form .button {
        width: 100%;
    }

    .hero-copy h1,
    .page-hero h1 {
        max-width: none;
    }

    .hero-video-shell,
    .hero-video,
    .image-stack-tall {
        min-height: 360px;
    }

    .hero-overlay-card {
        max-width: 220px;
    }

    .hero-trust-row span {
        width: 100%;
        justify-content: center;
    }

    .archive-founder-card {
        left: 28px;
        right: 28px;
        width: auto;
        bottom: 58px;
    }

    .hero-footer-archive {
        left: 28px;
        right: 28px;
        bottom: 24px;
        text-align: left;
    }

    .contact-card {
        position: static;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(calc(100% - 1.25rem), var(--container));
    }

    .header-shell {
        min-height: 72px;
    }

    .brand img,
    .footer-logo {
        height: 44px;
    }

    .hero-panel,
    .card,
    .footer-cta-shell {
        padding: 1.15rem;
    }

    .hero-video-shell,
    .hero-video,
    .image-stack-tall {
        min-height: 300px;
    }

    .hero-content-archive {
        padding: 3.5rem 1rem 10rem;
    }

    .archive-founder-card {
        left: 22px;
        right: 22px;
        bottom: 54px;
        padding: 0.9rem 1rem;
    }

    .hero-footer-archive {
        left: 22px;
        right: 22px;
        bottom: 20px;
        font-size: 0.76rem;
        letter-spacing: 0.05em;
    }

    .hero-overlay-card.top-right,
    .hero-overlay-card.bottom-left,
    .hero-overlay-card.bottom-right,
    .image-caption-card {
        left: 1rem;
        right: 1rem;
        top: auto;
        bottom: 1rem;
        max-width: none;
    }

    .hero-overlay-card.top-right {
        bottom: 9.6rem;
    }

    .hero-overlay-card.bottom-right {
        display: none;
    }
}
