/* ============================================================
   DeviLabs — service page system  (component prefix: sp-)
   Shared by the six service detail pages so the family stays
   visually identical and the CSS is downloaded once, not six
   times inline. Tokens are copied verbatim from /geo so the
   pages sit in the same palette as the rest of the site.
   ============================================================ */

:root {
    --dark-bg: #14532D;
    --light-bg: #F5F5F0;
    --white: #FFFFFF;
    --accent: #4ADE80;
    --accent-hover: #22C55E;
    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --max-width: 1200px;
    --section-padding: clamp(72px, 10vw, 130px);
    --border-radius: 12px;

    --svc-deep: #0F2A1F;
    --svc-darker: #0a1810;
    --svc-black: #0A0F0C;
    --svc-mint: #8FE3A8;
    --svc-off-white: #E9EFEA;
    --svc-lime: #C8FA4B;

    /* Light-section ink */
    --ink: #0F2A1F;
    --ink-soft: rgba(15,42,31,0.72);
    --ink-faint: rgba(15,42,31,0.14);
    --lime-ink: #4d7a12;
}

/* ── reset & base ───────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--svc-deep);
    color: var(--svc-off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--svc-lime); outline-offset: 3px; }

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

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 999;
    background: var(--svc-lime); color: var(--svc-deep);
    padding: 12px 20px; font-weight: 700; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ── scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── shared section furniture ───────────────────────────── */
.sp-section { padding: var(--section-padding) 0; }
.sp-section--light { background: var(--white); color: var(--ink); }
.sp-section--light .sp-h2 { color: var(--ink); }
.sp-section--light .sp-h2 em { color: var(--lime-ink); }
.sp-section--light .sp-eyebrow { color: var(--lime-ink); }
.sp-section--light .sp-lead { color: var(--ink-soft); }
.sp-section--light .sp-lead strong { color: var(--ink); }

.sp-eyebrow {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--svc-mint);
    margin-bottom: 18px;
}
.sp-h2 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--svc-off-white);
    margin: 0 0 20px;
    text-wrap: balance;
}
.sp-h2 em { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 400; color: var(--svc-mint); }
.sp-lead {
    font-size: clamp(16px, 1.7vw, 18.5px);
    line-height: 1.7;
    color: rgba(233,239,234,0.72);
    max-width: 68ch;
}
.sp-lead + .sp-lead { margin-top: 18px; }
.sp-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 62px); }

/* ── buttons ────────────────────────────────────────────── */
.sp-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--svc-lime); color: var(--svc-deep);
    font-family: var(--font-body); font-weight: 700; font-size: 15.5px;
    padding: 16px 30px; border-radius: 999px;
    text-decoration: none; border: 1px solid var(--svc-lime);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.sp-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -18px rgba(200,250,75,0.7); }
.sp-btn--ghost { background: transparent; color: var(--svc-off-white); border-color: rgba(233,239,234,0.28); }
.sp-btn--ghost:hover { border-color: var(--svc-mint); color: var(--svc-mint); box-shadow: none; }

/* ============================================================
   1 — HERO
   ============================================================ */
.sp-hero {
    position: relative;
    padding: clamp(88px, 13vw, 150px) 0 clamp(60px, 9vw, 110px);
    background:
        radial-gradient(1300px 420px at 30% -6%, rgba(143,227,168,0.13), transparent 70%),
        radial-gradient(1100px 640px at 74% 16%, rgba(143,227,168,0.20), transparent 58%),
        radial-gradient(760px 520px at 96% 0%, rgba(64,168,140,0.16), transparent 62%),
        radial-gradient(820px 560px at 6% 92%, rgba(200,250,75,0.075), transparent 64%),
        linear-gradient(163deg, #0F2A1F 0%, #0D2219 30%, #0A1710 64%, #080D0A 100%);
    overflow: hidden;
}
.sp-hero::after {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(1400px 900px at 50% 45%, transparent 42%, rgba(4,8,6,0.42) 100%);
    pointer-events: none;
}
.sp-hero > * { position: relative; z-index: 1; }
.sp-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

/* service number chip — mirrors the 01 / 07 numbering on the
   homepage fan and the services page cards */
.sp-hero__num {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--svc-lime);
    border: 1px solid rgba(200,250,75,0.34);
    background: rgba(200,250,75,0.07);
    padding: 6px 14px; border-radius: 999px;
    margin-bottom: 20px;
}
.sp-hero__num i { font-style: normal; color: rgba(233,239,234,0.5); }

.sp-hero__h1 {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(38px, 6.2vw, 76px);
    line-height: 0.98;
    letter-spacing: -0.025em;
    color: var(--svc-off-white);
    margin: 0 0 22px;
    text-wrap: balance;
}
.sp-hero__sub {
    font-size: clamp(16px, 1.9vw, 19.5px);
    line-height: 1.65;
    color: rgba(233,239,234,0.75);
    max-width: 54ch;
    margin: 0 0 34px;
}
.sp-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.sp-hero__note { margin-top: 20px; font-size: 14px; color: rgba(233,239,234,0.66); }
.sp-hero__visual { display: flex; align-items: center; justify-content: center; min-height: 260px; }
.sp-hero__visual svg { width: 100%; max-width: 400px; }

/* hero entrance — independent of the scroll observer */
.sp-in { opacity: 0; transform: translateY(26px); }
.sp-in.loaded { opacity: 1; transform: none; transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1); }
.sp-in--1.loaded { transition-delay: 0.05s; }
.sp-in--2.loaded { transition-delay: 0.17s; }
.sp-in--3.loaded { transition-delay: 0.29s; }

@media (max-width: 900px) {
    .sp-hero__grid { grid-template-columns: 1fr; }
    .sp-hero__visual { order: -1; min-height: 0; }
    .sp-hero__visual svg { max-width: 300px; }
}

/* ============================================================
   SVG art primitives — shared across every page motif
   ============================================================ */
.sp-art { color: var(--svc-mint); overflow: visible; }
.sp-art .stroke     { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sp-art .stroke-dim { stroke: rgba(233,239,234,0.22); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sp-art .fill-lime  { fill: var(--svc-lime); }
.sp-art .fill-mint  { fill: var(--svc-mint); }
.sp-art .fill-dim   { fill: rgba(233,239,234,0.18); }
.sp-art .lime       { stroke: var(--svc-lime); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.sp-art .label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px; font-weight: 500;
    fill: rgba(233,239,234,0.6);
    stroke: none;
}
.sp-art .label--lime { fill: var(--svc-lime); font-weight: 700; }
.sp-art .pulse { transform-box: fill-box; transform-origin: center; animation: sp-pulse 2.8s ease-in-out infinite; }
.sp-art .pulse-2 { animation-delay: 0.55s; }
.sp-art .pulse-3 { animation-delay: 1.1s; }
.sp-art .pulse-4 { animation-delay: 1.65s; }
@keyframes sp-pulse { 0%,100% { opacity: 0.32; } 50% { opacity: 1; } }
.sp-art .dash { stroke-dasharray: 5 7; animation: sp-dash 1.6s linear infinite; }
@keyframes sp-dash { to { stroke-dashoffset: -24; } }

/* light-section variant of the art */
.sp-section--light .sp-art { color: var(--lime-ink); }
.sp-section--light .sp-art .stroke-dim { stroke: rgba(15,42,31,0.2); }
.sp-section--light .sp-art .fill-lime { fill: var(--lime-ink); }
.sp-section--light .sp-art .fill-mint { fill: var(--lime-ink); }
.sp-section--light .sp-art .fill-dim { fill: rgba(15,42,31,0.16); }
.sp-section--light .sp-art .lime { stroke: var(--lime-ink); }
.sp-section--light .sp-art .label { fill: rgba(15,42,31,0.6); }
.sp-section--light .sp-art .label--lime { fill: var(--lime-ink); }

/* ============================================================
   2 — PROBLEM (near-black)
   ============================================================ */
.sp-problem {
    background:
        radial-gradient(1000px 520px at 82% 2%, rgba(143,227,168,0.09), transparent 64%),
        radial-gradient(760px 420px at 10% 98%, rgba(200,250,75,0.045), transparent 66%),
        linear-gradient(178deg, #0C1310 0%, #0A0F0C 54%, #080C09 100%);
    color: var(--svc-off-white);
}
.sp-problem .sp-h2 { color: #FFFFFF; }
.sp-problem__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}
.sp-problem__body { max-width: 62ch; }
.sp-problem__body p {
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.75;
    color: rgba(233,239,234,0.72);
}
.sp-problem__body p + p { margin-top: 20px; }
.sp-problem__body strong { color: #FFFFFF; font-weight: 600; }

/* the one-line verdict that closes the section */
.sp-verdict {
    margin-top: clamp(34px, 4.4vw, 52px);
    border: 1px solid rgba(200,250,75,0.3);
    border-radius: 20px;
    background:
        radial-gradient(620px 300px at 88% 12%, rgba(200,250,75,0.1), transparent 66%),
        linear-gradient(150deg, rgba(143,227,168,0.09) 0%, rgba(10,15,12,0.3) 60%);
    padding: clamp(28px, 3.6vw, 46px);
}
.sp-verdict p {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(22px, 3.1vw, 36px);
    line-height: 1.12; letter-spacing: -0.02em;
    color: #FFFFFF;
    margin: 0; max-width: 26ch;
}
@media (max-width: 900px) {
    .sp-problem__grid { grid-template-columns: 1fr; }
    .sp-problem__visual { order: -1; }
}

/* ============================================================
   3 — WHAT WE DO (block grid)
   ============================================================ */
.sp-do {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: clamp(16px, 2.2vw, 24px);
    margin-top: clamp(12px, 2vw, 20px);
}
.sp-do__block {
    border: 1px solid rgba(233,239,234,0.1);
    border-top: 2px solid rgba(143,227,168,0.42);
    border-radius: 4px 4px 18px 18px;
    background: rgba(233,239,234,0.03);
    padding: clamp(26px, 3vw, 34px);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, background 0.4s ease;
}
.sp-do__block:hover { transform: translateY(-5px); border-color: rgba(143,227,168,0.5); background: rgba(143,227,168,0.05); }
.sp-do__icon {
    width: 48px; height: 48px; border-radius: 13px;
    display: grid; place-items: center;
    background: rgba(143,227,168,0.13);
    border: 1px solid rgba(143,227,168,0.26);
    color: var(--svc-mint);
    margin-bottom: 20px;
    transition: background 0.35s ease, color 0.35s ease;
}
.sp-do__icon svg { width: 22px; height: 22px; }
.sp-do__block:hover .sp-do__icon { background: var(--svc-lime); border-color: var(--svc-lime); color: #0A0F0C; }
.sp-do__block h3 {
    font-family: var(--font-body);
    font-size: clamp(17px, 1.9vw, 19.5px); font-weight: 700;
    color: #FFFFFF; margin: 0 0 10px; line-height: 1.3;
}
.sp-do__block p { font-size: 15.5px; line-height: 1.68; color: rgba(233,239,234,0.68); margin: 0; }

/* light-section variant */
.sp-section--light .sp-do__block { background: #FBFCFA; border-color: var(--ink-faint); border-top-color: var(--lime-ink); }
.sp-section--light .sp-do__block:hover { background: #FFFFFF; border-color: rgba(77,122,18,0.4); box-shadow: 0 26px 50px -36px rgba(15,42,31,0.4); }
.sp-section--light .sp-do__icon { background: rgba(77,122,18,0.1); border-color: rgba(77,122,18,0.22); color: var(--lime-ink); }
.sp-section--light .sp-do__block:hover .sp-do__icon { background: var(--lime-ink); border-color: var(--lime-ink); color: #FFFFFF; }
.sp-section--light .sp-do__block h3 { color: var(--ink); }
.sp-section--light .sp-do__block p { color: var(--ink-soft); }

@media (max-width: 760px) { .sp-do { grid-template-columns: 1fr; } }

/* ============================================================
   4 — HOW IT WORKS (visual stepper)
   ============================================================ */
.sp-process {
    background:
        radial-gradient(900px 460px at 86% 6%, rgba(143,227,168,0.09), transparent 64%),
        linear-gradient(176deg, #0F2A1F 0%, #0c2119 60%, #0a1810 100%);
}
.sp-process__diagram {
    margin: 0 auto clamp(40px, 5vw, 60px);
    max-width: 900px;
}
.sp-process__diagram svg { width: 100%; height: auto; }

.sp-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(var(--sp-count, 4), minmax(0,1fr));
    gap: 0 clamp(14px, 2vw, 26px);
}
/* the rail the nodes sit on */
.sp-steps::before {
    content: "";
    position: absolute;
    top: 21px; left: 22px; right: 22px; height: 2px;
    background: linear-gradient(90deg,
        var(--svc-lime) 0%,
        rgba(143,227,168,0.55) 26%,
        rgba(143,227,168,0.24) 62%,
        rgba(143,227,168,0.09) 100%);
}
.sp-step { position: relative; padding: 0 0 0 0; }
.sp-step__node {
    position: relative; z-index: 1;
    width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center;
    background: #0d241a;
    border: 1px solid rgba(143,227,168,0.32);
    color: var(--svc-mint);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em;
    margin-bottom: 22px;
    transition: border-color 0.35s ease, color 0.35s ease, transform 0.35s ease;
}
.sp-step:first-child .sp-step__node {
    background: var(--svc-lime); border-color: var(--svc-lime); color: #0A0F0C;
    box-shadow: 0 0 0 4px rgba(200,250,75,0.12);
}
.sp-step:hover .sp-step__node { border-color: var(--svc-lime); color: var(--svc-lime); transform: scale(1.06); }
.sp-step:first-child:hover .sp-step__node { color: #0A0F0C; }
.sp-step h3 {
    font-family: var(--font-body);
    font-size: 17px; font-weight: 700; line-height: 1.3;
    color: #FFFFFF; margin: 0 0 9px;
    padding-right: 10px;
}
.sp-step p { font-size: 14.5px; line-height: 1.62; color: rgba(233,239,234,0.64); margin: 0; padding-right: 10px; }

@media (max-width: 860px) {
    .sp-steps { grid-template-columns: 1fr; gap: 0; }
    .sp-steps::before { top: 22px; bottom: 22px; left: 21px; right: auto; width: 2px; height: auto;
        background: linear-gradient(180deg,
            var(--svc-lime) 0%,
            rgba(143,227,168,0.55) 26%,
            rgba(143,227,168,0.24) 62%,
            rgba(143,227,168,0.09) 100%); }
    .sp-step { display: grid; grid-template-columns: 44px minmax(0,1fr); gap: 0 22px; padding-bottom: 30px; }
    .sp-step:last-child { padding-bottom: 0; }
    .sp-step__node { grid-column: 1; grid-row: 1; margin-bottom: 0; }
    .sp-step h3 { grid-column: 2; grid-row: 1; padding-top: 10px; }
    .sp-step p { grid-column: 2; grid-row: 2; }
}

/* ============================================================
   5 — WHAT YOU GET (deliverables)
   ============================================================ */
.sp-get__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 12px clamp(20px, 3vw, 46px);
    margin-top: clamp(30px, 4vw, 44px);
    list-style: none;
}
.sp-get__grid li {
    position: relative;
    padding: 15px 0 15px 34px;
    font-size: 15.5px; line-height: 1.6;
    color: var(--ink-soft);
    border-bottom: 1px solid var(--ink-faint);
}
.sp-get__grid li::before {
    content: ""; position: absolute; left: 2px; top: 22px;
    width: 14px; height: 8px;
    border-left: 2px solid var(--lime-ink);
    border-bottom: 2px solid var(--lime-ink);
    transform: rotate(-45deg);
}
.sp-get__grid li strong { color: var(--ink); font-weight: 600; }
.sp-get__note { margin-top: clamp(28px, 3.4vw, 40px); font-size: 15px; color: var(--ink-soft); }
.sp-get__note a { color: var(--lime-ink); font-weight: 600; }
@media (max-width: 760px) { .sp-get__grid { grid-template-columns: 1fr; } }

/* ============================================================
   6 — PROOF
   ============================================================ */
.sp-proof {
    background:
        radial-gradient(1000px 520px at 16% 4%, rgba(143,227,168,0.09), transparent 64%),
        radial-gradient(800px 440px at 88% 96%, rgba(200,250,75,0.05), transparent 66%),
        linear-gradient(178deg, #0C1310 0%, #0A0F0C 54%, #080C09 100%);
}
.sp-proof .sp-h2 { color: #FFFFFF; }
.sp-proof__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 18px;
}
.sp-proof__card {
    display: flex; flex-direction: column;
    border: 1px solid rgba(233,239,234,0.1);
    border-radius: 18px;
    background: rgba(233,239,234,0.03);
    padding: clamp(24px, 3vw, 32px);
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.4s ease, background 0.4s ease;
}
a.sp-proof__card:hover { transform: translateY(-5px); border-color: rgba(143,227,168,0.42); background: rgba(143,227,168,0.05); }
.sp-proof__brand {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--svc-mint);
    margin-bottom: 16px;
}
.sp-proof__stat {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(30px, 3.6vw, 44px); line-height: 1;
    letter-spacing: -0.02em;
    color: var(--svc-lime);
    margin-bottom: 12px;
}
.sp-proof__card h3 {
    font-family: var(--font-body);
    font-size: 16.5px; font-weight: 700; line-height: 1.35;
    color: #FFFFFF; margin: 0 0 10px;
}
.sp-proof__card p { font-size: 15px; line-height: 1.65; color: rgba(233,239,234,0.68); margin: 0; }
.sp-proof__more {
    margin-top: auto; padding-top: 18px;
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--svc-lime);
}
.sp-proof__more::after { content: "\2192"; transition: transform 0.25s ease; }
a.sp-proof__card:hover .sp-proof__more::after { transform: translateX(4px); }
.sp-proof__caveat { margin-top: clamp(26px, 3vw, 34px); font-size: 14px; line-height: 1.7; color: rgba(233,239,234,0.55); max-width: 78ch; }
.sp-proof__caveat a { color: var(--svc-mint); font-weight: 600; }

/* ============================================================
   7 — FAQ (white accordion — same behaviour as /geo)
   ============================================================ */
.sp-faq__list { max-width: 900px; margin-top: clamp(36px, 4.4vw, 48px); }
.sp-faq__item { border-bottom: 1px solid var(--ink-faint); }
.sp-faq__q {
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
    width: 100%;
    background: none; border: none; cursor: pointer;
    padding: 24px 0;
    text-align: left;
    font-family: var(--font-body);
    font-size: clamp(16.5px, 1.9vw, 19px); font-weight: 600;
    color: var(--ink);
    transition: color 0.25s ease;
}
.sp-faq__q:hover { color: var(--lime-ink); }
.sp-faq__chevron {
    flex: 0 0 auto; width: 22px; height: 22px;
    color: var(--lime-ink);
    transition: transform 0.38s cubic-bezier(0.16,1,0.3,1);
}
.sp-faq__q[aria-expanded="true"] .sp-faq__chevron { transform: rotate(180deg); }
.sp-faq__panel { overflow: hidden; max-height: 0; transition: max-height 0.42s cubic-bezier(0.16,1,0.3,1); }
.sp-faq__answer { font-size: 15.5px; line-height: 1.72; color: var(--ink-soft); max-width: 76ch; }
.sp-faq__answer > :first-child { padding-top: 2px; }
.sp-faq__answer > :last-child { padding-bottom: 26px; }
.sp-faq__answer p + p { margin-top: 14px; }
.sp-faq__answer a { color: var(--lime-ink); font-weight: 600; }
/* No-JS fallback — show every answer rather than hiding content */
.no-js .sp-faq__panel { max-height: none; }

/* ============================================================
   8 — CLOSING CTA
   ============================================================ */
.sp-close {
    text-align: center;
    padding: clamp(56px, 7vw, 88px) 0;
    background: linear-gradient(168deg, #173524 0%, #0F2A1F 62%, #0a1f15 100%);
    border-top: 1px solid rgba(143,227,168,0.14);
}
.sp-close .sp-h2 { margin-inline: auto; max-width: 20ch; }
.sp-close .sp-lead { margin-inline: auto; text-align: center; margin-bottom: 30px; }

/* ============================================================
   9 — OTHER SERVICES ROW
   Compact sibling navigation. Also used on /geo.
   ============================================================ */
.sp-other {
    padding: clamp(52px, 6.5vw, 84px) 0;
    background: var(--svc-darker);
    border-top: 1px solid rgba(233,239,234,0.08);
}
.sp-other__top {
    display: flex; flex-wrap: wrap; align-items: baseline;
    justify-content: space-between; gap: 12px 24px;
    margin-bottom: clamp(24px, 3vw, 34px);
}
.sp-other__h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(22px, 2.6vw, 30px); line-height: 1.1;
    letter-spacing: -0.02em; color: var(--svc-off-white); margin: 0;
}
.sp-other__all {
    font-size: 14.5px; font-weight: 600; color: var(--svc-mint);
    text-decoration: none; white-space: nowrap;
}
.sp-other__all::after { content: " \2192"; }
.sp-other__all:hover { color: var(--svc-lime); }
.sp-other__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
@media (max-width: 900px) { .sp-other__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .sp-other__grid { grid-template-columns: 1fr; } }
.sp-other__card {
    display: flex; flex-direction: column; gap: 7px;
    border: 1px solid rgba(233,239,234,0.1);
    border-radius: 14px;
    background: rgba(233,239,234,0.03);
    padding: 20px 22px;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.35s ease, background 0.35s ease;
}
.sp-other__card:hover { transform: translateY(-3px); border-color: rgba(143,227,168,0.42); background: rgba(143,227,168,0.05); }
.sp-other__card[aria-current="page"] {
    border-color: rgba(200,250,75,0.5);
    background: rgba(200,250,75,0.07);
}
.sp-other__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10.5px; font-weight: 700; letter-spacing: 0.16em;
    color: rgba(233,239,234,0.45);
}
.sp-other__card[aria-current="page"] .sp-other__num { color: var(--svc-lime); }
.sp-other__name {
    font-family: var(--font-body); font-size: 15.5px; font-weight: 700;
    line-height: 1.3; color: var(--svc-off-white);
}
.sp-other__tag { font-size: 13.5px; line-height: 1.5; color: rgba(233,239,234,0.58); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .sp-in { opacity: 1; transform: none; }
    .sp-art .pulse { animation: none; opacity: 0.8; }
    .sp-art .dash { animation: none; }
    .sp-do__block:hover, .sp-proof__card:hover, .sp-other__card:hover { transform: none; }
    .sp-step:hover .sp-step__node { transform: none; }
}
