:root {
    --landing-ink: #102033;
    --landing-muted: #5f6f82;
    --landing-soft: #f3f8fb;
    --landing-panel: #ffffff;
    --landing-line: rgba(16, 32, 51, .12);
    --landing-blue: #255dcf;
    --landing-teal: #0f766e;
    --landing-coral: #e84d5b;
    --landing-gold: #dfa51f;
    --landing-dark: #101927;
    --landing-shadow: 0 24px 70px rgba(16, 32, 51, .14);
    --landing-radius: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

.antastic-landing {
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--landing-soft);
    color: var(--landing-ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.antastic-landing *,
.antastic-landing *::before,
.antastic-landing *::after {
    box-sizing: border-box;
}

.antastic-landing span {
    color: inherit;
}

.landing-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.landing-route-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fbfd 0%, #eaf4f7 100%);
}

.landing-loader-card {
    width: min(420px, 100%);
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--landing-shadow);
}

.landing-loader-mark {
    width: 76px;
    height: 54px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.landing-loader-mark img {
    width: 76px;
    height: auto;
}

.landing-loader-card strong,
.landing-loader-card span {
    display: block;
}

.landing-loader-card strong {
    font-size: 1.1rem;
    color: var(--landing-ink);
}

.landing-loader-card div span {
    margin-top: 3px;
    color: var(--landing-muted);
    font-size: .9rem;
    font-weight: 650;
}

.landing-loader-bar {
    grid-column: 1 / -1;
    position: relative;
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(37, 93, 207, .14);
}

.landing-loader-bar::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--landing-blue), var(--landing-teal));
    animation: landing-loader 1.1s ease-in-out infinite;
}

.landing-nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    background: rgba(16, 25, 39, .62);
    backdrop-filter: blur(18px);
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.landing-nav.is-scrolled {
    border-color: rgba(16, 32, 51, .1);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 40px rgba(16, 32, 51, .1);
}

.landing-nav-inner {
    width: min(1260px, calc(100% - 32px));
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0 auto;
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
}

.landing-nav.is-scrolled .landing-brand {
    color: var(--landing-ink);
}

.landing-brand-logo {
    width: 82px;
    height: 36px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--landing-radius);
    background: #fff;
}

.landing-brand-logo img {
    width: 72px;
    height: auto;
}

.landing-brand-copy {
    display: grid;
    line-height: 1;
}

.landing-brand-copy span {
    font-size: 1rem;
    font-weight: 900;
}

.landing-brand-copy small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .68);
    font-size: .68rem;
    font-weight: 750;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.landing-nav.is-scrolled .landing-brand-copy small {
    color: var(--landing-muted);
}

.landing-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--landing-radius);
    background: rgba(255, 255, 255, .12);
}

.landing-menu-button span {
    width: 18px;
    height: 2px;
    display: block;
    margin: 4px auto;
    background: #fff;
}

.landing-nav.is-scrolled .landing-menu-button {
    border-color: var(--landing-line);
    background: #fff;
}

.landing-nav.is-scrolled .landing-menu-button span {
    background: var(--landing-ink);
}

.landing-nav-panel {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.landing-nav-panel a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 0 11px;
    border: 1px solid transparent;
    border-radius: var(--landing-radius);
    color: rgba(255, 255, 255, .86);
    font-size: .9rem;
    font-weight: 800;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.landing-nav.is-scrolled .landing-nav-panel a {
    color: var(--landing-ink);
}

.landing-nav-panel a:hover,
.landing-nav-panel a:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .12);
}

.landing-nav.is-scrolled .landing-nav-panel a:hover,
.landing-nav.is-scrolled .landing-nav-panel a:focus {
    color: var(--landing-blue);
    border-color: rgba(37, 93, 207, .22);
    background: rgba(37, 93, 207, .07);
}

.landing-nav-panel .landing-nav-login {
    margin-left: 6px;
    color: #fff;
    border-color: var(--landing-blue);
    background: var(--landing-blue);
}

.landing-nav.is-scrolled .landing-nav-panel .landing-nav-login {
    color: #fff;
}

.landing-hero {
    position: relative;
    min-height: 86svh;
    isolation: isolate;
    overflow: hidden;
    background: var(--landing-dark);
}

.landing-hero-media {
    position: absolute;
    inset: 0;
    z-index: -3;
    background: url("/assets/img/header-bg-unsplash.jpg") center / cover no-repeat;
}

.landing-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 25, 39, .94) 0%, rgba(16, 25, 39, .82) 48%, rgba(16, 25, 39, .48) 100%),
        linear-gradient(180deg, rgba(16, 25, 39, .4), rgba(16, 25, 39, .92));
}

.landing-hero-grid {
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .34;
    background-image:
        linear-gradient(rgba(255, 255, 255, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .11) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(90deg, #000 0%, transparent 88%);
    animation: grid-drift 18s linear infinite;
}

.landing-hero-inner {
    width: min(1260px, calc(100% - 40px));
    min-height: 86svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    align-items: center;
    gap: clamp(32px, 6vw, 82px);
    margin: 0 auto;
    padding: 116px 0 40px;
}

.landing-kicker {
    margin: 0 0 14px;
    color: var(--landing-gold);
    font-size: .78rem;
    font-weight: 950;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.landing-hero h1,
.landing-section-heading h2,
.landing-final-cta h2,
.contact-panel h2 {
    margin: 0;
    color: inherit;
    font-weight: 950;
    letter-spacing: 0;
}

.landing-hero h1 {
    max-width: 760px;
    color: #fff;
    font-size: clamp(3.2rem, 4vw, 7.15rem);
    line-height: .9;
}

.landing-hero-lede {
    max-width: 720px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    line-height: 1.7;
}

.landing-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.landing-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--landing-radius);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.landing-button:hover,
.landing-button:focus {
    transform: translateY(-2px);
}

.landing-button-primary {
    color: #fff;
    border-color: var(--landing-blue);
    background: linear-gradient(135deg, var(--landing-blue), var(--landing-teal));
    box-shadow: 0 18px 40px rgba(37, 93, 207, .26);
}

.landing-button-primary:hover,
.landing-button-primary:focus {
    color: #fff;
    box-shadow: 0 22px 52px rgba(37, 93, 207, .34);
}

.landing-button-ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .1);
}

.landing-button-ghost:hover,
.landing-button-ghost:focus {
    color: #fff;
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .16);
}

.landing-hero-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.landing-hero-signals span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 11px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--landing-radius);
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .86);
    font-size: .88rem;
    font-weight: 800;
}

.landing-hero-signals i {
    color: var(--landing-gold);
}

.landing-hero-visual {
    perspective: 1200px;
}

.cockpit-panel {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--landing-radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
    transform: rotateX(2deg) rotateY(-7deg);
    animation: cockpit-float 6s ease-in-out infinite;
}

.cockpit-topbar {
    min-height: 46px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    border-bottom: 1px solid var(--landing-line);
    background: #fff;
}

.cockpit-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--landing-coral);
}

.cockpit-topbar span:nth-child(2) {
    background: var(--landing-gold);
}

.cockpit-topbar span:nth-child(3) {
    background: var(--landing-teal);
}

.cockpit-topbar strong {
    margin-left: 8px;
    color: var(--landing-muted);
    font-size: .76rem;
    text-transform: uppercase;
}

.cockpit-body {
    display: grid;
    gap: 18px;
    padding: 22px;
}

.cockpit-brand-row {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 16px;
    align-items: center;
}

.cockpit-logo {
    height: 84px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: #071322;
}

.cockpit-logo img {
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.cockpit-brand-row span {
    display: block;
    color: var(--landing-teal);
    font-size: .75rem;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cockpit-brand-row strong {
    display: block;
    margin-top: 4px;
    color: var(--landing-ink);
    font-size: 1.45rem;
    line-height: 1.1;
}

.cockpit-flow {
    height: 82px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 10px;
    padding: 0 6px;
}

.cockpit-flow::before {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    top: 50%;
    height: 2px;
    background: linear-gradient(90deg, rgba(15, 118, 110, .24), rgba(37, 93, 207, .4), rgba(232, 77, 91, .24));
}

.cockpit-flow span {
    position: relative;
    z-index: 1;
    width: 38px;
    height: 38px;
    margin: 0 auto;
    border: 1px solid rgba(37, 93, 207, .28);
    border-radius: var(--landing-radius);
    background: #fff;
    box-shadow: 0 10px 26px rgba(16, 32, 51, .12);
    animation: node-pulse 2.8s ease-in-out infinite;
    animation-delay: calc(var(--flow-index) * .22s);
}

.cockpit-flow span::after {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    background: var(--landing-blue);
}

.cockpit-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.cockpit-metrics div,
.work-card,
.service-card,
.proof-card,
.team-card,
.process-step,
.platform-board {
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: var(--landing-panel);
}

.cockpit-metrics div {
    padding: 13px;
    background: #f3f8fb;
}

.cockpit-metrics span,
.cockpit-bars span {
    display: block;
    color: var(--landing-muted);
    font-size: .73rem;
    font-weight: 850;
}

.cockpit-metrics strong {
    display: block;
    margin-top: 4px;
    color: var(--landing-ink);
    font-size: 1.05rem;
}

.cockpit-bars {
    display: grid;
    gap: 10px;
}

.cockpit-bars div {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    gap: 10px;
}

.cockpit-bars em {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #e5edf4;
}

.cockpit-bars i {
    display: block;
    width: var(--progress);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--landing-teal), var(--landing-blue));
    animation: bar-breathe 2.8s ease-in-out infinite;
}

.cockpit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cockpit-tags span {
    padding: 7px 9px;
    border-radius: var(--landing-radius);
    background: var(--landing-dark);
    color: #fff;
    font-size: .74rem;
    font-weight: 850;
}

.landing-metrics {
    width: min(1120px, calc(100% - 40px));
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    margin: -34px auto 0;
    position: relative;
    z-index: 5;
    box-shadow: var(--landing-shadow);
}

.landing-metrics div {
    min-height: 118px;
    display: grid;
    align-content: center;
    gap: 8px;
    padding: 20px;
    background: #fff;
}

.landing-metrics strong {
    color: var(--landing-ink);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    line-height: 1;
}

.landing-metrics span {
    color: var(--landing-muted);
    font-weight: 750;
    line-height: 1.35;
}

.landing-section {
    padding: clamp(72px, 9vw, 116px) 0;
    background: #fff;
}

.landing-section-alt {
    background: #edf5f8;
}

.landing-section-dark {
    background: var(--landing-dark);
    color: #fff;
}

.landing-section-heading {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.landing-section-heading h2,
.contact-panel h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
}

.landing-section-heading p:not(.landing-kicker),
.contact-panel p,
.platform-copy p {
    color: var(--landing-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.landing-section-dark .landing-section-heading p:not(.landing-kicker) {
    color: rgba(255, 255, 255, .72);
}

.service-grid,
.work-grid,
.proof-grid,
.team-grid {
    display: grid;
    gap: 16px;
}

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

.service-card {
    min-height: 250px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
    box-shadow: 0 18px 46px rgba(16, 32, 51, .08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(37, 93, 207, .28);
    box-shadow: 0 24px 62px rgba(16, 32, 51, .13);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--landing-radius);
    background: #e8f5f2;
    color: var(--landing-teal);
    font-size: 1.2rem;
}

.service-card h3,
.work-card h3,
.process-step h3,
.team-card h3 {
    margin: 0;
    color: var(--landing-ink);
    font-size: 1.15rem;
    line-height: 1.2;
}

.service-card p,
.work-card p,
.process-step p,
.proof-card p,
.team-card p {
    margin: 0;
    color: var(--landing-muted);
    line-height: 1.65;
}

.platform-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
    align-items: center;
    gap: clamp(28px, 6vw, 74px);
}

.platform-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5vw, 4.25rem);
    line-height: 1;
}

.platform-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
}

.platform-points span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 9px 10px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: #fff;
    color: var(--landing-ink);
    font-weight: 800;
}

.platform-points i {
    color: var(--landing-teal);
}

.platform-board {
    padding: 20px;
    box-shadow: var(--landing-shadow);
}

.platform-board-header {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.platform-board-header img {
    width: min(260px, 100%);
    height: auto;
    padding: 18px;
    border-radius: var(--landing-radius);
    background: #071322;
}

.platform-board-header strong {
    color: var(--landing-muted);
    font-size: .82rem;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.platform-board-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.platform-board-grid div {
    min-height: 96px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: #f5f9fb;
    text-align: center;
    font-weight: 850;
}

.platform-board-grid i {
    color: var(--landing-blue);
    font-size: 1.2rem;
}

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

.process-track::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: linear-gradient(90deg, var(--landing-teal), var(--landing-blue), var(--landing-coral));
}

.process-step {
    position: relative;
    min-height: 230px;
    padding: 24px;
    box-shadow: 0 16px 46px rgba(16, 32, 51, .08);
}

.process-step > span {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin-bottom: 34px;
    border-radius: var(--landing-radius);
    background: var(--landing-dark);
    color: #fff;
    font-weight: 950;
}

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

.work-card {
    min-height: 260px;
    display: grid;
    align-content: space-between;
    gap: 16px;
    padding: 22px;
    background: #fff;
}

.work-card > span {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: var(--landing-radius);
    background: #e8f5f2;
    color: var(--landing-teal);
    font-weight: 950;
}

.work-card strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--landing-blue);
    font-size: .86rem;
}

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

.team-card {
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 16px;
    min-height: 118px;
    padding: 18px;
    box-shadow: 0 16px 44px rgba(16, 32, 51, .08);
}

.team-card img {
    width: 78px;
    height: 78px;
    border-radius: var(--landing-radius);
    object-fit: cover;
    background: #dbe7ef;
}

.team-card p {
    margin-top: 5px;
    color: var(--landing-blue);
    font-weight: 850;
}

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

.proof-card {
    min-height: 270px;
    display: grid;
    align-content: start;
    gap: 14px;
    padding: 24px;
    box-shadow: 0 16px 44px rgba(16, 32, 51, .08);
}

.proof-stars {
    color: var(--landing-gold);
}

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

.proof-card strong {
    color: var(--landing-ink);
}

.proof-card span {
    color: var(--landing-muted);
    font-size: .9rem;
}

.landing-final-cta {
    padding: clamp(56px, 7vw, 88px) 0;
    background: linear-gradient(135deg, #102033, #0f2e3a);
    color: #fff;
}

.landing-final-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.landing-final-cta h2 {
    max-width: 860px;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: 1;
}

.contact-section {
    background: #f3f8fb;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.contact-panel,
.contact-form-shell {
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: #fff;
    box-shadow: 0 20px 60px rgba(16, 32, 51, .1);
}

.contact-panel {
    position: sticky;
    top: 96px;
    padding: 28px;
}

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

.contact-direct a,
.contact-direct span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--landing-ink);
    font-weight: 800;
    text-decoration: none;
}

.contact-direct i {
    color: var(--landing-teal);
}

.contact-form-shell {
    padding: clamp(20px, 4vw, 34px);
}

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

.form-field {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--landing-ink);
    font-weight: 850;
}

.form-field small {
    color: var(--landing-coral);
    font-weight: 750;
}

.form-control,
.form-select {
    min-height: 48px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    box-shadow: none;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(37, 93, 207, .5);
    box-shadow: 0 0 0 4px rgba(37, 93, 207, .1);
}

.verify-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.verify-button {
    min-width: 92px;
    border: 1px solid rgba(37, 93, 207, .3);
    border-radius: var(--landing-radius);
    background: #fff;
    color: var(--landing-blue);
    font-weight: 900;
}

.verify-button.is-verified {
    border-color: rgba(15, 118, 110, .3);
    color: #fff;
    background: var(--landing-teal);
}

.option-group {
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}

.option-group legend {
    margin-bottom: 10px;
    color: var(--landing-ink);
    font-size: 1rem;
    font-weight: 900;
}

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

.option-pill {
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: #fff;
    color: var(--landing-ink);
    font-weight: 750;
}

.option-pill span {
    min-width: 0;
    color: var(--landing-ink);
    line-height: 1.3;
}

.option-pill input {
    flex: 0 0 auto;
}

.option-pill:has(input:checked) {
    border-color: rgba(37, 93, 207, .42);
    background: #eef5ff;
    box-shadow: 0 10px 26px rgba(37, 93, 207, .12);
}

.option-pill:has(input:checked) span {
    color: var(--landing-blue);
    font-weight: 900;
}

.contact-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--landing-radius);
    font-weight: 800;
}

.contact-alert.success {
    color: #075b51;
    background: #dff5ef;
}

.contact-alert.danger {
    color: #921b2c;
    background: #fde6e9;
}

.contact-alert button {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: inherit;
    font-weight: 950;
}

.submit-button {
    width: 100%;
}

.landing-footer {
    padding: 28px 0;
    background: #0b1320;
    color: rgba(255, 255, 255, .78);
}

.footer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
}

.footer-layout div {
    display: grid;
    gap: 4px;
}

.footer-layout div:nth-child(2) {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-layout a {
    color: #fff;
    text-decoration: none;
    font-weight: 850;
}

.footer-layout > span {
    text-align: right;
}

.landing-chat-widget {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 110;
}

.chat-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(7, 19, 34, .72);
    backdrop-filter: blur(12px);
}

.chat-modal {
    position: relative;
    width: min(960px, 100%);
    height: min(720px, calc(100vh - 40px));
    overflow: hidden;
    border-radius: var(--landing-radius);
    background: #fff;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .36);
}

.chat-modal iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.chat-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: var(--landing-radius);
    background: var(--landing-dark);
    color: #fff;
}

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

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

.animations-paused *,
.animations-paused *::before,
.animations-paused *::after {
    animation-play-state: paused !important;
}

@keyframes landing-loader {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(260%);
    }
}

@keyframes grid-drift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 84px 42px;
    }
}

@keyframes cockpit-float {
    0%, 100% {
        transform: rotateX(2deg) rotateY(-7deg) translateY(0);
    }
    50% {
        transform: rotateX(0deg) rotateY(-4deg) translateY(-10px);
    }
}

@keyframes node-pulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 10px 26px rgba(16, 32, 51, .12);
    }
    50% {
        transform: translateY(-8px);
        box-shadow: 0 18px 34px rgba(37, 93, 207, .18);
    }
}

@keyframes bar-breathe {
    0%, 100% {
        filter: saturate(1);
    }
    50% {
        filter: saturate(1.45) brightness(1.05);
    }
}

@media (max-width: 1100px) {
    .landing-hero-inner,
    .platform-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .landing-hero-visual {
        max-width: 560px;
    }

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

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

    .process-track::before {
        display: none;
    }

    .contact-panel {
        position: static;
    }
}

@media (max-width: 900px) {
    .landing-menu-button {
        display: block;
    }

    .landing-nav-panel {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--landing-line);
        border-radius: var(--landing-radius);
        background: rgba(255, 255, 255, .96);
        box-shadow: var(--landing-shadow);
    }

    .landing-nav-panel.is-open {
        display: flex;
    }

    .landing-nav-panel a,
    .landing-nav.is-scrolled .landing-nav-panel a {
        color: var(--landing-ink);
    }

    .landing-nav-panel .landing-nav-login {
        margin-left: 0;
        justify-content: center;
    }

    .landing-brand-copy small {
        display: none;
    }

    .landing-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 0;
    }
}

@media (max-width: 680px) {
    .landing-container,
    .landing-hero-inner {
        width: min(100% - 28px, 1180px);
    }

    .landing-hero,
    .landing-hero-inner {
        min-height: auto;
    }

    .landing-hero-inner {
        padding-top: 104px;
    }

    .landing-brand-logo {
        width: 68px;
    }

    .landing-brand-logo img {
        width: 60px;
    }

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

    .landing-button {
        width: 100%;
    }

    .cockpit-panel {
        transform: none;
        animation: none;
    }

    .cockpit-brand-row,
    .cockpit-bars div,
    .form-grid.two,
    .footer-layout {
        grid-template-columns: 1fr;
    }

    .cockpit-metrics,
    .landing-metrics,
    .service-grid,
    .work-grid,
    .process-track,
    .team-grid,
    .proof-grid,
    .platform-points,
    .platform-board-grid,
    .option-grid {
        grid-template-columns: 1fr;
    }

    .landing-final-layout {
        grid-template-columns: 1fr;
    }

    .footer-layout,
    .footer-layout > span {
        text-align: left;
    }

    .footer-layout div:nth-child(2) {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .landing-reveal,
    .cockpit-panel,
    .cockpit-flow span,
    .cockpit-bars i,
    .landing-hero-grid {
        animation: none !important;
        transition: none !important;
    }

    .landing-reveal {
        opacity: 1;
        transform: none;
    }
}
