:root {
    --bg-color: #04111f;
    --bg-secondary: #0a1a2f;
    --bg-tertiary: #0f2743;
    --bg-soft: rgba(255, 255, 255, 0.04);
    --text-color: #edf5ff;
    --text-muted: #9db3cc;
    --primary-blue: #63a6ff;
    --primary-cyan: #59f0ff;
    --primary-coral: #ff7d61;
    --primary-gold: #ffd978;
    --gradient-main: linear-gradient(135deg, #63a6ff 0%, #59f0ff 100%);
    --gradient-warm: linear-gradient(135deg, #ff7d61 0%, #ffd978 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 30px 80px rgba(0, 0, 0, 0.38);
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Manrope', sans-serif;
    --container-width: 1200px;
    --nav-height: 82px;
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(circle at 12% 18%, rgba(89, 240, 255, 0.12), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(255, 125, 97, 0.12), transparent 24%),
        radial-gradient(circle at 62% 82%, rgba(99, 166, 255, 0.13), transparent 24%),
        linear-gradient(180deg, #04111f 0%, #07182b 48%, #051221 100%);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, #d5ecff 0%, #5cefff 45%, #ffca8e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.container {
    width: min(90%, var(--container-width));
    margin: 0 auto;
}

.section {
    padding: 110px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #d6ebff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 4vw, 3.3rem);
    letter-spacing: -0.03em;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 64px;
    height: 4px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: var(--gradient-main);
}

.section-subtitle {
    max-width: 640px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 54px;
    padding: 0.95rem 1.8rem;
    border: none;
    border-radius: 16px;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, #57a6ff 0%, #59f0ff 100%);
    color: #04111f;
    box-shadow: 0 18px 34px rgba(89, 240, 255, 0.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(89, 240, 255, 0.24);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #e6f2ff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(89, 240, 255, 0.4);
    transform: translateY(-2px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(4, 17, 31, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(4, 17, 31, 0.9);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo img {
    width: auto;
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a:not(.btn) {
    color: rgba(237, 245, 255, 0.8);
    font-size: 0.93rem;
    font-weight: 600;
}

.nav-links a:not(.btn):hover,
.nav-links a:not(.btn).active {
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background: #fff;
    transition: var(--transition);
}

.mobile-menu-btn.active span:first-child {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + 50px) 0 110px;
    overflow: hidden;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content {
    max-width: 640px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #dceeff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-cyan);
    box-shadow: 0 0 0 6px rgba(89, 240, 255, 0.16);
}

.hero-title {
    font-size: clamp(3.25rem, 7vw, 5.6rem);
    letter-spacing: -0.05em;
    margin-bottom: 1.35rem;
}

.hero-subtitle {
    max-width: 590px;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.15rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.metric-card {
    padding: 1.1rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.metric-card strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #fff;
    font-size: 1.45rem;
    font-family: var(--font-heading);
}

.metric-card span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.hero-background-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
}

.hero-glow-one {
    top: 12%;
    right: 6%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(89, 240, 255, 0.18), transparent 66%);
}

.hero-glow-two {
    bottom: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 125, 97, 0.16), transparent 70%);
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 28%, transparent 72%);
    opacity: 0.24;
}

.hero-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-model-board {
    position: relative;
    width: min(560px, 100%);
    padding: 1.4rem;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(10, 26, 47, 0.92), rgba(7, 19, 34, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
    transform-style: preserve-3d;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.hero-model-board::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(6px);
    animation: drift 14s ease-in-out infinite;
}

.hero-orb-one {
    top: 8%;
    right: 3%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(89, 240, 255, 0.42), transparent 68%);
}

.hero-orb-two {
    left: -4%;
    bottom: 12%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(255, 125, 97, 0.3), transparent 66%);
    animation-delay: -4s;
}

.hero-panel {
    position: relative;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.hero-panel-main {
    min-height: 420px;
    padding: 1.2rem;
}

.hero-panel-side {
    position: absolute;
    right: -2rem;
    bottom: 2.8rem;
    width: 220px;
    padding: 1.1rem;
    backdrop-filter: blur(14px);
}

.panel-topbar {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.3rem;
}

.panel-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
}

.panel-topbar span:first-child {
    background: #ff7d61;
}

.panel-topbar span:nth-child(2) {
    background: #ffd978;
}

.panel-topbar span:last-child {
    background: #59f0ff;
}

.panel-copy {
    max-width: 360px;
    margin-bottom: 1.6rem;
}

.panel-kicker {
    margin-bottom: 0.55rem;
    color: #a9dcff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.panel-copy h3 {
    font-size: 1.9rem;
    letter-spacing: -0.03em;
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.6rem;
}

.signal-card {
    padding: 1rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.signal-card span {
    display: block;
    margin-bottom: 0.3rem;
    color: #8fb8dd;
    font-size: 0.78rem;
}

.signal-card strong {
    color: #fff;
    font-size: 0.98rem;
}

.panel-graph {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: end;
    gap: 0.9rem;
    height: 170px;
    padding: 1rem;
    border-radius: 22px;
    background:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(180deg, rgba(99, 166, 255, 0.08), rgba(89, 240, 255, 0.04));
    background-size: 100% 34px, 64px 100%, 100% 100%;
    overflow: hidden;
}

.graph-bar {
    border-radius: 16px 16px 6px 6px;
    background: var(--gradient-main);
    box-shadow: 0 14px 24px rgba(89, 240, 255, 0.18);
    animation: barPulse 5s ease-in-out infinite;
}

.bar-1 { height: 40%; animation-delay: -1s; }
.bar-2 { height: 66%; animation-delay: -2s; }
.bar-3 { height: 54%; animation-delay: -3s; }
.bar-4 { height: 84%; animation-delay: -0.5s; }
.bar-5 { height: 74%; animation-delay: -2.5s; }

.graph-line {
    position: absolute;
    inset: auto 1rem 2rem 1rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 125, 97, 0.5), rgba(89, 240, 255, 0.8), rgba(255, 255, 255, 0));
}

.graph-line::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 28px;
    height: 78px;
    background: linear-gradient(135deg, transparent 18%, rgba(255, 125, 97, 0.6) 28%, transparent 34%, transparent 45%, rgba(89, 240, 255, 0.9) 58%, transparent 64%, transparent 74%, rgba(255, 217, 120, 0.65) 88%, transparent 92%);
    opacity: 0.95;
}

.hero-panel-side p {
    margin-bottom: 0.8rem;
    color: #d8ecff;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.panel-list {
    display: grid;
    gap: 0.7rem;
}

.panel-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #d9ecff;
    font-size: 0.92rem;
}

.panel-list li::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--primary-coral);
    box-shadow: 0 0 0 5px rgba(255, 125, 97, 0.14);
}

.floating-badge,
.hero-mini-card {
    position: absolute;
    backdrop-filter: blur(16px);
    animation: float 8s ease-in-out infinite;
}

.floating-badge {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 24px rgba(0, 0, 0, 0.18);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.badge-cyan {
    top: -18px;
    left: 6%;
    background: rgba(89, 240, 255, 0.18);
    color: #d8ffff;
}

.badge-red {
    right: 12%;
    top: 18%;
    background: rgba(255, 125, 97, 0.18);
    color: #ffe3dc;
    animation-delay: -3s;
}

.hero-mini-card {
    min-width: 180px;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-mini-card span {
    display: block;
    margin-bottom: 0.28rem;
    color: #8fb8dd;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-mini-card strong {
    color: #fff;
    font-size: 0.95rem;
}

.hero-mini-card-top {
    right: -1rem;
    top: 55%;
}

.hero-mini-card-bottom {
    left: -1.4rem;
    bottom: 1.8rem;
    animation-delay: -4s;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: rgba(237, 245, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    z-index: 3;
}

.scroll-cue-icon {
    position: relative;
    width: 28px;
    height: 46px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.scroll-cue-icon::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 50%;
    width: 6px;
    height: 10px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #fff;
    animation: scrollCue 1.6s ease-in-out infinite;
}

.impact-band {
    position: relative;
    margin-top: -48px;
    z-index: 3;
    padding-bottom: 1rem;
}

.impact-band-wrap {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 1.6rem;
    align-items: stretch;
    padding: 1.6rem;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(12, 31, 53, 0.92), rgba(8, 22, 37, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.impact-intro {
    padding: 1rem;
}

.impact-intro h2 {
    max-width: 480px;
    font-size: clamp(1.8rem, 3.4vw, 2.7rem);
    letter-spacing: -0.03em;
}

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

.impact-card {
    padding: 1.4rem 1.1rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.impact-card strong {
    display: inline-block;
    margin-bottom: 0.85rem;
    color: #d8f5ff;
    font-size: 1.7rem;
    font-family: var(--font-heading);
}

.impact-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.services {
    position: relative;
}

.services::before,
.showcase::before,
.process::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(20px);
    opacity: 0.8;
}

.services::before {
    top: 80px;
    left: -120px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(89, 240, 255, 0.16), transparent 70%);
}

.graphic-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 2.2rem;
}

.graphic-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--gradient-main);
    box-shadow: 0 0 18px rgba(89, 240, 255, 0.45);
}

.graphic-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(89, 240, 255, 0.6), rgba(255, 255, 255, 0.1));
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.service-card {
    position: relative;
    min-height: 100%;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(10, 26, 47, 0.96), rgba(7, 19, 34, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.09);
    overflow: hidden;
    transition: var(--transition);
}

.service-card::before,
.service-card::after {
    content: '';
    position: absolute;
    transition: var(--transition);
    pointer-events: none;
}

.service-card::before {
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-main);
    opacity: 0;
}

.service-card::after {
    top: -40px;
    right: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(89, 240, 255, 0.18), transparent 72%);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(89, 240, 255, 0.28);
    box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 68px;
    height: 68px;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #8adfff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.icon-box svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.service-card h3 {
    margin-bottom: 0.85rem;
    font-size: 1.35rem;
}

.service-card p {
    color: var(--text-muted);
}

.ai-development {
    background: linear-gradient(180deg, rgba(11, 25, 42, 0.65), rgba(6, 17, 31, 0.65));
}

.ai-development-wrap {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.92), rgba(15, 39, 67, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.ai-development-text .section-title::after,
.about-text .section-title::after,
.contact-info .section-title::after {
    left: 0;
    transform: none;
}

.ai-development-text p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.feature-list {
    display: grid;
    gap: 0.9rem;
    margin: 1.8rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: #e7f3ff;
    font-size: 1rem;
}

.feature-list li::before {
    content: '';
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #59f0ff, #63a6ff);
    box-shadow: 0 0 0 6px rgba(89, 240, 255, 0.12);
}

.ai-development-image {
    position: relative;
}

.ai-development-image::after {
    content: '';
    position: absolute;
    inset: auto 20px -22px auto;
    width: 180px;
    height: 180px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 125, 97, 0.22), rgba(255, 217, 120, 0.12));
    filter: blur(10px);
    z-index: 0;
}

.ai-development-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-strong);
}

.process::before {
    right: -90px;
    bottom: 60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 125, 97, 0.14), transparent 72%);
}

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

.process-track::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, rgba(89, 240, 255, 0.15), rgba(89, 240, 255, 0.75), rgba(255, 125, 97, 0.5));
}

.process-card {
    position: relative;
    padding: 2rem 1.4rem 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.process-number {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1.1rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(89, 240, 255, 0.22), rgba(99, 166, 255, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
}

.process-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.25rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.97rem;
}

.about {
    background: linear-gradient(180deg, rgba(10, 26, 47, 0.82), rgba(7, 19, 34, 0.88));
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
}

.about-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.visual-card {
    padding: 2rem 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.visual-card span {
    display: block;
    margin-bottom: 0.45rem;
    color: #8adfff;
    font-size: 2.85rem;
    font-family: var(--font-heading);
}

.visual-card p {
    color: var(--text-muted);
}

.about-photo-wrap {
    grid-column: 1 / -1;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-strong);
}

.about-photo-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.visual-orbit {
    position: absolute;
    right: -36px;
    top: 50%;
    transform: translateY(-50%);
    width: 136px;
    height: 136px;
}

.orbit-ring {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(99, 166, 255, 0.45);
    animation: spin 18s linear infinite;
}

.orbit-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--gradient-main);
    box-shadow: 0 0 22px rgba(89, 240, 255, 0.45);
}

.showcase {
    position: relative;
}

.showcase::before {
    top: 18%;
    right: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(99, 166, 255, 0.12), transparent 74%);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-auto-rows: minmax(0, 1fr);
    gap: 1.4rem;
}

.showcase-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.showcase-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 26%, transparent 70%, rgba(89, 240, 255, 0.06));
    pointer-events: none;
}

.showcase-card-featured {
    grid-row: span 2;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: rgba(89, 240, 255, 0.28);
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.3);
}

.showcase-media {
    position: relative;
    overflow: hidden;
}

.showcase-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card-featured img {
    height: 320px;
}

.showcase-card:hover img {
    transform: scale(1.05);
}

.showcase-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(4, 17, 31, 0.02), rgba(4, 17, 31, 0.16) 48%, rgba(4, 17, 31, 0.78)),
        radial-gradient(circle at top right, rgba(89, 240, 255, 0.22), transparent 32%);
    pointer-events: none;
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem;
}

.showcase-pill,
.showcase-signal {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.78rem;
    border-radius: 999px;
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #eef8ff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.showcase-pill {
    background: rgba(6, 20, 37, 0.48);
}

.showcase-pill-warm {
    background: rgba(255, 125, 97, 0.18);
    color: #fff2ea;
}

.showcase-signal {
    margin-top: auto;
    align-self: flex-end;
    background: rgba(6, 20, 37, 0.58);
}

.signal-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7dff9c;
    box-shadow: 0 0 0 6px rgba(125, 255, 156, 0.12);
}

.showcase-graphic-card {
    width: 150px;
    padding: 0.85rem;
    border-radius: 20px;
    align-self: flex-end;
    background: rgba(6, 20, 37, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
}

.showcase-graphic-card span {
    display: block;
    margin-bottom: 0.75rem;
    color: #d7f4ff;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-mini-bars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: end;
    gap: 0.45rem;
    height: 58px;
}

.mini-bar {
    display: block;
    border-radius: 10px 10px 4px 4px;
    background: linear-gradient(180deg, #8edfff 0%, #63a6ff 100%);
    box-shadow: 0 10px 16px rgba(99, 166, 255, 0.18);
}

.mini-bar-1 { height: 42%; }
.mini-bar-2 { height: 74%; }
.mini-bar-3 { height: 58%; }
.mini-bar-4 { height: 90%; }

.showcase-content {
    position: relative;
    z-index: 1;
    display: grid;
    flex: 1;
    gap: 0.9rem;
    padding: 1.25rem 1.2rem 1.4rem;
}

.showcase-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.showcase-meta span,
.showcase-tags span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.showcase-meta span {
    padding: 0.38rem 0.68rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #dbeeff;
}

.showcase-content h3 {
    margin-bottom: 0.45rem;
    font-size: 1.25rem;
}

.showcase-content p {
    color: var(--text-muted);
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.showcase-tags span {
    padding: 0.38rem 0.72rem;
    background: rgba(89, 240, 255, 0.1);
    border: 1px solid rgba(89, 240, 255, 0.16);
    color: #d7fbff;
}

.showcase-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: 0.2rem;
}

.showcase-stats div {
    padding: 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-stats strong {
    display: block;
    margin-bottom: 0.18rem;
    color: #ffffff;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.showcase-stats span {
    color: var(--text-muted);
    font-size: 0.83rem;
}

.showcase-bottom-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 0.4rem;
}

.showcase-bottom-item {
    min-height: 100%;
    padding: 1rem 0.9rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-bottom-item span {
    display: block;
    margin-bottom: 0.35rem;
    color: #8fb8dd;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-bottom-item strong {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.45;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 2rem;
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.92), rgba(15, 39, 67, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.contact-info p {
    max-width: 360px;
    color: var(--text-muted);
}

.info-item {
    margin-top: 1.2rem;
    color: #ebf4ff;
    font-size: 1.02rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.98rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(89, 240, 255, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(89, 240, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.full-width {
    width: 100%;
}

.locations-showcase {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 1.4rem;
    align-items: stretch;
    margin-top: 1.6rem;
}

.locations-map-card {
    width: 100%;
    margin-top: 0;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.locations-map-card h3 {
    margin-bottom: 0.2rem;
    font-size: 1.12rem;
}

.locations-map-card p {
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.simple-map {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #eef4fa;
    border: 1px solid rgba(16, 35, 61, 0.08);
}

.world-map {
    width: 100%;
    height: auto;
}

.map-marker {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transform: translate(-50%, -50%);
}

.map-marker.label-left {
    flex-direction: row-reverse;
}

.map-marker.label-top {
    flex-direction: column-reverse;
    align-items: center;
}

.pin-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e63946;
    border: 2px solid #fff;
    box-shadow: 0 0 0 5px rgba(230, 57, 70, 0.2), 0 0 10px rgba(230, 57, 70, 0.35);
}

.map-label {
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 35, 61, 0.12);
    color: #10233d;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(16, 35, 61, 0.12);
}

.map-marker.dubai { top: 42.8%; left: 65.3%; }
.map-marker.london { top: 31.6%; left: 48.8%; }
.map-marker.kochi { top: 47.2%; left: 71.2%; }

.location-innovation-card {
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(8, 22, 37, 0.94), rgba(13, 36, 60, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.location-innovation-card::before,
.location-innovation-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.location-innovation-card::before {
    top: -60px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(89, 240, 255, 0.16), transparent 70%);
}

.location-innovation-card::after {
    bottom: -70px;
    left: -30px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 125, 97, 0.14), transparent 72%);
}

.location-innovation-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 0.55rem;
    font-size: 1.45rem;
}

.location-innovation-card p {
    position: relative;
    z-index: 1;
    max-width: 680px;
    color: var(--text-muted);
    font-size: 0.96rem;
}

.network-flow {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin: 1.2rem 0;
}

.network-flow::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, rgba(89, 240, 255, 0.3), rgba(89, 240, 255, 0.78), rgba(255, 125, 97, 0.5));
    z-index: 0;
}

.network-city {
    position: relative;
    z-index: 1;
    padding: 1rem 0.9rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    backdrop-filter: blur(12px);
}

.network-city::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #59f0ff, #63a6ff);
    box-shadow: 0 0 0 6px rgba(89, 240, 255, 0.12);
}

.network-city strong {
    display: block;
    margin-bottom: 0.28rem;
    color: #ffffff;
    font-size: 0.98rem;
}

.network-city span {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.45;
}

.network-highlights {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.network-highlight {
    padding: 1rem 0.9rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.network-highlight strong {
    display: block;
    margin-bottom: 0.2rem;
    color: #ffffff;
    font-size: 1.18rem;
    font-family: var(--font-heading);
}

.network-highlight span {
    color: var(--text-muted);
    font-size: 0.82rem;
}

.network-ribbon {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1rem;
}

.network-ribbon span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(89, 240, 255, 0.1);
    border: 1px solid rgba(89, 240, 255, 0.16);
    color: #d7fbff;
    font-size: 0.8rem;
    font-weight: 700;
}

.legal-page {
    min-height: 100vh;
}

.legal-main {
    padding-top: calc(var(--nav-height) + 36px);
    padding-bottom: 80px;
}

.legal-hero {
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(10, 26, 47, 0.92), rgba(15, 39, 67, 0.84));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.legal-hero p {
    max-width: 760px;
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 1.02rem;
}

.legal-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.2rem;
}

.legal-meta span {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #dbeeff;
    font-size: 0.82rem;
    font-weight: 700;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: 1.5rem;
    align-items: start;
}

.legal-sidebar,
.legal-content-card {
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.035));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.legal-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
    padding: 1.4rem;
}

.legal-sidebar h2,
.legal-content-card h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-sidebar p {
    color: var(--text-muted);
    font-size: 0.94rem;
}

.legal-nav {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.1rem;
}

.legal-nav a {
    padding: 0.75rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e8f4ff;
    font-size: 0.92rem;
    font-weight: 700;
}

.legal-nav a:hover {
    border-color: rgba(89, 240, 255, 0.28);
    background: rgba(89, 240, 255, 0.08);
}

.legal-content-card {
    padding: 1.6rem;
}

.legal-block + .legal-block {
    margin-top: 1.35rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block h3 {
    margin-bottom: 0.75rem;
    font-size: 1.12rem;
}

.legal-block p {
    color: var(--text-muted);
    font-size: 0.96rem;
}

.legal-block p + p {
    margin-top: 0.75rem;
}

.legal-list {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.legal-list li {
    position: relative;
    padding-left: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.legal-list li::before {
    content: '';
    position: absolute;
    top: 0.6rem;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #59f0ff, #63a6ff);
    box-shadow: 0 0 0 5px rgba(89, 240, 255, 0.1);
}

.legal-note {
    margin-top: 1.4rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 125, 97, 0.08);
    border: 1px solid rgba(255, 125, 97, 0.16);
    color: #ffe9e2;
    font-size: 0.92rem;
}

.legal-contact {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.legal-contact strong {
    color: #ffffff;
}

.footer {
    margin-top: auto;
    padding: 3rem 0;
    background: rgba(2, 10, 19, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 58px;
}

.footer-brand p,
.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.footer-links {
    display: flex;
    gap: 1.6rem;
}

.footer-links a:hover {
    color: #fff;
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: var(--delay, 0ms);
}

[data-animate="scale"] {
    transform: translateY(26px) scale(0.94);
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes float {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -10px, 0); }
}

@keyframes drift {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(14px, -18px, 0); }
}

@keyframes barPulse {
    0%, 100% { transform: scaleY(0.92); }
    50% { transform: scaleY(1.05); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scrollCue {
    0% { transform: translate(-50%, 0); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: translate(-50%, 15px); opacity: 0; }
}

@media (max-width: 1100px) {
    .hero-layout,
    .impact-band-wrap,
    .ai-development-wrap,
    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .locations-showcase {
        grid-template-columns: 1fr;
    }

    .network-flow,
    .network-highlights {
        grid-template-columns: 1fr;
    }

    .network-flow::before {
        display: none;
    }

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

    .legal-sidebar {
        position: static;
    }

    .hero-visual {
        min-height: 560px;
    }

    .impact-intro h2 {
        max-width: none;
    }

    .hero-panel-side {
        right: 0;
    }

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

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

@media (max-width: 968px) {
    .section {
        padding: 90px 0;
    }

    .hero {
        min-height: auto;
        padding-bottom: 90px;
    }

    .hero-metrics,
    .impact-grid,
    .signal-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .hero-model-board {
        width: min(100%, 600px);
    }

    .showcase-card-featured {
        grid-row: span 1;
    }

    .showcase-bottom-panel {
        grid-template-columns: 1fr;
    }

    .hero-mini-card-top,
    .hero-mini-card-bottom {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 1rem;
    }

    .hero-panel-side {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 1rem;
    }

    .about-visual {
        order: 2;
    }

    .about-text {
        order: 1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(82vw, 360px);
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        background: rgba(5, 18, 33, 0.98);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.4);
        transition: right 0.35s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-title {
        font-size: 2.9rem;
    }

    .hero-subtitle {
        font-size: 1.02rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-visual {
        min-height: 500px;
    }

    .hero-model-board {
        padding: 1rem;
        border-radius: 24px;
    }

    .hero-panel-main {
        min-height: 360px;
        padding: 1rem;
    }

    .panel-copy h3 {
        font-size: 1.55rem;
    }

    .impact-band {
        margin-top: -20px;
    }

    .impact-band-wrap,
    .contact-wrapper,
    .ai-development-wrap,
    .legal-hero,
    .legal-content-card,
    .legal-sidebar {
        padding: 1.4rem;
    }

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

    .contact-wrapper {
        gap: 1.4rem;
    }

    .locations-map-card {
        width: 100%;
    }

    .footer-content,
    .footer-brand,
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .scroll-cue {
        display: none;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(92%, var(--container-width));
    }

    .section {
        padding: 72px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero-eyebrow,
    .section-kicker {
        font-size: 0.7rem;
        letter-spacing: 0.1em;
    }

    .hero-metrics {
        grid-template-columns: 1fr;
    }

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

    .panel-graph {
        gap: 0.55rem;
        height: 150px;
    }

    .showcase-card img,
    .showcase-card-featured img {
        height: 220px;
    }

    .showcase-overlay {
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-graphic-card {
        width: 100%;
        align-self: stretch;
    }

    .showcase-stats {
        grid-template-columns: 1fr;
    }

    .graphic-line {
        width: 42px;
    }

    .map-label {
        font-size: 0.66rem;
        padding: 0.16rem 0.36rem;
    }
}

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

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

    [data-animate] {
        opacity: 1;
        transform: none;
    }
}
