/* ============================================================
   GLENVS — MODERN DESIGN SYSTEM (2025)
   Light theme · Emerald green · Glass · Soft depth
   Static / no-JS · all content readable by crawlers
   ============================================================ */

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

/* ---------- Tokens ---------- */
:root {
    /* Brand greens (legacy names kept so inline styles keep working) */
    --primary-green: #10b981;
    --light-green: #34d399;
    --lighter-green: #6ee7b7;
    --lightest-green: #e7f8f0;
    --dark-green: #059669;
    --very-dark-green: #047857;

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f4f8f6;
    --light-gray: #eef2f0;
    --gray: #e3eae6;
    --dark-gray: #5d6d65;
    --text-dark: #0b1f16;

    /* Semantic */
    --bg: #f7faf8;
    --surface: #ffffff;
    --surface-2: #f1f6f3;
    --border: rgba(11, 31, 22, 0.08);
    --border-strong: rgba(11, 31, 22, 0.14);
    --text: #0b1f16;
    --text-muted: #5d6d65;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #059669 0%, #10b981 45%, #34d399 100%);
    --grad-soft: linear-gradient(135deg, #e7f8f0 0%, #ffffff 100%);
    --grad-text: linear-gradient(120deg, #047857, #10b981 55%, #34d399);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(11, 31, 22, 0.05), 0 1px 3px rgba(11, 31, 22, 0.06);
    --shadow: 0 4px 12px rgba(11, 31, 22, 0.06), 0 12px 28px rgba(11, 31, 22, 0.06);
    --shadow-lg: 0 18px 50px rgba(11, 31, 22, 0.12);
    --shadow-glow: 0 10px 30px rgba(16, 185, 129, 0.28);

    /* Radii */
    --r-sm: 12px;
    --r: 18px;
    --r-lg: 24px;
    --r-xl: 32px;

    --ring: rgba(16, 185, 129, 0.45);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

/* Ambient page background mesh */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(60rem 60rem at 110% -10%, rgba(52, 211, 153, 0.10), transparent 60%),
        radial-gradient(50rem 50rem at -10% 10%, rgba(16, 185, 129, 0.08), transparent 55%),
        radial-gradient(40rem 40rem at 50% 120%, rgba(110, 231, 183, 0.10), transparent 60%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: var(--text);
}

a { color: inherit; }

/* ============================================================
   NAVBAR — floating glass bar
   ============================================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
    background: transparent;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 10px 12px 10px 22px;
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    backdrop-filter: saturate(180%) blur(16px);
    border: 1px solid var(--border);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.navbar .container:hover {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
}

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-green);
    letter-spacing: -0.03em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.35rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
    color: var(--text);
    background: var(--surface-2);
}

/* Last two links become Login (ghost) + Register (filled) */
.nav-links li:nth-last-child(2) a {
    color: var(--dark-green);
    font-weight: 600;
}

.nav-links li:last-child a {
    background: var(--grad-primary);
    color: #fff;
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.30);
}

.nav-links li:last-child a:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(16, 185, 129, 0.40);
    color: #fff;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.6rem;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: -0.01em;
    border: 1.5px solid transparent;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.btn:hover::after { left: 140%; }

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.42);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    color: var(--dark-green);
    border: 1.5px solid var(--border-strong);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: #fff;
    border-color: var(--primary-green);
    color: var(--very-dark-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-large {
    padding: 1.05rem 2.2rem;
    font-size: 1.08rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    padding: 96px 0 88px;
    overflow: hidden;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, var(--lighter-green), transparent 70%);
    top: -90px;
    right: -70px;
    animation: orbFloat 13s ease-in-out infinite;
}

.hero::after {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--light-green), transparent 70%);
    bottom: -110px;
    left: -60px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-content { z-index: 10; }

.hero-title {
    font-size: clamp(2.5rem, 5.2vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.25rem;
    letter-spacing: -0.035em;
    line-height: 1.05;
    animation: slideInUp 0.7s ease-out both;
}

/* highlight last words of headline via gradient using inline none → we gradient the whole emphasis */
.hero-title {
    background: linear-gradient(180deg, #0b1f16 30%, #134e3a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 36ch;
    animation: slideInUp 0.7s ease-out 0.1s both;
}

.hero-description {
    font-size: 1.02rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 46ch;
    animation: slideInUp 0.7s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: slideInUp 0.7s ease-out 0.3s both;
}

.hero-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.7);
    color: var(--dark-green);
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    animation: slideInUp 0.7s ease-out 0.4s both;
}

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

/* Hero graphic */
.hero-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.animated-graphic {
    width: 100%;
    max-width: 520px;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(16, 185, 129, 0.22));
}

/* ---------- Hero SVG animations (modern memory constellation) ---------- */

/* Rotating ambient halos */
.halo-pulse {
    transform-box: view-box;
    transform-origin: 250px 250px;
    animation: haloBreath 5s ease-in-out infinite;
}
.halo-pulse.hp2 { animation-delay: 2.5s; }
@keyframes haloBreath {
    0%, 100% { transform: scale(0.7); opacity: 0.12; }
    50% { transform: scale(1.2); opacity: 0.02; }
}

/* Orbit rings — slow rotation, alternating direction for depth */
.ring {
    transform-box: view-box;
    transform-origin: 250px 250px;
}
.ring-a { animation: spin 32s linear infinite; }
.ring-b { animation: spinRev 24s linear infinite; }
.ring-c { animation: spin 48s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinRev { to { transform: rotate(-360deg); } }

/* The whole agent constellation revolves */
.constellation {
    transform-box: view-box;
    transform-origin: 250px 250px;
    animation: spin 26s linear infinite;
}

/* Agent nodes: gentle breathing + halo bloom */
.agent { animation: agentPulse 3s ease-in-out infinite; }
@keyframes agentPulse {
    0%, 100% { r: 11px; }
    50% { r: 13px; }
}
.agent-glow { animation: agentGlow 3s ease-in-out infinite; }
@keyframes agentGlow {
    0%, 100% { opacity: 0.12; r: 19px; }
    50% { opacity: 0.32; r: 24px; }
}

/* Data pulses flowing along each spoke toward the core */
.flow { animation: flowIn 2.8s cubic-bezier(0.55, 0, 0.45, 1) infinite; }
@keyframes flowIn {
    0% { transform: translateX(0); opacity: 0; }
    12% { opacity: 1; }
    82% { opacity: 1; }
    100% { transform: translateX(-150px); opacity: 0; }
}

/* Core breathing ring + soft label pulse */
.core-pulse {
    transform-box: view-box;
    transform-origin: 250px 250px;
    animation: corePulse 3s ease-in-out infinite;
}
@keyframes corePulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50% { transform: scale(1.14); opacity: 0; }
}
.center-text { animation: labelBreath 3s ease-in-out infinite; }
@keyframes labelBreath {
    0%, 100% { opacity: 0.95; }
    50% { opacity: 1; }
}

/* Floating context icons in the corners */
.float-icon { animation: floatAround 9s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
.float-1 { animation-delay: 0s; }
.float-2 { animation-delay: -2.25s; }
.float-3 { animation-delay: -4.5s; }
.float-4 { animation-delay: -6.75s; }
@keyframes floatAround {
    0%, 100% { opacity: 0.85; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-12px); }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
section { padding: 96px 0; }

.section-title {
    position: relative;
    font-size: clamp(1.9rem, 3.4vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 1.1rem auto 0;
    border-radius: 999px;
    background: var(--grad-primary);
}

/* Eyebrow paragraph that often follows a section title */
.section-title + p {
    text-align: center;
}

/* ============================================================
   PROBLEM & SOLUTION
   ============================================================ */
.problem-solution { padding: 96px 0; }
.problem-content, .solution-content { line-height: 1.8; }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { padding: 96px 0; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.35);
}

.benefit-card-animated { animation: cardSlideIn 0.6s ease-out both; }
.benefits-grid .benefit-card:nth-child(1) { animation-delay: 0.05s; }
.benefits-grid .benefit-card:nth-child(2) { animation-delay: 0.12s; }
.benefits-grid .benefit-card:nth-child(3) { animation-delay: 0.19s; }
.benefits-grid .benefit-card:nth-child(4) { animation-delay: 0.26s; }
.benefits-grid .benefit-card:nth-child(5) { animation-delay: 0.33s; }
.benefits-grid .benefit-card:nth-child(6) { animation-delay: 0.40s; }

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

.benefit-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.benefit-icon-animated { animation: iconBounce 2.6s ease-in-out infinite; }
@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

.benefit-card h3 {
    font-size: 1.22rem;
    margin-bottom: 0.75rem;
    margin-top: 0.25rem;
    letter-spacing: -0.02em;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.benefit-detail {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--border);
    font-weight: 600;
    color: var(--dark-green);
    font-size: 0.92rem;
}

/* ============================================================
   ICON SYSTEM
   ============================================================ */
.g-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    vertical-align: middle;
}
.g-icon svg { width: 100%; height: 100%; display: block; }
.g-icon-sm { width: 30px; height: 30px; }
.g-icon-md { width: 46px; height: 46px; }
.g-icon-lg { width: 56px; height: 56px; }

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--lightest-green), #ffffff);
    border: 1px solid rgba(16, 185, 129, 0.18);
    margin-bottom: 1.25rem;
    color: var(--primary-green);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.icon-badge svg { width: 30px; height: 30px; }

.icon-badge-lg {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    background: var(--grad-primary);
    border: none;
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.icon-badge-lg svg { width: 42px; height: 42px; }

.icon-inline {
    width: 26px;
    height: 26px;
    color: var(--primary-green);
    vertical-align: middle;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.icon-badge-danger {
    background: linear-gradient(135deg, #fee2e2, #fff5f5);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #ef4444;
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.14);
}

.benefit-card:hover .icon-badge,
.use-case-card:hover .icon-badge,
.feature-highlight:hover .icon-badge {
    transform: translateY(-5px) scale(1.07) rotate(-3deg);
    box-shadow: 0 14px 28px rgba(16, 185, 129, 0.26);
}
.team-member:hover .icon-badge-lg {
    transform: scale(1.08) rotate(-5deg);
}

.icon-pulse { animation: iconPulseScale 2.6s ease-in-out infinite; }
@keyframes iconPulseScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.09); }
}
.icon-float-soft { animation: iconFloatSoft 3.4s ease-in-out infinite; }
@keyframes iconFloatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(40rem 30rem at 80% 0%, rgba(110, 231, 183, 0.14), transparent 60%),
        var(--surface-2);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.step-animated { animation: stepFadeIn 0.6s ease-out both; }
.steps .step:nth-child(1) { animation-delay: 0.05s; }
.steps .step:nth-child(2) { animation-delay: 0.15s; }
.steps .step:nth-child(3) { animation-delay: 0.25s; }
.steps .step:nth-child(4) { animation-delay: 0.35s; }
@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background: var(--grad-primary);
    color: #fff;
    border-radius: 16px;
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    box-shadow: var(--shadow-glow);
    animation: numberPulse 2.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes numberPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    50% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
}

.step h3 { font-size: 1.18rem; margin-bottom: 0.6rem; }
.step p { color: var(--text-muted); }

/* ============================================================
   STATISTICS
   ============================================================ */
.statistics {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}
.statistics .container { position: relative; z-index: 2; }
.statistics::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(16, 185, 129, 0.13) 1.5px, transparent 1.5px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
    mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
    text-align: center;
    margin-top: 3rem;
}

.stat {
    padding: 2rem 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.stat:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.stat-animated { animation: statScaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.stats-grid .stat:nth-child(1) { animation-delay: 0.05s; }
.stats-grid .stat:nth-child(2) { animation-delay: 0.12s; }
.stats-grid .stat:nth-child(3) { animation-delay: 0.19s; }
.stats-grid .stat:nth-child(4) { animation-delay: 0.26s; }
.stats-grid .stat:nth-child(5) { animation-delay: 0.33s; }
.stats-grid .stat:nth-child(6) { animation-delay: 0.40s; }
@keyframes statScaleIn {
    from { opacity: 0; transform: scale(0.85); }
    to { opacity: 1; transform: scale(1); }
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-green);
    margin-bottom: 0.35rem;
}

.stat-label { color: var(--text); font-weight: 600; font-size: 0.98rem; }

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 0.9rem;
    color: var(--primary-green);
    animation: iconFloat 3.4s ease-in-out infinite;
}
.stat-icon svg { width: 38px; height: 38px; }
@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

/* ============================================================
   FEATURE HIGHLIGHTS & USE CASES (cards via inline styles + class)
   ============================================================ */
.feature-highlight,
.use-case-card {
    border-radius: var(--r-lg) !important;
    border: 1px solid var(--border) !important;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.feature-highlight:hover,
.use-case-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.35) !important;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
    color: #fff;
    background: var(--grad-primary);
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.13);
    pointer-events: none;
}
.cta-section::before {
    width: 240px; height: 240px; top: -80px; left: 8%;
    animation: orbFloat 12s ease-in-out infinite;
}
.cta-section::after {
    width: 320px; height: 320px; bottom: -130px; right: 5%;
    animation: orbFloat 14s ease-in-out infinite reverse;
}
.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.03em;
}
.cta-section p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.95; }
.cta-section .btn-primary {
    background: #fff;
    color: var(--very-dark-green);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.cta-section .btn-primary:hover { background: #f0fff8; }

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(28px, -24px) scale(1.12); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    position: relative;
    background: #07140d;
    color: #cdd6d0;
    padding: 72px 0 28px;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--lighter-green), var(--primary-green));
    background-size: 200% 100%;
    animation: brandShimmer 8s linear infinite;
}
@keyframes brandShimmer { to { background-position: 200% 0; } }

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-section h4 {
    color: #fff;
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
    font-weight: 700;
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.7rem; }
.footer-section a {
    color: #aebab3;
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-section a:hover { color: var(--light-green); padding-left: 6px; }
.footer-section p { color: #aebab3; margin-bottom: 0.5rem; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding-top: 1.75rem;
    text-align: center;
    color: #7f8d86;
    font-size: 0.92rem;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--border-strong);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: 1rem;
    background: var(--surface);
    color: var(--text);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.14);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   PAGE HEADER + CONTENT (inner pages)
   ============================================================ */
.page-header {
    position: relative;
    overflow: hidden;
    padding: 84px 0 64px;
    text-align: center;
    background:
        radial-gradient(40rem 24rem at 50% -20%, rgba(52, 211, 153, 0.18), transparent 65%);
}
.page-header > .container { position: relative; z-index: 2; }
.page-header::after {
    content: "";
    position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--lighter-green), transparent 70%);
    opacity: 0.4;
    filter: blur(55px);
    top: -130px; right: -90px;
    pointer-events: none;
    animation: orbFloat 14s ease-in-out infinite;
}
.page-header h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.1rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
    letter-spacing: -0.035em;
}
.page-header p { font-size: 1.12rem; color: var(--text-muted); }

.page-content {
    max-width: 920px;
    margin: 0 auto;
    padding: 72px 24px;
}
.page-content h2 {
    font-size: 1.85rem;
    margin: 2.5rem 0 1rem;
    letter-spacing: -0.025em;
}
.page-content h3 {
    font-size: 1.35rem;
    color: var(--dark-green);
    margin: 1.5rem 0 0.75rem;
}
.page-content p { margin-bottom: 1rem; color: var(--text); line-height: 1.85; }
.page-content ul, .page-content ol { margin: 1rem 0 1rem 1.75rem; color: var(--text); }
.page-content li { margin-bottom: 0.5rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 1.75rem;
    margin: 3rem 0;
}
.pricing-card {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.35);
}
.pricing-card.featured {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}
.pricing-card.featured::before {
    content: "";
    position: absolute;
    inset: -1.5px;
    border-radius: calc(var(--r-lg) + 1.5px);
    background: var(--grad-primary);
    z-index: -1;
    opacity: 0.6;
    filter: blur(10px);
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.75; }
}
.pricing-card h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.price {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--primary-green);
    margin-bottom: 0.4rem;
}
.price-period { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 1.5rem; }
.features-list { list-style: none; margin: 1.5rem 0; text-align: left; }
.features-list li { padding: 0.55rem 0; color: var(--text); display: flex; gap: 0.5rem; }
.features-list li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: 800;
    flex-shrink: 0;
}

/* ============================================================
   SOLUTIONS GALLERY — animated art cards
   ============================================================ */
.solutions { padding: 96px 0; }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.solution-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.35);
}

.solution-art {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0fdf6 0%, #e7f8f0 100%);
}

.solution-art svg { width: 100%; height: 100%; display: block; }

/* subtle distinct backgrounds per art */
.art-1 { background: linear-gradient(135deg, #052e22 0%, #064e3b 60%, #065f46 100%); }
.art-2 { background: radial-gradient(circle at 50% 50%, #ecfdf5 0%, #d1fae5 100%); }
.art-3 { background: linear-gradient(135deg, #06281e 0%, #0b3d2c 100%); }
.art-4 { background: linear-gradient(135deg, #f0fdf6 0%, #dcfce7 100%); }
.art-5 { background: linear-gradient(135deg, #04231a 0%, #064e3b 100%); }
.art-6 { background: linear-gradient(135deg, #ffffff 0%, #ecfdf5 100%); }

.solution-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.solution-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.solution-body p { color: var(--text-muted); line-height: 1.65; margin-bottom: 1.1rem; flex: 1; }

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--dark-green);
    font-weight: 600;
    text-decoration: none;
    width: fit-content;
}
.solution-link .arrow { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.solution-card:hover .solution-link .arrow { transform: translateX(6px); }

/* ---- Art 1: stacked floating memory discs ---- */
.disc { transform-origin: 200px 100px; }
.disc-a { animation: discFloat 4s ease-in-out infinite; }
.disc-b { animation: discFloat 4s ease-in-out infinite 0.4s; }
.disc-c { animation: discFloat 4s ease-in-out infinite 0.8s; }
@keyframes discFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-7px); }
}

/* ---- Art 2: radiating skill burst ---- */
.burst { animation: burstSpin 22s linear infinite; }
@keyframes burstSpin { to { transform: translate(200px,100px) rotate(360deg); } }
.burst-core { animation: corePulse 3s ease-in-out infinite; transform-origin: center; }
@keyframes corePulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.shard { transform-origin: center; animation: shardPulse 3s ease-in-out infinite; }
.s2 { animation-delay: 0.4s; } .s3 { animation-delay: 0.8s; } .s4 { animation-delay: 1.2s; }
@keyframes shardPulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.22); opacity: 0.75; } }
.dot { animation: dotPulse 2.6s ease-in-out infinite; }
.d2 { animation-delay: 0.5s; } .d3 { animation-delay: 1s; } .d4 { animation-delay: 1.5s; }
@keyframes dotPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ---- Art 3: agent network ---- */
.net-lines line { stroke-dasharray: 6 6; animation: dash 3s linear infinite; opacity: 0.6; }
@keyframes dash { to { stroke-dashoffset: -48; } }
.hub { transform-origin: 200px 100px; animation: corePulse 2.6s ease-in-out infinite; }
.nn { animation: nodeBlink 2.4s ease-in-out infinite; }
.n1 { animation-delay: 0s; } .n2 { animation-delay: 0.4s; } .n3 { animation-delay: 0.8s; }
.n4 { animation-delay: 1.2s; } .n5 { animation-delay: 1.6s; }
@keyframes nodeBlink { 0%,100% { opacity: 0.5; r: 9px; } 50% { opacity: 1; r: 11px; } }
.pulse-dot { animation: travel 3s ease-in-out infinite; }
@keyframes travel {
    0% { transform: translate(0,0); opacity: 0; }
    20% { opacity: 1; }
    50% { transform: translate(-110px,-45px); opacity: 1; }
    51% { transform: translate(0,0); opacity: 0; }
    100% { transform: translate(0,0); opacity: 0; }
}

/* ---- Art 4: search radar ---- */
.radar-ring { transform-origin: center; animation: ringPulse 3s ease-out infinite; }
.r2 { animation-delay: 0.6s; } .r3 { animation-delay: 1.2s; }
@keyframes ringPulse { 0% { transform: scale(0.6); opacity: 0.9; } 100% { transform: scale(1.25); opacity: 0; } }
.radar-sweep { animation: sweep 4s linear infinite; transform-origin: center; }
@keyframes sweep { to { transform: rotate(360deg); } }

/* ---- Art 5: analytics bars ---- */
.bar { transform-origin: bottom; transform-box: fill-box; animation: barGrowY 3s ease-in-out infinite; }
.b2 { animation-delay: 0.3s; } .b3 { animation-delay: 0.6s; } .b4 { animation-delay: 0.9s; }
@keyframes barGrowY { 0%,100% { transform: scaleY(0.55); } 50% { transform: scaleY(1); } }
.trend { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawTrend 3s ease-in-out infinite; }
@keyframes drawTrend { 0% { stroke-dashoffset: 400; } 45%,100% { stroke-dashoffset: 0; } }

/* ---- Art 6: flowing sync waves ---- */
.wave { stroke-dasharray: 60 20; animation: flow 3s linear infinite; }
.w2 { animation-duration: 4s; } .w3 { animation-duration: 5s; }
@keyframes flow { to { stroke-dashoffset: -240; } }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.75rem;
    margin: 2rem 0;
}
.team-member {
    text-align: center;
    padding: 2.25rem 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.team-member:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.35);
}
.team-member .icon-badge-lg { margin-left: auto; margin-right: auto; }
.member-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.35rem; }
.member-role { color: var(--primary-green); font-weight: 600; margin-bottom: 1rem; }
.member-bio { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   BLOG — listing cards
   ============================================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.75rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(16, 185, 129, 0.35);
}

.blog-thumb { height: 190px; overflow: hidden; }
.blog-thumb svg { width: 100%; height: 100%; display: block; }

.blog-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-cat {
    align-self: flex-start;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dark-green);
    background: var(--lightest-green);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}
.blog-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; letter-spacing: -0.02em; line-height: 1.3; }
.blog-excerpt { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.blog-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted); }
.blog-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--light-green); }

.featured-post {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.featured-post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.featured-post .blog-thumb { height: 100%; min-height: 280px; }
.featured-post .blog-card-body { justify-content: center; padding: 2.5rem; }
.featured-post h2 { font-size: 1.8rem; margin-bottom: 0.75rem; letter-spacing: -0.025em; }

/* ============================================================
   ARTICLE — single post layout
   ============================================================ */
.article-head {
    max-width: 820px;
    margin: 0 auto;
    padding: 56px 24px 28px;
    text-align: center;
}
.article-head .blog-cat { display: inline-block; margin: 0 auto 1.2rem; }
.article-title {
    font-size: clamp(2rem, 4.4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
    margin-bottom: 1.1rem;
}
.article-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--light-green); }

.article-banner {
    max-width: 1080px;
    margin: 1.5rem auto 0;
    padding: 0 24px;
}
.article-banner svg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
}

.article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px 24px;
    font-size: 1.07rem;
}
.article-body > p:first-of-type {
    font-size: 1.2rem;
    color: var(--text);
    line-height: 1.7;
}
.article-body h2 { font-size: 1.6rem; margin: 2.4rem 0 1rem; letter-spacing: -0.025em; }
.article-body h3 { font-size: 1.25rem; color: var(--dark-green); margin: 1.8rem 0 0.7rem; }
.article-body p { margin-bottom: 1.15rem; color: var(--text); line-height: 1.85; }
.article-body ul, .article-body ol { margin: 1rem 0 1.4rem 1.5rem; color: var(--text); }
.article-body li { margin-bottom: 0.6rem; line-height: 1.7; }
.article-body strong { color: var(--text); }
.article-body blockquote {
    margin: 1.8rem 0;
    padding: 1.2rem 1.5rem;
    border-left: 4px solid var(--primary-green);
    background: var(--surface-2);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-size: 1.12rem;
    color: var(--text);
    font-style: italic;
}
.article-key {
    background: linear-gradient(135deg, var(--lightest-green), #ffffff);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--r);
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
}
.article-key h4 { color: var(--dark-green); margin-bottom: 0.6rem; font-size: 1.05rem; }
.article-key ul { margin: 0.5rem 0 0 1.3rem; }

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 760px;
    margin: 2.5rem auto 0;
    padding: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--shadow-sm);
}
.article-author .avatar {
    width: 56px; height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}
.article-author .who { font-weight: 700; }
.article-author .role { color: var(--text-muted); font-size: 0.9rem; }

.article-foot {
    max-width: 760px;
    margin: 2.5rem auto 0;
    padding: 0 24px;
    text-align: center;
}

@media (max-width: 768px) {
    .featured-post { grid-template-columns: 1fr; }
    .featured-post .blog-thumb { min-height: 200px; }
}

/* ============================================================
   GLOBAL POLISH
   ============================================================ */
::selection { background: var(--lighter-green); color: var(--very-dark-green); }

html { scrollbar-color: var(--light-green) var(--off-white); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--light-green), var(--primary-green));
    border-radius: 999px;
    border: 3px solid var(--off-white);
}
::-webkit-scrollbar-thumb:hover { background: var(--dark-green); }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--ring);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Generic table polish (pricing / comparison) */
table { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ============================================================
   SCROLL REVEAL (progressive enhancement only — no-JS safe)
   ============================================================ */
@supports (animation-timeline: view()) {
    @media (prefers-reduced-motion: no-preference) {
        .benefits-grid > *,
        .steps > *,
        .stats-grid > *,
        .team-grid > *,
        .pricing-grid > * {
            animation: revealUp linear both;
            animation-timeline: view();
            animation-range: entry 0% cover 26%;
        }
    }
    @keyframes revealUp {
        from { opacity: 0; transform: translateY(36px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* ============================================================
   REDUCED MOTION
   Soft handling: keep the brand's decorative motion (it is core to
   the design), only disable smooth-scroll jumps for sensitive users.
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .hero .container { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-animation { order: -1; }
    .hero-subtitle, .hero-description { max-width: none; }
}

@media (max-width: 768px) {
    section { padding: 64px 0; }
    /* Collapse any inline two-column grids (problem/solution, contact, etc.) */
    [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
    .navbar .container { border-radius: var(--r); padding: 12px 16px; }
    .nav-links { gap: 0.15rem; }
    .nav-links a { padding: 0.4rem 0.6rem; font-size: 0.82rem; }
    .nav-links li:last-child a { padding: 0.45rem 0.9rem; }
    .hero { padding: 64px 0; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .nav-brand h1 { font-size: 1.3rem; }
    .nav-links { gap: 0.1rem; }
    .nav-links a { padding: 0.35rem 0.5rem; font-size: 0.75rem; }
    .page-header h1 { font-size: 1.85rem; }
}

/* ---------- Sticky-nav anchor offset ---------- */
:target { scroll-margin-top: 96px; }

/* ============================================================
   CONTINUOUS BUTTON HOVER EFFECTS + MODERN MICRO-DETAILS
   (added on top — these refine the base styles above)
   ============================================================ */

/* ---- 1. Buttons: never-ending shine + glow while hovered ---- */

/* Looping light sweep that repeats the whole time the cursor stays on it */
.btn:hover::after {
    animation: btnShine 1.2s linear infinite;
}
@keyframes btnShine {
    0%   { left: -120%; }
    100% { left: 150%; }
}

/* Primary: animated gradient + breathing glow that keep moving on hover */
.btn-primary {
    background-size: 220% 220%;
}
.btn-primary:hover {
    transform: translateY(-3px);
    animation: btnGlow 1.6s ease-in-out infinite, btnGradient 3s linear infinite;
}
@keyframes btnGlow {
    0%, 100% { box-shadow: 0 14px 34px rgba(16, 185, 129, 0.40); }
    50%      { box-shadow: 0 20px 50px rgba(16, 185, 129, 0.65); }
}
@keyframes btnGradient {
    0%   { background-position: 0% 50%; }
    100% { background-position: 220% 50%; }
}

/* Secondary / outline: continuous soft pulsing ring on hover */
.btn-secondary:hover {
    transform: translateY(-3px);
    border-color: var(--primary-green);
    animation: btnRing 1.6s ease-in-out infinite;
}
@keyframes btnRing {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.30), var(--shadow); }
    50%      { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.06), 0 12px 26px rgba(16, 185, 129, 0.22); }
}

/* CTA white button: gentle non-stop glow on hover */
.cta-section .btn-primary:hover {
    animation: btnGlowWhite 1.6s ease-in-out infinite;
}
@keyframes btnGlowWhite {
    0%, 100% { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); }
    50%      { box-shadow: 0 18px 44px rgba(255, 255, 255, 0.45); }
}

/* Nav "Register" pill: looping glow pulse on hover */
.nav-links li:last-child a:hover {
    animation: navPulse 1.5s ease-in-out infinite;
}
@keyframes navPulse {
    0%, 100% { box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35); }
    50%      { box-shadow: 0 10px 26px rgba(16, 185, 129, 0.65); }
}

/* Solution / blog "Explore" text links: arrow keeps nudging on hover */
.solution-card:hover .solution-link .arrow {
    animation: arrowNudge 0.9s ease-in-out infinite;
}
@keyframes arrowNudge {
    0%, 100% { transform: translateX(0); }
    50%      { transform: translateX(7px); }
}

/* ---- 2. Cards: living glow that breathes while hovered ---- */
.benefit-card:hover,
.feature-highlight:hover,
.use-case-card:hover,
.solution-card:hover,
.blog-card:hover,
.pricing-card:hover,
.team-member:hover,
.step:hover,
.stat:hover {
    animation: cardGlow 2.4s ease-in-out infinite;
}
@keyframes cardGlow {
    0%, 100% { box-shadow: 0 18px 40px rgba(16, 185, 129, 0.14); }
    50%      { box-shadow: 0 24px 58px rgba(16, 185, 129, 0.30); }
}

/* ---- 3. Section-title accent bar: subtle flowing shimmer ---- */
.section-title::after {
    background: linear-gradient(90deg, var(--primary-green), var(--lighter-green), var(--primary-green));
    background-size: 200% 100%;
    animation: barFlow 3s linear infinite;
}
@keyframes barFlow {
    to { background-position: 200% 0; }
}

/* ---- 4. Decorative floating shapes (subtle, on-brand) ---- */
.benefits,
.solutions {
    position: relative;
}
.benefits > .container,
.solutions > .container {
    position: relative;
    z-index: 1;
}
.benefits::before,
.solutions::before,
.solutions::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
/* soft floating outline ring */
.benefits::before {
    width: 180px;
    height: 180px;
    border: 2px solid rgba(16, 185, 129, 0.12);
    border-radius: 50%;
    top: 60px;
    right: 4%;
    animation: shapeFloat 9s ease-in-out infinite;
}
.solutions::before {
    width: 140px;
    height: 140px;
    border: 2px dashed rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    top: 40px;
    left: 3%;
    animation: shapeFloat 11s ease-in-out infinite;
}
/* faint dotted cluster */
.solutions::after {
    width: 160px;
    height: 160px;
    bottom: 30px;
    right: 3%;
    background-image: radial-gradient(rgba(16, 185, 129, 0.18) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.6;
    animation: shapeFloat 13s ease-in-out infinite reverse;
}
@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%      { transform: translate(14px, -18px) rotate(8deg); }
}

/* ---- 5. Icon badges: gentle continuous life ---- */
.benefit-card .icon-badge,
.feature-highlight .icon-badge,
.use-case-card .icon-badge {
    animation: badgeBreath 4s ease-in-out infinite;
}
@keyframes badgeBreath {
    0%, 100% { box-shadow: 0 8px 20px rgba(16, 185, 129, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7); }
    50%      { box-shadow: 0 12px 26px rgba(16, 185, 129, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.7); }
}

/* ---- 6. Scroll progress bar (top) — no-JS safe via @supports ---- */
@supports (animation-timeline: scroll()) {
    body::after {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        width: 100%;
        transform-origin: 0 50%;
        transform: scaleX(0);
        background: linear-gradient(90deg, var(--primary-green), var(--light-green), var(--lighter-green));
        z-index: 200;
        animation: scrollProgress linear;
        animation-timeline: scroll(root block);
    }
    @keyframes scrollProgress {
        from { transform: scaleX(0); }
        to   { transform: scaleX(1); }
    }
}
