@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Primary Colors */
    --primary: #8dd8ff;
    --primary-light: #7bffc6;
    --primary-dark: #5ba8cc;

    /* Neutral Palette */
    --light: #f4f7fb;
    --silver: #a7b3c2;
    --deep: #0a0d12;
    --navy: #0f151d;
    --slate: #141b24;

    /* Transparencies */
    --glass: rgba(17, 22, 29, 0.78);
    --glass-border: rgba(141, 216, 255, 0.18);
    --glass-hover: rgba(141, 216, 255, 0.08);

    /* Fonts */
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-glow: 0 0 30px rgba(141, 216, 255, 0.15);

    /* Design System Scale (from OUTPERO) */
    --text-hero: clamp(2.25rem, 4.5vw, 3.75rem);
    --text-h2: clamp(1.75rem, 3vw, 2.75rem);
    --text-h3: clamp(1.25rem, 2vw, 1.75rem);
    --text-body-lg: clamp(0.9375rem, 1.2vw, 1.125rem);
    --text-body: clamp(0.875rem, 1.1vw, 1rem);
    --space-section-y: clamp(3.5rem, 6vw, 6rem);
    --space-header-mb: clamp(2.5rem, 4.5vw, 4.5rem);
}

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

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

body {
    background:
        radial-gradient(circle at 15% 10%, color-mix(in srgb, #8dd8ff 7%, transparent), transparent 34%),
        radial-gradient(ellipse at 100% 0%, rgba(58, 107, 94, 0.55), transparent 50%),
        radial-gradient(circle at 88% 6%, color-mix(in srgb, #7bffc6 18%, transparent), transparent 36%),
        linear-gradient(180deg, var(--deep), var(--navy));
    background-attachment: fixed;
    color: var(--light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Pattern */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(141, 216, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 216, 255, 0.07) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 80%);
    z-index: -1;
    pointer-events: none;
}

.mesh-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 50% 50%, rgba(141, 216, 255, 0.08), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(123, 255, 198, 0.05), transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 204, 141, 0.05), transparent 40%);
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
    animation: meshFlow 20s infinite alternate;
}

@keyframes meshFlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(10deg) scale(1.1);
    }
}

.glow-line {
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}


.resp-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
.font-display {
    font-family: var(--font-display);
}

.font-body {
    font-family: var(--font-body);
}

/* Font Weights */
.font-300 {
    font-weight: 300;
}

.font-400 {
    font-weight: 400;
}

.font-500 {
    font-weight: 500;
}

.font-600 {
    font-weight: 600;
}

.font-700 {
    font-weight: 700;
}

.font-800 {
    font-weight: 800;
}

/* Font Sizes */
.text-\[10px\] {
    font-size: 10px;
    line-height: 14px;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wide {
    letter-spacing: 0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-silver {
    color: var(--silver);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.375rem;
    border-radius: 9999px;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--deep);
    box-shadow: var(--shadow-glow);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    filter: brightness(1.1);
    active-scale: 0.98;
}

.btn-glass {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: var(--glass-hover);
    border-color: var(--primary);
}

.btn-outline {
    background: transparent;
    border: 1px solid #8dd8ff;
    color: var(--light);
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Glass Cards */
.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    border-color: rgba(141, 216, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

/* Navbar */
nav {
    position: sticky;
    top: 18px;
    z-index: 100;
    width: min(calc(100% - 36px), 1180px);
    margin: 18px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(141, 216, 255, 0.18);
    background: color-mix(in srgb, rgba(17, 22, 29, 0.78) 88%, transparent);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
    transition: background 0.3s ease, border-color 0.3s ease;
}

nav.scrolled {
    background: color-mix(in srgb, rgba(17, 22, 29, 0.95) 95%, transparent);
    border-color: rgba(141, 216, 255, 0.25);
}


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

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
    text-decoration: none;
    color: var(--light);
}

.logo-badge {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--deep);
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    padding: 0.3rem 0.75rem 0.3rem 0.35rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.11);
}

.theme-toggle-knob {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    flex-shrink: 0;
}

.theme-toggle-label {
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(163, 163, 163, 0.9);
    letter-spacing: 0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: #b3b3b3;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
    -webkit-text-fill-color: #b3b3b3;
}

.nav-links a:hover {
    background: linear-gradient(135deg, #7bffc6, #8dd8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a.active {
    background: linear-gradient(135deg, #7bffc6, #8dd8ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #8dd8ff, #7bffc6);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}



.hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-left {
    flex: 1;
    min-width: 0;
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
    overflow: visible;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.hero-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
    animation: dotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero h1 {
    font-size: clamp(1.75rem, 3.6vw, 3.25rem);
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: clamp(1.25rem, 2vw, 1.75rem);
    letter-spacing: -0.02em;
    color: #ffffff;
}

/* "leaking" — purple-to-indigo gradient */
.hero-leaking {
    background: linear-gradient(90deg, #8dd8ff 0%, #7bffc6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

/* "We seal it." — muted gray */
.hero-h1-muted {
    color: #6b7280;
    -webkit-text-fill-color: #6b7280;
}

.hero-h1-top {
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;
    display: inline;
}

.hero-h1-gradient {
    background: linear-gradient(90deg, #8dd8ff 0%, #7bffc6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline;
}

.hero-h1-orange {
    color: #ffcc8d;
}

.hero p {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #dcdee2;
    max-width: 520px;
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    width: 500px;
    height: 480px;
    flex-shrink: 0;
}

/* ── Hero Visual – Hexagonal ── */
.hv3-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hv3-line {
    animation: hv3DashFlow 3s linear infinite;
}

@keyframes hv3DashFlow {
    to {
        stroke-dashoffset: -20;
    }
}

.hv3-hub {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hv3-hub-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid rgba(141, 216, 255, 0.35);
    animation: hv3HubPulse 3s ease-out infinite;
}

.hv3-hub-pulse--2 {
    animation-delay: 1.5s;
    border-color: rgba(123, 255, 198, 0.25);
}

@keyframes hv3HubPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.hv3-hub-inner {
    width: 88px;
    height: 88px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.15), rgba(123, 255, 198, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    filter: drop-shadow(0 0 12px rgba(141, 216, 255, 0.4));
    transition: filter 0.3s;
    cursor: default;
}

.hv3-hub-inner:hover {
    filter: drop-shadow(0 0 22px rgba(141, 216, 255, 0.75));
}

.hv3-hub-label {
    font-size: 8px;
    font-weight: 700;
    color: #8dd8ff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hv3-node {
    position: absolute;
    width: 70px;
    height: 62px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: default;
    opacity: 0;
    animation: hv3NodeIn 0.6s ease forwards;
}

@keyframes hv3NodeIn {
    from {
        opacity: 0;
        transform: scale(0.7);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hv3-node--blue:hover .hv3-node-hex {
    filter: drop-shadow(0 0 12px #8dd8ff);
    transform: scale(1.12);
}

.hv3-node--green:hover .hv3-node-hex {
    filter: drop-shadow(0 0 12px #7bffc6);
    transform: scale(1.12);
}

.hv3-node:hover .hv3-node-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.hv3-node-hex {
    width: 58px;
    height: 52px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 0.25s, transform 0.25s;
    animation: hv3NodeFloat 4s ease-in-out infinite;
}

.hv3-hex--blue {
    background: rgba(141, 216, 255, 0.18);
    filter: drop-shadow(0 0 6px #8dd8ff);
}

.hv3-hex--green {
    background: rgba(123, 255, 198, 0.18);
    filter: drop-shadow(0 0 6px #7bffc6);
}

@keyframes hv3NodeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hv3-node-label {
    font-size: 9.5px;
    font-weight: 700;
    color: #e8f0fb;
    text-align: center;
    line-height: 1;
    white-space: nowrap;
}

.hv3-node-tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: rgba(10, 13, 18, 0.96);
    border: 1px solid rgba(141, 216, 255, 0.25);
    border-radius: 6px;
    padding: 5px 9px;
    font-size: 9px;
    color: #8dd8ff;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    pointer-events: none;
    z-index: 10;
}

.hv3-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 13, 18, 0.92);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    color: #e8f0fb;
    white-space: nowrap;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

.hv3-badge--tl {
    top: 18px;
    left: -5px;
    border: 1px solid rgba(141, 216, 255, 0.3);
    color: #8dd8ff;
    animation: hv3BadgeFloat1 4s ease-in-out infinite;
}

.hv3-badge--br {
    bottom: 18px;
    right: -5px;
    border: 1px solid rgba(123, 255, 198, 0.3);
    animation: hv3BadgeFloat2 4.5s ease-in-out infinite 0.8s;
}

.hv3-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8dd8ff;
    animation: hv3Blink 1.5s ease-in-out infinite;
}

@keyframes hv3Blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.2
    }
}

@keyframes hv3BadgeFloat1 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-7px)
    }
}

@keyframes hv3BadgeFloat2 {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(7px)
    }
}

/* Background elements */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(141, 216, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
}

.orb-1 {
    top: -200px;
    right: -200px;
    background: radial-gradient(circle, rgba(141, 216, 255, 0.06) 0%, transparent 70%);
}

.orb-2 {
    bottom: -100px;
    left: -200px;
    background: radial-gradient(circle, rgba(123, 255, 198, 0.07) 0%, transparent 70%);
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    background: radial-gradient(ellipse at bottom left, rgba(0, 0, 0, 0.72) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
}

/* Trusted Across Section */
.trusted-section {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(141, 216, 255, 0.18);
    border-bottom: 1px solid rgba(141, 216, 255, 0.18);
    overflow: hidden;
    background:
        linear-gradient(rgba(141, 216, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 216, 255, 0.025) 1px, transparent 1px),
        rgba(17, 22, 29, 0.15);
    background-size: 74px 74px, 74px 74px, auto;
}

.trusted-label {
    text-align: center;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: #a7b3c2;
    margin-bottom: 1.5rem;
}

.trusted-track-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 12%, black 88%, transparent 100%);
}

.trusted-track {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: max-content;
    animation: marqueeScroll 55s linear infinite;
}

.trusted-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.trusted-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    background: rgba(17, 22, 29, 0.78);
    border: 1px solid rgba(141, 216, 255, 0.18);
    border-radius: 0.75rem;
    white-space: nowrap;
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 500;
    color: #a7b3c2;
    transition: border-color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.trusted-pill:hover {
    border-color: rgba(141, 216, 255, 0.5);
    background: rgba(141, 216, 255, 0.06);
    color: #f4f7fb;
}

/* Pain Points Section */
.pain-section {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    position: relative;
    overflow: hidden;
}

.pain-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(141, 216, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 216, 255, 0.07) 1px, transparent 1px);
    background-size: 74px 74px;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.pain-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.pain-headline h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--light);
}

.pain-muted {
    background: linear-gradient(90deg, #8dd8ff 0%, #7bffc6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.btn-pain-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.22), rgba(123, 255, 198, 0.22));
    border: 1px solid rgba(141, 216, 255, 0.4);
    color: var(--light);
    font-family: var(--font-display);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.btn-pain-cta:hover {
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.35), rgba(123, 255, 198, 0.35));
    border-color: rgba(141, 216, 255, 0.65);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 24px rgba(141, 216, 255, 0.2);
}

.pain-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.pain-card {
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.45) 100%);
    backdrop-filter: blur(32px) saturate(180%);
    -webkit-backdrop-filter: blur(32px) saturate(180%);
    border: 1px solid #ffffff14;
    border-radius: clamp(1rem, 1.5vw, 1.25rem);
    box-shadow: 0 4px 24px -4px #0000004d;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
    position: relative;
}

/* Top-center border accent — light blue by default */
.pain-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(186, 230, 253, 0.35), transparent);
    border-radius: 9999px;
    transition: background 0.7s cubic-bezier(0.16, 1, 0.3, 1), width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Top-right radial glow (behind number) — invisible by default */
.pain-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100px;
    background: radial-gradient(ellipse at top right, rgba(141, 216, 255, 0.0) 0%, transparent 70%);
    border-radius: 0 clamp(1rem, 1.5vw, 1.25rem) 0 0;
    transition: background 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.pain-card:hover,
.pain-card.reveal.active:hover {
    transform: translateY(-8px) !important;
    box-shadow: none;
}

/* Hover: top accent turns light purple */
.pain-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(141, 216, 255, 0.45), transparent);
    width: 60%;
}

/* Hover: soft purple glow near number */
.pain-card:hover::after {
    background: radial-gradient(ellipse at top right, rgba(141, 216, 255, 0.08) 0%, transparent 65%);
}

.pain-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.pain-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(163, 163, 163, 0.6);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.pain-card:hover .pain-icon {
    color: rgba(163, 163, 163, 0.9);
    border-color: rgba(255, 255, 255, 0.18);
}

.pain-num {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.07);
    letter-spacing: -0.02em;
    line-height: 1;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.pain-card:hover .pain-num {
    color: rgba(123, 255, 198, 0.18);
}

.pain-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: #f4f7fb;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-top: 0.25rem;
}

.pain-card-body {
    font-family: var(--font-body);
    font-size: clamp(0.8125rem, 1.1vw, 0.9375rem);
    font-weight: 400;
    color: #f4f7fb;
    line-height: 1.6;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1.5rem;
    background: rgba(10, 13, 18, 0.95);
    backdrop-filter: blur(8px);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 10;
}

.pain-card:hover .pain-card-body {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 900px) {
    .pain-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pain-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.section-border-top {
    border-top: 1px solid var(--glass-border);
}

/* ── Our Process Section ── */
.process-section {
    background-color: var(--deep);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.process-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 4rem;
    gap: 2rem;
}

.process-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.process-eyebrow-line {
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--primary);
    opacity: 0.5;
}

.process-eyebrow-label {
    color: var(--primary);
    letter-spacing: 0.12em;
}

#process .gradient-text {
    display: inline-block;
    margin-bottom: 10px;
}

.process-headline h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--light);
}

.process-muted {
    background: linear-gradient(90deg, #8dd8ff 0%, #7bffc6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.process-desc {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--silver);
    margin-top: 0.75rem;
    line-height: 1.6;
}

.process-sub {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--silver);
    text-align: right;
    line-height: 1.7;
    max-width: 220px;
    flex-shrink: 0;
}

/* Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 3.5rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 76px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(186, 230, 253, 0.15) 10%, rgba(186, 230, 253, 0.55) 50%, rgba(186, 230, 253, 0.15) 90%, transparent);
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.process-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
    transition: color 0.4s ease;
}

.process-dot-wrap {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.process-step:hover .process-dot-wrap {
    border-color: var(--primary);
    background: rgba(141, 216, 255, 0.1);
}

.process-step:hover .process-num {
    color: rgba(123, 255, 198, 0.25);
    transition: color 0.4s ease;
}

.process-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--primary);
}

.process-step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.process-day {
    font-family: var(--font-display);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--light);
    line-height: 1.3;
    margin: 0;
}

.process-step p {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(163, 163, 163, 0.9);
    line-height: 1.6;
    margin: 0;
}

/* Stats bar */
.process-stats {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: center;
    background: #0a0d1266;
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2rem 1.25rem;
}

.process-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.process-stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    background: linear-gradient(180deg, #ffffff 0%, #a7b3c2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -0.03em;
}

.process-stat-num-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.1rem;
}

.process-stat-unit {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--primary);
}

.process-stat-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--silver);
}

.process-stat-divider {
    width: 1px;
    height: 3rem;
    background: var(--glass-border);
}

@media (max-width: 900px) {
    .process-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-sub {
        text-align: left;
        max-width: 100%;
    }

    .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .process-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .process-stat-divider {
        display: none;
    }
}

/* ── Solutions Section ── */
.solutions-section {
    position: relative;
    overflow: hidden;
}

.section-tag-sol {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.6375rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-tag-sol::before,
.section-tag-sol::after {
    content: '';
    width: 2rem;
    height: 1px;
    background: var(--primary);
    opacity: 0.45;
}

.solutions-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 3.5vw, 3rem);
}

.solutions-heading {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3.3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--light);
    margin-bottom: 0.75rem;
}

.solutions-dim {
    background: linear-gradient(90deg, #8dd8ff 0%, #7bffc6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.solutions-sub {
    max-width: 32rem;
    color: var(--silver);
    font-size: 0.875rem;
    line-height: 1.65;
}

.solutions-sub strong {
    color: var(--light);
    font-weight: 600;
}

.sol-nav-arrows {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.sol-nav-btn {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #f4f7fb;
    transition: border-color 0.2s, color 0.2s;
}

.sol-nav-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.sol-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    pointer-events: none;
}

.sol-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem;
    min-height: 220px;
}

.sol-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.45) 100%);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.sol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8dd8ff, #7bffc6);
    border-radius: 1.125rem 1.125rem 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Override glass-card hover for sol-cards */
#solutions-section .glass-card:hover {
    border-color: var(--glass-border);
    background: var(--glass);
    transform: none;
}

.sol-cat {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.585rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: var(--primary-light);
}

.sol-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: #f4f7fb;
    line-height: 1.3;
    margin-bottom: 0.45rem;
}

.sol-desc {
    font-size: 0.755rem;
    color: var(--silver);
    line-height: 1.65;
    flex: 1;
    opacity: 0.75;
}

.sol-cta {
    text-decoration: none;
    margin-top: 1.1rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    color: #f4f7fb;
}

.sol-cta-arrow {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

#solutions-section .glass-card:hover .sol-cta-arrow {
    transform: translateX(4px);
}

.sol-pagination {
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 2rem;
}

.sol-dot {
    height: 5px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.18);
    border: none;
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
    padding: 0;
}

.sol-dot.active {
    background: var(--primary);
    width: 22px;
}

.sol-dot:not(.active) {
    width: 5px;
}

.solutions-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 0;
    border-top: none;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-sol-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.375rem;
    background: transparent;
    color: var(--silver);
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.btn-sol-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.solutions-note {
    font-size: 0.68rem;
    color: var(--silver);
    opacity: 0.5;
    font-style: italic;
    text-align: right;
}

@media (max-width: 1024px) {
    .sol-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .solutions-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .sol-cards-grid {
        grid-template-columns: 1fr;
    }

    .solutions-note {
        text-align: left;
    }
}

/* ── Why Work With Us Section ── */
#why-us {
    position: relative;
    background: radial-gradient(ellipse 80% 100% at 50% 60%, rgba(141, 216, 255, 0.12) 0%, rgba(123, 255, 198, 0.06) 45%, transparent 70%);
}

.why-us-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-us-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.why-us-eyebrow-line {
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--primary);
    opacity: 0.5;
}

.why-us-heading {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--light);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.why-us-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.45) 100%);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-us-card:hover {
    transform: translateY(-4px);
    border-color: rgba(141, 216, 255, 0.3);
}

.why-us-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.625rem;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.2), rgba(123, 255, 198, 0.1));
    border: 1px solid rgba(141, 216, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.why-us-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--light);
    margin: 0 0 -0.5rem 0;
}

.why-us-card p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(163, 163, 163, 0.9);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 680px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* Pillar Section */
.section-padding {
    padding: var(--space-section-y) 0;
}

/* ── FAQ Section ── */
#faq {
    background-color: var(--deep);
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* FAQ two-column layout */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.faq-left .faq-header {
    text-align: left;
    margin-bottom: 2rem;
}

.faq-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-svg-anim {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}

@media (max-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .faq-right {
        order: -1;
    }

    .faq-left .faq-header {
        text-align: center;
    }
}

.faq-header {
    margin-bottom: 3rem;
}

.faq-heading {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    color: var(--light);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.faq-heading-accent {
    color: var(--light);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 0.875rem;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: rgba(141, 216, 255, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--light);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: rgba(163, 163, 163, 0.9);
    line-height: 1.75;
    padding-bottom: 1.25rem;
    margin: 0;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem;
}

/* ── CTA Section ── */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(141, 216, 255, 0.15) 0%, rgba(123, 255, 198, 0.08) 40%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(163, 163, 163, 0.9);
    margin-bottom: 1.75rem;
}

.cta-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--light);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.cta-sub {
    font-family: var(--font-body);
    font-size: 1rem;
    color: rgba(163, 163, 163, 0.9);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.25rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-btn-outline {
    font-weight: 500;
}

.cta-note {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(163, 163, 163, 0.6);
}

.cta-note svg {
    flex-shrink: 0;
    padding-top: 5px;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-header-mb);
}

.section-header h2 {
    font-size: var(--text-h2);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

#systems .section-header h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--light);
    margin-bottom: 0.5rem;
}

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

.pillar-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.pillar-num {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.06);
    line-height: 1;
    letter-spacing: -0.03em;
    transition: color 0.3s ease;
}

.pillar-card:hover .pillar-num {
    color: rgba(141, 216, 255, 0.35);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: rgba(141, 216, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

/* Animated SVG Icons */
.animated-icon {
    width: 32px;
    height: 32px;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-pulse {
    animation: iconPulse 2s infinite ease-in-out;
}

.icon-float {
    animation: iconFloat 3s infinite ease-in-out;
}

.icon-spin {
    animation: iconSpin 6s infinite linear;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(141, 216, 255, 0.4));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(141, 216, 255, 0.8));
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 2px rgba(123, 255, 198, 0.5));
    }

    50% {
        transform: translateY(-5px);
        filter: drop-shadow(0 0 12px rgba(123, 255, 198, 0.9));
    }
}

@keyframes iconSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pillar-card h3 {
    font-size: var(--text-h3);
    margin-bottom: 1rem;
}

.pillar-card p {
    font-size: var(--text-body);
    color: rgba(163, 163, 163, 0.9);
}

/* Systems Section */
.systems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.bento-systems {
    grid-template-columns: repeat(5, 1fr);
}

.bento-systems .system-card:nth-child(1) {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.bento-systems .system-card:nth-child(2) {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.bento-systems .system-card:nth-child(3) {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.bento-systems .system-card:nth-child(4) {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.system-card-content {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    min-width: 0;
    z-index: 2;
    height: 100%;
}

.system-card-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.system-card-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.system-card {
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.45) 100%);
}

a.system-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.system-card-link:hover {
    transform: translateY(-4px);
    border-color: rgba(141, 216, 255, 0.35);
    box-shadow: 0 0 30px rgba(141, 216, 255, 0.12);
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(186, 230, 253, 0.35), transparent);
    border-radius: 9999px;
    transition: background 0.7s cubic-bezier(0.16, 1, 0.3, 1), width 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.glass-card.system-card:hover,
.glass-card.system-card.reveal.active:hover {
    transform: translateY(-4px) !important;
    background: var(--glass);
    border-color: var(--glass-border);
}

.glass-card.system-card:hover::before,
.glass-card.system-card.reveal.active:hover::before {
    background: linear-gradient(90deg, transparent, rgba(141, 216, 255, 0.45), transparent);
    width: 60%;
}

.system-badge {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sys-cat-pill {
    font-size: 0.555rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.22rem 0.6rem;
    border-radius: 9999px;
    background: rgba(141, 216, 255, 0.12);
    color: #7bffc6;
    border: 1px solid rgba(141, 216, 255, 0.35);
}

.system-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #f4f7fb;
    margin-bottom: 0.75rem;
}

.system-tagline {
    font-size: 14px;
    font-weight: 500;
    color: #a7b3c2e6;
    margin-bottom: 1.5rem;
}

.system-features {
    list-style: none;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}



.system-features li {
    font-size: 12px;
    font-weight: 500;
    color: #a7b3c2e6;
    margin-bottom: 0.125rem;
    display: flex;
    align-items: flex-start;
    gap: 0.35rem;
}

.system-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 900;
}

.system-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.system-price {
    font-family: var(--font-display);
}

.system-price span {
    display: block;
    font-size: 0.65rem;
    color: var(--silver);
    text-transform: uppercase;
}

.system-price strong {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--light);
}

.system-link-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--primary-light) !important;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    display: inline-block;
}

.glass-card.system-card:hover .system-link-btn {
    transform: translateX(6px);
}

/* Solutions Section */
.solutions-container {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 2rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.sol-card {
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.sol-card .cat {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: block;
}

.sol-card h4 {
    font-size: var(--text-h3);
    margin-bottom: 0.75rem;
}

.sol-card p {
    font-size: var(--text-body);
    color: rgba(163, 163, 163, 0.9);
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.audience-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(141, 216, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.audience-card h3 {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Differentiators */
.diff-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.diff-item {
    position: relative;
}

.diff-item h3 {
    margin-bottom: 1rem;
    font-size: var(--text-h3);
}

.diff-item p {
    color: rgba(163, 163, 163, 0.9);
    font-size: var(--text-body-lg);
}

/* Footer */
.site-footer {
    padding: 72px 0 36px;
    border-top: 1px solid var(--glass-border);
    background: #0f151d;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.6fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: #a7b3c2cc;
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 300px;
}

.footer-desc a {
    color: #7bffc6;
    text-decoration: none;
}

.footer-desc a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.8125rem;
    color: rgba(163, 163, 163, 0.6);
}

.footer-links a {
    color: rgba(163, 163, 163, 0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(163, 163, 163, 0.5);
    margin-bottom: 1.25rem;
}

.footer-col-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--light);
    margin-bottom: 1rem;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list a {
    font-family: var(--font-body);
    font-size: 14px;
    color: #a7b3c2cc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav-list a:hover {
    color: var(--primary-light);
}

.footer-cta-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: #a7b3c2cc;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-cta-btn {
    font-size: 0.875rem;
    padding: 0.65rem 1.4rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: rgba(163, 163, 163, 0.45);
}

@media (max-width: 860px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ── Hamburger ── */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── 14-inch / laptop (1024px–1279px) ── */
@media (max-width: 1279px) {
    .resp-container {
        padding: 0 2rem;
    }

    .systems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-systems {
        grid-template-columns: 1fr;
    }

    .bento-systems .system-card {
        grid-column: span 1 !important;
        flex-direction: column !important;
    }

    .sol-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        gap: 2.5rem;
    }
}

/* ── Tablet landscape (900px–1023px) ── */
@media (max-width: 1023px) {
    .systems-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-systems {
        grid-template-columns: 1fr;
    }

    .bento-systems .system-card {
        grid-column: span 1 !important;
        flex-direction: column !important;
    }

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

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

/* ── Tablet portrait (768px–899px) ── */
@media (max-width: 899px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        transform: scale(0.68);
        transform-origin: center center;
        margin: -77px -80px;
    }

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

    .process-stats {
        gap: 1.5rem;
        padding: 1.5rem 2rem;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-heading {
        font-size: 2rem;
    }

    .faq-heading {
        font-size: 2rem;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .pain-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .pain-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Mobile landscape / large phone (680px–767px) ── */
@media (max-width: 767px) {

    /* Nav */
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 13, 18, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 1rem 0 1.5rem;
        border-bottom: 1px solid var(--glass-border);
        z-index: 100;
    }

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

    .nav-links a {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }

    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero */
    .hero h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    .hero-visual {
        transform: scale(0.88);
        transform-origin: center center;
        margin: -29px -30px;
    }

    /* Systems */
    .systems-grid {
        grid-template-columns: 1fr;
    }

    /* Process */
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .process-stat {
        text-align: center;
    }

    .process-stat+.process-stat::before {
        display: none;
    }

    /* Solutions */
    .solutions-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .sol-cards-grid {
        grid-template-columns: 1fr;
    }

    .solutions-note {
        text-align: left;
    }

    /* Why Us */
    .why-us-grid {
        grid-template-columns: 1fr;
    }

    .why-us-heading {
        font-size: 1.75rem;
    }

    /* FAQ */
    .faq-heading {
        font-size: 1.75rem;
    }

    .faq-list {
        max-width: 100%;
    }

    /* CTA */
    .cta-heading {
        font-size: 1.75rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ── Mobile (max 479px) ── */
@media (max-width: 479px) {
    .resp-container {
        padding: 0 1.25rem;
    }

    .hero h1 {
        font-size: clamp(1.75rem, 9vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 7vw, 2rem) !important;
    }

    .pain-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 1fr;
    }

    .pain-card {
        width: 100%;
        min-height: 260px;
        padding: 1.25rem 0.85rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-visual {
        transform: scale(0.72);
        transform-origin: center center;
        margin: -67px -70px;
    }

    .process-stat-num {
        font-size: 2rem;
    }

    .process-step h3 {
        font-size: 1rem;
    }

    .why-us-heading {
        font-size: 1.5rem;
    }

    .faq-heading {
        font-size: 1.5rem;
    }

    .cta-heading {
        font-size: 1.5rem;
    }

    .cta-badge {
        font-size: 0.75rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.875rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.open .faq-answer {
        padding: 0 1.25rem;
    }

    .section-padding {
        --space-section-y: 4rem;
    }
}

/* ── SVG Logo Animations & Styles ── */
.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}



.footer-logo-link {
    display: block;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-logo-svg {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
}

#logo-AI svg {
    width: 100%;
    max-width: 900px;
    height: 50px;
}

/* Animation Logic - Preserved */
#Bird {
    transform-box: fill-box;
    transform-origin: center;
    animation: birdFlyIn 2s ease-out forwards;
}

#SwiftBuild {
    opacity: 0;
    transform: translateX(-80px);
    animation: revealLeft 1.2s ease forwards 1.8s;
}

#AI {
    opacity: 0;
    transform: translateX(-40px);
    animation: revealLeft 0.8s ease forwards 2.8s;
}

#Tagline {
    opacity: 0;
    transform: translateY(20px);
    animation: revealTagline 1s ease forwards 3.4s;
}

#eye {
    transform-box: fill-box;
    transform-origin: center;
    animation: blinkEye 4s infinite 4s;
}

@keyframes birdFlyIn {
    0% {
        transform: translate(-500px, 30px) scale(0.7);
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
}

@keyframes revealLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealTagline {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blinkEye {

    0%,
    45%,
    50%,
    100% {
        transform: scaleY(1);
    }

    47%,
    48% {
        transform: scaleY(0.1);
    }
}

/* Styling Classes */
.fill-white {
    fill: #FFF;
}

.fill-mint {
    fill: #7CFFC8;
}

.fill-bird-grad {
    fill: url(#grad-bird);
}

.fill-circle-grad {
    fill: url(#grad-circle);
    opacity: 0.1;
}

.tagline-group {
    opacity: 0.1;
}

.footer-logo-svg .tagline-group,
#logo-AI .tagline-group {
    opacity: 1;
    fill: #7bffc6;
}