:root {
    --bg: #02040a;
    --panel: #0a101c;
    --panel-2: #111827;
    --text: #f8fafc;
    --muted: #a8b3c4;
    --line: rgba(255, 255, 255, .14);
    --accent: #00a7e6;
    --accent-2: #2dd4bf;
    --danger: #ef4444;
    --ok: #22c55e;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 12%, rgba(0, 167, 230, .08), transparent 24%),
        radial-gradient(circle at 12% 70%, rgba(45, 212, 191, .07), transparent 28%);
}

.scroll-orb {
    --orb-y: 0px;
    --orb-x: 0px;
    --orb-scale: 1;
    --orb-opacity: .58;
    --orb-rotate: 0deg;
    --orb-blur: 0px;
    position: fixed;
    top: clamp(86px, 13vh, 132px);
    right: clamp(18px, 6vw, 92px);
    z-index: 3;
    width: clamp(86px, 15vw, 190px);
    aspect-ratio: 1;
    border-radius: 50%;
    pointer-events: none;
    opacity: var(--orb-opacity);
    transform: translate3d(var(--orb-x), var(--orb-y), 0) scale(var(--orb-scale)) rotate(var(--orb-rotate));
    transition: opacity .18s ease, filter .18s ease;
    mix-blend-mode: screen;
    filter: blur(var(--orb-blur));
}

.scroll-orb::before,
.scroll-orb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

.scroll-orb::before {
    border: 1px solid rgba(125, 211, 252, .46);
    box-shadow:
        inset 0 0 28px rgba(0, 167, 230, .16),
        0 0 26px rgba(0, 167, 230, .22),
        0 0 78px rgba(45, 212, 191, .12);
    animation: orbPulse 3.8s ease-in-out infinite;
}

.scroll-orb::after {
    inset: 15%;
    border: 1px solid rgba(45, 212, 191, .36);
    border-top-color: rgba(255, 255, 255, .78);
    border-left-color: transparent;
    filter: drop-shadow(0 0 16px rgba(45, 212, 191, .28));
    animation: orbitSpin 7s linear infinite;
}

.scroll-progress {
    --scroll-progress: 0;
    position: fixed;
    top: 77px;
    left: 0;
    z-index: 51;
    width: 100%;
    height: 2px;
    pointer-events: none;
    transform: scaleX(var(--scroll-progress));
    transform-origin: left;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
    box-shadow: 0 0 18px rgba(0, 167, 230, .7);
    opacity: .82;
}

.scroll-scene {
    --scene-progress: 0;
    --scene-shift: 0px;
    --scene-spin: 0deg;
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .72;
    mix-blend-mode: screen;
}

.scene-line,
.scene-pulse {
    position: absolute;
    display: block;
}

.scene-line {
    width: 42vw;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(125, 231, 255, .34), transparent);
    box-shadow: 0 0 28px rgba(0, 167, 230, .22);
    transform: translate3d(var(--scene-shift), 0, 0) rotate(var(--scene-spin));
}

.scene-line-one {
    top: 28%;
    left: -10vw;
}

.scene-line-two {
    right: -14vw;
    bottom: 20%;
    transform: translate3d(calc(var(--scene-shift) * -1), 0, 0) rotate(calc(var(--scene-spin) * -1));
}

.scene-pulse {
    width: clamp(120px, 18vw, 260px);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(45, 212, 191, .2);
    background: radial-gradient(circle, rgba(0, 167, 230, .18), transparent 62%);
    filter: blur(.2px);
    opacity: calc(.18 + var(--scene-progress) * .36);
    transform: translate3d(0, calc(var(--scene-shift) * .45), 0) scale(calc(.82 + var(--scene-progress) * .28));
}

.scene-pulse-one {
    left: 6vw;
    top: 58%;
}

.scene-pulse-two {
    right: 10vw;
    top: 18%;
    transform: translate3d(0, calc(var(--scene-shift) * -.35), 0) scale(calc(.72 + var(--scene-progress) * .3));
}

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

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

.container {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.narrow {
    width: min(820px, calc(100% - 32px));
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(16px, 4vw, 48px);
    background: rgba(2, 4, 10, .72);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.brand {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    text-transform: capitalize;
}

.site-nav a {
    color: var(--muted);
    font-weight: 650;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
}

.site-nav .button,
.site-nav .button:visited,
.site-nav .button:hover {
    color: #00131f;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .05);
}

.lang-switch a {
    min-width: 34px;
    padding: 5px 8px;
    border-radius: 999px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
    text-align: center;
}

.lang-switch a.active {
    background: var(--accent);
    color: #00131f;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    font-size: 1.4rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    background: var(--accent);
    color: #00131f;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 36px rgba(0, 167, 230, .22);
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-3px);
    background: var(--accent-2);
    border-color: var(--accent-2);
    box-shadow: 0 18px 48px rgba(45, 212, 191, .28);
}

.button-outline {
    background: transparent;
    color: var(--text);
}

.button-small {
    min-height: 38px;
    padding: 8px 14px;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    display: grid;
    align-items: center;
    padding: 120px 0 84px;
    isolation: isolate;
}

.hero-video {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(840px, 100%);
    height: 100%;
    object-fit: cover;
    opacity: .78;
    filter: saturate(1.14) contrast(1.08);
    transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0) scale(1.03);
    animation: videoBreath 9s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, #02040a 0%, rgba(2, 4, 10, .82) 38%, rgba(2, 4, 10, .2) 100%),
        radial-gradient(circle at 23% 52%, rgba(0, 167, 230, .24), transparent 34%),
        radial-gradient(circle at 76% 18%, rgba(45, 212, 191, .14), transparent 32%);
    z-index: 1;
}

.hero-aurora,
.hero-grid,
.hero-orbit {
    position: absolute;
    pointer-events: none;
}

.hero-aurora {
    inset: -20% -10%;
    background:
        radial-gradient(circle at 18% 30%, rgba(0, 167, 230, .38), transparent 24%),
        radial-gradient(circle at 72% 28%, rgba(45, 212, 191, .22), transparent 26%),
        radial-gradient(circle at 55% 78%, rgba(80, 110, 255, .22), transparent 28%);
    filter: blur(38px);
    opacity: .72;
    transform: translate3d(var(--hero-shift-x, 0), var(--hero-shift-y, 0), 0);
    animation: auroraFlow 14s ease-in-out infinite alternate;
    z-index: 0;
}

.hero-grid {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(180deg, transparent 0%, black 26%, transparent 100%);
    opacity: .26;
    animation: gridDrift 18s linear infinite;
    z-index: 0;
}

.hero-orbit {
    width: clamp(220px, 34vw, 520px);
    aspect-ratio: 1;
    border: 1px solid rgba(125, 211, 252, .28);
    border-radius: 50%;
    box-shadow: inset 0 0 28px rgba(0, 167, 230, .08), 0 0 40px rgba(0, 167, 230, .16);
    z-index: 1;
}

.orbit-one {
    right: clamp(22px, 11vw, 170px);
    top: 19%;
    animation: orbitSpin 15s linear infinite;
}

.orbit-two {
    right: clamp(-90px, 3vw, 40px);
    top: 44%;
    transform: rotate(34deg);
    animation: orbitSpin 21s linear infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: clamp(18px, 7vh, 74px);
    transform: translate3d(calc(var(--hero-shift-x, 0) * .22), calc(var(--hero-shift-y, 0) * .22), 0);
}

.hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(3.2rem, 8vw, 6.8rem);
    line-height: 1;
    letter-spacing: 0;
    text-shadow: 0 0 34px rgba(0, 167, 230, .25);
    animation: heroTextIn .85s cubic-bezier(.2, .8, .2, 1) both;
}

.hero h1::after {
    content: "";
    display: block;
    width: clamp(86px, 13vw, 180px);
    height: 3px;
    margin-top: 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), transparent);
    box-shadow: 0 0 22px rgba(0, 167, 230, .55);
    transform-origin: left;
    animation: lineGrow 1s cubic-bezier(.2, .8, .2, 1) .34s both;
}

.hero p {
    max-width: 650px;
    margin: 18px 0 30px;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    animation: heroTextIn .85s cubic-bezier(.2, .8, .2, 1) .12s both;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: heroTextIn .85s cubic-bezier(.2, .8, .2, 1) .24s both;
}

.section {
    padding: clamp(72px, 9vw, 120px) 0;
}

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

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.page-top {
    padding-top: 150px;
}

.section-centered {
    text-align: center;
}

.section h2,
.section-title h1,
.section-title h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.08;
}

.section p,
.section-title p {
    color: var(--muted);
    overflow-wrap: anywhere;
}

.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.steps-grid {
    width: min(1320px, calc(100% - 32px));
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.step-card,
.service-card,
.job-card,
.blog-card,
.testimonial,
.contact-info article {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    position: relative;
}

.step-card {
    min-height: 320px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.step-card::before,
.service-card::before,
.job-card::before,
.blog-card::before,
.contact-info article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 167, 230, .22), transparent 34%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 167, 230, .85);
    box-shadow: 0 22px 60px rgba(0, 167, 230, .16);
}

.step-card:hover::before,
.service-card:hover::before,
.job-card:hover::before,
.blog-card:hover::before,
.contact-info article:hover::before {
    opacity: 1;
}

.step-card h3,
.service-card h3,
.job-card h3 {
    margin: 0 0 12px;
    font-size: 1.45rem;
}

.section-gradient,
.contact-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 95, 145, .55), transparent 46%),
        linear-gradient(180deg, #031328, #02040a 82%);
}

.card-grid {
    display: grid;
    gap: 20px;
}

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

.service-card {
    min-height: 280px;
    padding: 28px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.service-card:hover,
.job-card:hover,
.blog-card:hover,
.contact-info article:hover {
    transform: translateY(-6px);
    border-color: rgba(45, 212, 191, .55);
    box-shadow: 0 24px 58px rgba(0, 167, 230, .13);
}

.service-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: var(--accent);
    color: #00131f;
    font-size: 1.6rem;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(0, 167, 230, .25);
    transition: transform .25s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);
}

.portfolio-section {
    background: radial-gradient(circle at 50% 100%, rgba(0, 60, 110, .75), transparent 58%);
}

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

.portfolio-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #050b14;
    transform-style: preserve-3d;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, .18) 45%, transparent 70%);
    transform: translateX(-120%);
    transition: transform .8s ease;
    pointer-events: none;
}

.portfolio-card:hover {
    transform: translateY(-8px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    border-color: rgba(125, 211, 252, .6);
    box-shadow: 0 30px 80px rgba(0, 167, 230, .18);
}

.portfolio-card:hover::after {
    transform: translateX(120%);
}

.portfolio-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .45;
    transition: transform .45s ease, opacity .45s ease;
}

.portfolio-card:hover img {
    transform: scale(1.06);
    opacity: .72;
}

.portfolio-card span {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(2, 4, 10, .8);
    font-size: .86rem;
    font-weight: 800;
}

.portfolio-card div {
    position: absolute;
    inset: auto 0 0;
    padding: 90px 24px 24px;
    background: linear-gradient(180deg, transparent, rgba(2, 4, 10, .96));
    transform: translateZ(34px);
}

.portfolio-card h3 {
    margin: 0 0 8px;
    font-size: 1.7rem;
    overflow-wrap: anywhere;
}

.portfolio-card p {
    margin: 0;
}

.process-section {
    --process-mx: 50%;
    --process-my: 20%;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 0%, rgba(0, 167, 230, .16), transparent 34%),
        linear-gradient(180deg, #02040a, #06101c 48%, #02040a);
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at var(--process-mx) var(--process-my), rgba(125, 231, 255, .18), transparent 22%),
        radial-gradient(circle at calc(var(--process-mx) + 10%) calc(var(--process-my) + 12%), rgba(45, 212, 191, .08), transparent 28%);
    opacity: .9;
    transition: opacity .25s ease;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-roadmap {
    position: relative;
    min-height: 1240px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 120px;
    padding: 30px 0;
}

.process-line {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.process-line path {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.process-path-base {
    stroke: rgba(255, 255, 255, .08);
}

.process-path-draw {
    stroke: var(--accent);
    filter: drop-shadow(0 0 12px rgba(0, 167, 230, .6));
    stroke-dasharray: var(--path-length, 1);
    stroke-dashoffset: var(--path-offset, var(--path-length, 1));
}

.process-step {
    --step-rx: 0deg;
    --step-ry: 0deg;
    --step-y: 0px;
    position: relative;
    z-index: 1;
    min-height: 220px;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 12, 22, .86);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .24);
    backdrop-filter: blur(12px);
    transform: translateY(var(--step-y)) rotateX(var(--step-rx)) rotateY(var(--step-ry));
    transform-style: preserve-3d;
    transition: transform .22s ease, border-color .25s ease, box-shadow .25s ease;
}

.process-step:nth-of-type(odd) {
    align-self: start;
}

.process-step:nth-of-type(even) {
    align-self: end;
    --step-y: 92px;
}

.process-step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #00131f;
    font-weight: 900;
    box-shadow: 0 0 34px rgba(0, 167, 230, .28);
}

.process-step h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    overflow-wrap: anywhere;
}

.process-step p {
    margin: 0;
}

.process-step.active {
    border-color: rgba(125, 231, 255, .58);
    box-shadow: 0 24px 74px rgba(0, 167, 230, .18);
}

.scroll-showcase {
    --showcase-progress: 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 20%, rgba(45, 212, 191, .12), transparent 28%),
        radial-gradient(circle at 82% 70%, rgba(0, 167, 230, .18), transparent 36%),
        linear-gradient(180deg, #02040a, #07111e 48%, #02040a);
}

.scroll-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 58px 58px;
    opacity: calc(.1 + var(--showcase-progress) * .24);
    transform: translateY(calc(var(--showcase-progress) * -54px));
    mask-image: linear-gradient(180deg, transparent, black 24%, black 76%, transparent);
}

.showcase-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(34px, 6vw, 82px);
    align-items: start;
}

.showcase-sticky {
    position: sticky;
    top: 118px;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-kicker {
    width: fit-content;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(125, 231, 255, .28);
    border-radius: 999px;
    background: rgba(0, 167, 230, .08);
    color: #7de7ff;
    font-size: .84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.showcase-sticky h2 {
    margin: 0 0 18px;
    font-size: clamp(2.2rem, 5vw, 4.1rem);
    line-height: 1.03;
}

.showcase-sticky p {
    max-width: 560px;
    color: var(--muted);
}

.showcase-orbit {
    position: relative;
    width: min(360px, 70vw);
    aspect-ratio: 1;
    margin-top: 34px;
    border-radius: 50%;
    border: 1px solid rgba(125, 231, 255, .2);
    transform: rotate(calc(var(--showcase-progress) * 220deg));
}

.showcase-orbit::before,
.showcase-orbit::after,
.showcase-orbit span,
.showcase-orbit strong {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.showcase-orbit::before {
    inset: 14%;
    border: 1px solid rgba(45, 212, 191, .22);
}

.showcase-orbit::after {
    inset: 35%;
    background: radial-gradient(circle, rgba(0, 167, 230, .38), rgba(45, 212, 191, .08) 54%, transparent 70%);
    box-shadow: 0 0 54px rgba(0, 167, 230, .26);
}

.showcase-orbit span {
    width: 18px;
    height: 18px;
    background: #7de7ff;
    box-shadow: 0 0 28px rgba(125, 231, 255, .8);
}

.showcase-orbit span:first-child {
    top: 6%;
    left: 46%;
}

.showcase-orbit span:nth-child(2) {
    right: 13%;
    bottom: 20%;
}

.showcase-orbit strong {
    left: 13%;
    bottom: 28%;
    width: 10px;
    height: 10px;
    background: var(--accent-2);
    box-shadow: 0 0 24px rgba(45, 212, 191, .72);
}

.showcase-meter {
    width: min(420px, 100%);
    height: 4px;
    margin-top: 30px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
}

.showcase-meter span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 24px rgba(0, 167, 230, .55);
    transform: scaleX(var(--showcase-progress));
    transform-origin: left;
}

.showcase-cards {
    display: grid;
    gap: 22px;
    padding: 18vh 0;
}

.showcase-card {
    --card-glow: .04;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 8px;
    background:
        radial-gradient(circle at 82% 18%, rgba(0, 167, 230, var(--card-glow)), transparent 34%),
        rgba(255, 255, 255, .04);
    transform: translateX(28px) scale(.97);
    opacity: .62;
    transition: transform .35s ease, opacity .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.showcase-card::after {
    content: "";
    position: absolute;
    inset: auto 22px 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(125, 231, 255, .9), transparent);
    transform: scaleX(0);
    transition: transform .35s ease;
}

.showcase-card.active {
    --card-glow: .24;
    opacity: 1;
    transform: translateX(0) scale(1);
    border-color: rgba(125, 231, 255, .52);
    box-shadow: 0 26px 76px rgba(0, 167, 230, .16);
}

.showcase-card.active::after {
    transform: scaleX(1);
}

.showcase-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #00131f;
    font-weight: 950;
}

.showcase-card h3 {
    margin: 0 0 10px;
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.showcase-card p {
    margin: 0;
    color: var(--muted);
}

.seo-machine {
    background:
        radial-gradient(circle at 16% 20%, rgba(45, 212, 191, .14), transparent 30%),
        radial-gradient(circle at 84% 70%, rgba(0, 167, 230, .16), transparent 34%);
}

.seo-interactive {
    padding-block: clamp(76px, 9vw, 124px);
}

.seo-interactive::after {
    content: "";
    position: absolute;
    inset: 8% 0 auto auto;
    width: min(540px, 48vw);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 167, 230, .18), transparent 66%);
    filter: blur(8px);
    opacity: calc(.25 + var(--showcase-progress) * .35);
    pointer-events: none;
}

.seo-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 46px;
    align-items: center;
}

.seo-layout h2,
.contact-copy h2,
.career-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.08;
}

.seo-copy p {
    max-width: 720px;
}

.seo-playground {
    position: relative;
    display: grid;
    gap: 20px;
}

.seo-orbit-wrap {
    position: relative;
    min-height: 390px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(125, 231, 255, .16);
    border-radius: 8px;
    background:
        radial-gradient(circle at 50% 48%, rgba(0, 167, 230, .12), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
}

.seo-orbit-wrap .showcase-orbit {
    width: min(310px, 72%);
    margin: 0;
    opacity: .9;
    transform: rotate(calc(var(--showcase-progress) * 220deg)) scale(.92);
}

.seo-hotspot {
    position: absolute;
    z-index: 4;
    min-width: 68px;
    min-height: 38px;
    padding: 8px 12px;
    border: 1px solid rgba(125, 231, 255, .26);
    border-radius: 999px;
    background: rgba(2, 4, 10, .72);
    color: #dff7ff;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .25);
    transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.seo-hotspot:hover,
.seo-hotspot.active {
    transform: translateY(-3px) scale(1.04);
    border-color: rgba(125, 231, 255, .82);
    background: rgba(0, 167, 230, .2);
    box-shadow: 0 0 34px rgba(0, 167, 230, .28);
}

.hotspot-1 {
    top: 11%;
    left: 13%;
}

.hotspot-2 {
    top: 15%;
    right: 12%;
}

.hotspot-3 {
    right: 10%;
    bottom: 10%;
}

.hotspot-4 {
    left: 11%;
    bottom: 10%;
}

.seo-insight {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    width: min(290px, calc(100% - 118px));
    padding: 16px;
    border: 1px solid rgba(125, 231, 255, .22);
    border-radius: 8px;
    background: rgba(2, 4, 10, .78);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .34);
    backdrop-filter: blur(14px);
    transform: translate(-50%, -50%);
}

.seo-insight strong {
    display: block;
    margin-bottom: 6px;
    color: #fff;
    font-size: 1.05rem;
}

.seo-insight p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}

.value-panel {
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        radial-gradient(circle at 18% 18%, rgba(0, 167, 230, .14), transparent 34%),
        rgba(255, 255, 255, .04);
}

.value-panel article {
    position: relative;
    padding: 18px 18px 18px 54px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(2, 4, 10, .32);
}

.value-panel span {
    position: absolute;
    left: 18px;
    top: 23px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 22px rgba(0, 167, 230, .42);
}

.value-panel h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    overflow-wrap: anywhere;
}

.value-panel p {
    margin: 0;
    color: var(--muted);
}

.article-tags span {
    display: inline-flex;
    padding: 8px 12px;
    border: 1px solid rgba(125, 211, 252, .28);
    border-radius: 999px;
    background: rgba(0, 167, 230, .08);
    color: #dff7ff;
    font-size: .92rem;
    font-weight: 700;
}

.detail-section,
.career-copy,
.contact-copy {
    background: #060b13;
}

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

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

.detail-card,
.local-grid article {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
}

.local-grid article::after {
    content: "";
    position: absolute;
    inset: auto 20px 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 167, 230, .85), transparent);
    transform: translateY(1px);
}

.local-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 22px;
    border: 1px solid rgba(125, 231, 255, .28);
    border-radius: 50%;
    background: rgba(0, 167, 230, .1);
    color: #7de7ff;
    font-size: .78rem;
    font-weight: 800;
}

.detail-card h3,
.local-grid h3 {
    margin: 0 0 10px;
    font-size: 1.28rem;
}

.local-seo {
    background:
        linear-gradient(180deg, #02040a, #071421),
        radial-gradient(circle at 50% 50%, rgba(0, 167, 230, .12), transparent 40%);
}

.article h2 {
    margin-top: 34px;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.article-list {
    color: var(--muted);
    padding-left: 22px;
}

.article-list li {
    margin: 8px 0;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 26px;
}

.article-cta {
    margin-top: 34px;
    padding: 28px;
    border: 1px solid rgba(0, 167, 230, .35);
    border-radius: 8px;
    background:
        radial-gradient(circle at 18% 24%, rgba(0, 167, 230, .18), transparent 32%),
        rgba(255, 255, 255, .04);
}

.vision-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 82% 16%, rgba(45, 212, 191, .16), transparent 26%),
        radial-gradient(circle at 18% 72%, rgba(0, 167, 230, .18), transparent 28%);
}

.vision-section::before,
.vision-section::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.vision-section::before {
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(90deg, #02040a 0%, rgba(2, 4, 10, .72) 33%, rgba(2, 4, 10, .16) 66%, #02040a 100%),
        radial-gradient(circle at 88% 48%, rgba(0, 167, 230, .18), transparent 34%);
}

.vision-section::after {
    right: -12%;
    top: 8%;
    z-index: 0;
    width: min(620px, 72vw);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(125, 211, 252, .18);
    box-shadow: 0 0 90px rgba(0, 167, 230, .1);
    opacity: .52;
    -webkit-mask-image: radial-gradient(circle, black 0 42%, rgba(0, 0, 0, .55) 55%, transparent 73%);
    mask-image: radial-gradient(circle, black 0 42%, rgba(0, 0, 0, .55) 55%, transparent 73%);
    animation: orbitSpin 28s linear infinite;
}

.vision-section video {
    position: absolute;
    top: 50%;
    right: max(-180px, -12vw);
    z-index: 0;
    width: min(780px, 86vw);
    height: auto;
    object-fit: contain;
    opacity: .2;
    pointer-events: none;
    transform: translate3d(0, calc(-50% + var(--vision-video-y, 0px)), 0) scale(1.08);
    filter: saturate(1.28) blur(.2px);
    mix-blend-mode: screen;
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 0 45%, rgba(0, 0, 0, .8) 58%, transparent 75%);
    mask-image: radial-gradient(circle at 50% 50%, black 0 45%, rgba(0, 0, 0, .8) 58%, transparent 75%);
}

.vision-section .container {
    position: relative;
    z-index: 1;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 36px;
}

.vision-grid article {
    position: relative;
    padding: 22px 0 22px 26px;
    transition: transform .25s ease, color .25s ease;
}

.vision-grid article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 3px;
    height: 54px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 24px rgba(0, 167, 230, .36);
    transform: scaleY(.6);
    transform-origin: top;
    transition: transform .25s ease;
}

.vision-grid article:hover {
    transform: translateX(8px);
}

.vision-grid article:hover::before {
    transform: scaleY(1);
}

.vision-grid h3 {
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    margin: 0 0 8px;
}

.faq-section {
    background: #090f19;
}

details {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    transition: background .2s ease, padding .2s ease;
}

details[open] {
    padding-inline: 16px;
    background: rgba(255, 255, 255, .035);
}

summary {
    cursor: pointer;
    font-size: 1.12rem;
    font-weight: 800;
}

.testimonial-slider {
    position: relative;
}

.testimonial {
    display: none;
    padding: 30px;
    text-align: center;
}

.testimonial.active {
    display: block;
    animation: testimonialIn .35s ease both;
}

.testimonial p {
    font-size: 1.15rem;
}

.testimonial h3 {
    margin: 18px 0 0;
}

.testimonial span {
    color: var(--muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.slider-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--panel-2);
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease;
}

.slider-controls button:hover {
    transform: translateY(-2px) scale(1.04);
    border-color: var(--accent);
}

.cta {
    padding: 76px 0;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(0, 167, 230, .22), rgba(45, 212, 191, .12)),
        radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .12), transparent 30%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    transform: translateX(-100%);
    animation: ctaSweep 5.5s ease-in-out infinite;
    pointer-events: none;
}

.cta h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.cta p {
    color: var(--muted);
    margin-bottom: 26px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
    gap: 52px;
    align-items: center;
}

form {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

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

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

input,
textarea,
select {
    width: 100%;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #f8fafc;
    color: #0f172a;
    padding: 13px 14px;
    font: inherit;
}

textarea {
    resize: vertical;
}

.invalid {
    border-color: var(--danger);
}

small {
    color: #fecaca;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.alert {
    margin-top: 18px;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
}

.alert.ok {
    border-color: rgba(34, 197, 94, .5);
    background: rgba(34, 197, 94, .12);
}

.alert.error {
    border-color: rgba(239, 68, 68, .5);
    background: rgba(239, 68, 68, .12);
}

.contact-info {
    display: grid;
    gap: 18px;
}

.contact-info article {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
}

.contact-info span {
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: var(--accent);
    color: #00131f;
    font-weight: 900;
}

.contact-info p {
    margin: 0;
}

.contact-info strong {
    overflow-wrap: anywhere;
}

.job-list,
.blog-list {
    display: grid;
    gap: 18px;
}

.job-card,
.blog-card {
    padding: 26px;
    overflow: hidden;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.job-card .meta,
.blog-card time {
    color: var(--muted);
}

.blog-card {
    display: block;
}

.blog-card h2 {
    margin: 4px 0 8px;
    font-size: 1.45rem;
    color: #7dd3fc;
}

.article time {
    color: var(--muted);
}

.article h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.1;
}

.lead {
    font-size: 1.25rem;
}

.back-link {
    color: #7dd3fc;
}

.site-footer {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: center;
    padding: 34px clamp(16px, 4vw, 48px);
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-footer strong {
    display: block;
    color: var(--text);
    font-size: 1.8rem;
}

.site-footer p {
    margin: 0;
    overflow-wrap: anywhere;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

@media (max-width: 980px) {
    body {
        overflow-x: clip;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        padding: 18px;
        background: rgba(2, 4, 10, .96);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

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

    .site-nav a {
        padding: 10px 4px;
    }

    .site-nav .button {
        width: 100%;
        margin-top: 4px;
    }

    .steps-grid,
    .card-grid.four,
    .portfolio-grid,
    .vision-grid,
    .contact-layout,
    .seo-layout,
    .showcase-layout,
    .detail-grid,
    .local-grid {
        grid-template-columns: 1fr;
    }

    .showcase-sticky {
        position: relative;
        top: auto;
        min-height: auto;
    }

    .showcase-cards {
        padding: 12px 0 0;
    }

    .showcase-orbit {
        width: min(300px, 68vw);
    }

    .seo-orbit-wrap {
        min-height: 340px;
    }

    .process-roadmap {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 8px 0 8px 22px;
    }

    .process-line {
        left: -49%;
        opacity: .55;
        width: 84px;
    }

    .process-step:nth-of-type(even) {
        transform: none;
    }

    .process-step {
        min-height: auto;
        padding: 22px;
    }

    .step-card {
        min-height: auto;
    }

    .site-footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer nav {
        justify-content: center;
    }

    .scroll-orb {
        width: clamp(70px, 20vw, 118px);
        right: 18px;
        top: 92px;
        opacity: .32;
    }

    .vision-section video {
        right: -34%;
        width: 112vw;
        opacity: .12;
    }

    .vision-section::before {
        background:
            linear-gradient(180deg, #02040a 0%, rgba(2, 4, 10, .78) 42%, #02040a 100%),
            radial-gradient(circle at 84% 34%, rgba(0, 167, 230, .16), transparent 38%);
    }
}

@media (max-width: 640px) {
    .container,
    .narrow,
    .steps-grid {
        width: min(100% - 24px, 1120px);
    }

    .site-header {
        min-height: 70px;
        padding: 12px;
    }

    .brand {
        font-size: 1.7rem;
    }

    .scroll-progress {
        top: 69px;
    }

    .hero {
        align-items: center;
        min-height: auto;
        padding-top: 116px;
        padding-bottom: 64px;
    }

    .hero-video {
        width: 100%;
        opacity: .42;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(2, 4, 10, .84) 0%, rgba(2, 4, 10, .68) 48%, #02040a 100%),
            radial-gradient(circle at 30% 26%, rgba(0, 167, 230, .2), transparent 36%);
    }

    .hero-orbit {
        width: 240px;
        opacity: .42;
    }

    .orbit-one {
        right: -96px;
        top: 16%;
    }

    .orbit-two {
        right: -132px;
        top: 48%;
    }

    .hero-content {
        margin-top: 0;
        transform: none;
    }

    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.55rem, 15vw, 3.75rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .hero p {
        max-width: 100%;
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .button {
        width: 100%;
        min-height: 48px;
    }

    .section {
        padding: 58px 0;
    }

    .page-top {
        padding-top: 116px;
    }

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

    .section h2,
    .section-title h1,
    .section-title h2,
    .seo-layout h2,
    .contact-copy h2,
    .career-copy h2,
    .cta h2,
    .article h1 {
        font-size: clamp(1.85rem, 10vw, 2.55rem);
        line-height: 1.12;
        overflow-wrap: anywhere;
    }

    .step-card,
    .service-card,
    .job-card,
    .blog-card,
    .testimonial,
    .contact-info article,
    .detail-card,
    .local-grid article,
    .value-panel {
        padding: 22px;
    }

    .service-card {
        min-height: 230px;
    }

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

    .portfolio-card {
        min-height: 280px;
    }

    .scroll-scene {
        opacity: .38;
    }

    .scene-line {
        width: 72vw;
    }

    .showcase-sticky h2 {
        font-size: clamp(1.95rem, 10vw, 2.7rem);
        line-height: 1.1;
    }

    .showcase-orbit {
        width: min(240px, 72vw);
        margin-top: 24px;
    }

    .showcase-card {
        min-height: auto;
        padding: 24px;
        transform: none;
        opacity: .78;
    }

    .showcase-card.active {
        transform: none;
    }

    .seo-interactive {
        padding-block: 58px;
    }

    .seo-orbit-wrap {
        min-height: 360px;
    }

    .seo-hotspot {
        min-width: 58px;
        min-height: 34px;
        padding: 7px 10px;
        font-size: .82rem;
    }

    .seo-insight {
        width: min(250px, calc(100% - 92px));
        padding: 15px;
    }

    .seo-playground .value-panel {
        padding: 18px;
    }

    .portfolio-card div {
        padding: 76px 18px 20px;
        transform: none;
    }

    .portfolio-card h3 {
        font-size: 1.38rem;
        overflow-wrap: anywhere;
    }

    .portfolio-card span {
        top: 12px;
        right: 12px;
        max-width: calc(100% - 24px);
        font-size: .76rem;
    }

    .process-roadmap {
        padding-left: 16px;
    }

    .process-line {
        left: -42px;
        width: 70px;
    }

    .process-line path {
        stroke-width: 6;
    }

    .process-step span {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .process-step h3,
    .step-card h3,
    .service-card h3,
    .job-card h3 {
        font-size: 1.25rem;
    }

    .value-panel article {
        padding: 18px 16px 18px 46px;
    }

    .value-panel span {
        left: 16px;
    }

    .article-tags span {
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .article-cta {
        padding: 22px;
    }

    .lead {
        font-size: 1.05rem;
    }

    .scroll-orb {
        width: 64px;
        right: 10px;
        top: 82px;
        opacity: .22;
    }

    .vision-section::after {
        right: -36%;
        width: 118vw;
        opacity: .24;
    }

    .vision-section video {
        right: -58%;
        width: 150vw;
        opacity: .08;
    }

    .vision-grid article {
        padding-left: 18px;
    }

    .contact-layout {
        gap: 32px;
    }

    input,
    textarea {
        font-size: 16px;
    }

    .site-footer {
        padding: 28px 12px;
        gap: 16px;
    }

    .site-footer strong {
        font-size: 1.55rem;
    }

    .site-footer nav {
        gap: 12px;
    }
}

@media (max-width: 420px) {
    .container,
    .narrow,
    .steps-grid {
        width: min(100% - 20px, 1120px);
    }

    .brand {
        font-size: 1.48rem;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 16vw, 3.1rem);
    }

    .hero p,
    .section p,
    .section-title p,
    .lead {
        font-size: .98rem;
    }

    .portfolio-card {
        min-height: 250px;
    }

    .portfolio-card img {
        opacity: .36;
    }

    .portfolio-card p,
    .process-step p,
    .detail-card p,
    .local-grid article p {
        font-size: .96rem;
    }

    .process-roadmap {
        padding-left: 0;
    }

    .process-line {
        display: none;
    }

    .process-step {
        padding: 20px;
    }

    .scroll-orb {
        display: none;
    }

    .scroll-scene {
        display: none;
    }

    .showcase-orbit {
        width: min(210px, 74vw);
    }

    .seo-orbit-wrap {
        min-height: 330px;
    }

    .seo-insight {
        width: calc(100% - 28px);
    }
}

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

@keyframes videoBreath {
    0%, 100% {
        opacity: .68;
        filter: saturate(1.08) contrast(1.04);
    }
    50% {
        opacity: .88;
        filter: saturate(1.28) contrast(1.12);
    }
}

@keyframes auroraFlow {
    from {
        transform: translate3d(-2%, -1%, 0) scale(1);
    }
    to {
        transform: translate3d(3%, 2%, 0) scale(1.08);
    }
}

@keyframes gridDrift {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 64px 64px;
    }
}

@keyframes orbitSpin {
    to {
        rotate: 360deg;
    }
}

@keyframes orbPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .7;
    }
    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

@keyframes lineGrow {
    from {
        transform: scaleX(0);
        opacity: 0;
    }
    to {
        transform: scaleX(1);
        opacity: 1;
    }
}

@keyframes testimonialIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes ctaSweep {
    0%, 42% {
        transform: translateX(-100%);
    }
    70%, 100% {
        transform: translateX(100%);
    }
}

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

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

    .scroll-orb {
        display: none;
    }

    .scroll-scene {
        display: none;
    }
}
