:root {
    --cream: #f7f2ea;
    --cream2: #fffaf4;
    --black: #0b0c0d;
    --black2: #111315;
    --text: #101112;
    --muted: #696967;
    --orange: #ff6200;
    --orange2: #ff8741;
    --line: #ddd5cc;
    --line-dark: rgba(255, 255, 255, .11);
    --max: 1440px;
    --pad: clamp(24px, 5vw, 76px)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    overflow-x: hidden
}

body.no-scroll {
    overflow: hidden
}

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

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

button,
input,
textarea {
    font: inherit
}

.cursor-glow {
    position: fixed;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    opacity: 0;
    background: radial-gradient(circle, rgba(255, 98, 0, .14), rgba(255, 98, 0, .04) 36%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: opacity .25s;
    mix-blend-mode: multiply
}

body.cursor-active .cursor-glow {
    opacity: 1
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--orange);
    z-index: 1001
}

.site-header {
    height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 0 var(--pad);
    position: sticky;
    top: 0;
    z-index: 90;
    background: rgba(247, 242, 234, .9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(16, 17, 18, .07)
}

.brand img {
    max-height:70px;
    width: auto;
    margin-top: 12px;
}

.main-nav {
    display: flex;
    gap: 30px
}

.main-nav a {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase
}

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

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px
}

.lang-switch {
    display: flex;
    gap: 7px;
    align-items: center;
    font-size: 11px
}

.lang-btn {
    border: 0;
    background: none;
    padding: 4px;
    cursor: pointer;
    color: #6a6a68;
    font-weight: 800
}

.lang-btn.active {
    color: var(--orange)
}

.header-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 0 18px;
    border: 1px solid var(--orange);
    color: var(--orange);
    font-weight: 800;
    font-size: 11px;
    text-transform: uppercase
}

.section-shell {
    max-width: var(--max);
    margin: 0 auto;
    padding-left: var(--pad);
    padding-right: var(--pad)
}

.section-light {
    background: var(--cream)
}

.section-dark {
    background: linear-gradient(180deg, #0a0b0c, #0d0f11);
    color: #fff
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase
}

h1,
h2,
h3 {
    margin: 0
}

h1,
h2 {
    letter-spacing: -.045em
}

h2 {
    font-size: clamp(38px, 4.2vw, 66px);
    line-height: 1.04
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
}

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

.hero-inner {
    max-width: var(--max);
    margin: 0 auto;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1.05fr .95fr 54px;
    align-items: center;
    padding: 58px var(--pad) 36px;
    gap: 38px
}

.hero h1 {
    font-size: clamp(56px, 6.4vw, 96px);
    line-height: .96;
    max-width: 900px
}

.hero h1 span {
    color: var(--orange)
}

.hero-lead {
    max-width: 650px;
    margin: 28px 0 0;
    font-size: clamp(18px, 1.5vw, 22px)
}

.hero-note {
    max-width: 650px;
    margin: 20px 0 0;
    color: #4e4e4c;
    font-size: 15px;
    line-height: 1.65
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 34px;
    flex-wrap: wrap
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 20px;
    border: 0;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 800;
    transition: .2s
}

.btn-orange {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 26px rgba(255, 98, 0, .18)
}

.btn-orange:hover {
    box-shadow: 0 16px 34px rgba(255, 98, 0, .28)
}

.btn-outline-light {
    border: 1px solid var(--orange);
    color: #fff;
    background: transparent
}

.play-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase
}

.play-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--orange);
    color: var(--orange);
    font-size: 10px
}

.hero-art {
    min-height: 570px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden
}

.hero-orbits {
    position: absolute;
    width: min(560px, 95%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: repeating-radial-gradient(circle at center, transparent 0 34px, rgba(255, 98, 0, .18) 35px 36px)
}

.hero-logo-ghost {
    position: absolute;
    width: 48%;
    opacity: .08;
    filter: grayscale(1)
}

.hero-placeholder {
    position: relative;
    z-index: 2;
    width: 60%;
    aspect-ratio: 4/5;
    display: grid;
    place-items: center;
    text-align: center;
    border: 1px dashed rgba(255, 98, 0, .35);
    background: linear-gradient(180deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .05));
    color: #8e7c70;
    font-size: 10px;
    letter-spacing: .1em
}

.hero-vertical-note {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.hero-vertical-note span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em
}

.hero-vertical-note img {
    width: 30px
}

.trust-strip {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center;
    gap: 28px;
    padding: 16px var(--pad) 26px
}

.trust-label {
    font-size: 10px;
    font-weight: 800;
    color: #555
}

.trust-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    gap: 22px
}

.trust-logos img {
    height: 34px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72
}

.problems {
    padding: 60px 0 74px;
    position: relative;
    overflow: hidden
}

.problems:before,
.problems:after {
    content: "";
    position: absolute;
    top: 80px;
    bottom: 40px;
    width: 70px;
    background-image: radial-gradient(circle, var(--orange) 1.3px, transparent 1.4px);
    background-size: 14px 14px;
    opacity: .42
}

.problems:before {
    left: 0
}

.problems:after {
    right: 0
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: end;
    margin-bottom: 40px
}

.section-head h2 {
    max-width: 820px
}

.section-copy {
    max-width: 420px;
    color: #c7c7c4;
    font-size: 15px;
    line-height: 1.65;
    margin: 0
}

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

.problem-card {
    min-height: 310px;
    padding: 26px;
    border: 1px solid var(--line-dark);
    background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02));
    position: relative;
    overflow: hidden
}

.card-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 98, 0, .18), transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none
}

.problem-card:hover .card-glow {
    opacity: 1
}

.card-icon {
    color: var(--orange);
    font-size: 34px;
    height: 56px
}

.problem-card h3 {
    font-size: 19px;
    line-height: 1.2;
    margin: 16px 0 14px
}

.problem-card p {
    color: #c1c1bd;
    font-size: 14px;
    line-height: 1.6
}

.card-arrow {
    position: absolute;
    bottom: 24px;
    left: 26px;
    color: var(--orange);
    font-size: 24px
}

.process {
    padding: 52px 0 64px
}

.section-head--simple {
    margin-bottom: 36px
}

.process-track {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
    padding-top: 18px
}

.process-line {
    position: absolute;
    left: 7%;
    right: 7%;
    top: 47px;
    height: 1px;
    background: #ddd2c8
}

.process-line-fill {
    height: 100%;
    width: 0;
    background: var(--orange)
}

.process-step {
    position: relative;
    z-index: 2
}

.step-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--cream2);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
    font-size: 22px;
    margin-bottom: 12px
}

.step-number {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800
}

.process-step h3 {
    font-size: 16px;
    margin: 6px 0
}

.process-step p {
    font-size: 12px;
    color: #656461;
    line-height: 1.55;
    max-width: 190px
}

.about {
    padding: 64px 0
}

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .8fr .8fr;
    gap: 40px;
    align-items: center
}

.about-copy h2 {
    font-size: clamp(40px, 4.2vw, 64px)
}

.about-points {
    list-style: none;
    margin: 28px 0 30px;
    padding: 0;
    display: grid;
    gap: 16px
}

.about-points li {
    position: relative;
    padding-left: 30px;
    color: #d0d0cd;
    font-size: 14px;
    line-height: 1.6
}

.about-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 900
}

.about-image {
    border: 1px solid var(--line-dark);
    background: #121416;
    min-height: 390px;
    display: grid;
    place-items: center
}

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

.about-stats {
    display: grid;
    gap: 20px
}

.stat {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: center
}

.stat strong {
    font-size: 34px;
    line-height: 1;
    color: var(--orange);
    letter-spacing: -.04em
}

.stat span {
    color: #c8c8c4;
    font-size: 13px
}

.tech {
    padding: 30px 0 34px
}

.tech-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 40px;
    align-items: center
}

.tech h2 {
    font-size: clamp(30px, 3.5vw, 48px)
}

.tech-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    justify-content: flex-end
}

.tech-cloud span {
    padding: 9px 13px;
    border: 1px solid #d9d0c6;
    background: #fffaf4;
    font-size: 12px;
    font-weight: 700
}

.contact-cta {
    position: relative;
    overflow: hidden
}

.contact-cta-inner {
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2
}

.contact-cta h2 {
    font-size: clamp(34px, 4vw, 56px)
}

.contact-cta p:not(.eyebrow) {
    color: #c2c2bf;
    margin: 8px 0 0
}

.contact-wave {
    position: absolute;
    width: 420px;
    height: 170px;
    bottom: -20px;
    background: repeating-radial-gradient(ellipse at center, transparent 0 10px, rgba(255, 98, 0, .32) 11px 12px);
    opacity: .5
}

.contact-wave--left {
    left: -130px;
    transform: rotate(16deg)
}

.contact-wave--right {
    right: -120px;
    transform: rotate(-12deg)
}

.contact-panel {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none
}

.contact-panel.is-open {
    display: block
}

.contact-panel-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .62);
    backdrop-filter: blur(7px)
}

.contact-panel-dialog {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(860px, 94vw);
    background: var(--cream2);
    padding: clamp(28px, 5vw, 60px);
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 42px;
    overflow-y: auto
}

.contact-panel-close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: 0;
    background: none;
    font-size: 32px;
    cursor: pointer
}

.contact-panel-copy h2 {
    font-size: clamp(34px, 4vw, 58px)
}

.contact-panel-copy p:not(.eyebrow) {
    color: #66615c;
    line-height: 1.65
}

.direct-links {
    display: grid;
    gap: 10px;
    margin-top: 24px
}

.direct-links a {
    font-size: 13px;
    color: #31302e;
    border-bottom: 1px solid #d9d0c6;
    padding-bottom: 5px;
    width: max-content
}

.contact-form {
    display: grid;
    gap: 16px
}

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

.contact-form label>span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #5a5752
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d7cec4;
    background: #fff;
    padding: 13px;
    color: #111;
    outline: none
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--orange)
}

.file-field small {
    display: block;
    margin-top: 4px;
    color: #8d877f;
    font-size: 10px
}

.file-field input {
    border: 0;
    background: transparent;
    padding: 9px 0
}

.consent {
    display: flex;
    gap: 9px;
    align-items: flex-start
}

.consent input {
    width: 15px;
    margin-top: 2px;
    accent-color: var(--orange)
}

.consent span {
    margin: 0 !important;
    font-weight: 400 !important;
    color: #77716a !important
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important
}

.submit-btn {
    justify-self: start
}

.form-status {
    min-height: 20px;
    margin: 0;
    font-size: 12px;
    color: #5e5a55
}

.site-footer {
    background: #0b0c0d;
    color: #fff;
    padding: 38px var(--pad) 22px
}

.footer-top {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr .9fr;
    gap: 36px
}

.footer-brand img {
    height: 100px;
    width: auto
}

.footer-brand small {
    display: block;
    margin-top: 18px;
    color: #888;
    font-size: 10px
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 7px;
    font-size: 11px;
    color: #b8b8b4
}

.footer-col strong {
    color: #fff;
    font-size: 10px;
    margin-bottom: 5px
}

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

.footer-bottom {
    max-width: var(--max);
    margin: 24px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #777;
    font-size: 10px
}

.back-to-top {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: var(--orange);
    color: #fff;
    cursor: pointer;
    font-size: 18px
}

@media(max-width:1100px) {
    .site-header {
        grid-template-columns: 1fr auto
    }

    .main-nav {
        display: none
    }

    .hero-inner {
        grid-template-columns: 1fr .9fr
    }

    .hero-vertical-note {
        display: none
    }

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

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

    .process-line {
        display: none
    }

    .about-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-stats {
        grid-column: 1/-1;
        grid-template-columns: repeat(4, 1fr)
    }

    .tech-grid {
        grid-template-columns: 1fr
    }

    .tech-cloud {
        justify-content: flex-start
    }
}

@media(max-width:760px) {
    .site-header {
        height: 72px;
        padding: 0 18px
    }

    .brand img {
       margin-top:7px;
    }

    .header-cta {
        display: none
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 48px 20px 30px
    }

    .hero-art {
        min-height: 380px
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 68px)
    }

    .trust-strip {
        grid-template-columns: 1fr;
        padding: 12px 20px 24px
    }

    .trust-logos {
        grid-template-columns: repeat(3, 1fr)
    }

    .section-shell {
        padding-left: 20px;
        padding-right: 20px
    }

    .section-head {
        display: block
    }

    .section-copy {
        margin-top: 20px
    }

    .problem-grid {
        grid-template-columns: 1fr
    }

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

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-stats {
        grid-column: auto;
        grid-template-columns: 1fr 1fr
    }

    .contact-cta-inner {
        min-height: 220px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column
    }

    .contact-panel-dialog {
        grid-template-columns: 1fr;
        width: 100%
    }

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

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

@media(max-width:480px) {
    .process-track {
        grid-template-columns: 1fr
    }

    .about-stats {
        grid-template-columns: 1fr
    }

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

    .hero-actions {
        align-items: stretch;
        flex-direction: column
    }

    .btn-orange {
        width: 100%
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *:before,
    *:after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important
    }

    .cursor-glow {
        display: none !important
    }
}