:root {
    --ink: #02091b;
    --navy: #001232;
    --blue: #0b2878;
    --gutter: clamp(1.5rem, 4vw, 4rem);
    --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
    --ease-reveal: cubic-bezier(0.25, 0.1, 0.25, 1);
    color-scheme: light;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

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

html {
    min-width: 20rem;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    min-width: 20rem;
    min-height: 100%;
    margin: 0;
    overflow-x: hidden;
    background: #eef6ff;
    color: var(--ink);
}

body.menu-open { overflow: hidden; }

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

button,
a { -webkit-tap-highlight-color: transparent; }

svg,
img { display: block; }

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: #fff;
    color: var(--navy);
    box-shadow: 0 0.5rem 2rem rgba(13, 42, 99, 0.16);
    transform: translateY(-150%);
    transition: transform 450ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
    position: absolute;
    z-index: 30;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.3rem var(--gutter) 0;
    animation: header-in 1.8s 120ms var(--ease-reveal) both;
}

.header-shell {
    display: grid;
    width: min(100%, 87.5rem);
    height: 3.15rem;
    align-items: center;
    grid-template-columns: minmax(15rem, 1fr) auto minmax(15rem, 1fr);
    margin: 0 auto;
}

.brand {
    position: relative;
    display: flex;
    width: 17.95rem;
    height: 3.1rem;
    align-items: center;
    overflow: hidden;
    justify-self: start;
}

.brand__lockup {
    display: flex;
    width: 17.95rem;
    height: 3.1rem;
    align-items: center;
    flex: 0 0 auto;
    transform-origin: left center;
}

.brand__mark,
.brand__wordmark {
    position: relative;
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
}

.brand__mark {
    width: 2.9rem;
    height: 3rem;
}

.brand__mark img {
    position: absolute;
    top: -1.42rem;
    left: -1.62rem;
    width: 17.18rem;
    max-width: none;
    height: auto;
}

.brand__divider {
    width: 1px;
    height: 1.95rem;
    flex: 0 0 auto;
    margin: 0 0.7rem;
    background: #080d1a;
}

.brand__wordmark {
    width: 13.6rem;
    height: 1.6rem;
}

.brand__wordmark img {
    position: absolute;
    top: -3.16rem;
    left: -6.54rem;
    width: 22.15rem;
    max-width: none;
    height: auto;
    filter: brightness(0) saturate(100%);
}

.header-actions { display: contents; }
.primary-nav { grid-column: 2; }

.primary-nav ul,
.account-actions,
.hero__benefits,
.work-panel ul {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav ul { gap: clamp(2.4rem, 4vw, 4.5rem); }

.primary-nav a,
.sign-in-link {
    position: relative;
    display: block;
    padding: 0.55rem 0;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 450;
    letter-spacing: -0.025em;
    white-space: nowrap;
}

.primary-nav a::after,
.sign-in-link::after {
    position: absolute;
    right: 0;
    bottom: 0.25rem;
    left: 0;
    height: 1px;
    background: #173d9d;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 500ms var(--ease-out);
}

.primary-nav a:hover::after,
.sign-in-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.account-actions {
    grid-column: 3;
    justify-content: flex-end;
    margin-right: 5rem;
    gap: 1.7rem;
}

.header-download,
.button--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(120deg, #00173f, #00081c);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 0.6rem 1.7rem rgba(0, 18, 55, 0.08);
    transition: box-shadow 500ms ease, transform 500ms var(--ease-out);
}

.header-download {
    min-height: 2.4rem;
    padding: 0.55rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 520;
    white-space: nowrap;
}

.header-download:hover,
.button--primary:hover {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 0.8rem 2.1rem rgba(0, 18, 55, 0.2);
    transform: translateY(-2px);
}

.brand:focus-visible,
.primary-nav a:focus-visible,
.account-actions a:focus-visible,
.menu-toggle:focus-visible,
.button:focus-visible {
    outline: 2px solid #245dde;
    outline-offset: 4px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.85rem;
    height: 2.85rem;
    padding: 0;
    border: 1px solid rgba(8, 31, 81, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--navy);
    cursor: pointer;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.menu-toggle__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.menu-toggle__icon {
    position: relative;
    display: block;
    width: 1.1rem;
    height: 0.8rem;
}

.menu-toggle__icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    border-radius: 2px;
    background: currentColor;
    transition: top 400ms ease, transform 400ms var(--ease-out);
}

.menu-toggle__icon span:first-child { top: 0.17rem; }
.menu-toggle__icon span:last-child { top: 0.63rem; }
.is-menu-open .menu-toggle__icon span:first-child { top: 0.4rem; transform: rotate(45deg); }
.is-menu-open .menu-toggle__icon span:last-child { top: 0.4rem; transform: rotate(-45deg); }

main {
    min-height: 100vh;
    min-height: 100svh;
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: 64rem;
    overflow: hidden;
    background-color: #f7f8fc;
    background-image: url("/assets/images/hey-n-hero-background.png");
    background-image: image-set(
        url("/assets/images/hey-n-hero-background-optimized.webp") type("image/webp"),
        url("/assets/images/hey-n-hero-background.png") type("image/png")
    );
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent 38%);
    content: "";
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 4;
    width: min(100% - (2 * var(--gutter)), 56rem);
    margin: 0 auto;
    padding-top: 9.35rem;
    text-align: center;
}

.hero h1 {
    margin: 0;
    color: #030712;
    font-size: clamp(3.25rem, 4.1vw, 4rem);
    font-weight: 650;
    letter-spacing: -0.065em;
    line-height: 1.02;
    text-wrap: balance;
    animation: rise-in 2s 280ms var(--ease-reveal) both;
}

.hero__description {
    margin: 1.1rem auto 0;
    color: #425b99;
    font-size: clamp(1rem, 1.25vw, 1.16rem);
    font-weight: 420;
    letter-spacing: -0.025em;
    line-height: 1.45;
    animation: rise-in 2s 480ms var(--ease-reveal) both;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.7rem;
    gap: 1.65rem;
    animation: rise-in 2s 680ms var(--ease-reveal) both;
}

.button {
    min-height: 3rem;
    font-size: 0.96rem;
    font-weight: 520;
    letter-spacing: -0.025em;
}

.button--primary {
    min-width: 14rem;
    padding: 0.75rem 1.65rem;
    gap: 1.65rem;
}

.button--primary > svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

.button--watch {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    gap: 0.75rem;
}

.play-icon {
    display: grid;
    width: 1.8rem;
    height: 1.8rem;
    place-items: center;
    border: 1px solid #5670b4;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    transition: background 500ms ease, transform 500ms var(--ease-out);
}

.play-icon svg {
    width: 1rem;
    height: 1rem;
    fill: var(--navy);
}

.button--watch:hover .play-icon {
    background: #fff;
    transform: scale(1.08);
}

.hero__benefits {
    justify-content: center;
    margin-top: 1.65rem;
    color: #173471;
    gap: clamp(2.5rem, 4vw, 4.5rem);
    animation: rise-in 2s 880ms var(--ease-reveal) both;
}

.hero__benefits li {
    display: flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 450;
    letter-spacing: -0.02em;
    gap: 0.65rem;
    white-space: nowrap;
}

.hero__benefits svg {
    width: 1.35rem;
    height: 1.35rem;
    fill: none;
    stroke: #123781;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.35;
}

.hero__product {
    position: absolute;
    z-index: 2;
    top: 26.55rem;
    left: 50%;
    width: min(52.4rem, 73vw);
    transform: translateX(-50%);
    animation: product-in 1.5s 160ms var(--ease-reveal) both;
}

.hero__product picture { display: block; }

.hero__product img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 1.5rem 3rem rgba(54, 77, 145, 0.1));
}

.work-panel {
    position: absolute;
    z-index: 5;
    top: 56.8rem;
    left: 50%;
    width: calc(100% - 7.5rem);
    min-height: 10rem;
    padding: 1.4rem 2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 3.25rem 3.25rem 0 0;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -1rem 3rem rgba(92, 111, 172, 0.04), inset 0 1px 0 #fff;
    text-align: center;
    transform: translateX(-50%);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.work-panel p {
    margin: 0;
    color: #071029;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 520;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.work-panel ul {
    justify-content: center;
    margin-top: 0.55rem;
}

.work-panel li {
    min-width: 8rem;
    padding: 0 1.5rem;
    color: #071029;
    font-size: 0.78rem;
    line-height: 1;
}

.work-panel li + li { border-left: 1px solid #dbe1ef; }

.operating-systems {
    gap: clamp(1rem, 2.2vw, 2.5rem);
}

.operating-systems li {
    display: flex;
    width: clamp(9rem, 13vw, 11.5rem);
    height: 2.8rem;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(0.8rem, 1.4vw, 1.4rem);
}

.operating-systems li + li {
    border-left: 0;
}

.operating-systems img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.anchor-target {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
}

.closer-look {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(5.5rem, 8vw, 8rem) var(--gutter) clamp(6rem, 9vw, 9rem);
    background: #f8faff;
}

.closer-look::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background:
        radial-gradient(circle at 10% 22%, rgba(190, 147, 255, 0.12), transparent 32%),
        radial-gradient(circle at 90% 30%, rgba(63, 190, 255, 0.13), transparent 34%);
    content: "";
    pointer-events: none;
}

.closer-look__inner {
    width: min(100%, 87.5rem);
    margin: 0 auto;
}

.closer-look__intro {
    display: grid;
    align-items: start;
    grid-template-columns: minmax(15rem, 20rem) minmax(20rem, 29rem);
    justify-content: center;
    gap: clamp(4rem, 8vw, 8rem);
}

.closer-look__intro h2 {
    margin: 0;
    color: #030712;
    font-size: clamp(1.65rem, 2.1vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.12;
}

.closer-look__intro p {
    max-width: 29rem;
    margin: 0.15rem 0 0;
    color: #343b4f;
    font-size: 0.95rem;
    font-weight: 430;
    letter-spacing: -0.018em;
    line-height: 1.55;
}

.closer-look__grid {
    display: grid;
    align-items: start;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: clamp(3.5rem, 6vw, 5.5rem);
    gap: clamp(1rem, 2vw, 1.75rem);
}

.feature-card {
    min-width: 0;
    margin: 0;
    filter: drop-shadow(0 1.5rem 2.5rem rgba(37, 63, 124, 0.1));
    transition: filter 650ms ease, transform 650ms var(--ease-out);
}

.feature-card:hover {
    filter: drop-shadow(0 2rem 3rem rgba(37, 63, 124, 0.16));
    transform: translateY(-0.45rem);
}

.feature-card img {
    width: 100%;
    height: auto;
}

.feature-card picture { display: block; }

.integrations {
    padding: 0 var(--gutter) clamp(5rem, 8vw, 8rem);
    background: #f8faff;
}

.integration-map {
    --app-height: 10rem;
    --connection-height: 10rem;
    position: relative;
    isolation: isolate;
    width: min(100%, 60rem);
    margin: clamp(3rem, 5vw, 5rem) auto 0;
}

.integration-map::before {
    position: absolute;
    z-index: -1;
    inset: 15% -8% -12%;
    background: radial-gradient(ellipse at 50% 70%, rgba(120, 145, 255, 0.15), transparent 65%);
    content: "";
    pointer-events: none;
}

.integration-map__apps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    list-style: none;
}

.integration-app {
    position: relative;
    z-index: 1;
    min-width: 0;
    justify-self: center;
    width: min(80%, 11rem);
}

.integration-app__tile {
    display: flex;
    height: var(--app-height);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid rgba(95, 119, 169, 0.16);
    border-radius: 1.6rem;
    background: linear-gradient(155deg, #fff, #f5f7fe);
    box-shadow: 0 0.75rem 2rem rgba(38, 65, 125, 0.06), inset 0 1px 0 #fff;
    transition: transform 650ms var(--ease-out), box-shadow 650ms ease, border-color 650ms ease;
}

.integration-app img {
    width: 3.6rem;
    height: 3.6rem;
    object-fit: contain;
}

.integration-app h3 {
    margin: 0;
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 520;
    letter-spacing: -0.025em;
}

.integration-map__lines {
    position: absolute;
    top: var(--app-height);
    left: 0;
    width: 100%;
    height: var(--connection-height);
    overflow: visible;
    fill: none;
    pointer-events: none;
}

.integration-map__lines path {
    stroke-linecap: round;
    stroke-linejoin: round;
    vector-effect: non-scaling-stroke;
}

.integration-map__tracks {
    stroke: #d3dcec;
    stroke-width: 1.5;
}

.integration-map__flow {
    stroke: url(#integration-line-gradient);
    stroke-width: 2.5;
}

.integration-map__flow path {
    stroke-dasharray: 10 90;
    stroke-dashoffset: 10;
    animation: integration-flow 9s linear infinite paused;
}

.integration-map__flow path:nth-child(2) { animation-delay: -3s; }
.integration-map__flow path:nth-child(3) { animation-delay: -6s; }

.integration-map.is-in-view .integration-map__flow path {
    animation-play-state: running;
}

.integration-hub {
    position: relative;
    z-index: 1;
    display: flex;
    width: min(100%, 17rem);
    min-height: 8rem;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    margin: var(--connection-height) auto 0;
    padding: 1.5rem;
    border: 1px solid rgba(119, 147, 227, 0.35);
    border-radius: 1.8rem;
    background: linear-gradient(135deg, #071c4b, #0c1230 65%, #25234d);
    color: #fff;
    box-shadow: 0 1rem 3rem rgba(62, 84, 163, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.17);
}

.integration-hub__name {
    font-size: 2.3rem;
    font-weight: 650;
    letter-spacing: -0.055em;
    line-height: 1.1;
}

.integration-hub__caption {
    color: #c1d1f8;
    font-size: 0.78rem;
    letter-spacing: -0.01em;
}

@keyframes integration-flow {
    to { stroke-dashoffset: -90; }
}

/* Motion enhances visible content; it never hides content when JS is unavailable. */
.operating-systems img,
.hero__benefits svg,
.button--primary > svg {
    transition: transform 600ms var(--ease-out);
}

.button:active,
.header-download:active {
    scale: 0.97;
}

@media (hover: hover) and (pointer: fine) {
    .integration-app:hover .integration-app__tile {
        transform: translateY(-5px);
        border-color: rgba(100, 128, 206, 0.36);
        box-shadow: 0 1rem 2.5rem rgba(38, 65, 125, 0.12);
    }

    .operating-systems li:hover img { transform: translateY(-3px); }
    .hero__benefits li:hover svg { transform: translateY(-2px) scale(1.08); }
    .button--primary:hover > svg { transform: translateX(4px); }
}

.faq-section {
    padding: clamp(2rem, 4vw, 4rem) var(--gutter) clamp(4rem, 8vw, 8rem);
    background: #f8faff;
}

.faq-section__inner {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(2rem, 6vw, 6rem);
    width: min(100%, 75rem);
    margin: 0 auto;
}

.faq-intro { padding-top: 0.75rem; }

.faq-eyebrow {
    margin: 0 0 1.1rem;
    color: #365dab;
    font-size: 0.78rem;
    font-weight: 550;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.faq-intro h1,
.faq-intro h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.9rem, 3vw, 2.65rem);
    line-height: 1.12;
    font-weight: 600;
    letter-spacing: -0.045em;
}

.faq-intro > p:not(.faq-eyebrow) {
    max-width: 24rem;
    margin: 1.3rem 0 1.75rem;
    color: #525f76;
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.8rem 1.2rem;
    border: 1px solid #d8e1f2;
    border-radius: 999px;
    background: #fff;
    color: #0b2878;
    font-size: 0.88rem;
    font-weight: 550;
    transition: border-color 500ms ease, box-shadow 500ms ease;
}

.faq-link span { transition: transform 500ms var(--ease-out); }
.faq-link:hover { border-color: #8ba5d7; box-shadow: 0 0.4rem 1.2rem #183d8110; }
.faq-link:hover span { transform: translate(2px, -2px); }

.faq-list {
    min-width: 0;
    padding: 0 1.5rem;
    border: 1px solid #e0e7f3;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 1rem 3rem rgba(35, 60, 116, 0.04);
}

.faq-item { scroll-margin-top: 2rem; }
.faq-item + .faq-item { border-top: 1px solid #e7ecf5; }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5rem;
    padding: 1.35rem 0;
    color: #14213b;
    font-size: 1rem;
    font-weight: 550;
    line-height: 1.5;
    letter-spacing: -0.02em;
    list-style: none;
    cursor: pointer;
    transition: color 450ms ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:hover,
.faq-item[open] summary { color: #135bd9; }
.faq-item__icon {
    flex: 0 0 1.4rem;
    width: 1.4rem;
    height: 1.4rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}
.faq-item__vertical { transform-origin: center; transition: transform 600ms var(--ease-out), opacity 600ms ease; }
.faq-item[open] .faq-item__vertical { transform: rotate(90deg); opacity: 0; }
.faq-item__answer { padding: 0 2.4rem 1.5rem 0; }
.faq-item__answer p {
    margin: 0;
    color: #525f76;
    font-size: 0.92rem;
    line-height: 1.8;
    overflow-wrap: anywhere;
}
.faq-item__answer p + p { margin-top: 0.85rem; }
.faq-item[open] .faq-item__answer { animation: faq-answer-in 650ms var(--ease-reveal) both; }
.faq-item summary:focus-visible,
.faq-link:focus-visible,
.faq-back:focus-visible { outline: 2px solid #216bdf; outline-offset: 5px; border-radius: 0.3rem; }

.faq-page { min-height: 100vh; padding-top: clamp(7rem, 10vw, 10rem); background: #f8faff; }
.faq-page .faq-intro { position: sticky; top: 3rem; }
.faq-back { display: inline-block; margin-bottom: 2rem; color: #525f76; font-size: 0.85rem; }
.primary-nav a[aria-current="page"] { color: #135bd9; }
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }

@keyframes faq-answer-in {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Leave room for the additional FAQ navigation item before the mobile menu. */
@media (min-width: 68.001rem) {
    .header-shell { grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(1rem, 2vw, 2rem); }
    .primary-nav ul { justify-content: center; gap: clamp(1rem, 2vw, 2rem); }
    .account-actions { margin-right: 0; gap: 1rem; }
}

@media (max-width: 52rem) {
    .faq-section__inner { grid-template-columns: minmax(0, 1fr); max-width: 38rem; gap: 2rem; }
    .faq-page .faq-intro { position: static; }
    .faq-intro > p:not(.faq-eyebrow) { max-width: 30rem; }
}

@media (max-width: 44rem) {
    .faq-section { padding: 1.5rem var(--gutter) 4rem; }
    .faq-list { padding: 0 1.1rem; border-radius: 1.15rem; }
    .faq-item summary { min-height: 4.6rem; font-size: 0.94rem; gap: 0.75rem; }
    .faq-item__answer { padding-right: 0; }
    .faq-item__answer p { font-size: 0.88rem; }
}

.world-section {
    padding: clamp(2rem, 5vw, 5rem) var(--gutter) 2.5rem;
    overflow: hidden;
    background: linear-gradient(#f8faff, #fff 35%);
}
.world-intro { position: relative; z-index: 2; text-align: center; }
.world-intro h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.045em;
}
.world-intro > p:last-child { margin: 1.25rem 0 0; color: #627087; font-size: 1rem; line-height: 1.7; }
.world-scene {
    position: relative;
    width: min(100%, 72rem);
    aspect-ratio: 1200 / 780;
    margin: 1.5rem auto 0;
    isolation: isolate;
    overflow: hidden;
}
.world-scene::before {
    position: absolute;
    width: 87%;
    aspect-ratio: 1;
    top: 22%;
    left: 6.5%;
    border: 1px solid #e3eaf3;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 30%, #fff 40%, #eef3fb);
    content: "";
}
.world-scene.is-rendered::before { display: none; }
.world-scene::after {
    position: absolute;
    z-index: 1;
    inset: auto 0 0;
    height: 18%;
    background: linear-gradient(transparent, #ffffffed 72%, #fff);
    pointer-events: none;
    content: "";
}
.world-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.world-brand {
    position: absolute;
    z-index: 3;
    top: 5%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: clamp(7rem, 14vw, 10.5rem);
    aspect-ratio: 1;
    border: 1px solid #dce5f7;
    border-radius: 28%;
    background: linear-gradient(145deg, #fff, #f0f5ff);
    box-shadow: inset 0 0 0 3px #ffffffb3, 0 1rem 3rem #3465b525, 0 2px 5px #1836680a;
    transform: translateX(-50%);
    animation: world-brand-float 10s ease-in-out infinite paused;
}
.world-scene.is-rotating .world-brand { animation-play-state: running; }
.world-brand__mark { width: 62%; height: auto; aspect-ratio: 1; mix-blend-mode: multiply; }
.world-brand > span { margin-top: -3%; font-size: clamp(1rem, 2vw, 1.5rem); font-weight: 650; letter-spacing: -0.04em; }
.world-country {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.85rem;
    border: 1px solid #ebeff6;
    border-radius: 999px;
    background: #ffffffef;
    box-shadow: 0 0.3rem 0.5rem #18253b12, 0 0.8rem 1.5rem #18253b08;
    color: #202b3d;
    font-size: clamp(0.75rem, 1.35vw, 1rem);
    font-weight: 500;
    white-space: nowrap;
    transform: translate(-50%, -100%);
    pointer-events: none;
}
.world-country--turkiye { top: 54%; left: 48%; }
.world-country--usa { top: 45%; left: 17%; }
.world-country--brazil { top: 72%; left: 27%; }
.world-country--china { top: 53%; left: 72%; }
.world-country--indonesia { top: 74%; left: 78%; }
.world-country--germany { top: 46%; left: 45%; }
.world-country--uk { top: 42%; left: 40%; }
.world-country--south-africa { top: 76%; left: 49%; }
.world-country--japan { top: 52%; left: 85%; }
.world-country--uae { top: 59%; left: 59%; }
.world-footer {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: -0.25rem;
    color: #69778f;
    font-size: 0.8rem;
}
.world-pause {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.65rem;
    border: 1px solid #dce4f0;
    border-radius: 999px;
    color: #405576;
    background: #fff;
    font: inherit;
    cursor: pointer;
    transition: background 500ms ease;
}
.world-pause svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.world-pause__play { display: none; }
.world-pause[aria-pressed="true"] .world-pause__stop { display: none; }
.world-pause[aria-pressed="true"] .world-pause__play { display: block; }
.world-pause:hover { background: #eff4fc; }
.world-pause:focus-visible { outline: 2px solid #216bdf; outline-offset: 4px; }
@keyframes world-brand-float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -7px); }
}
@media (max-width: 44rem) {
    .world-section { padding-top: 2rem; padding-inline: 0; }
    .world-intro { padding-inline: 1.25rem; }
    .world-intro > p:last-child { font-size: 0.9rem; }
    .world-scene { width: 100%; aspect-ratio: 1.2; margin-top: 1.75rem; }
    .world-brand { top: 6%; width: 6.75rem; }
    .world-country { padding: 0.35rem 0.5rem; gap: 0.3rem; font-size: 0.72rem; }
    .world-footer { flex-direction: column; gap: 0.8rem; padding-inline: 1rem; text-align: center; }
}

.contact-cta {
    padding: clamp(1.5rem, 3vw, 3rem) var(--gutter) clamp(4rem, 7vw, 7rem);
    background: #fff;
}
.contact-cta__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
    align-items: end;
    gap: clamp(2rem, 6vw, 7rem);
    width: min(100%, 75rem);
    margin: 0 auto;
    padding: clamp(2.2rem, 5vw, 4.5rem);
    overflow: hidden;
    border: 1px solid #173874;
    border-radius: clamp(1.4rem, 3vw, 2.4rem);
    background:
        radial-gradient(circle at 88% 15%, #245ccf 0, transparent 32%),
        linear-gradient(135deg, #071a3c, #0b2a64 70%, #153e89);
    color: #fff;
    box-shadow: 0 1.5rem 4rem rgba(9, 35, 82, 0.16);
}
.contact-cta .faq-eyebrow { color: #a8c8ff; }
.contact-cta h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 580;
    line-height: 1.05;
    letter-spacing: -0.05em;
}
.contact-cta__action p { max-width: 27rem; margin: 0 0 1.5rem; color: #cbd9f1; font-size: 0.95rem; line-height: 1.7; }
.contact-cta__action a {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.9rem 1.25rem;
    border-radius: 999px;
    background: #fff;
    color: #071a3c;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 500ms var(--ease-out), box-shadow 500ms ease;
}
.contact-cta__action a:hover { transform: translateY(-2px); box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.16); }

.site-footer {
    position: relative;
    padding: clamp(4rem, 7vw, 6.5rem) var(--gutter) 1.6rem;
    border-top: 1px solid #e3eaf5;
    background: #f5f8fd;
    color: #26344d;
}
.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(18rem, 1.5fr) minmax(9rem, 0.65fr) minmax(17rem, 1fr);
    gap: clamp(2.5rem, 6vw, 7rem);
    width: min(100%, 75rem);
    margin: 0 auto;
}
.site-footer__identity { min-width: 0; }
.footer-brand {
    display: flex;
    width: 17.95rem;
    height: 3.1rem;
    align-items: center;
    overflow: hidden;
}
.site-footer__identity > p {
    max-width: 25rem;
    margin: 1.45rem 0 0;
    color: #4f5e75;
    font-size: 0.9rem;
    line-height: 1.75;
}
.social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}
.social-links a {
    display: inline-flex;
    min-height: 2.55rem;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.8rem;
    border: 1px solid #dce5f2;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: #22324d;
    font-size: 0.76rem;
    font-weight: 600;
    transition: transform 500ms var(--ease-out), border-color 500ms ease, color 500ms ease, box-shadow 500ms ease;
}
.social-links a:hover {
    border-color: #9bb2d8;
    color: #145fd4;
    box-shadow: 0 0.55rem 1.4rem rgba(27, 62, 123, 0.09);
    transform: translateY(-2px);
}
.social-links a:focus-visible {
    outline: 2px solid #216bdf;
    outline-offset: 3px;
}
.social-links svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.social-links__fill { fill: currentColor; stroke: none; }
.social-links .social-links__linkedin {
    width: 1.15rem;
    height: 1.15rem;
}
.footer-column h2 {
    margin: 0 0 1.35rem;
    color: #536178;
    font-size: 0.73rem;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li + li { margin-top: 0.85rem; }
.footer-column a { color: #182640; font-size: 0.9rem; transition: color 400ms ease; }
.footer-column a:hover { color: #1765d8; }
.footer-contact > p { max-width: 18rem; margin: 0 0 1rem; color: #4f5e75; font-size: 0.86rem; line-height: 1.65; }
.footer-email { display: block; width: fit-content; font-weight: 600; overflow-wrap: anywhere; }
.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    color: #1765d8 !important;
    font-weight: 600;
}
.footer-contact-link span { transition: transform 450ms var(--ease-out); }
.footer-contact-link:hover span { transform: translate(2px, -2px); }
.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: min(100%, 75rem);
    margin: clamp(3.5rem, 6vw, 5.5rem) auto 0;
    padding-top: 1.4rem;
    border-top: 1px solid #dfe6f1;
    color: #58667a;
    font-size: 0.72rem;
}

.contact-page { min-height: 100vh; background: #f7f9fd; }
.contact-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(29rem, 1.18fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 6.5rem);
    width: min(100% - (2 * var(--gutter)), 75rem);
    min-height: 52rem;
    margin: 0 auto;
    padding: clamp(8rem, 13vw, 11rem) 0 clamp(4rem, 7vw, 6rem);
}
.contact-hero__glow {
    position: absolute;
    z-index: 0;
    top: 5rem;
    right: -12rem;
    width: 38rem;
    height: 38rem;
    border-radius: 50%;
    background: radial-gradient(circle, #b5d9ff99, #cdbaff4d 42%, transparent 70%);
    filter: blur(2rem);
    pointer-events: none;
}
.contact-hero__content,
.contact-card { position: relative; z-index: 1; }
.contact-hero__content { padding-top: clamp(2rem, 6vw, 5rem); }
.contact-hero__content h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 620;
    letter-spacing: -0.065em;
    line-height: 0.98;
}
.contact-hero__content > p:last-of-type {
    max-width: 35rem;
    margin: 1.8rem 0 0;
    color: #536079;
    font-size: clamp(0.98rem, 1.5vw, 1.12rem);
    line-height: 1.75;
}
.contact-card {
    padding: clamp(1.7rem, 3vw, 2.6rem);
    border: 1px solid rgba(156, 180, 222, 0.42);
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 1.8rem 5rem rgba(27, 63, 126, 0.12), inset 0 1px 0 #fff;
    backdrop-filter: blur(1rem);
}
.contact-direct {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dfe7f3;
}
.contact-direct span {
    color: #7a879c;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-direct a {
    color: #145fd4;
    font-size: 0.95rem;
    font-weight: 600;
}
.contact-card__top { display: flex; align-items: center; justify-content: space-between; }
.contact-card__top > svg { width: 1.6rem; height: 1.6rem; fill: none; stroke: #3970c6; stroke-width: 1.4; }
.contact-card__status { display: flex; align-items: center; gap: 0.55rem; color: #43516a; font-size: 0.78rem; font-weight: 550; }
.contact-card__status > span { width: 0.48rem; height: 0.48rem; border-radius: 50%; background: #22bd65; box-shadow: 0 0 0 0.25rem #22bd6518; }
.contact-card__label { margin: 3.8rem 0 0.6rem; color: #738099; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; }
.contact-card__email { color: #0c2656; font-size: clamp(1.15rem, 2.2vw, 1.7rem); font-weight: 600; letter-spacing: -0.035em; overflow-wrap: anywhere; }
.contact-card__note { margin: 1.4rem 0 2rem; color: #68758b; font-size: 0.84rem; line-height: 1.65; }
.contact-card__button { width: 100%; }

.contact-form-card__heading { margin: 2rem 0 1.5rem; }
.contact-form-card__heading > p {
    margin: 0 0 0.45rem;
    color: #728099;
    font-size: 0.72rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.contact-form-card__heading h2 {
    max-width: 24rem;
    margin: 0;
    color: #0b1831;
    font-size: clamp(1.65rem, 2.8vw, 2.3rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.045em;
}
.contact-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}
.contact-form__trap {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}
.form-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.5rem;
}
.form-field--wide { grid-column: 1 / -1; }
.form-field label {
    color: #34425c;
    font-size: 0.76rem;
    font-weight: 620;
}
.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #dbe4f2;
    border-radius: 0.95rem;
    outline: 0;
    background: rgba(248, 251, 255, 0.88);
    color: #0b1831;
    font: inherit;
    font-size: 0.9rem;
    transition: border-color 450ms ease, box-shadow 450ms ease, background 450ms ease;
}
.form-field input { height: 3.25rem; padding: 0 1rem; }
.form-field textarea {
    min-height: 8.5rem;
    padding: 0.9rem 1rem;
    line-height: 1.6;
    resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9aa6b8; }
.form-field input:hover,
.form-field textarea:hover { border-color: #bdcce2; }
.form-field input:focus,
.form-field textarea:focus {
    border-color: #4c82dc;
    background: #fff;
    box-shadow: 0 0 0 0.24rem rgba(40, 105, 213, 0.11);
}
.contact-form__submit {
    display: inline-flex;
    min-height: 3.3rem;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 1.15rem 0 1.3rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(120deg, #082457, #00102f);
    color: #fff;
    box-shadow: 0 0.8rem 2rem rgba(8, 36, 87, 0.13);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 620;
    cursor: pointer;
    transition: transform 500ms var(--ease-out), box-shadow 500ms ease;
}
.contact-form__submit svg {
    width: 1.15rem;
    height: 1.15rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 500ms var(--ease-out);
}
.contact-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2.4rem rgba(8, 36, 87, 0.22);
}
.contact-form__submit:hover svg { transform: translateX(3px); }
.contact-form__submit:disabled {
    opacity: 0.72;
    cursor: wait;
    transform: none;
}
.contact-form__submit:focus-visible {
    outline: 2px solid #216bdf;
    outline-offset: 4px;
}
.contact-form__privacy {
    align-self: center;
    margin: 0;
    color: #8290a6;
    font-size: 0.69rem;
    line-height: 1.45;
}
.form-notice {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin: 0 0 1.2rem;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    font-size: 0.78rem;
    line-height: 1.5;
}
.form-notice strong { font-size: 0.82rem; }
.form-notice ul { margin: 0.25rem 0 0; padding-left: 1rem; }
.form-notice--success {
    border: 1px solid #a8dfbf;
    background: #eefbf3;
    color: #14643a;
}
.form-notice--error {
    border: 1px solid #efc4c7;
    background: #fff4f4;
    color: #89303a;
}

.contact-topics { padding: clamp(4rem, 8vw, 8rem) var(--gutter); background: #fff; }
.contact-topics__intro,
.contact-topics__grid { width: min(100%, 75rem); margin-inline: auto; }
.contact-topics__intro { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3rem; }
.contact-topics__intro h2 { max-width: 34rem; margin: 0; font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 600; line-height: 1.08; letter-spacing: -0.05em; }
.contact-topics__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.contact-topic {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 19rem;
    padding: 1.7rem;
    border: 1px solid #e0e7f2;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, #fff, #f8faff);
    box-shadow: 0 1rem 2.5rem rgba(36, 61, 111, 0.04);
    transition: transform 650ms var(--ease-out), border-color 650ms ease, box-shadow 650ms ease;
}
.contact-topic:hover { transform: translateY(-5px); border-color: #a9bde1; box-shadow: 0 1.4rem 3rem rgba(36, 61, 111, 0.09); }
.contact-topic__number { grid-column: 1; color: #7890ba; font-size: 0.75rem; }
.contact-topic h3 { grid-column: 1 / -1; align-self: end; margin: 4rem 0 0.75rem; color: #101e38; font-size: 1.25rem; letter-spacing: -0.035em; }
.contact-topic p { grid-column: 1 / -1; align-self: start; margin: 0; color: #69758a; font-size: 0.86rem; line-height: 1.7; }
.contact-topic__arrow { grid-column: 2; grid-row: 1; color: #1765d8; transition: transform 500ms var(--ease-out); }
.contact-topic:hover .contact-topic__arrow { transform: translate(2px, -2px); }

.about-page { min-height: 100vh; background: #f7f9fd; }
.about-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.7fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 8rem);
    width: min(100% - (2 * var(--gutter)), 75rem);
    min-height: 42rem;
    margin: 0 auto;
    padding: clamp(9rem, 15vw, 12rem) 0 clamp(4rem, 7vw, 6rem);
    overflow: hidden;
}
.about-hero__aurora {
    position: absolute;
    z-index: 0;
    right: -11rem;
    bottom: -16rem;
    width: 45rem;
    height: 45rem;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 35%, rgba(112, 210, 255, 0.62), transparent 37%),
        radial-gradient(circle at 64% 53%, rgba(177, 141, 255, 0.52), transparent 42%);
    filter: blur(3rem);
    opacity: 0.72;
    pointer-events: none;
}
.about-hero__intro,
.about-hero__aside { position: relative; z-index: 1; }
.about-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(3.5rem, 7vw, 6.8rem);
    font-weight: 620;
    line-height: 0.92;
    letter-spacing: -0.075em;
}
.about-hero__lead {
    max-width: 27rem;
    margin: 0 0 0.65rem;
    color: #33435f;
    font-size: clamp(1.1rem, 1.8vw, 1.45rem);
    line-height: 1.55;
    letter-spacing: -0.025em;
}
.social-links--about { margin-top: 1.6rem; }
.social-links--about a {
    border-color: rgba(138, 165, 207, 0.4);
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(0.8rem);
    -webkit-backdrop-filter: blur(0.8rem);
}
.about-facts {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(100% - (2 * var(--gutter)), 75rem);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: -1.25rem auto 0;
    padding-bottom: clamp(4rem, 7vw, 6rem);
}
.about-fact {
    display: grid;
    min-height: 12rem;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: clamp(1.2rem, 3vw, 2rem);
    padding: clamp(1.4rem, 3vw, 2rem);
    border: 1px solid rgba(171, 190, 221, 0.46);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1.2rem 3rem rgba(30, 59, 112, 0.07), inset 0 1px 0 #fff;
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
}
.about-fact__icon {
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    place-items: center;
    border-radius: 1rem;
    background: linear-gradient(145deg, #edf6ff, #ebe9ff);
    color: #1765d8;
    box-shadow: inset 0 1px 0 #fff;
}
.about-fact__icon svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.about-fact span {
    display: block;
    margin-bottom: 0.35rem;
    color: #6f7e95;
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}
.about-fact strong {
    display: block;
    color: #0b1831;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    font-weight: 610;
    line-height: 1;
    letter-spacing: -0.05em;
}
.about-fact p {
    margin: 0.65rem 0 0;
    color: #627089;
    font-size: 0.8rem;
    line-height: 1.5;
}
.about-story {
    display: grid;
    grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(3rem, 9vw, 10rem);
    width: min(100% - (2 * var(--gutter)), 75rem);
    margin: 0 auto;
    padding: clamp(5rem, 9vw, 9rem) 0;
    border-top: 1px solid #dfe7f3;
}
.about-story__label {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    color: #6c7c95;
}
.about-story__label span {
    color: #1765d8;
    font-size: 0.72rem;
    font-weight: 650;
}
.about-story__label p {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.about-story__copy h2 {
    margin: 0 0 2rem;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 610;
    line-height: 1;
    letter-spacing: -0.06em;
}
.about-story__copy p {
    max-width: 46rem;
    margin: 0;
    color: #42516a;
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    line-height: 1.85;
}
.about-story__copy p + p { margin-top: 1.35rem; }
.about-principles {
    display: grid;
    width: min(100% - (2 * var(--gutter)), 75rem);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid #244a8d;
    border-radius: clamp(1.6rem, 3vw, 2.6rem);
    background:
        radial-gradient(circle at 85% 10%, #245bc4 0, transparent 33%),
        linear-gradient(135deg, #061733, #09285e 75%, #123d87);
    color: #fff;
    box-shadow: 0 1.8rem 4rem rgba(10, 39, 91, 0.16);
}
.about-principles article {
    min-height: 21rem;
    padding: clamp(1.7rem, 3vw, 2.7rem);
}
.about-principles article + article { border-left: 1px solid rgba(255, 255, 255, 0.14); }
.about-principles span {
    color: #8ebcff;
    font-size: 0.72rem;
    font-weight: 650;
}
.about-principles h2 {
    margin: 7rem 0 0.8rem;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 560;
    letter-spacing: -0.045em;
}
.about-principles p {
    max-width: 18rem;
    margin: 0;
    color: #c8d7ef;
    font-size: 0.87rem;
    line-height: 1.7;
}
.founder-story {
    display: grid;
    width: min(100% - (2 * var(--gutter)), 75rem);
    grid-template-columns: minmax(10rem, 0.55fr) minmax(0, 1.45fr);
    gap: clamp(3rem, 9vw, 10rem);
    margin: 0 auto;
    padding: clamp(6rem, 10vw, 9rem) 0 0;
}
.founder-story__label {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    color: #6c7c95;
}
.founder-story__label span {
    color: #1765d8;
    font-size: 0.72rem;
    font-weight: 650;
}
.founder-story__label p {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.founder-story__copy {
    padding: clamp(2rem, 5vw, 4rem);
    border: 1px solid #dce5f2;
    border-radius: 2rem;
    background:
        radial-gradient(circle at 93% 10%, rgba(109, 198, 255, 0.25), transparent 38%),
        #fff;
    box-shadow: 0 1.5rem 4rem rgba(30, 59, 112, 0.07);
}
.founder-story__copy h2 {
    max-width: 42rem;
    margin: 0;
    color: #08162e;
    font-size: clamp(2rem, 4.1vw, 3.8rem);
    font-weight: 610;
    line-height: 1.06;
    letter-spacing: -0.06em;
}
.founder-story__copy > p:last-child {
    max-width: 40rem;
    margin: 1.8rem 0 0;
    color: #4f5e76;
    font-size: 0.96rem;
    line-height: 1.8;
}
.founders {
    width: min(100% - (2 * var(--gutter)), 75rem);
    margin: 0 auto;
    padding: clamp(6rem, 11vw, 10rem) 0;
}
.founders__intro {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    align-items: end;
    gap: 1rem 4rem;
    margin-bottom: 3rem;
}
.founders__intro .faq-eyebrow { grid-column: 1 / -1; }
.founders__intro h2 {
    margin: 0;
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    font-weight: 610;
    line-height: 1;
    letter-spacing: -0.06em;
}
.founders__intro > p:last-child {
    max-width: 27rem;
    margin: 0 0 0.3rem;
    color: #56647b;
    line-height: 1.7;
}
.founders__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.founder-card {
    position: relative;
    min-height: 30rem;
    padding: clamp(1.7rem, 3vw, 2.7rem);
    overflow: hidden;
    border: 1px solid #dce5f2;
    border-radius: 2rem;
    background: linear-gradient(145deg, #fff, #f4f8ff);
    box-shadow: 0 1.5rem 4rem rgba(30, 59, 112, 0.07);
}
.founder-card::after {
    position: absolute;
    right: -7rem;
    bottom: -8rem;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(83, 169, 255, 0.27), transparent 68%);
    content: "";
    pointer-events: none;
}
.founder-card__portrait {
    width: 6.5rem;
    height: 6.5rem;
    padding: 0.28rem;
    overflow: hidden;
    border: 1px solid rgba(164, 186, 222, 0.5);
    border-radius: 1.8rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 1rem 2.5rem rgba(31, 68, 134, 0.16), inset 0 1px 0 #fff;
}
.founder-card__portrait img {
    width: 100%;
    height: 100%;
    border-radius: 1.52rem;
    object-fit: cover;
}
.founder-card__number {
    margin-top: 6rem;
    color: #71809a;
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.founder-card h3 {
    position: relative;
    z-index: 1;
    margin: 1rem 0 0.25rem;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 610;
    letter-spacing: -0.05em;
}
.founder-card__role {
    position: relative;
    z-index: 1;
    margin: 0 !important;
    color: #1765d8 !important;
    font-size: 0.86rem !important;
    font-weight: 650;
}
.founder-card > p:last-child {
    position: relative;
    z-index: 1;
    max-width: 25rem;
    margin: 1.4rem 0 0;
    color: #59677e;
    font-size: 0.9rem;
    line-height: 1.75;
}
.founder-card--horizontal {
    display: grid;
    min-height: 18rem;
    grid-template-columns: 11rem minmax(0, 1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
}
.founder-card--horizontal .founder-card__portrait {
    width: 11rem;
    height: 11rem;
    border-radius: 2.3rem;
}
.founder-card--horizontal .founder-card__portrait img { border-radius: 2rem; }
.founder-card--horizontal .founder-card__content {
    position: relative;
    z-index: 1;
}
.founder-card--horizontal .founder-card__number { margin-top: 0; }
.founder-card--horizontal .founder-card__content > .founder-card__role + p {
    max-width: 34rem;
    margin: 1.4rem 0 0;
    color: #59677e;
    font-size: 0.9rem;
    line-height: 1.75;
}
.founder-card__linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid #ccdaed;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: #0a66c2;
    font-size: 0.76rem;
    font-weight: 650;
    transition: transform 500ms var(--ease-out), border-color 500ms ease, box-shadow 500ms ease;
}
.founder-card__linkedin svg {
    width: 1rem;
    height: 1rem;
    flex: 0 0 auto;
    fill: currentColor;
}
.founder-card__linkedin > span:last-child {
    margin-left: 0.2rem;
    color: #466383;
    transition: transform 500ms var(--ease-out);
}
.founder-card__linkedin:hover {
    border-color: #8fb5dc;
    box-shadow: 0 0.7rem 1.8rem rgba(10, 102, 194, 0.11);
    transform: translateY(-2px);
}
.founder-card__linkedin:hover > span:last-child { transform: translate(2px, -2px); }
.founder-card__linkedin:focus-visible {
    outline: 2px solid #216bdf;
    outline-offset: 3px;
}
.about-contact {
    width: min(100% - (2 * var(--gutter)), 75rem);
    margin: 0 auto clamp(5rem, 9vw, 8rem);
    padding: clamp(2.5rem, 6vw, 5rem);
    border-radius: clamp(1.5rem, 3vw, 2.5rem);
    background: #fff;
    box-shadow: 0 1.5rem 4rem rgba(30, 59, 112, 0.07);
    text-align: center;
}
.about-contact h2 {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 610;
    line-height: 1.02;
    letter-spacing: -0.06em;
}
.about-contact a {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 2rem;
    padding: 0.9rem 1.3rem;
    border-radius: 999px;
    background: #071a3c;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    transition: transform 500ms var(--ease-out), box-shadow 500ms ease;
}
.about-contact a:hover { transform: translateY(-2px); box-shadow: 0 1rem 2.5rem rgba(7, 26, 60, 0.18); }

.download-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 28%, rgba(90, 188, 255, 0.28), transparent 32rem),
        radial-gradient(circle at 58% 88%, rgba(170, 125, 255, 0.2), transparent 30rem),
        linear-gradient(180deg, #f9fbff, #f3f7fd);
}
.early-bird {
    position: relative;
    display: grid;
    width: min(100% - (2 * var(--gutter)), 75rem);
    min-height: 100vh;
    min-height: 100svh;
    grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    margin: 0 auto;
    padding: clamp(8rem, 12vw, 10rem) 0 5rem;
}
.early-bird__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2.5rem);
    pointer-events: none;
}
.early-bird__glow--one {
    top: -14rem;
    right: -9rem;
    width: 40rem;
    height: 40rem;
    background: rgba(75, 180, 255, 0.28);
}
.early-bird__glow--two {
    right: 23%;
    bottom: -18rem;
    width: 35rem;
    height: 35rem;
    background: rgba(165, 112, 255, 0.2);
}
.early-bird__content { position: relative; z-index: 3; grid-column: 1; grid-row: 1; }
.early-bird__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0 0 1.3rem;
    color: #355686;
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.early-bird__eyebrow span {
    width: 0.48rem;
    height: 0.48rem;
    border-radius: 50%;
    background: #21c56b;
    box-shadow: 0 0 0 0.28rem rgba(33, 197, 107, 0.12);
}
.early-bird h1 {
    margin: 0;
    font-size: clamp(3.8rem, 6.6vw, 6.5rem);
    font-weight: 620;
    line-height: 0.86;
    letter-spacing: -0.08em;
}
.early-bird h1 em {
    color: #1765d8;
    font-style: normal;
}
.early-bird__content > p:not(.early-bird__eyebrow) {
    max-width: 34rem;
    margin: 2rem 0 0;
    color: #52617a;
    font-size: clamp(0.98rem, 1.4vw, 1.1rem);
    line-height: 1.75;
}
.early-bird__actions {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 2rem;
}
.early-bird__actions .button { min-width: 10rem; min-height: 3.25rem; padding-inline: 1.4rem; }
.early-bird__contact {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #142541;
    font-size: 0.86rem;
    font-weight: 600;
}
.early-bird__contact span { transition: transform 500ms var(--ease-out); }
.early-bird__contact:hover span { transform: translate(2px, -2px); }
.early-bird__visual {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(36vw, 31rem);
    aspect-ratio: 0.92;
    place-items: center;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
}
.early-bird__visual::before {
    position: absolute;
    inset: 6%;
    border-radius: 38%;
    background:
        radial-gradient(circle at 50% 38%, rgba(79, 180, 255, 0.46), transparent 42%),
        radial-gradient(circle at 45% 72%, rgba(152, 109, 246, 0.32), transparent 48%);
    filter: blur(1.8rem);
    content: "";
}
.early-bird__visual::after {
    position: absolute;
    inset: 10%;
    border-radius: 2.8rem;
    background-image: radial-gradient(circle, rgba(61, 104, 171, 0.16) 1px, transparent 1.2px);
    background-size: 1rem 1rem;
    content: "";
    mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}
.early-bird__signal {
    position: relative;
    z-index: 1;
    display: flex;
    width: 78%;
    min-height: 78%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 2.5rem;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 2rem 5rem rgba(31, 74, 152, 0.17), inset 0 1px 0 #fff;
    backdrop-filter: blur(1.3rem) saturate(120%);
    -webkit-backdrop-filter: blur(1.3rem) saturate(120%);
}
.early-bird__signal-top {
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    left: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.38rem;
}
.early-bird__signal-top > span {
    width: 0.44rem;
    height: 0.44rem;
    border-radius: 50%;
}
.early-bird__signal-top > span:nth-child(1) { background: #ff5f57; }
.early-bird__signal-top > span:nth-child(2) { background: #ffbd2e; }
.early-bird__signal-top > span:nth-child(3) { background: #28c840; }
.early-bird__signal-top small {
    margin-left: auto;
    color: #6d7e98;
    font-size: 0.68rem;
    font-weight: 620;
}
.early-bird__icon {
    position: relative;
    display: grid;
    width: 44%;
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28%;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 2rem 5rem rgba(31, 74, 152, 0.2), inset 0 1px 0 #fff;
    backdrop-filter: blur(1rem);
    animation: early-float 7s ease-in-out infinite;
}
.early-bird__icon svg { width: 68%; height: 68%; overflow: hidden; border-radius: 24%; }
.early-bird__signal > p {
    margin: 1.65rem 0 0.28rem;
    color: #60718b;
    font-size: 0.68rem;
    font-weight: 650;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.early-bird__signal > strong {
    color: #0b1831;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 610;
    letter-spacing: -0.04em;
}
.early-bird__progress {
    width: min(75%, 13rem);
    height: 0.28rem;
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(91, 116, 157, 0.14);
}
.early-bird__progress span {
    display: block;
    width: 74%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #186be2, #43ccef);
}
.early-bird__note {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 2rem;
    left: 0;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-top: 1.1rem;
    border-top: 1px solid #dce5f2;
    color: #7b899f;
    font-size: 0.72rem;
}

@keyframes early-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-0.7rem) rotate(1deg); }
}

@media (max-width: 52rem) {
    .site-footer__inner { grid-template-columns: 1.4fr 0.7fr; }
    .footer-contact { grid-column: 1 / -1; }
    .contact-hero { grid-template-columns: 1fr; gap: 3rem; }
    .contact-hero__content { max-width: 38rem; padding-top: 0; }
    .contact-card { width: min(100%, 35rem); }
    .contact-topics__grid { grid-template-columns: 1fr; }
    .contact-topic { min-height: 13rem; }
    .contact-topic h3 { margin-top: 2rem; }
    .about-hero { grid-template-columns: 1fr; min-height: 42rem; }
    .about-hero__lead { max-width: 36rem; }
    .about-facts { margin-top: 0; }
    .about-story { grid-template-columns: 1fr; gap: 2rem; }
    .about-principles { grid-template-columns: 1fr; }
    .about-principles article { min-height: 15rem; }
    .about-principles article + article { border-top: 1px solid rgba(255, 255, 255, 0.14); border-left: 0; }
    .about-principles h2 { margin-top: 4rem; }
    .founder-story { grid-template-columns: 1fr; gap: 2rem; }
    .early-bird {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 6rem;
    }
    .early-bird__content { grid-row: 1; }
    .early-bird__visual {
        width: min(70vw, 28rem);
        grid-column: 1;
        grid-row: 2;
        margin-top: 1rem;
    }
}

@media (max-width: 44rem) {
    .contact-cta__inner { grid-template-columns: 1fr; padding: 2rem 1.5rem; }
    .contact-cta__action p { margin-bottom: 1.25rem; }
    .site-footer__inner { grid-template-columns: 1fr; }
    .footer-contact { grid-column: auto; }
    .footer-brand { transform-origin: left center; transform: scale(0.88); }
    .site-footer__bottom { flex-direction: column; gap: 0.65rem; }
    .contact-hero { min-height: auto; padding-top: 7.25rem; }
    .contact-hero__glow { right: -18rem; }
    .contact-hero__content h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
    .contact-card__label { margin-top: 2.8rem; }
    .contact-form { grid-template-columns: 1fr; }
    .form-field--wide { grid-column: auto; }
    .contact-form__submit { width: 100%; }
    .contact-form__privacy { text-align: center; }
    .contact-topics__intro { display: block; }
    .contact-topics__intro .faq-eyebrow { margin-bottom: 1rem; }
    .about-hero { min-height: 37rem; padding-top: 8rem; }
    .about-hero h1 { font-size: clamp(3.1rem, 15vw, 4.5rem); }
    .about-story { padding-block: 4.5rem; }
    .about-facts { grid-template-columns: 1fr; padding-bottom: 4rem; }
    .about-fact { min-height: 9.5rem; }
    .about-story__copy p { font-size: 0.96rem; }
    .about-principles { border-radius: 1.5rem; }
    .about-principles article { min-height: 13.5rem; padding: 1.5rem; }
    .about-principles h2 { margin-top: 3.5rem; }
    .founders { padding-block: 5rem; }
    .founders__intro,
    .founders__grid { grid-template-columns: 1fr; }
    .founders__intro { gap: 1rem; }
    .founders__intro .faq-eyebrow { grid-column: auto; }
    .founder-card { min-height: 25rem; border-radius: 1.5rem; }
    .founder-card__number { margin-top: 4.5rem; }
    .founder-card--horizontal {
        min-height: 0;
        grid-template-columns: 6.5rem minmax(0, 1fr);
        gap: 1.25rem;
        padding: 1.35rem;
    }
    .founder-card--horizontal .founder-card__portrait {
        width: 6.5rem;
        height: 6.5rem;
        border-radius: 1.6rem;
    }
    .founder-card--horizontal .founder-card__portrait img { border-radius: 1.35rem; }
    .founder-card--horizontal .founder-card__number { margin-top: 0; }
    .founder-story { padding-top: 4.5rem; }
    .founder-story__copy { padding: 1.5rem; border-radius: 1.5rem; }
    .founder-story__copy > p:last-child { margin-top: 1.25rem; font-size: 0.88rem; }
    .founder-card--horizontal .founder-card__content > .founder-card__role + p { margin-top: 0.9rem; font-size: 0.82rem; }
    .founder-card__linkedin { width: 100%; justify-content: center; }
    .about-contact { padding: 3rem 1.35rem; }
    .download-page { padding: 0; }
    .early-bird {
        width: 100%;
        min-height: 100vh;
        min-height: 100svh;
        padding: 7rem 1.35rem 5.5rem;
        border-width: 0;
        border-radius: 0;
    }
    .early-bird h1 { font-size: clamp(3.35rem, 16vw, 4.25rem); }
    .early-bird__content > p:not(.early-bird__eyebrow) { margin-top: 1.5rem; font-size: 0.94rem; }
    .early-bird__actions { align-items: flex-start; flex-direction: column; gap: 1.1rem; }
    .early-bird__actions .button { width: 100%; }
    .early-bird__visual { width: min(80vw, 22rem); }
    .early-bird__note { right: 1.35rem; bottom: 1.5rem; left: 1.35rem; }
    .early-bird__note span:first-child { display: none; }
    .early-bird__note { justify-content: center; }
}

@keyframes header-in {
    from { opacity: 0; transform: translateY(-0.4rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes rise-in {
    from { opacity: 0; transform: translateY(0.65rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes product-in {
    from { opacity: 0; transform: translate(-50%, 1rem) scale(0.995); }
    to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

@media (min-width: 96rem) {
    .hero__product { width: 52.4rem; }
}

@media (max-width: 68rem) {
    .site-header { padding-top: 0.85rem; }

    .header-shell {
        position: relative;
        display: flex;
        height: 3.5rem;
        justify-content: space-between;
    }

    .brand {
        width: 15.8rem;
        height: 2.75rem;
    }

    .brand__lockup {
        transform: scale(0.88);
    }

    .menu-toggle {
        position: relative;
        z-index: 33;
        display: inline-flex;
    }

    .header-actions {
        position: absolute;
        z-index: 32;
        top: calc(100% + 0.5rem);
        right: 0;
        display: flex;
        width: min(23rem, calc(100vw - 3rem));
        align-items: stretch;
        flex-direction: column;
        padding: 0.8rem;
        visibility: hidden;
        opacity: 0;
        border: 1px solid rgba(12, 40, 102, 0.1);
        border-radius: 1.25rem;
        background: rgba(255, 255, 255, 0.88);
        box-shadow: 0 1.5rem 4rem rgba(45, 71, 133, 0.16);
        backdrop-filter: blur(24px) saturate(130%);
        -webkit-backdrop-filter: blur(24px) saturate(130%);
        transform: translateY(-0.5rem) scale(0.98);
        transform-origin: top right;
        pointer-events: none;
        transition: opacity 500ms ease, transform 500ms var(--ease-out), visibility 500ms ease;
    }

    .is-menu-open .header-actions {
        visibility: visible;
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .primary-nav ul {
        align-items: stretch;
        flex-direction: column;
        gap: 0.1rem;
    }

    .primary-nav a,
    .sign-in-link {
        padding: 0.8rem 1rem;
        border-radius: 0.75rem;
    }

    .primary-nav a:hover,
    .sign-in-link:hover { background: rgba(31, 76, 177, 0.06); }

    .primary-nav a::after,
    .sign-in-link::after { display: none; }

    .account-actions {
        align-items: stretch;
        flex-direction: column;
        margin-top: 0.2rem;
        margin-right: 0;
        gap: 0.2rem;
    }

    .sign-in-link { text-align: left; }
    .header-download { margin-top: 0.2rem; }
    .hero__content { padding-top: 8.75rem; }
    .hero h1 { font-size: clamp(2.8rem, 6vw, 3.6rem); }
    .hero__product { width: min(52.4rem, 88vw); }

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

    .closer-look__intro {
        grid-template-columns: minmax(14rem, 17rem) minmax(0, 1fr);
        gap: 2.5rem;
    }

    .feature-card:last-child {
        width: calc(50% - 0.5rem);
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 44rem) {
    :root { --gutter: 1.15rem; }

    .integrations {
        padding: 0 1rem 4.5rem;
    }

    .integration-map {
        --app-height: 7rem;
        --connection-height: 7rem;
        margin-top: 2.75rem;
    }

    .integration-app { width: 92%; }

    .integration-app__tile {
        gap: 0.75rem;
        border-radius: 1.1rem;
    }

    .integration-app img {
        width: clamp(2rem, 8vw, 3rem);
        height: clamp(2rem, 8vw, 3rem);
    }

    .integration-app h3 {
        font-size: clamp(0.7rem, 2.8vw, 0.9rem);
        white-space: nowrap;
    }

    .integration-hub {
        width: 13.5rem;
        min-height: 7rem;
        border-radius: 1.4rem;
    }

    .integration-hub__name { font-size: 2rem; }

    .site-header {
        padding: 0.75rem 1rem 0;
    }

    .header-shell {
        height: 3rem;
    }

    .hero {
        min-height: 100svh;
        background-position: 52% top;
    }

    .hero::before {
        background:
            radial-gradient(circle at -10% 78%, rgba(196, 133, 255, 0.32), transparent 34%),
            radial-gradient(circle at 110% 75%, rgba(67, 190, 255, 0.34), transparent 38%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%);
    }

    .brand {
        width: 13rem;
        height: 2.35rem;
    }

    .brand__lockup {
        transform: scale(0.725);
    }

    .menu-toggle {
        width: 2.75rem;
        height: 2.75rem;
        background: rgba(255, 255, 255, 0.74);
        box-shadow: 0 0.5rem 1.5rem rgba(30, 57, 119, 0.08);
    }

    .header-actions {
        top: calc(100% + 0.4rem);
        width: calc(100vw - 2rem);
        padding: 0.7rem;
        border-radius: 1.35rem;
        background: rgba(255, 255, 255, 0.94);
    }

    .primary-nav a,
    .sign-in-link {
        padding: 0.78rem 0.9rem;
        font-size: 0.92rem;
    }

    .header-download {
        min-height: 2.75rem;
    }

    .hero__content {
        width: calc(100% - (2 * var(--gutter)));
        padding-top: 6.65rem;
    }

    .hero h1 {
        max-width: 22rem;
        margin-top: 0;
        margin-inline: auto;
        font-size: clamp(2.45rem, 11.5vw, 3.15rem);
        letter-spacing: -0.06em;
        line-height: 1;
    }

    .hero__description {
        max-width: 21.5rem;
        margin-top: 0.95rem;
        font-size: 0.94rem;
        line-height: 1.5;
    }

    .hero__actions {
        flex-direction: column;
        margin-top: 1.2rem;
        gap: 0.55rem;
    }

    .button--primary {
        width: min(100%, 19rem);
        min-width: 0;
    }

    .button--watch {
        min-height: 2.4rem;
        font-size: 0.9rem;
    }

    .hero__benefits {
        display: grid;
        width: min(100%, 23rem);
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 1.15rem auto 0;
        gap: 0.45rem;
    }

    .hero__benefits li {
        min-width: 0;
        min-height: 4.4rem;
        justify-content: center;
        flex-direction: column;
        padding: 0.6rem 0.25rem;
        border: 1px solid rgba(59, 94, 173, 0.09);
        border-radius: 0.9rem;
        background: rgba(255, 255, 255, 0.42);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
        font-size: 0.67rem;
        line-height: 1.15;
        text-align: center;
        white-space: normal;
        gap: 0.42rem;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .hero__benefits svg {
        width: 1.2rem;
        height: 1.2rem;
    }

    .hero__product {
        position: relative;
        top: auto;
        left: auto;
        width: clamp(26rem, calc(100% - 2rem), 38rem);
        margin: 1.55rem auto 0;
        transform: none;
        animation: mobile-product-in 1.5s 160ms var(--ease-reveal) both;
    }

    .work-panel {
        position: relative;
        top: auto;
        left: auto;
        width: calc(100% - 1rem);
        min-height: 10rem;
        margin: -1rem auto 0;
        padding: 1.25rem 0.75rem 1.75rem;
        border-radius: 2rem 2rem 0 0;
        transform: none;
    }

    .work-panel p {
        font-size: 1rem;
        line-height: 1.25;
    }

    .work-panel .operating-systems {
        display: grid;
        width: min(100%, 20rem);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-right: auto;
        margin-top: 0.55rem;
        margin-left: auto;
        gap: 0.4rem;
    }

    .operating-systems li {
        width: 100%;
        height: 3.4rem;
        padding: 0;
        grid-column: auto;
    }

    .operating-systems li:nth-child(3) {
        width: 50%;
        grid-column: 1 / -1;
        justify-self: center;
    }

    .work-panel p {
        max-width: 18rem;
        margin-inline: auto;
    }

    .closer-look {
        padding: 4.5rem 1rem 5.5rem;
    }

    .closer-look__intro {
        width: min(100%, 28rem);
        grid-template-columns: 1fr;
        margin: 0 auto;
        gap: 1.25rem;
    }

    .closer-look__intro h2 {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
        line-height: 1.08;
    }

    .closer-look__intro p {
        max-width: 25rem;
        margin-top: 0;
        font-size: 0.92rem;
    }

    .closer-look__grid {
        width: min(100%, 28rem);
        grid-template-columns: 1fr;
        margin: 3rem auto 0;
        gap: 1.5rem;
    }

    .feature-card:last-child {
        width: 100%;
        grid-column: auto;
    }

    .feature-card:hover {
        transform: none;
    }

    @keyframes mobile-product-in {
        from {
            opacity: 0;
            transform: translateY(0.75rem) scale(0.995);
        }

        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }
}

/* Technology */
.site-header--inverse .brand__divider { background: rgba(255, 255, 255, 0.6); }
.site-header--inverse .brand__wordmark img { filter: none; }
.site-header--inverse .primary-nav a,
.site-header--inverse .sign-in-link { color: #f7f9ff; }
.site-header--inverse .primary-nav a::after,
.site-header--inverse .sign-in-link::after { background: #69d8ff; }
.site-header--inverse .header-download {
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: #fff;
    color: #07142d;
    box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.18);
}
.site-header--inverse .menu-toggle { border-color: rgba(255, 255, 255, 0.18); background: rgba(13, 24, 53, 0.72); }
.site-header--inverse .menu-toggle__icon span { background: #fff; }

.tech-page {
    background: #f5f7fc;
    color: #071127;
}
.tech-hero {
    position: relative;
    isolation: isolate;
    min-height: 62rem;
    overflow: hidden;
    padding: clamp(8rem, 11vw, 10rem) var(--gutter) clamp(5rem, 8vw, 8rem);
    background:
        radial-gradient(circle at 76% 18%, rgba(64, 105, 255, 0.22), transparent 31%),
        radial-gradient(circle at 20% 88%, rgba(117, 64, 230, 0.16), transparent 34%),
        linear-gradient(145deg, #050b19 0%, #0a1732 54%, #071127 100%);
    color: #f7f9ff;
}
.tech-hero__grid,
.tech-security__grid {
    position: absolute;
    z-index: -1;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(155, 185, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(155, 185, 255, 0.2) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.tech-hero__glow {
    position: absolute;
    z-index: -1;
    width: 25rem;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(6rem);
    pointer-events: none;
}
.tech-hero__glow--blue { top: 20%; right: -10rem; background: rgba(19, 111, 255, 0.25); }
.tech-hero__glow--violet { bottom: -14rem; left: 12%; background: rgba(124, 75, 255, 0.2); }
.tech-hero__inner,
.tech-section__inner { width: min(100%, 78rem); margin: 0 auto; }
.tech-hero__inner {
    display: grid;
    grid-template-columns: minmax(20rem, 0.82fr) minmax(32rem, 1.18fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 7rem);
}
.tech-hero__copy { position: relative; z-index: 2; }
.tech-back {
    display: inline-flex;
    margin-bottom: 3.5rem;
    color: #a9b7d3;
    font-size: 0.82rem;
    transition: color 450ms ease, transform 450ms var(--ease-out);
}
.tech-back:hover { color: #fff; transform: translateX(-0.2rem); }
.tech-kicker,
.tech-eyebrow {
    margin: 0 0 1.4rem;
    color: #73cfff;
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.tech-kicker { display: flex; align-items: center; gap: 0.65rem; }
.tech-kicker > span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #48df9e;
    box-shadow: 0 0 0 0.3rem rgba(72, 223, 158, 0.1), 0 0 1.2rem rgba(72, 223, 158, 0.55);
}
.tech-hero h1 {
    margin: 0;
    font-size: clamp(3.4rem, 6vw, 5.9rem);
    font-weight: 580;
    letter-spacing: -0.072em;
    line-height: 0.96;
}
.tech-hero h1 em { color: #74a8ff; font-style: normal; }
.tech-hero__lead {
    max-width: 35rem;
    margin: 2rem 0 0;
    color: #bcc8dd;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.7;
}
.tech-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 2.2rem 0 0;
    padding: 0;
    list-style: none;
}
.tech-signals li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.58rem 0.75rem;
    border: 1px solid rgba(158, 187, 241, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.045);
    color: #d6def0;
    font-size: 0.69rem;
}
.tech-signals li span { width: 0.32rem; height: 0.32rem; border-radius: 50%; background: #68caff; }
.architecture-board {
    position: relative;
    padding: 1.15rem;
    border: 1px solid rgba(152, 185, 242, 0.18);
    border-radius: 2rem;
    background: rgba(10, 20, 43, 0.68);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 2rem 6rem rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(1.4rem);
}
.architecture-board__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 0.3rem 1rem;
    color: #8fa1c0;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.architecture-board__state { display: flex; align-items: center; gap: 0.45rem; color: #c8d5ea; }
.architecture-board__state i { width: 0.42rem; height: 0.42rem; border-radius: 50%; background: #45dd92; box-shadow: 0 0 0.8rem #45dd92; }
.architecture-board__clients,
.architecture-board__layers { display: grid; gap: 0.7rem; }
.architecture-board__clients { grid-template-columns: repeat(2, 1fr); }
.architecture-board__layers { grid-template-columns: repeat(3, 1fr); }
.architecture-node {
    position: relative;
    min-width: 0;
    padding: 1rem;
    border: 1px solid rgba(145, 179, 238, 0.14);
    border-radius: 1rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}
.architecture-node small { display: block; color: #6b84ae; font-size: 0.58rem; }
.architecture-node strong { display: block; margin-top: 1rem; color: #eef3ff; font-size: 0.8rem; }
.architecture-node > span { display: block; margin-top: 0.3rem; color: #8495b1; font-size: 0.64rem; }
.architecture-board__route { display: flex; justify-content: space-around; height: 2.4rem; padding-inline: 10%; }
.architecture-board__route i { position: relative; width: 1px; height: 100%; background: linear-gradient(#4d75ad, #62c5ff); }
.architecture-board__route i::after { position: absolute; right: -0.2rem; bottom: 0; width: 0.4rem; height: 0.4rem; border-radius: 50%; background: #62c5ff; box-shadow: 0 0 1rem #62c5ff; content: ""; }
.architecture-board__route i:nth-child(2) { opacity: 0.35; }
.architecture-core {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem;
    border: 1px solid rgba(112, 187, 255, 0.35);
    border-radius: 1.15rem;
    background: linear-gradient(120deg, rgba(24, 87, 188, 0.34), rgba(92, 62, 180, 0.24));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 2.5rem rgba(24, 108, 227, 0.12);
}
.architecture-core__mark { display: grid; width: 2.8rem; aspect-ratio: 1; place-items: center; border-radius: 0.85rem; background: linear-gradient(145deg, #1478ff, #7257f2); color: #fff; font-size: 1.2rem; font-weight: 700; }
.architecture-core small { display: block; color: #8fa9d2; font-size: 0.58rem; text-transform: uppercase; }
.architecture-core strong { display: block; margin-top: 0.18rem; font-size: 0.95rem; }
.architecture-core > span { padding: 0.5rem 0.65rem; border-radius: 999px; background: rgba(255, 255, 255, 0.08); color: #b9c9e2; font-size: 0.58rem; }
.architecture-board__route--down i { background: linear-gradient(#62c5ff, #4d75ad); }
.architecture-note { grid-column: 1 / -1; max-width: 54rem; margin: 1.8rem auto 0; color: #8494af; font-size: 0.72rem; line-height: 1.6; text-align: center; }
.architecture-note strong { color: #c0cce0; }

.tech-section { padding: clamp(5.5rem, 9vw, 9rem) var(--gutter); }
.tech-section__intro {
    display: grid;
    grid-template-columns: 10rem minmax(18rem, 1fr) minmax(20rem, 0.9fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 5rem);
}
.tech-section__number { margin: 0.25rem 0 0; color: #75839a; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.tech-section h2,
.tech-security h2 { margin: 0; font-size: clamp(2.6rem, 4.8vw, 4.75rem); font-weight: 580; letter-spacing: -0.065em; line-height: 0.98; }
.tech-section__summary { color: #4e5c73; font-size: 0.93rem; line-height: 1.75; }
.tech-section__summary p { margin: 0; }
.tech-section__summary p + p { margin-top: 1rem; }
.tech-eyebrow { margin-bottom: 1rem; color: #1765d8; }
.system-principle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 6rem);
    margin: clamp(4rem, 7vw, 7rem) 0 0 10rem;
    padding: clamp(2rem, 4vw, 3.5rem);
    border: 1px solid #dce5f2;
    border-radius: 2rem;
    background: linear-gradient(145deg, #fff, #f3f7ff);
    box-shadow: 0 1.5rem 4rem rgba(38, 66, 126, 0.07);
}
.system-principle p,
.system-principle strong { margin: 0; font-size: clamp(1rem, 1.6vw, 1.25rem); line-height: 1.55; }
.system-principle p { color: #5a667a; }
.system-principle strong { color: #10213f; font-weight: 550; }
.tech-engine { background: #fff; }
.engine-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: clamp(4rem, 7vw, 7rem);
    border-top: 1px solid #dfe6f2;
    border-left: 1px solid #dfe6f2;
}
.engine-card { min-height: 13rem; padding: 1.35rem; border-right: 1px solid #dfe6f2; border-bottom: 1px solid #dfe6f2; background: #fff; transition: background 550ms ease, transform 550ms var(--ease-out); }
.engine-card:hover { z-index: 1; background: #f3f8ff; transform: translateY(-0.25rem); }
.engine-card > span { color: #8594aa; font-size: 0.62rem; }
.engine-card h3 { margin: 4.2rem 0 0.55rem; color: #0b1932; font-size: 1.02rem; letter-spacing: -0.03em; }
.engine-card p { margin: 0; color: #66738a; font-size: 0.78rem; line-height: 1.6; }
.tech-footnote { max-width: 46rem; margin: 2rem 0 0 auto; color: #657289; font-size: 0.78rem; line-height: 1.65; }
.tech-client-server { background: linear-gradient(180deg, #f3f6fc, #eef4fc); }
.tech-flow { display: grid; grid-template-columns: 1fr 5rem 1.15fr 5rem 1fr; align-items: center; margin-top: clamp(4rem, 7vw, 7rem); }
.tech-flow__node { min-height: 14rem; padding: 1.5rem; border: 1px solid #d9e3f2; border-radius: 1.5rem; background: rgba(255, 255, 255, 0.76); box-shadow: 0 1rem 3rem rgba(43, 69, 122, 0.06); }
.tech-flow__node--core { border-color: #78a9ed; background: linear-gradient(145deg, #0d3d88, #111d4e); color: #fff; box-shadow: 0 1.5rem 4rem rgba(21, 69, 148, 0.2); }
.tech-flow__node > span { color: #7789a7; font-size: 0.62rem; }
.tech-flow__node--core > span { color: #8fc8ff; }
.tech-flow__node h3 { margin: 4.5rem 0 0.6rem; font-size: 1.2rem; letter-spacing: -0.035em; }
.tech-flow__node p { margin: 0; color: #65738a; font-size: 0.78rem; line-height: 1.6; }
.tech-flow__node--core p { color: #b9c9e2; }
.tech-flow__line { position: relative; height: 1px; background: #a9bad3; }
.tech-flow__line i { position: absolute; top: -0.22rem; right: 0; width: 0.45rem; height: 0.45rem; border-radius: 50%; background: #2677ea; box-shadow: 0 0 0.9rem #2677ea; }
.access-callout { display: grid; grid-template-columns: 5rem 1fr; align-items: center; gap: 2rem; width: min(100%, 52rem); margin: 2rem auto 0; padding: 1.2rem 1.4rem; border: 1px solid #d8e4f5; border-radius: 1.15rem; background: rgba(255, 255, 255, 0.68); }
.access-callout span { color: #1765d8; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; }
.access-callout p { margin: 0; color: #52617a; font-size: 0.8rem; line-height: 1.6; }
.tech-integrations { background: #fff; }
.tech-integration-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0.8rem; margin: clamp(4rem, 7vw, 7rem) 0 0; padding: 0; list-style: none; }
.tech-integration { display: flex; min-height: 11rem; align-items: center; flex-direction: column; justify-content: center; padding: 1rem; border: 1px solid #dfe7f2; border-radius: 1.35rem; background: linear-gradient(145deg, #fff, #f5f8fd); text-align: center; transition: transform 550ms var(--ease-out), box-shadow 550ms ease; }
.tech-integration:hover { transform: translateY(-0.3rem); box-shadow: 0 1.2rem 2.8rem rgba(35, 65, 123, 0.1); }
.tech-integration > span { display: grid; width: 3.2rem; aspect-ratio: 1; place-items: center; border-radius: 1rem; background: linear-gradient(145deg, #eaf4ff, #ebe8ff); color: #1765d8; font-size: 0.78rem; font-weight: 700; }
.tech-integration strong { margin-top: 1rem; font-size: 0.82rem; }
.tech-integration small { margin-top: 0.35rem; color: #7a879c; font-size: 0.6rem; text-transform: uppercase; }

.tech-security {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(6rem, 10vw, 10rem) var(--gutter);
    background: linear-gradient(150deg, #050b18, #09172f 58%, #101436);
    color: #f5f8ff;
}
.tech-security__grid { opacity: 0.1; mask-image: linear-gradient(#000, transparent); }
.tech-section__intro--security .tech-section__number { color: #7084a7; }
.tech-section__intro--security .tech-eyebrow { color: #71d3ff; }
.tech-section__intro--security .tech-section__summary { color: #acbad2; }
.security-table { margin-top: clamp(4rem, 7vw, 7rem); overflow-x: auto; border: 1px solid rgba(147, 178, 231, 0.18); border-radius: 1.5rem; background: rgba(255, 255, 255, 0.035); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); }
.security-table:focus-visible { outline: 2px solid #65cfff; outline-offset: 4px; }
.security-table__heading { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.3rem 1.5rem; border-bottom: 1px solid rgba(147, 178, 231, 0.15); }
.security-table__heading h3 { margin: 0; font-size: 1rem; font-weight: 550; }
.security-table__heading span { color: #8192af; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em; }
.security-table table { width: 100%; min-width: 44rem; border-collapse: collapse; }
.security-table th,
.security-table td { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(147, 178, 231, 0.1); text-align: left; }
.security-table thead th { color: #7084a7; font-size: 0.61rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.security-table tbody th { width: 35%; color: #dce5f6; font-size: 0.78rem; font-weight: 520; }
.security-table tbody td { color: #aebbd1; font-size: 0.76rem; }
.security-table tbody tr:last-child th,
.security-table tbody tr:last-child td { border-bottom: 0; }
.security-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem; margin-top: 1rem; }
.security-card { min-height: 18rem; padding: clamp(1.5rem, 3vw, 2.2rem); border: 1px solid rgba(147, 178, 231, 0.14); border-radius: 1.5rem; background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)); }
.security-card--wide { grid-column: 1 / -1; min-height: 15rem; }
.security-card > span { color: #73cfff; font-size: 0.62rem; letter-spacing: 0.09em; text-transform: uppercase; }
.security-card h3 { max-width: 34rem; margin: 3.6rem 0 1rem; font-size: clamp(1.45rem, 2.4vw, 2.1rem); font-weight: 540; letter-spacing: -0.045em; line-height: 1.05; }
.security-card p { max-width: 50rem; margin: 0; color: #aab8cf; font-size: 0.82rem; line-height: 1.72; }
.security-card p + p { margin-top: 1rem; }
.security-card ul { margin: 1rem 0; padding-left: 1.1rem; color: #c5d1e3; font-size: 0.76rem; line-height: 1.8; }
.tech-release { background: linear-gradient(180deg, #f8faff, #eef4fc); }
.release-panel { display: grid; grid-template-columns: 1fr 4rem 1fr 4rem 1fr; align-items: center; margin-top: clamp(4rem, 7vw, 7rem); }
.release-panel > div { min-height: 14rem; padding: 1.5rem; border: 1px solid #dbe5f2; border-radius: 1.5rem; background: rgba(255, 255, 255, 0.8); }
.release-panel span { color: #1765d8; font-size: 0.62rem; font-weight: 650; letter-spacing: 0.1em; text-transform: uppercase; }
.release-panel strong { display: block; margin-top: 4rem; font-size: 1.2rem; letter-spacing: -0.035em; }
.release-panel p { margin: 0.55rem 0 0; color: #637188; font-size: 0.76rem; line-height: 1.55; }
.release-panel > i { height: 1px; background: linear-gradient(90deg, #a9b9d0, #3d83e8, #a9b9d0); }
.release-disclosure { margin-top: 2rem; padding: clamp(2rem, 4vw, 3rem); border-radius: 1.75rem; background: #071a3c; color: #fff; }
.release-disclosure p { max-width: 58rem; margin: 0; color: #bdcbe0; font-size: 0.86rem; line-height: 1.72; }
.release-disclosure p + p { margin-top: 1rem; }
.release-disclosure strong { color: #fff; }
.release-disclosure a { display: inline-flex; align-items: center; gap: 1.5rem; margin-top: 1.7rem; padding: 0.75rem 1rem; border-radius: 999px; background: #fff; color: #071a3c; font-size: 0.78rem; font-weight: 650; }

@media (max-width: 68rem) {
    .site-header--inverse .header-actions { border-color: rgba(148, 180, 231, 0.18); background: rgba(7, 17, 39, 0.94); }
    .site-header--inverse .primary-nav a:hover,
    .site-header--inverse .sign-in-link:hover { background: rgba(255, 255, 255, 0.07); }
    .tech-hero__inner { grid-template-columns: 1fr; }
    .tech-hero__copy { max-width: 48rem; }
    .architecture-board { width: min(100%, 44rem); margin-inline: auto; }
    .tech-section__intro { grid-template-columns: 8rem 1fr; }
    .tech-section__summary { grid-column: 2; }
    .system-principle { margin-left: 8rem; }
    .engine-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-flow { grid-template-columns: 1fr; gap: 0.7rem; }
    .tech-flow__line { width: 1px; height: 2.5rem; margin-inline: auto; }
    .tech-flow__line i { top: auto; right: -0.22rem; bottom: 0; }
    .tech-integration-grid { grid-template-columns: repeat(3, 1fr); }
    .release-panel { grid-template-columns: 1fr; gap: 0.7rem; }
    .release-panel > i { width: 1px; height: 2rem; margin-inline: auto; }
}

@media (max-width: 44rem) {
    .site-header--inverse .menu-toggle { background: rgba(7, 17, 39, 0.82); box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.16); }
    .tech-hero { min-height: auto; padding: 7rem 1rem 4.5rem; }
    .tech-back { margin-bottom: 2.5rem; }
    .tech-hero h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
    .tech-hero__lead { font-size: 0.94rem; }
    .architecture-board { padding: 0.8rem; border-radius: 1.4rem; }
    .architecture-board__clients,
    .architecture-board__layers { grid-template-columns: 1fr; }
    .architecture-board__route { height: 1.5rem; }
    .architecture-board__route i:not(:first-child) { display: none; }
    .architecture-core { grid-template-columns: auto 1fr; }
    .architecture-core > span { display: none; }
    .architecture-node { padding: 0.85rem; }
    .architecture-node strong { margin-top: 0.55rem; }
    .architecture-note { text-align: left; }
    .tech-section,
    .tech-security { padding: 5rem 1.15rem; }
    .tech-section__intro { grid-template-columns: 1fr; gap: 1.25rem; }
    .tech-section__summary { grid-column: auto; }
    .tech-section h2,
    .tech-security h2 { font-size: clamp(2.65rem, 13vw, 3.8rem); }
    .system-principle { grid-template-columns: 1fr; margin: 3rem 0 0; padding: 1.4rem; border-radius: 1.4rem; }
    .engine-grid { grid-template-columns: 1fr; margin-top: 3rem; }
    .engine-card { min-height: 10rem; }
    .engine-card h3 { margin-top: 2.5rem; }
    .tech-flow { margin-top: 3rem; }
    .tech-flow__node { min-height: 11rem; }
    .tech-flow__node h3 { margin-top: 2.8rem; }
    .access-callout { grid-template-columns: 1fr; gap: 0.7rem; }
    .tech-integration-grid { grid-template-columns: repeat(2, 1fr); margin-top: 3rem; }
    .tech-integration { min-height: 9rem; }
    .security-table { margin-right: -0.4rem; margin-left: -0.4rem; border-radius: 1rem; }
    .security-table__heading { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
    .security-table th,
    .security-table td { padding: 0.9rem 1rem; }
    .security-grid { grid-template-columns: 1fr; }
    .security-card,
    .security-card--wide { grid-column: auto; min-height: 0; }
    .security-card h3 { margin-top: 2.8rem; }
    .release-panel { margin-top: 3rem; }
    .release-panel > div { min-height: 11rem; }
    .release-panel strong { margin-top: 2.8rem; }
}

@media (max-width: 23rem) {
    .brand {
        width: 11.85rem;
    }

    .brand__lockup {
        transform: scale(0.66);
    }

    .hero__content {
        padding-top: 6.35rem;
    }

    .hero h1 {
        font-size: 2.35rem;
    }

    .hero__benefits li {
        font-size: 0.62rem;
    }
}

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

    .integration-map__flow { display: none; }

    .button:active,
    .header-download:active { scale: none; }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-delay: 0ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
    }
}
