/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black-deepest: #050505;
    --black: #0b0b0c;
    --charcoal: #131316;
    --graphite: #1c1c20;
    --steel: #292930;
    --gray-dark: #3d3d44;
    --gray: #6a6a73;
    --gray-light: #9b9ba4;
    --gray-pale: #c8c8cf;
    --gray-mist: #e4e4e8;
    --paper: #f3f3f5;

    --red: #c8102e;
    --red-bright: #e63946;
    --red-deep: #7a0a1c;
    --red-glow: #ff4655;

    --ink: #f3f3f5;
    --ink-soft: #a5a5ad;
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.14);

    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    --max: 1280px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--black);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease), opacity .25s var(--ease); }
button { font-family: inherit; cursor: pointer; border: 0; background: 0; }
ul { list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }

/* ---------- Navigation ---------- */
.nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    padding: 18px 0;
    transition: background .3s var(--ease), padding .3s var(--ease), border-color .3s var(--ease);
    border-bottom: 1px solid transparent;
}
.nav.scrolled {
    background: rgba(11, 11, 12, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom-color: var(--line);
}
.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
}
.logo {
    display: inline-flex; align-items: center;
    color: var(--ink);
    transition: opacity .25s var(--ease);
    flex-shrink: 0;
}
.logo:hover { opacity: 0.85; }
.logo-img {
    height: 48px;
    width: auto;
    display: block;
    transition: height .3s var(--ease);
}
.nav.scrolled .logo-img { height: 40px; }
.footer .logo-img { height: 64px; }

.nav-links {
    display: flex; gap: 36px;
    font-size: 13.5px;
    font-weight: 500;
    margin-left: auto;
}
.nav-links a {
    color: var(--gray-pale);
    position: relative;
    padding: 6px 0;
    letter-spacing: 0.005em;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
    display: inline-flex; align-items: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--gray-dark);
    border-radius: 4px;
    transition: all .25s var(--ease);
}
.nav-cta:hover {
    background: var(--red);
    border-color: var(--red);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 140px 0 120px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 60% at 50% 45%, rgba(200, 16, 46, 0.18), transparent 65%),
        radial-gradient(ellipse at 10% 90%, rgba(40, 40, 48, 0.6), transparent 50%),
        linear-gradient(180deg, var(--black-deepest) 0%, #0a0a0d 50%, var(--black) 100%);
    border-bottom: 1px solid var(--line);
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 85%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 85%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.45;
    animation: drift 26s ease-in-out infinite;
}
.orb-1 {
    width: 620px; height: 620px;
    top: -180px; right: -160px;
    background: radial-gradient(circle, var(--red), transparent 70%);
}
.orb-2 {
    width: 520px; height: 520px;
    bottom: -220px; left: -140px;
    background: radial-gradient(circle, var(--red-deep), transparent 70%);
    animation-delay: -10s;
    opacity: 0.35;
}
.hero-scan {
    position: absolute;
    left: 8%; right: 8%;
    height: 1px;
    top: 50%;
    background: linear-gradient(90deg, transparent, rgba(230, 57, 70, 0.4), transparent);
    animation: hero-scan 9s ease-in-out infinite;
    opacity: 0.6;
}
@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(30px, -20px) scale(1.05); }
}
@keyframes hero-scan {
    0%, 100% { transform: translateY(-260px); opacity: 0; }
    20%      { opacity: 0.6; }
    50%      { transform: translateY(260px); opacity: 0.6; }
    80%      { opacity: 0; }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 880px;
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-pale);
    padding: 9px 18px 9px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    margin-bottom: 56px;
    backdrop-filter: blur(8px);
}
.eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--red-bright);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--red-glow);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.45; transform: scale(0.85); }
}

.hero-logo-stage {
    margin-bottom: 64px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.4vw, 46px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.022em;
    color: var(--ink);
    margin-bottom: 24px;
    max-width: 24ch;
}

.hero-lead {
    font-size: clamp(15px, 1.15vw, 18px);
    line-height: 1.6;
    color: var(--gray-light);
    max-width: 58ch;
    margin-bottom: 44px;
    font-weight: 400;
}

.hero-cta {
    display: flex; flex-wrap: wrap; gap: 14px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    color: var(--gray);
    z-index: 3;
}
.hero-scroll:hover { color: var(--gray-pale); }
.hero-scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(180deg, transparent, var(--red-bright), transparent);
    position: relative;
    overflow: hidden;
}
.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -40%; left: 0;
    width: 100%; height: 40%;
    background: var(--red-bright);
    animation: scroll-drop 2.4s ease-in-out infinite;
}
.hero-scroll-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
}
@keyframes scroll-drop {
    0%   { top: -40%; opacity: 0; }
    30%  { opacity: 1; }
    70%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 4px;
    transition: all .25s var(--ease);
    border: 1px solid transparent;
}
.btn-primary {
    background: var(--red);
    color: var(--ink);
}
.btn-primary:hover {
    background: var(--red-bright);
    transform: translateY(-1px);
    box-shadow: 0 12px 32px -10px rgba(230, 57, 70, 0.55);
}
.btn-ghost {
    color: var(--ink);
    border-color: var(--gray-dark);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--black);
    border-color: var(--ink);
}

/* ---------- Trust strip ---------- */
.strip {
    padding: 56px 0;
    background: var(--black-deepest);
    border-bottom: 1px solid var(--line);
}
.strip-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray);
    text-align: center;
    margin-bottom: 32px;
    font-weight: 500;
}
.strip-logos {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 56px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--gray-light);
}
.strip-logos span {
    transition: color .25s var(--ease);
}
.strip-logos span:hover { color: var(--gray-pale); }

/* ---------- Metrics ---------- */
.metrics {
    padding: 80px 0;
    background: var(--black);
    border-bottom: 1px solid var(--line);
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}
.metric {
    padding: 40px 36px;
    border-right: 1px solid var(--line);
    background: var(--charcoal);
    transition: background .3s var(--ease);
}
.metric:last-child { border-right: 0; }
.metric:hover { background: var(--graphite); }
.metric-num {
    font-family: var(--font-display);
    font-size: clamp(36px, 3.4vw, 52px);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 12px;
    display: flex; align-items: baseline; gap: 2px;
}
.metric-num span {
    color: var(--red-bright);
    font-size: 0.7em;
}
.metric-label {
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-light);
    font-weight: 400;
}

/* ---------- Sections ---------- */
.section {
    padding: 120px 0;
    position: relative;
    background: var(--black);
}
.section-dark {
    background: var(--black-deepest);
}
.section-jade {
    background:
        radial-gradient(ellipse at 15% 30%, rgba(200, 16, 46, 0.10), transparent 55%),
        linear-gradient(180deg, var(--charcoal) 0%, var(--black-deepest) 100%);
    position: relative;
}
.section-jade::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px);
    background-size: 100% 80px;
    pointer-events: none;
    mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
    -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}
.section-jade .container { position: relative; z-index: 1; }

.section-head { margin-bottom: 72px; max-width: 760px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

.kicker {
    display: inline-flex; align-items: center; gap: 14px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 24px;
}
.kicker-num {
    color: var(--red-bright);
    padding-right: 14px;
    border-right: 1px solid var(--line-strong);
}

h2 {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.6vw, 46px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.022em;
    color: var(--ink);
}

.section-sub {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--gray-light);
    max-width: 60ch;
}

.grid-two {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: start;
}
.section-body p {
    margin-bottom: 18px;
    color: var(--gray-pale);
    font-size: 16px;
    line-height: 1.75;
}
.section-body p:last-child { margin-bottom: 0; }
.section-body .lead {
    font-size: 20px;
    line-height: 1.55;
    color: var(--ink);
    font-weight: 400;
    margin-bottom: 24px;
}

/* ---------- Services / Capabilities ---------- */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
}
.service {
    padding: 44px 36px 40px;
    background: var(--charcoal);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .3s var(--ease);
    position: relative;
}
.service:nth-child(3n) { border-right: 0; }
.service:nth-last-child(-n+3) { border-bottom: 0; }
.service:hover {
    background: var(--graphite);
}
.service-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 28px;
}
.service-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--red-bright);
}
.service-icon {
    width: 28px; height: 28px;
    color: var(--gray-pale);
    opacity: 0.85;
}
.service-icon svg { width: 100%; height: 100%; }
.service h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.005em;
}
.service p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--gray-light);
}

.platforms {
    margin-top: 56px;
    padding: 28px 32px;
    background: var(--charcoal);
    border: 1px solid var(--line);
    border-radius: 6px;
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 14px 28px;
}
.platforms-label {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray);
}
.platforms-list {
    font-size: 14px;
    color: var(--gray-pale);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ---------- Animated logo stage ---------- */
.logo-stage {
    position: relative;
    width: clamp(240px, 34vw, 420px);
    height: clamp(240px, 34vw, 420px);
    display: flex; align-items: center; justify-content: center;
    animation: float 7s ease-in-out infinite;
}
.logo-hero {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 3;
    filter:
        drop-shadow(0 0 30px rgba(230, 57, 70, 0.3))
        drop-shadow(0 20px 60px rgba(200, 16, 46, 0.45));
}
.logo-aura {
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, rgba(230, 57, 70, 0.4), transparent 55%);
    filter: blur(48px);
    animation: aura-pulse 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}
.logo-shimmer {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
    -webkit-mask-image: url('logo.png');
    mask-image: url('logo.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}
.logo-shimmer::after {
    content: '';
    position: absolute;
    top: -10%; left: -60%;
    width: 60%; height: 120%;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.25) 45%,
        rgba(255, 255, 255, 0.55) 50%,
        rgba(255, 255, 255, 0.25) 55%,
        transparent 70%);
    animation: shimmer 5s ease-in-out infinite;
}
.showcase-ring {
    position: absolute;
    top: 50%; left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: ring-rotate 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}
.ring-1 {
    width: 140%; height: 140%;
    border-color: rgba(230, 57, 70, 0.22);
    animation-duration: 24s;
}
.ring-2 {
    width: 200%; height: 200%;
    border-color: rgba(255, 255, 255, 0.07);
    animation-duration: 48s;
    animation-direction: reverse;
}
.ring-3 {
    width: 280%; height: 280%;
    border-color: rgba(200, 16, 46, 0.10);
    animation-duration: 90s;
    border-style: dashed;
}
.ring-dot {
    position: absolute;
    top: -5px; left: 50%;
    width: 10px; height: 10px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: var(--red-bright);
    box-shadow: 0 0 16px var(--red-glow), 0 0 4px var(--red-bright);
}
.ring-2 .ring-dot {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
    width: 7px; height: 7px;
    top: -3.5px;
}
.ring-3 .ring-dot {
    background: var(--red);
    box-shadow: 0 0 18px rgba(230, 57, 70, 0.6);
    width: 6px; height: 6px;
    top: -3px;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}
@keyframes aura-pulse {
    0%, 100% { opacity: 0.55; transform: scale(1); }
    50%      { opacity: 0.9; transform: scale(1.1); }
}
@keyframes shimmer {
    0%      { transform: translateX(0); }
    60%     { transform: translateX(320%); }
    100%    { transform: translateX(320%); }
}
@keyframes ring-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .showcase-ring, .logo-stage, .logo-aura, .logo-shimmer::after, .hero-scan, .eyebrow-dot, .orb, .hero-scroll-line::after {
        animation: none;
    }
}

/* ---------- Approach / Principles ---------- */
.principles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.principle {
    padding: 44px 40px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background .3s var(--ease);
}
.principle:hover { background: rgba(255, 255, 255, 0.02); }
.principle-num {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--red-bright);
    margin-bottom: 20px;
}
.principle h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.principle p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-pale);
}

/* ---------- Contact ---------- */
.contact-inner { max-width: 1100px; margin: 0 auto; }
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 16px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.contact-card {
    padding: 32px 36px;
    background: var(--charcoal);
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transition: background .3s var(--ease);
    position: relative;
}
.contact-card::after {
    content: '→';
    position: absolute;
    top: 32px; right: 36px;
    color: var(--gray);
    font-size: 18px;
    transition: transform .3s var(--ease), color .3s var(--ease);
}
.contact-card:hover {
    background: var(--graphite);
}
.contact-card:hover::after {
    color: var(--red-bright);
    transform: translateX(4px);
}
.contact-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray-light);
    font-weight: 500;
    margin-bottom: 12px;
}
.contact-value {
    font-family: var(--font-display);
    font-size: 19px;
    color: var(--ink);
    font-weight: 600;
    letter-spacing: -0.005em;
    margin-bottom: 10px;
}
.contact-meta {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--black-deepest);
    color: var(--ink);
    padding: 88px 0 32px;
    border-top: 1px solid var(--line);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.3fr 2fr;
    gap: 80px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--line);
}
.footer-brand .logo { color: var(--ink); margin-bottom: 24px; }
.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-light);
    max-width: 38ch;
}
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer-links h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
    font-weight: 500;
}
.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-pale);
}
.footer-links a:hover { color: var(--ink); }

.footer-bottom {
    padding-top: 28px;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px;
    color: var(--gray);
    letter-spacing: 0.02em;
}
.footer-tag { color: var(--gray-light); }

/* ---------- Reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .nav-cta { display: none; }
    .grid-two { grid-template-columns: 1fr; gap: 48px; }
    .services { grid-template-columns: repeat(2, 1fr); }
    .service:nth-child(3n) { border-right: 1px solid var(--line); }
    .service:nth-child(2n) { border-right: 0; }
    .service:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
    .service:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 860px) {
    .hero-logo-stage { margin-bottom: 48px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.open {
        display: flex;
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--black);
        padding: 24px 32px;
        gap: 18px;
        border-top: 1px solid var(--line);
        margin: 0;
    }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .metric:nth-child(2n) { border-right: 0; }
    .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .principles { grid-template-columns: 1fr; }
    .principle { border-right: 0; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { border-right: 0; }
    .footer-inner { grid-template-columns: 1fr; gap: 48px; }
    .section { padding: 88px 0; }
    .section-head { margin-bottom: 56px; }
}
@media (max-width: 600px) {
    .hero { min-height: auto; padding: 120px 0 90px; }
    .hero-scroll { display: none; }
    .container, .nav-inner { padding: 0 22px; }
    .logo-img { height: 40px; }
    .nav.scrolled .logo-img { height: 36px; }
    .footer .logo-img { height: 52px; }
    .services { grid-template-columns: 1fr; }
    .service { border-right: 0; }
    .metrics-grid { grid-template-columns: 1fr; }
    .metric { border-right: 0; border-bottom: 1px solid var(--line); }
    .metric:last-child { border-bottom: 0; }
    .footer-links { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero { padding: 130px 0 70px; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .btn { justify-content: center; }
    .strip-logos { gap: 14px 28px; font-size: 12px; }
    .platforms { flex-direction: column; align-items: flex-start; gap: 10px; padding: 22px 24px; }
}
