:root {
    --ink: #0a0e1a;
    --paper: #f6f7f9;
    --blue: #2f5cff;
    --amber: #ffb648;
    --slate: #4b5563;
    --mist: #9ba3b4;
    --white: #ffffff;
    --line: #dfe4ec;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Sora, Arial, sans-serif;
    line-height: 1.75;
    font-weight: 400;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px clamp(18px, 5vw, 72px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 0;
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font: 800 34px "Baloo 2", Sora, sans-serif;
    letter-spacing: 0;
    line-height: 1;
}

.brand .wordmark {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: none;
    color: var(--ink);
    font-family: Sora, Arial, sans-serif;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0;
    text-shadow: 0 10px 30px rgba(10, 14, 26, .08);
    transform: translateY(1px);
}

.brand .wordmark span:first-child {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--white);
    background: var(--ink);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand .wordmark span:last-child {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: -1px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--amber));
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(47, 92, 255, .22);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
}

.site-nav a {
    position: relative;
    display: inline-flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 2px;
    padding: 8px 0;
    letter-spacing: 0;
    line-height: 1.1;
}

.site-nav sup {
    position: static;
    transform: none;
    color: var(--ink);
    font-family: "JetBrains Mono", monospace;
    font-size: 9px;
    font-weight: 700;
}

.site-nav .is-active {
    color: var(--blue);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border: 0;
    border-radius: 6px;
    color: var(--white);
    background: var(--blue);
    font-weight: 700;
    font-family: Sora, Arial, sans-serif;
    cursor: pointer;
}

.button-ghost {
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--ink);
}

.button-light {
    color: #05070d;
    background: var(--white);
}

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

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(28px, 5vw, 70px);
    min-height: 690px;
    padding: clamp(64px, 8vw, 110px) clamp(18px, 5vw, 72px);
    color: var(--ink);
    background: #05070d;
    overflow: hidden;
    isolation: isolate;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .96;
    filter: saturate(1.18) contrast(1.12) brightness(.98);
    pointer-events: none;
}

html.is-loaded.is-home-page .hero-bg-video {
    opacity: 0;
    transform: scale(1.08);
}

html.is-loaded.is-home-page .hero.cinematic-hero-visible .hero-bg-video {
    opacity: .96;
    transform: scale(1);
    transition:
        opacity 800ms cubic-bezier(.22, 1, .36, 1),
        transform 900ms cubic-bezier(.22, 1, .36, 1);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(255,255,255,.76) 0%, rgba(255,255,255,.42) 44%, rgba(255,255,255,.06) 100%),
        linear-gradient(0deg, rgba(255,255,255,.06), rgba(255,255,255,.06));
    pointer-events: none;
}

.hero-copy,
.hero-panel {
    position: relative;
    z-index: 2;
}

html.is-loaded.is-home-page .hero-copy .eyebrow,
html.is-loaded.is-home-page .hero-copy h1,
html.is-loaded.is-home-page .hero-copy p,
html.is-loaded.is-home-page .hero-copy .actions {
    opacity: 0;
    transform: translate3d(0, 28px, 0) scale(.98);
    filter: blur(8px);
}

html.is-loaded.is-home-page .hero.cinematic-hero-visible .hero-copy .eyebrow {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition: opacity 800ms cubic-bezier(.22, 1, .36, 1) 820ms, transform 800ms cubic-bezier(.22, 1, .36, 1) 820ms, filter 800ms cubic-bezier(.22, 1, .36, 1) 820ms;
}

html.is-loaded.is-home-page .hero.cinematic-hero-visible .hero-copy h1 {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition: opacity 1000ms cubic-bezier(.22, 1, .36, 1) 1100ms, transform 1000ms cubic-bezier(.22, 1, .36, 1) 1100ms, filter 1000ms cubic-bezier(.22, 1, .36, 1) 1100ms;
}

html.is-loaded.is-home-page .hero.cinematic-hero-visible .hero-copy p {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition: opacity 850ms cubic-bezier(.22, 1, .36, 1) 1300ms, transform 850ms cubic-bezier(.22, 1, .36, 1) 1300ms, filter 850ms cubic-bezier(.22, 1, .36, 1) 1300ms;
}

html.is-loaded.is-home-page .hero.cinematic-hero-visible .hero-copy .actions {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition: opacity 600ms cubic-bezier(.2, .9, .25, 1.18) 1500ms, transform 600ms cubic-bezier(.2, .9, .25, 1.18) 1500ms, filter 600ms cubic-bezier(.2, .9, .25, 1.18) 1500ms;
}

html.reduced-motion .hero-bg-video,
html.reduced-motion .hero-copy .eyebrow,
html.reduced-motion .hero-copy h1,
html.reduced-motion .hero-copy p,
html.reduced-motion .hero-copy .actions,
.hero.cinematic-hero-visible .hero-copy .eyebrow,
.hero.cinematic-hero-visible .hero-copy h1,
.hero.cinematic-hero-visible .hero-copy p,
.hero.cinematic-hero-visible .hero-copy .actions {
    opacity: 1;
    filter: none;
}


.hero h1,
.page-hero h1,
.section h2,
.cta-band h2 {
    margin: 0;
    font-family: Sora, Arial, sans-serif;
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 850px;
    font-size: clamp(34px, 5vw, 62px);
}

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

.hero h1 strong {
    color: var(--amber);
}

.hero p,
.page-hero p,
.section p {
    max-width: 700px;
    color: var(--slate);
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;
}

.hero p {
    color: var(--slate);
}

.eyebrow,
.tag,
.impact-tag {
    font-family: Sora, Arial, sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.eyebrow {
    color: var(--amber);
}

.actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-panel {
    position: relative;
    min-height: 430px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(rgba(10,14,26,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,14,26,.05) 1px, transparent 1px);
    background-size: 34px 34px;
}

.code-card,
.metric-card,
.orbit-card {
    position: absolute;
    padding: 20px;
    border-radius: 8px;
    background: #101622;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 24px 80px rgba(10, 14, 26, .12);
}

.code-card {
    top: 15%;
    left: 10%;
    color: var(--white);
}

.metric-card {
    right: 10%;
    top: 38%;
}

.metric-card b {
    display: block;
    color: var(--white);
    font-size: 42px;
}

.metric-card span,
.orbit-card {
    color: rgba(255, 255, 255, .7);
}

.orbit-card {
    left: 16%;
    bottom: 14%;
}

.impact-strip {
    display: grid;
    gap: 18px;
    padding: 22px clamp(18px, 5vw, 72px);
    background: var(--white);
    border-bottom: 1px solid var(--line);
    overflow: hidden;
}

.trust-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.impact-tag,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 7px 10px;
    border-radius: 8px;
    color: var(--blue);
    background: rgba(47, 92, 255, .16);
}

.impact-tag b {
    margin-right: 4px;
}

.logo-marquee {
    overflow: hidden;
    opacity: 1;
    transform: none;
    filter: none;
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 12px;
    animation: logoMarquee 18s linear infinite !important;
    animation-play-state: running !important;
    will-change: transform;
}

.logo-marquee:hover .logo-track {
    animation-play-state: running !important;
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--slate);
    background: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.section,
.page-hero,
.cta-band,
.site-footer {
    padding: clamp(42px, 5vw, 68px) clamp(18px, 5vw, 72px);
    background-position: center calc(50% + var(--section-depth, 0px));
}

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

.page-hero h1,
.section h2,
.cta-band h2 {
    max-width: 860px;
    font-size: clamp(28px, 3.2vw, 46px);
}

.page-hero p {
    color: var(--slate);
}

.section-heading {
    margin-bottom: 30px;
}

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

.card,
.contact-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(47, 92, 255, .05), rgba(255, 255, 255, 0) 42%),
        var(--white);
    color: var(--ink);
    box-shadow: 0 18px 46px rgba(10, 14, 26, .08);
}

.contact-form {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
}

.card h3,
.card h2 {
    margin: 0 0 10px;
    font-family: Sora, Arial, sans-serif;
    font-weight: 800;
    color: var(--ink);
}

.card p,
.contact-card p {
    color: var(--slate);
}

.card a {
    color: var(--blue);
    font-weight: 800;
}

.dark {
    color: var(--white);
    background: #05070d;
}

.dark p {
    color: var(--mist);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amber .tag {
    color: #7a4b00;
    background: rgba(255, 182, 72, .2);
}

.split,
.two-column,
.contact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: clamp(26px, 5vw, 64px);
    align-items: start;
}

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

.process div {
    padding: 18px;
    border-left: 4px solid var(--blue);
    background: var(--white);
    color: var(--ink);
}

.process span {
    display: block;
    color: var(--amber);
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
}

.project-card a {
    color: var(--blue);
    font-weight: 800;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 900px;
}

.faq-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary span {
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
    transform: rotate(45deg);
    transition: transform 280ms ease;
}

.faq-item p {
    max-height: 0;
    margin: 0;
    padding: 0 20px;
    opacity: 0;
    overflow: hidden;
    transition: max-height 280ms ease, opacity 280ms ease, padding 280ms ease;
}

.faq-item[open] summary span {
    transform: rotate(225deg);
}

.faq-item[open] p {
    max-height: 220px;
    padding: 0 20px 18px;
    opacity: 1;
}

.narrow {
    max-width: 900px;
}

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

.careers-form {
    margin-top: 24px;
}

label {
    display: grid;
    gap: 7px;
    color: var(--slate);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.cta-band {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), #101827);
}

.cta-band p {
    max-width: 760px;
    color: rgba(255,255,255,.78);
}

.site-footer {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, 1fr);
    gap: 18px;
    color: var(--mist);
    background: var(--ink);
    padding-top: 34px;
    padding-bottom: 26px;
    font-size: 13px;
    line-height: 1.55;
}

.site-footer h3 {
    margin: 0 0 10px;
    color: var(--white);
    font-size: 15px;
}

.site-footer .brand .wordmark span:last-child {
    color: var(--white);
}

.site-footer p {
    margin: 0;
}

.copyright {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(255,255,255,.12);
    margin-top: 10px;
    padding-top: 14px;
}

.nav-toggle,
.nav-button {
    display: none;
}

.message-page {
    min-height: 100vh;
    background: var(--ink);
}

html {
    opacity: 0;
    transition: opacity 300ms ease-out;
    scroll-behavior: smooth;
}

html.is-ready {
    opacity: 1;
}

.load-item {
    opacity: 0;
    transform: translate3d(0, 30px, 0) scale(.985);
    filter: blur(8px);
    will-change: opacity, transform;
}

html.is-loaded .load-item {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition:
        opacity 1400ms cubic-bezier(.22, 1, .36, 1),
        transform 1400ms cubic-bezier(.22, 1, .36, 1),
        filter 1400ms cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--load-delay, 0ms);
}

.load-media {
    transform: translate3d(0, 28px, 0) scale(.95);
}

.load-pop {
    transform: translate3d(0, 22px, 0) scale(.94);
}

html.is-loaded .load-pop {
    transition-duration: 1250ms;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(.965);
    filter: blur(10px);
    will-change: opacity, transform;
}

.hero.is-visible .hero-word {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    transition:
        opacity 1500ms cubic-bezier(.22, 1, .36, 1),
        transform 1500ms cubic-bezier(.22, 1, .36, 1),
        filter 1500ms cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--word-delay, 300ms);
}

html.is-home-page .hero.cinematic-hero-visible .hero-word {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.hero.is-visible .hero-bg-video {
    animation: heroVideoDrift 1800ms cubic-bezier(.22, 1, .36, 1) both;
}

.mouse-glow {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 2;
    width: 360px;
    height: 360px;
    pointer-events: none;
    opacity: 0;
    transform: translate(calc(var(--x, -500px) - 50%), calc(var(--y, -500px) - 50%));
    background: radial-gradient(circle, rgba(47, 92, 255, .34), rgba(255, 182, 72, .16) 34%, transparent 68%);
    filter: blur(18px);
    transition: opacity 150ms ease-out;
}

.mouse-glow.is-active {
    opacity: .22;
}

.scroll-top-link {
    position: fixed;
    left: 28px;
    top: 50%;
    z-index: 50;
    display: grid;
    justify-items: center;
    gap: 18px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transform: translateY(-50%);
}

.scroll-top-link span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-top-link i {
    position: relative;
    display: block;
    width: 2px;
    height: var(--scroll-line-height, 76px);
    background: rgba(10, 14, 26, .22);
    overflow: hidden;
    transition: height 160ms linear, background-color 160ms linear;
}

.scroll-top-link i::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--ink);
    transform: scaleY(var(--scroll-progress, 0));
    transform-origin: top;
    transition: transform 120ms linear;
}

.scroll-top-link[style*="scroll-progress"] i {
    background: rgba(10, 14, 26, .14);
}

.site-header,
main,
.site-footer,
.cta-band {
    position: relative;
    z-index: 3;
}

.site-header {
    animation: none;
}

.brand-mark {
    animation: none;
}

.site-nav a,
.nav-cta {
    animation: none;
    transition: color 150ms ease-out, transform 150ms ease-out, background-color 150ms ease-out, border-color 150ms ease-out, box-shadow 150ms ease-out;
}

.site-nav a:nth-child(1) { animation-delay: 60ms; }
.site-nav a:nth-child(2) { animation-delay: 100ms; }
.site-nav a:nth-child(3) { animation-delay: 140ms; }
.site-nav a:nth-child(4) { animation-delay: 180ms; }
.site-nav a:nth-child(5) { animation-delay: 220ms; }
.site-nav a:nth-child(6) { animation-delay: 260ms; }
.site-nav a:nth-child(7) { animation-delay: 300ms; }

.nav-cta {
    animation-delay: 340ms;
}

.site-nav a:hover,
.nav-cta:hover,
.button:hover {
    transform: translateY(-1px);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy p,
.hero-copy .actions,
.hero-panel {
    animation: none;
}

.hero-copy h1 {
    animation-delay: 80ms;
}

.hero-copy h1 span,
.hero-copy h1 strong {
    background-size: 220% auto;
    background-image: linear-gradient(90deg, currentColor, var(--blue), var(--amber), currentColor);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 220% auto;
    animation: none;
}

.hero.is-visible .hero-copy h1 span,
.hero.is-visible .hero-copy h1 strong {
    animation: gradientText 3800ms linear infinite;
}

.hero-copy p {
    animation-delay: 160ms;
}

.hero-copy .actions {
    animation-delay: 240ms;
}

.hero-panel {
    overflow: hidden;
    animation-delay: 260ms;
    transform: translate3d(0, var(--hero-parallax, 0), 0) rotate(-2.6deg) scale(.98);
    transition: transform 900ms cubic-bezier(.16, 1, .3, 1);
}

.hero-panel:hover {
    transform: translate3d(0, calc(var(--hero-parallax, 0) - 14px), 0) rotate(.4deg) scale(1.015);
}

.hero-panel::before,
.hero-panel::after {
    content: "";
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(47, 92, 255, .18);
    border-radius: 50%;
    animation: none;
}

.is-visible .hero-panel::before,
.is-visible .hero-panel::after {
    animation: slowCircuit 34s linear infinite;
}

.hero-panel::after {
    inset: 24%;
    border-color: rgba(255, 182, 72, .26);
    animation-direction: reverse;
    animation-duration: 40s;
}

.code-card,
.metric-card,
.orbit-card {
    animation: none;
    transition: transform 200ms ease-out, box-shadow 200ms ease-out, border-color 200ms ease-out;
}

.is-visible .code-card,
.is-visible .metric-card,
.is-visible .orbit-card {
    animation: agencyFloat 9000ms ease-in-out infinite;
}

.code-card {
    transform: translate3d(-34px, -18px, 0) rotate(-4deg) scale(1.02);
}

.metric-card {
    transform: translate3d(30px, 22px, 0) rotate(3deg) scale(1.04);
}

.orbit-card {
    transform: translate3d(-22px, 30px, 0) rotate(-3deg) scale(1.03);
}

.metric-card {
    animation-delay: 400ms;
}

.orbit-card {
    animation-delay: 700ms;
}

.card,
.tag,
.impact-tag,
.process div,
.button {
    transition: transform 420ms ease-in-out, box-shadow 420ms ease-in-out, border-color 420ms ease-in-out, background-color 420ms ease-in-out, filter 420ms ease-in-out;
}

.button:hover,
.nav-cta:hover {
    filter: brightness(1.08);
}

.reveal {
    opacity: 0;
    transform: translate3d(0, 36px, 0) scale(.98);
    filter: blur(6px);
    will-change: opacity, transform;
    transition: opacity 900ms cubic-bezier(.22, 1, .36, 1), transform 900ms cubic-bezier(.22, 1, .36, 1), filter 900ms cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
}

.showcase-row.reveal-from-left {
    transform: translate3d(-64px, 28px, 0) scale(.98);
}

.showcase-row.reveal-from-right {
    transform: translate3d(64px, 28px, 0) scale(.98);
}

.reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    will-change: auto;
}

.showcase-row.reveal-from-left.is-visible,
.showcase-row.reveal-from-right.is-visible {
    transform: translate3d(0, 0, 0) scale(1);
}

.reveal-child {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(.98);
    filter: blur(4px);
    will-change: opacity, transform;
    transition: opacity 800ms cubic-bezier(.22, 1, .36, 1), transform 800ms cubic-bezier(.22, 1, .36, 1), filter 800ms cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--child-delay, 0ms);
}

.is-visible .reveal-child {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    will-change: auto;
}

html.is-home-page .cinematic-card {
    transition-delay: var(--card-delay, 0ms);
}

.reveal-media {
    opacity: 0;
    transform: scale(1.08);
    filter: blur(4px);
    transition:
        opacity 900ms cubic-bezier(.22, 1, .36, 1),
        transform 900ms cubic-bezier(.22, 1, .36, 1),
        filter 900ms cubic-bezier(.22, 1, .36, 1);
}

.is-visible .reveal-media,
.reveal-media.is-visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.reveal-text {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
    filter: blur(3px);
    transition:
        opacity 700ms cubic-bezier(.22, 1, .36, 1),
        transform 700ms cubic-bezier(.22, 1, .36, 1),
        filter 700ms cubic-bezier(.22, 1, .36, 1);
    transition-delay: calc(var(--child-delay, 0ms) + var(--text-delay, 200ms));
}

.is-visible .reveal-text,
.reveal-text.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
}

.site-footer.reveal {
    transform: translate3d(0, 44px, 0) scale(.99);
}

.process-motion {
    position: relative;
    --timeline-progress: 0;
}

.process-motion::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue), var(--amber), transparent);
    transform: scaleX(var(--timeline-progress));
    transform-origin: left;
    transition: transform 120ms linear;
}

.process-motion div {
    position: relative;
    z-index: 1;
}

@keyframes navDrop {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navItemIn {
    from {
        opacity: 0;
        transform: translateY(-14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoSoftIn {
    from {
        opacity: 0;
        transform: scale(.78) rotate(-8deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes editorialRise {
    from {
        opacity: 0;
        transform: translateY(42px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slowCircuit {
    from {
        transform: rotate(0deg) scale(.94);
    }
    to {
        transform: rotate(360deg) scale(1.04);
    }
}

@keyframes agencyFloat {
    0%, 100% {
        translate: 0 0;
    }
    50% {
        translate: 0 -24px;
    }
}

@keyframes landingTranslateIn {
    from {
        opacity: 0;
        transform: translate3d(0, 64px, 0) scale(.94);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes heroVideoDrift {
    from {
        transform: scale(1.045) translate3d(0, 18px, 0);
    }
    to {
        transform: scale(1) translate3d(0, 0, 0);
    }
}

@keyframes openLid {
    from {
        transform: rotateX(0deg);
    }
    to {
        transform: rotateX(-110deg);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0) scale(.98);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

@keyframes gradientText {
    from {
        background-position: 0% center;
    }
    to {
        background-position: 220% center;
    }
}

@keyframes logoMarquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@media (hover: hover) and (pointer: fine) {
    .lift-card:hover,
    .showcase-row:hover .browser-frame {
        transform: translateY(-5px) scale(1.01);
        border-color: rgba(47, 92, 255, .34);
        box-shadow: 0 18px 42px rgba(10, 14, 26, .14);
    }
}

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

    html,
    html.is-leaving {
        opacity: 1;
    }

    .mouse-glow {
        display: none;
    }

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

    .reveal-media,
    .reveal-text {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .load-item,
    .hero-word,
    .section,
    .impact-strip,
    .showcase-row,
    .careers-band,
    .case-lid {
        opacity: 1;
        transform: none;
        filter: none;
        animation: none;
        clip-path: none;
        border-right: 0;
    }
}

@media (max-width: 960px) {
    .hero,
    .grid,
    .split,
    .two-column,
    .contact-layout,
    .site-footer {
        grid-template-columns: 1fr;
    }

    .site-header {
        flex-wrap: wrap;
    }

    .nav-button {
        display: grid;
        gap: 5px;
        margin-left: auto;
    }

    .nav-button span {
        width: 28px;
        height: 2px;
        background: var(--ink);
    }

    .site-nav,
    .nav-cta {
        display: none;
        width: 100%;
    }

    .nav-toggle:checked ~ .site-nav,
    .nav-toggle:checked ~ .nav-cta {
        display: grid;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
    }

    .hero-panel {
        min-height: 320px;
    }

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

    .cta-band {
        flex-direction: column;
    }
}

/* Section-by-section UI refinement */
:root {
    --bg-alt: #f6f7f9;
    --header-dark: rgba(10, 14, 20, .86);
}

.site-header {
    height: 72px;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
    transition: background-color 200ms ease-out, backdrop-filter 200ms ease-out, color 200ms ease-out;
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(10, 14, 26, .08);
}

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

.brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 7px;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--amber));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 200ms ease-out;
}

.site-nav a:hover::after,
.site-nav .is-active::after {
    transform: scaleX(1);
}

.btn-primary,
.nav-cta {
    color: var(--white);
    background: var(--ink);
}

.btn-outline {
    color: var(--ink);
    background: transparent;
    border: 1px solid currentColor;
}

.site-header.is-scrolled .btn-outline,
.site-header.is-scrolled .site-nav sup {
    color: var(--ink);
}

.hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: calc(100vh - 72px);
    padding-top: clamp(84px, 10vw, 132px);
    background: #05070d;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 72px 0 auto auto;
    width: 280px;
    height: 280px;
    z-index: 1;
    background: rgba(47, 92, 255, .2);
    filter: blur(120px);
    pointer-events: none;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
}

.hero p {
    max-width: 520px;
    color: var(--slate);
    font-size: 18px;
}

.hero-panel {
    background:
        linear-gradient(rgba(10,14,26,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,14,26,.06) 1px, transparent 1px),
        var(--white);
    background-size: 26px 26px;
}

.editor-mockup {
    position: absolute;
    inset: 10% 8% auto;
    min-height: 120px;
    padding: 42px 18px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #0a0e14;
    color: var(--mist);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px;
}

.editor-mockup span {
    position: absolute;
    top: 16px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--amber);
}

.editor-mockup span:nth-child(1) { left: 16px; }
.editor-mockup span:nth-child(2) { left: 32px; background: var(--blue); }
.editor-mockup span:nth-child(3) { left: 48px; background: #35d399; }

.stat-block {
    min-width: 190px;
    text-align: center;
}

.stat-block b {
    display: block;
    font-size: clamp(36px, 4vw, 40px);
    line-height: 1;
    background: linear-gradient(90deg, var(--blue), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-block span {
    color: var(--slate);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

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

.solution-card {
    position: relative;
    min-height: 220px;
    padding: 88px 26px 24px;
    color: var(--ink);
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(135deg, rgba(47, 92, 255, .55), rgba(255, 182, 72, .48)) border-box;
    border: 1px solid transparent;
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(10, 14, 26, .08);
    overflow: hidden;
}

.solution-card::before,
.solution-card::after {
    z-index: 1;
}

.solution-card > * {
    position: relative;
    z-index: 2;
}

.solution-card::marker {
    display: none;
}

.solution-card::selection {
    color: var(--white);
    background: var(--blue);
}

.solution-card::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 26px;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(47, 92, 255, .12), rgba(255, 182, 72, .16)),
        var(--paper);
    border: 1px solid var(--line);
    box-shadow: inset 0 -12px 22px rgba(10, 14, 26, .04);
}

.solution-card::after {
    content: "";
    position: absolute;
    top: 39px;
    left: 41px;
    width: 22px;
    height: 16px;
    border: 2px solid var(--blue);
    border-left: 0;
    border-right: 0;
    border-radius: 2px;
    opacity: .95;
}

.solution-card:nth-child(odd) {
    background:
        linear-gradient(180deg, rgba(47, 92, 255, .05), rgba(255, 255, 255, 0) 44%),
        var(--white);
}

.solution-card:nth-child(even) {
    background:
        linear-gradient(180deg, rgba(255, 182, 72, .08), rgba(255, 255, 255, 0) 44%),
        var(--white);
}

.solution-card h3,
.solution-card p,
.solution-card a {
    color: inherit;
}

.solution-card:nth-child(1)::after {
    top: 36px;
    left: 38px;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 50%, var(--white) 0 4px, transparent 5px),
        conic-gradient(from 45deg, var(--blue), var(--amber), var(--blue));
    box-shadow: 0 0 0 5px rgba(47, 92, 255, .1);
}

.solution-card:nth-child(2)::after {
    top: 38px;
    left: 38px;
    width: 28px;
    height: 20px;
    border: 2px solid var(--ink);
    border-top-width: 7px;
    border-radius: 3px;
}

.solution-card:nth-child(3)::after {
    top: 35px;
    left: 42px;
    width: 18px;
    height: 28px;
    border: 2px solid var(--blue);
    border-radius: 5px;
    box-shadow: inset 0 -5px 0 rgba(47, 92, 255, .16);
}

.solution-card:nth-child(4)::after {
    top: 37px;
    left: 37px;
    width: 28px;
    height: 28px;
    border: 2px solid var(--ink);
    border-radius: 50%;
    box-shadow: -10px 8px 0 -7px var(--amber), 10px -8px 0 -7px var(--blue), 0 0 0 6px rgba(47, 92, 255, .08);
}

.solution-card:nth-child(5)::after {
    top: 38px;
    left: 38px;
    width: 28px;
    height: 24px;
    border: 0;
    border-left: 4px solid var(--ink);
    border-bottom: 4px solid var(--ink);
    border-radius: 0;
    background: linear-gradient(90deg, transparent 4px, var(--amber) 4px 8px, transparent 8px 12px, var(--blue) 12px 16px, transparent 16px 20px, var(--ink) 20px 24px, transparent 24px);
}

.solution-card:nth-child(6)::after {
    top: 44px;
    left: 37px;
    width: 30px;
    height: 16px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    box-shadow: -8px -8px 0 -3px var(--blue), 8px -6px 0 -4px var(--amber);
}

.solution-card:nth-child(7)::after {
    top: 39px;
    left: 38px;
    width: 28px;
    height: 22px;
    border: 0;
    border-top: 3px solid var(--ink);
    border-bottom: 3px solid var(--ink);
    border-radius: 0;
    box-shadow: inset 0 9px 0 -6px var(--amber);
}

.solution-card:nth-child(8)::after {
    top: 38px;
    left: 39px;
    width: 24px;
    height: 24px;
    border: 2px solid var(--ink);
    border-radius: 6px;
    transform: rotate(45deg);
    box-shadow: 8px -8px 0 -5px var(--blue), -8px 8px 0 -5px var(--amber);
}

.solution-card h3 {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.25;
    color: var(--ink);
}

.solution-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0 0 18px;
    color: var(--slate);
    font-size: 14px;
    line-height: 1.55;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.solution-card a span,
.showcase-row a {
    display: inline-block;
    transition: transform 200ms ease-out;
}

.solution-card a {
    color: var(--blue);
    font-weight: 800;
}

.solution-card a:hover span,
.showcase-row a:hover {
    transform: translateX(3px);
}

.icon-badge {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 8px;
    color: var(--blue);
    background: rgba(47, 92, 255, .1);
    border: 1px solid rgba(47, 92, 255, .18);
    font-family: "JetBrains Mono", monospace;
    font-weight: 800;
    font-size: 18px;
    line-height: 32px;
    text-align: center;
}

.flat-card {
    background:
        linear-gradient(180deg, rgba(255, 182, 72, .08), rgba(255, 255, 255, 0) 42%),
        var(--white);
    box-shadow: 0 12px 34px rgba(10, 14, 26, .07);
}

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

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.stack-logo {
    filter: grayscale(1);
    transform: scale(1);
    transition: filter 200ms ease-out, transform 200ms ease-out;
}

.stack-card:hover .stack-logo {
    filter: grayscale(0);
    transform: scale(1.05);
}

.showcase-row {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(24px, 5vw, 70px);
    align-items: center;
    margin-top: 36px;
}

.showcase-row.is-reversed {
    direction: rtl;
}

.showcase-row.is-reversed > * {
    direction: ltr;
}

.browser-frame {
    position: relative;
    overflow: hidden;
    perspective: 900px;
    min-height: 280px;
    padding: 44px 18px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(47,92,255,.16), rgba(255,182,72,.16));
    transition: transform 420ms ease-in-out, box-shadow 420ms ease-in-out, border-color 420ms ease-in-out;
}

.browser-frame div {
    height: 180px;
    border-radius: 8px;
    background: rgba(255,255,255,.78);
}

.case-lid {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 44px;
    z-index: 2;
    height: 180px;
    border-radius: 8px;
    background: linear-gradient(135deg, #0a0e14, #172033);
    box-shadow: 0 22px 48px rgba(10, 14, 26, .22);
    transform-origin: top center;
    backface-visibility: hidden;
}

@supports (animation-timeline: view()) {
    .section,
    .impact-strip,
    .showcase-row,
    .careers-band {
        animation: fadeUp linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }

    .case-lid {
        animation: openLid linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 25%;
    }
}

.training-section {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    background: var(--bg-alt);
}

.training-section .capability-grid,
.college-section .compact-grid {
    grid-column: 1 / -1;
}

.compact-grid .card {
    min-height: 110px;
}

.cards .card {
    min-height: 210px;
}

.cards .card:nth-child(3n + 2),
.compact-grid .card:nth-child(even),
.capability-grid .card:nth-child(even),
.flat-grid .card:nth-child(even) {
    background:
        linear-gradient(180deg, rgba(255, 182, 72, .08), rgba(255, 255, 255, 0) 42%),
        var(--white);
}

.cards .card:nth-child(3n),
.compact-grid .card:nth-child(3n),
.capability-grid .card:nth-child(3n),
.flat-grid .card:nth-child(3n) {
    background:
        linear-gradient(180deg, rgba(47, 92, 255, .07), rgba(255, 182, 72, .05) 52%, rgba(255, 255, 255, 0)),
        var(--white);
}

.quote-card {
    position: relative;
}

.quote-card > span {
    color: var(--amber);
    font-size: 54px;
    line-height: .8;
}

.quote-card.featured {
    border: 1px solid transparent;
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(90deg, var(--blue), var(--amber)) border-box;
}

.avatar {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--amber));
    font-weight: 800;
}

.about-calm {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    padding-top: clamp(28px, 4vw, 52px);
    padding-bottom: clamp(34px, 4vw, 58px);
}

.about-calm p {
    line-height: 1.7;
}

.cta-band {
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08) 1px, transparent 1px),
        linear-gradient(120deg, var(--blue), #111827 58%, var(--amber));
    background-size: 18px 18px, auto;
}

.field-pattern {
    background:
        linear-gradient(rgba(47,92,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47,92,255,.05) 1px, transparent 1px),
        var(--white);
    background-size: 18px 18px;
}

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

.contact-hero {
    padding-top: 58px;
    padding-bottom: 12px;
}

.contact-hero h1 {
    max-width: 760px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
}

.contact-page-layout {
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    align-items: start;
    gap: 28px;
    padding-top: 12px;
    padding-bottom: 28px;
}

.contact-page-layout .contact-form {
    max-height: none;
}

.contact-page-layout .contact-card {
    min-height: 190px;
}

.contact-card {
    background:
        linear-gradient(135deg, rgba(47, 92, 255, .08), rgba(255, 182, 72, .08)),
        var(--white);
}

.contact-page-layout .contact-card h2 {
    margin-top: 0;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
}

.contact-map-panel {
    display: grid;
    gap: 14px;
}

.contact-map-panel iframe {
    width: 100%;
    min-height: 500px;
    border: 1px solid var(--line);
    border-radius: 18px;
    filter: grayscale(.15) contrast(1.05);
}

.map-contact-card {
    min-height: auto;
    padding: 18px 20px;
}

.map-contact-card h2 {
    font-size: 20px;
}

.contact-page-layout .contact-form {
    gap: 10px;
    padding: 18px;
}

.contact-page-layout label {
    gap: 5px;
}

.contact-page-layout input,
.contact-page-layout textarea {
    min-height: 40px;
    padding: 9px 10px;
}

.contact-page-layout textarea {
    min-height: 92px;
}

.careers-band {
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    padding: 28px clamp(18px, 5vw, 72px);
    color: var(--ink);
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.careers-band h2,
.careers-band p {
    margin: 0;
}

@media (max-width: 1100px) {
    .solution-grid,
    .stack-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .site-nav {
        position: fixed;
        inset: 72px 0 0;
        z-index: 20;
        align-content: start;
        padding: 42px 28px;
        color: var(--white);
        background: var(--ink);
    }

    .site-nav a {
        opacity: 0;
        transform: translateY(12px);
    }

    .nav-toggle:checked ~ .site-nav a {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 300ms ease-out, transform 300ms ease-out;
    }

    .nav-toggle:checked ~ .site-nav a:nth-child(1) { transition-delay: 40ms; }
    .nav-toggle:checked ~ .site-nav a:nth-child(2) { transition-delay: 80ms; }
    .nav-toggle:checked ~ .site-nav a:nth-child(3) { transition-delay: 120ms; }
    .nav-toggle:checked ~ .site-nav a:nth-child(4) { transition-delay: 160ms; }
    .nav-toggle:checked ~ .site-nav a:nth-child(5) { transition-delay: 200ms; }
    .nav-toggle:checked ~ .site-nav a:nth-child(6) { transition-delay: 240ms; }
    .nav-toggle:checked ~ .site-nav a:nth-child(7) { transition-delay: 280ms; }

    .hero,
    .showcase-row,
    .training-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .solution-grid,
    .stack-grid,
    .flat-grid,
    .compact-grid,
    .careers-band {
        grid-template-columns: 1fr;
    }

    .careers-band {
        display: grid;
    }

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

    .process-motion::before {
        left: 18px;
        top: 0;
        width: 2px;
        height: 100%;
        transform: scaleY(var(--timeline-progress));
        transform-origin: top;
    }
}

/* Alternate hero visual composition */
.hero-panel {
    min-height: 450px;
    border-radius: 10px;
    background:
        linear-gradient(rgba(10,14,26,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,14,26,.06) 1px, transparent 1px),
        var(--white);
    background-size: 26px 26px;
    box-shadow: 0 34px 90px rgba(47, 92, 255, .12);
}

.editor-mockup {
    top: 76px;
    left: 8%;
    right: 8%;
    min-height: 112px;
    padding: 44px 20px 18px;
    border-radius: 8px;
}

.code-card {
    top: 54px;
    left: 3%;
    min-width: 250px;
    padding: 14px 16px;
    transform: translate3d(-22px, -14px, 0) rotate(-4deg) scale(.96);
}

.tech-brand-card {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Sora, Arial, sans-serif;
}

.tech-brand-card span {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background:
        radial-gradient(circle at 68% 30%, var(--amber) 0 5px, transparent 6px),
        radial-gradient(circle at 30% 70%, var(--blue) 0 6px, transparent 7px),
        linear-gradient(135deg, rgba(47,92,255,.95), rgba(255,182,72,.9));
}

.tech-brand-card b {
    color: var(--white);
    font-size: 15px;
}

.metric-card {
    top: 42%;
    right: 4%;
    display: grid;
    place-content: center;
    min-width: 230px;
    min-height: 165px;
    text-align: center;
    transform: translate3d(30px, 22px, 0) rotate(3deg) scale(1.04);
}

.orbit-card {
    left: 10%;
    bottom: 48px;
    min-width: 230px;
    padding: 14px 16px;
    transform: translate3d(-18px, 22px, 0) rotate(-3deg) scale(.96);
}

.hero-panel::before,
.hero-panel::after {
    inset: 24% 17%;
}

.hero-panel::after {
    inset: 31% 28%;
}
