
:root {
    --cream: #f5f1ea;
    --cream-deep: #ece7dd;
    --ink: #181d20;
    --ink-soft: #394046;
    --muted: #6e757b;
    --line: #d8d2c8;
    --white: #ffffff;
    --orange: #eca730;
    --orange-deep: #f08f16;
    --shadow: 0 30px 90px rgba(24, 29, 32, .12);
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--cream);
}

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

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

button, input, textarea {
    font: inherit;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
}

    .skip-link:focus {
        left: 16px;
        top: 16px;
        z-index: 1000;
        background: var(--ink);
        color: white;
        padding: 10px 14px;
        border-radius: 12px;
    }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    transition: background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}

    .site-header.scrolled {
        background: rgba(245, 241, 234, .84);
        backdrop-filter: blur(14px);
        box-shadow: 0 1px 0 rgba(24,29,32,.08);
    }

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    height: 92px;
}

.brand {
    width: 210px;
    flex: 0 0 auto;
}

    .brand img {
        width: 100%;
        height: auto;
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 700;
}

    .main-nav a {
        color: var(--ink-soft);
    }

        .main-nav a:hover {
            color: var(--ink);
        }

.nav-dropdown {
    position: relative;
}

    .nav-dropdown > a {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        padding: 10px 0;
    }

        .nav-dropdown > a::after {
            /*content: "";*/
            width: 7px;
            height: 7px;
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform: rotate(45deg) translateY(-2px);
            transition: transform .2s ease;
        }

    .nav-dropdown:hover > a::after, .nav-dropdown:focus-within > a::after {
        transform: rotate(225deg) translate(-1px, -1px);
    }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    min-width: 190px;
    padding: 10px;
    background: rgba(255, 255, 255, .58);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 16px;
    box-shadow: 0 14px 36px rgba(24, 29, 32, .14);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
    pointer-events: none;
    display:none;
}

    .dropdown-menu::before {
        content: "";
        position: absolute;
        top: -12px;
        left: 0;
        right: 0;
        height: 12px;
        pointer-events: auto;
    }

.nav-dropdown:hover .dropdown-menu, .nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    white-space: nowrap;
}

    .dropdown-menu a:hover {
        color: var(--ink);
        background: rgba(255, 255, 255, .7);
    }

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--ink);
    color: white !important;
}

.menu-button {
    display: none;
    background: none;
    border: 0;
    padding: 0;
    width: 44px;
    height: 44px;
}

    .menu-button span {
        display: block;
        width: 24px;
        height: 2px;
        margin: 5px auto;
        border-radius: 999px;
        background: var(--ink);
    }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.hero {
    padding: 138px 0 66px;
    background: radial-gradient(circle at 70% 18%, rgba(236,167,48,.18), transparent 26%), linear-gradient(180deg, #fcfbf8 0%, #f5f1ea 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 64px;
   /* align-items: center;*/
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

    .eyebrow span {
        width: 32px;
        height: 2px;
        background: var(--orange);
        display: inline-block;
    }

.hero h1 {
    font-size: clamp(54px, 7vw, 104px);
    line-height: .95;
    letter-spacing: -.055em;
    margin: 16px 0 18px;
}

    .hero h1 em {
        font-style: normal;
        color: var(--orange-deep);
    }

.hero-lead {
    max-width: 620px;
    font-size: 20px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 47px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border-radius: 999px;
    padding: 14px 22px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

    .button:hover {
        transform: translateY(-1px);
    }

.button-primary {
    background: var(--ink);
    color: white;
}

.button-secondary {
    border-color: var(--line);
    color: var(--ink);
    background: rgba(255,255,255,.78);
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 34px;
}

    .hero-proof div {
        padding: 18px 18px 16px;
        background: rgba(255,255,255,.72);
        border: 1px solid rgba(24,29,32,.07);
        border-radius: 18px;
        box-shadow: 0 16px 40px rgba(24,29,32,.06);
    }

    .hero-proof strong, .hero-proof span {
        display: block;
    }

    .hero-proof strong {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .hero-proof span {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.45;
    }

.orbit-stage {
    position: relative;
    perspective: 1800px;
}

.orbit-shell {
    position: relative;
    min-height: 600px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(145deg, #fefcf8 0%, #efe9de 100%);
    box-shadow: 0 36px 90px rgba(24,29,32,.18);
    border: 1px solid rgba(24,29,32,.06);
    transform-style: preserve-3d;
    animation: heroOrbit 15s ease-in-out infinite alternate;
}

    .orbit-shell::before {
        content: '';
        position: absolute;
        inset: -10% -20% auto auto;
        width: 42%;
        height: 42%;
        background: radial-gradient(circle, rgba(255,255,255,.72), transparent 66%);
        z-index: 2;
        pointer-events: none;
    }

    .orbit-shell video {
        width: 100%;
        height: 100%;
        min-height: 600px;
        object-fit: cover;
        object-position: center;
        filter: saturate(1.03) contrast(1.03);
        transform: scale(1.02);
    }

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24,29,32,.03) 0%, rgba(24,29,32,.16) 100%);
}

.glow {
    position: absolute;
    border-radius: 999px;
    filter: blur(65px);
    opacity: .36;
    mix-blend-mode: screen;
    pointer-events: none;
}

.glow-one {
    width: 240px;
    height: 240px;
    right: 8%;
    top: 14%;
    background: rgba(236,167,48,.65);
}

.glow-two {
    width: 180px;
    height: 180px;
    left: 12%;
    bottom: 10%;
    background: rgba(255,255,255,.8);
}

@keyframes heroOrbit {
    0% {
        transform: rotateY(-12deg) rotateX(2deg) translateY(2px) scale(1.01);
    }

    50% {
        transform: rotateY(0deg) rotateX(.5deg) translateY(-3px) scale(1.015);
    }

    100% {
        transform: rotateY(12deg) rotateX(2deg) translateY(2px) scale(1.01);
    }
}

.video-label {
    position: absolute;
    left: 28px;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(24,29,32,.76);
    color: white;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
}

.pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--orange);
    box-shadow: 0 0 0 0 rgba(236,167,48,.55);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(236,167,48,.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(236,167,48,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(236,167,48,0);
    }
}

.hero-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,.88);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(24,29,32,.12);
    font-size: 12px;
    font-weight: 800;
    color: var(--ink-soft);
    z-index: 3;
}

.tag-one {
    top: 10%;
    right: 2%;
}

.tag-two {
    bottom: 18%;
    left: -2%;
}

.signal-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #f9f6f1;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted);
}

    .signal-grid span {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 78px;
        padding: 0 16px;
    }

        .signal-grid span + span {
            border-left: 1px solid var(--line);
        }

.section {
    padding: 110px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: 1fr .86fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 54px;
}

    .section-heading h2 {
        margin: 12px 0 0;
        font-size: clamp(38px, 4.7vw, 62px);
        line-height: 1;
        letter-spacing: -.04em;
    }

    .section-heading p {
        margin: 0;
        color: var(--muted);
        font-size: 18px;
        line-height: 1.7;
    }

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.benefit-card {
    background: white;
    padding: 30px 28px;
    border-radius: 24px;
    border: 1px solid var(--line);
    min-height: 270px;
    box-shadow: 0 18px 48px rgba(32,39,44,.04);
}

.icon-wrap {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(236,167,48,.14);
    margin-bottom: 28px;
}

    .icon-wrap svg {
        width: 28px;
        height: 28px;
        fill: none;
        stroke: var(--orange-deep);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.benefit-card h3 {
    font-size: 24px;
    margin: 0 0 10px;
}

.benefit-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.solutions {
    background: var(--ink);
    color: white;
}

.page-solutions #solutions {
    margin-top: 95px;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center;
}

.image-shell {
    position: relative;
    background: white;
    padding: 14px;
    border-radius: 30px;
    box-shadow: 0 30px 90px rgba(0,0,0,.28);
}

    .image-shell img {
        border-radius: 20px;
        aspect-ratio: 16/10;
        object-fit: cover;
    }

.image-caption {
    position: absolute;
    left: 34px;
    right: 34px;
    bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: rgba(24,29,32,.82);
    color: white;
    padding: 14px 18px;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    font-size: 13px;
}

    .image-caption span {
        color: #ffd184;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: 10px;
    }

.solution-copy .eyebrow {
    color: #bcc3c7;
}

.solution-copy > p {
    font-size: 19px;
    color: #c4cbcf;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 38px 0 0;
    border-top: 1px solid rgba(255,255,255,.12);
}

    .check-list li {
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 18px;
        padding: 24px 0;
        border-bottom: 1px solid rgba(255,255,255,.12);
    }

        .check-list li > span {
            color: var(--orange);
            font-weight: 800;
        }

    .check-list strong, .check-list small {
        display: block;
    }

    .check-list strong {
        margin-bottom: 5px;
    }

    .check-list small {
        color: #aeb7bc;
        font-size: 14px;
    }

.process {
    background: #ece9e2;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    border-top: 1px solid #cbc6bc;
    border-bottom: 1px solid #cbc6bc;
}

.process-step {
    padding: 32px 28px 36px;
    min-height: 270px;
    position: relative;
}

    .process-step + .process-step {
        border-left: 1px solid #cbc6bc;
    }

    .process-step > span {
        display: inline-grid;
        place-items: center;
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: var(--orange);
        font-size: 12px;
        font-weight: 900;
        margin-bottom: 62px;
    }

    .process-step h3 {
        font-size: 21px;
        margin: 0 0 12px;
    }

    .process-step p {
        color: var(--muted);
        font-size: 14px;
        margin: 0;
    }

.event-section {
    background: linear-gradient(180deg, #fffefb 0%, #f2ece4 100%);
}

.event-card {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    padding: 38px;
    border-radius: 32px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    align-items: center;
}

.event-logo {
    width: min(100%, 520px);
    margin-bottom: 24px;
}

.event-card h2 {
    margin: 14px 0 16px;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1;
    letter-spacing: -.045em;
}

.event-card p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.event-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

    .event-meta > div {
        padding: 18px 20px;
        border-radius: 18px;
        background: #f9f6f1;
        border: 1px solid var(--line);
    }

    .event-meta strong, .event-meta span {
        display: block;
    }

    .event-meta strong {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .12em;
        color: var(--orange-deep);
        margin-bottom: 6px;
    }

    .event-meta span {
        color: var(--ink-soft);
        font-weight: 600;
    }

.applications-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.applications-copy {
    position: sticky;
    top: 140px;
}

    .applications-copy p {
        color: var(--ink-soft);
        font-size: 18px;
        max-width: 500px;
    }

.text-link {
    display: inline-flex;
    gap: 10px;
    margin-top: 22px;
    color: var(--orange-deep);
    font-weight: 800;
}

.application-list {
    border-top: 1px solid var(--line);
}

.application-row {
    display: grid;
    grid-template-columns: 60px .8fr 1.2fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    align-items: start;
}

    .application-row > span {
        color: var(--orange-deep);
        font-weight: 900;
    }

    .application-row h3, .application-row p {
        margin: 0;
    }

    .application-row h3 {
        font-size: 20px;
    }

    .application-row p {
        color: var(--muted);
    }

.videos {
    background: #fffefb;
}

.videos-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: start;
}

.upload-panel {
    display: block;
    padding: 28px;
    border-radius: 24px;
    border: 1px dashed rgba(24,29,32,.18);
    background: linear-gradient(180deg, rgba(236,167,48,.13) 0%, rgba(255,255,255,.82) 100%);
    min-height: 100%;
    cursor: pointer;
}

    .upload-panel input {
        position: absolute;
        left: -9999px;
    }

.upload-kicker {
    display: inline-block;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 11px;
    font-weight: 800;
    color: var(--orange-deep);
}

.upload-panel strong {
    display: block;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.upload-panel small {
    display: block;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
}

.upload-note {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(24,29,32,.09);
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.6;
}

.video-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.video-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(24,29,32,.05);
}

    .video-card video, .video-card img {
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        background: #d9d2c5;
    }

    .video-card h3 {
        font-size: 20px;
        margin: 0 0 8px;
    }

    .video-card p {
        color: var(--muted);
        margin: 0;
        line-height: 1.55;
    }

.video-card-content {
    padding: 18px 18px 20px;
}

.placeholder-thumb {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
    background: linear-gradient(140deg, #f1ede4 0%, #e1d9cb 100%);
    color: var(--orange-deep);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -.03em;
}

.statement {
    padding: 80px 0;
    background: var(--orange);
}

.statement-inner {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 34px;
    align-items: start;
}

.statement-mark {
    font-size: 120px;
    line-height: .7;
    font-family: Georgia, serif;
}

.statement p {
    margin: 0;
    max-width: 1040px;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.contact {
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.contact-copy p {
    font-size: 18px;
    color: var(--ink-soft);
}

.contact-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

    .contact-notes span {
        border: 1px solid var(--line);
        border-radius: 999px;
        padding: 9px 13px;
        font-size: 12px;
        font-weight: 700;
    }

.contact-form {
    padding: 34px;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(32,39,44,.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form label {
    display: block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 800;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid #d4d0c8;
    border-radius: 13px;
    background: white;
    padding: 14px 15px;
    color: var(--ink);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

    .contact-form input:focus, .contact-form textarea:focus {
        border-color: var(--orange);
        box-shadow: 0 0 0 4px rgba(244,154,0,.15);
    }

.form-status {
    margin: 14px 0 0;
    min-height: 22px;
    color: #a73535;
    font-size: 13px;
}

.site-footer {
    padding: 56px 0 32px;
    background: #f2eee6;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr auto;
    gap: 38px;
    align-items: center;
}

.footer-brand {
    width: 300px;
}

.site-footer p {
    color: var(--ink-soft);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 24px;
    font-weight: 700;
    font-size: 13px;
}

    .footer-links a:hover {
        color: var(--orange);
    }

.copyright {
    grid-column: 1 / -1;
    padding-top: 28px;
    border-top: 1px solid rgba(24,29,32,.08);
    font-size: 12px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay {
    transition-delay: .12s;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    /* *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }*/
    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .hero-grid, .solution-grid, .applications-grid, .contact-grid, .event-card, .videos-layout {
        grid-template-columns: 1fr;
    }

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

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-step:nth-child(4), .process-step:nth-child(5) {
        border-top: 1px solid #cbc6bc;
    }

    .process-step:nth-child(4) {
        border-left: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .video-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .applications-copy {
        position: static;
    }
}

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

    .brand {
        width: 205px;
    }

    .menu-button {
        display: block;
    }

    .main-nav {
        position: fixed;
        inset: 84px 16px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px;
        background: white;
        border: 1px solid var(--line);
        border-radius: 20px;
        box-shadow: var(--shadow);
    }

        .main-nav.open {
            display: flex;
        }

        .main-nav a {
            padding: 13px 10px;
        }

    .nav-dropdown {
        width: 100%;
    }

        .nav-dropdown > a {
            justify-content: space-between;
        }

    .dropdown-menu {
        position: static;
        transform: none;
        min-width: 0;
        margin: 4px 10px 6px;
        padding: 6px;
        background: rgba(255, 255, 255, .7);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
    }

        .dropdown-menu::before {
            display: none;
        }

    .nav-cta {
        margin-top: 8px;
        text-align: center;
    }

    .hero {
        padding-top: 118px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }

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

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

        .signal-grid span:nth-child(3), .signal-grid span:nth-child(4) {
            border-top: 1px solid var(--line);
        }

        .signal-grid span:nth-child(3) {
            border-left: 0;
        }

    .benefit-grid, .video-preview-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step, .process-step:nth-child(4), .process-step:nth-child(5) {
        border-left: 0;
        border-top: 1px solid #cbc6bc;
        min-height: 220px;
    }

        .process-step:first-child {
            border-top: 0;
        }

    .application-row {
        grid-template-columns: 48px 1fr;
    }

        .application-row p {
            grid-column: 2;
        }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .nav-wrap {
        height: 76px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-actions, .footer-links, .signal-grid {
        flex-direction: column;
    }

        .hero-actions .button {
            width: 100%;
        }

    .orbit-shell, .orbit-shell video {
        min-height: 380px;
    }

    .hero-tag {
        display: none;
    }

    .statement-inner {
        grid-template-columns: 50px 1fr;
    }

    .statement-mark {
        font-size: 80px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        width: 230px;
    }
}


/* v5 hero: clean static image, wider framing, no motion */
.smooth-hero-frame {
    position: relative;
    min-height: 600px;
    border-radius: 34px;
    overflow: hidden;
    background: #ece6dc;
    box-shadow: 0 36px 90px rgba(24,29,32,.18);
    border: 1px solid rgba(24,29,32,.06);
    isolation: isolate;
}

    .smooth-hero-frame .hero-motion {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        object-fit: cover;
        object-position: center center;
        transform: none;
    }

    .smooth-hero-frame .video-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(180deg, rgba(24,29,32,.02) 0%, rgba(24,29,32,.18) 100%);
    }

    .smooth-hero-frame .video-label,
    .smooth-hero-frame .hero-tag {
        z-index: 2;
    }

/* New uploaded logos: preserve exact artwork and readable black text */
.site-header .brand {
    width: 228px;
}

    .site-header .brand img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.event-logo {
    width: min(100%, 650px);
}

.footer-brand {
    width: min(100%, 510px);
}

    .footer-brand img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

@media (max-width: 820px) {
    .smooth-hero-frame {
        min-height: 460px;
    }

    .site-header .brand {
        width: 205px;
    }
}

@media (max-width: 560px) {
    .smooth-hero-frame {
        min-height: 380px;
    }
}
