/* ==================== CSS VARIABLES & DESIGN SYSTEM ==================== */
:root {
    /* Jade green palette */
    --jade: 158, 60%, 34%;
    --jade-light: 162, 55%, 42%;
    --jade-bright: 165, 65%, 50%;
    --jade-dim: 158, 40%, 25%;
    --jade-glow: rgba(34, 155, 110, 0.18);
    --jade-glow-strong: rgba(34, 155, 110, 0.35);

    --bg: #07100d;
    --bg-2: #0b1710;
    --bg-3: #0f1d14;
    --surface: rgba(255,255,255,0.03);
    --surface-2: rgba(255,255,255,0.055);
    --border: rgba(255,255,255,0.07);
    --border-jade: rgba(34, 155, 110, 0.22);

    --text: #f0f5f2;
    --text-2: rgba(220,240,230,0.72);
    --text-3: rgba(190,220,205,0.45);

    --primary: hsl(158, 60%, 34%);
    --primary-hover: hsl(162, 55%, 42%);
    --primary-glow: 0 0 28px rgba(34,155,110,0.45);

    --font-head: 'Syne', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET ==================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
    color: var(--text);
}

.label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: hsl(var(--jade-light));
}

/* ==================== LAYOUT ==================== */
.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

@media (max-width: 900px) {
    .grid-2 { grid-template-columns: 1fr; }
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.text-center { text-align: center; }
.relative { position: relative; }
.hidden { display: none; }
.z-10 { z-index: 10; }

/* ==================== ANIMATIONS ==================== */
@keyframes fade-up {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}
@keyframes float-y {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}
@keyframes border-shine {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.anim-fade-up {
    animation: fade-up 0.75s cubic-bezier(0.22,1,0.36,1) both;
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    height: 72px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
    background: rgba(7,16,13,0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition: background var(--transition);
}
nav.scrolled {
    background: rgba(7,16,13,0.95);
    border-bottom-color: var(--border-jade);
}
.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-mark {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.logo-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: linear-gradient(135deg, hsl(var(--jade-dim)), hsl(var(--jade)));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(34,155,110,0.3);
}
.logo-name {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(110deg, hsl(var(--jade-bright)), hsl(var(--jade-light)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-logo {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
}
.footer-logo {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-bottom: 0.75rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-full);
    color: var(--text-2);
    transition: color var(--transition), background var(--transition);
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-body);
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--text); background: var(--surface-2); }
.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    background: hsl(var(--jade));
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}
.nav-cta:hover { background: hsl(var(--jade-light)); box-shadow: var(--primary-glow); }

.nav-login {
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-full);
    background: transparent;
    color: hsl(var(--jade-light));
    border: 1.5px solid hsl(var(--jade) / 0.55);
    cursor: pointer;
    font-family: var(--font-body);
    transition: background var(--transition), border-color var(--transition), color var(--transition);
    white-space: nowrap;
}
.nav-login:hover { background: hsl(var(--jade) / 0.12); border-color: hsl(var(--jade-light)); color: #fff; }

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

@media (max-width: 768px) {
    .nav-links.desktop { display: none; }
    .mobile-toggle { display: flex; }
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(7,16,13,0.98);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { padding: 0.7rem 1rem; border-radius: var(--radius); }
.nav-mobile .nav-cta { margin-top: 0.5rem; text-align: center; padding: 0.75rem; border-radius: var(--radius); }
.nav-mobile .nav-login { margin-top: 0.5rem; text-align: center; padding: 0.75rem; border-radius: var(--radius); display: block; }

/* ==================== PAGE WRAPPER ==================== */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
main { flex: 1; }

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
    background: var(--bg);
}
#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.hero-glow {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.hero-glow-1 {
    width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(34,155,110,0.14) 0%, transparent 70%);
    top: 10%; left: 5%;
    animation: glow-pulse 6s ease-in-out infinite;
}
.hero-glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(34,155,110,0.10) 0%, transparent 70%);
    bottom: 15%; right: 8%;
    animation: glow-pulse 8s ease-in-out infinite 2s;
}
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-bottom: 8rem;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 1rem 0.35rem 0.6rem;
    background: var(--surface);
    border: 1px solid var(--border-jade);
    border-radius: var(--radius-full);
    margin-bottom: 2rem;
}
.eyebrow-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: hsl(var(--jade-bright));
    animation: glow-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
.hero-h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    max-width: 720px;
}
.hero-h1 em {
    font-style: normal;
    background: linear-gradient(110deg, hsl(var(--jade-light)), hsl(var(--jade-bright)), hsl(var(--jade-light)));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: border-shine 4s linear infinite;
}
.hero-p {
    font-size: 1.15rem;
    color: var(--text-2);
    max-width: 540px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 5rem;
}
.hero-stats {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.hero-stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}
.stat-num {
    font-family: var(--font-head);
    font-size: 1.85rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: hsl(var(--jade-bright));
    line-height: 1;
    margin-bottom: 0.3rem;
}
.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-3);
    font-weight: 500;
}

/* ==================== SECTION TRANSITIONS ==================== */
/* Seamless gradient transitions between sections - no hard lines */
.section {
    padding: 7rem 0;
    position: relative;
    overflow: clip;
}
.section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--border-jade) 30%, var(--border-jade) 70%, transparent 100%);
}
.section:first-of-type::before { display: none; }

.section-a {
    background:
        radial-gradient(ellipse 55% 60% at 100% 0%,  rgba(34,155,110,0.10) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 0%   100%, rgba(34,155,110,0.07) 0%, transparent 50%),
        linear-gradient(rgba(34,155,110,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,155,110,0.10) 1px, transparent 1px),
        var(--bg);
    background-size: auto, auto, 60px 60px, 60px 60px, auto;
}
.section-b {
    background:
        radial-gradient(ellipse 55% 60% at 0%   0%,   rgba(34,155,110,0.11) 0%, transparent 55%),
        radial-gradient(ellipse 40% 50% at 100% 100%, rgba(34,155,110,0.07) 0%, transparent 50%),
        linear-gradient(rgba(34,155,110,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,155,110,0.10) 1px, transparent 1px),
        var(--bg-2);
    background-size: auto, auto, 60px 60px, 60px 60px, auto;
}
.section-c { background: var(--bg-3); }

/* Animated secondary glow orb per section */
.section-b::after,
.section-a::after {
    content: '';
    position: absolute;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.section-b::after {
    background: radial-gradient(circle, rgba(34,155,110,0.10) 0%, transparent 65%);
    top: -80px;
    right: -60px;
    animation: orb-drift 16s ease-in-out infinite;
}
.section-a::after {
    background: radial-gradient(circle, rgba(34,155,110,0.08) 0%, transparent 65%);
    bottom: -100px;
    left: -60px;
    animation: orb-drift 22s ease-in-out infinite reverse;
}

/* Per-section constellation canvas */
.section-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
@keyframes orb-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    35%       { transform: translate(-45px, 35px) scale(1.07); }
    70%       { transform: translate(35px, -45px) scale(0.94); }
}
.section > .container,
.cta-section > .container {
    position: relative;
    z-index: 1;
}

/* Smooth fade out/in between sections */
.section-fade-bottom {
    position: relative;
}
.section-fade-bottom::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--bg-2));
    pointer-events: none;
}

.section-head {
    margin-bottom: 4rem;
}
.section-head .label { margin-bottom: 0.9rem; }
.section-h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    max-width: 640px;
}
.section-h2.center { max-width: 100%; text-align: center; }
.section-sub {
    color: var(--text-2);
    font-size: 1.05rem;
    max-width: 560px;
    margin-top: 1rem;
    line-height: 1.7;
}
.section-sub.center { max-width: 580px; margin-left: auto; margin-right: auto; text-align: center; }

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}
.btn-primary {
    background: hsl(var(--jade));
    color: #fff;
    box-shadow: 0 2px 16px rgba(34,155,110,0.25);
}
.btn-primary:hover {
    background: hsl(var(--jade-light));
    box-shadow: var(--primary-glow);
    transform: translateY(-2px);
}
.btn-ghost {
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--border);
}
.btn-ghost:hover {
    background: var(--surface-2);
    border-color: var(--border-jade);
    transform: translateY(-2px);
}
.btn-lg {
    padding: 0.9rem 2.25rem;
    font-size: 1rem;
}
.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.825rem;
}
.btn-block { width: 100%; justify-content: center; }

/* Arrow icon */
.arrow {
    display: inline-block;
    transition: transform var(--transition);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ==================== CARDS ==================== */
.card {
    background: rgba(7, 16, 13, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card:hover {
    border-color: var(--border-jade);
    box-shadow: 0 0 32px rgba(34,155,110,0.1);
    transform: translateY(-4px);
}
.card.featured {
    border-color: hsl(var(--jade) / 0.5);
    background: linear-gradient(160deg, rgba(34,155,110,0.08) 0%, var(--surface) 100%);
    box-shadow: 0 0 40px rgba(34,155,110,0.12), inset 0 1px 0 rgba(34,155,110,0.2);
}

.card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius);
    background: rgba(34,155,110,0.12);
    border: 1px solid rgba(34,155,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    color: hsl(var(--jade-light));
    flex-shrink: 0;
}

/* ==================== PRICING CARDS ==================== */
.pricing-card {
    display: flex;
    flex-direction: column;
}
.pricing-card .price-amount {
    font-family: var(--font-head);
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: -0.04em;
    color: var(--text);
    line-height: 1;
}
.pricing-card .price-period {
    font-size: 0.9rem;
    color: var(--text-3);
    font-weight: 400;
}
.feature-list {
    list-style: none;
    margin: 1.5rem 0;
    flex: 1;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.55rem 0;
    font-size: 0.9rem;
    color: var(--text-2);
    border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.check {
    width: 18px; height: 18px;
    border-radius: 50%;
    background: rgba(34,155,110,0.15);
    border: 1px solid rgba(34,155,110,0.3);
    color: hsl(var(--jade-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
    margin-top: 1px;
}
.badge-popular {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    background: hsl(var(--jade));
    color: #fff;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

/* ==================== PROCESS / HOW IT WORKS ==================== */
.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.step-num {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: hsl(var(--jade));
    background: rgba(34,155,110,0.08);
    border: 1px solid rgba(34,155,110,0.2);
    border-radius: var(--radius);
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
    font-weight: 600;
}
.step-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.step-content p {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.65;
}

/* ==================== FAQ ==================== */
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.4rem 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-body);
    transition: color var(--transition);
}
.faq-question:hover { color: hsl(var(--jade-light)); }
.faq-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: hsl(var(--jade));
    transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(34,155,110,0.12);
    border-color: var(--border-jade);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.35s;
    color: var(--text-2);
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0;
}
.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* ==================== FORMS ==================== */
.form-group { margin-bottom: 1.25rem; }
label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}
input, textarea, select {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
    border-color: hsl(var(--jade));
    box-shadow: 0 0 0 3px rgba(34,155,110,0.12);
}
textarea { resize: vertical; min-height: 130px; }
input::placeholder, textarea::placeholder { color: var(--text-3); }

/* ==================== GLASS CARD ==================== */
.glass {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

/* ==================== NAVIGATION ==================== */

/* ==================== FOOTER ==================== */
footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-3);
    line-height: 1.7;
    margin-top: 0.75rem;
    max-width: 260px;
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
    font-size: 0.88rem;
    color: var(--text-2);
    transition: color var(--transition);
}
.footer-col a:hover { color: hsl(var(--jade-light)); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-3);
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 0;
    overflow: hidden;
}
.trust-items {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-2);
    white-space: nowrap;
}
.trust-item span { color: hsl(var(--jade)); font-size: 1rem; }

/* ==================== ABOUT PAGE ==================== */
.founder-card {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: stretch;
}
@media (max-width: 768px) {
    .founder-card { grid-template-columns: 1fr; }
}
.founder-avatar-wrap {
    display: flex;
    align-items: stretch;
}
.founder-avatar {
    width: 100%;
    min-height: 380px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(34,155,110,0.15), rgba(34,155,110,0.05));
    border: 1px solid var(--border-jade);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: hsl(var(--jade));
}
.founder-role {
    color: hsl(var(--jade-light));
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-mono);
    letter-spacing: 0.05em;
}
.founder-school {
    font-size: 0.82rem;
    color: var(--text-3);
    margin-top: 0.25rem;
}
.founder-bio p {
    color: var(--text-2);
    line-height: 1.8;
    font-size: 0.97rem;
    margin-bottom: 1rem;
}

/* ==================== PAGE HERO (inner pages) ==================== */
.page-hero {
    padding: 9rem 0 5rem;
    background:
        radial-gradient(ellipse 90% 80% at 50% -10%, rgba(34,155,110,0.28) 0%, transparent 52%),
        radial-gradient(ellipse 50% 60% at 94% 60%, rgba(20,115,78,0.14) 0%, transparent 52%),
        radial-gradient(ellipse 50% 60% at 4% 60%, rgba(20,95,63,0.12) 0%, transparent 52%),
        linear-gradient(rgba(34,155,110,0.10) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,155,110,0.10) 1px, transparent 1px),
        var(--bg);
    background-size: auto, auto, auto, 60px 60px, 60px 60px, auto;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(34,155,110,0.14) 0%, transparent 68%);
    animation: hero-glow-pulse 7s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg));
    pointer-events: none;
    z-index: 0;
}
.page-hero > .container {
    position: relative;
    z-index: 1;
}
@keyframes hero-glow-pulse {
    0%   { opacity: 0.45; transform: translateX(-50%) scale(1); }
    100% { opacity: 1;    transform: translateX(-50%) scale(1.18) translateY(24px); }
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) {
    .contact-grid { grid-template-columns: 1fr; }
}
.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    align-items: flex-start;
}
.contact-info-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius);
    background: rgba(34,155,110,0.1);
    border: 1px solid rgba(34,155,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-info-text h4 { font-size: 0.85rem; margin-bottom: 0.2rem; }
.contact-info-text p { font-size: 0.85rem; color: var(--text-2); }

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 100% at 50% -5%, rgba(34,155,110,0.18) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 10% 100%, rgba(34,155,110,0.08) 0%, transparent 55%),
        radial-gradient(ellipse 50% 60% at 90% 100%, rgba(34,155,110,0.08) 0%, transparent 55%),
        linear-gradient(rgba(34,155,110,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,155,110,0.04) 1px, transparent 1px),
        var(--bg);
    background-size: auto, auto, auto, 60px 60px, 60px 60px, auto;
    border-top: 1px solid var(--border-jade);
    text-align: center;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 500px;
    border-radius: 50%;
    top: -160px; left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(34,155,110,0.13) 0%, transparent 68%);
    animation: hero-glow-pulse 9s ease-in-out infinite alternate;
    pointer-events: none;
}
.cta-section > .container {
    position: relative;
    z-index: 1;
}
.cta-section .section-h2 { max-width: 640px; margin: 0 auto 1rem; }
.cta-section .section-sub { margin: 0 auto 2.5rem; }

/* ==================== PRIVACY ==================== */
.prose {
    max-width: 720px;
    margin: 0 auto;
}
.prose h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}
.prose h3 {
    font-size: 1.1rem;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-2);
}
.prose p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.prose ul {
    margin: 0.75rem 0 1rem 1.5rem;
}
.prose li {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

/* ==================== SHIFT SECTION ==================== */
.shift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
@media (max-width: 900px) {
    .shift-grid { grid-template-columns: 1fr; gap: 3rem; }
}
.shift-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.shift-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius);
    background: rgba(34,155,110,0.1);
    border: 1px solid rgba(34,155,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--jade-light));
    flex-shrink: 0;
}
.metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    min-width: 0;
}

/* ==================== PROCESS LAYOUT ==================== */
.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}
@media (max-width: 900px) {
    .process-layout { grid-template-columns: 1fr; gap: 3rem; }
    .process-sticky { position: static !important; }
}
.process-sticky {
    position: sticky;
    top: 100px;
}

/* ==================== METRICS / RESULTS ==================== */
.metric-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), box-shadow var(--transition);
}
.metric-card:hover {
    border-color: var(--border-jade);
    box-shadow: 0 0 28px rgba(34,155,110,0.1);
}
.metric-num {
    font-family: var(--font-head);
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.05em;
    background: linear-gradient(110deg, hsl(var(--jade-light)), hsl(var(--jade-bright)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.metric-label {
    font-size: 0.88rem;
    color: var(--text-3);
    font-weight: 500;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-content { padding-bottom: 4rem; }
    .section { padding: 5rem 0; }
    .hero-stats { gap: 1.5rem; }
    .hero-stat-divider { display: none; }
    .contact-grid { grid-template-columns: 1fr; }
    .founder-card { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* ==================== SCROLL REVEAL ==================== */
[data-reveal] {
    opacity: 0;
    transform: translateY(44px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
[data-reveal="left"]  { transform: translateX(-44px); }
[data-reveal="right"] { transform: translateX(44px); }
[data-reveal="scale"] { transform: scale(0.93) translateY(20px); }
[data-reveal="fold"]  {
    transform: perspective(900px) rotateX(10deg) translateY(36px);
    transform-origin: top center;
}
[data-reveal].revealed {
    opacity: 1;
    transform: none;
}
[data-reveal][data-delay="1"] { transition-delay: 0.07s; }
[data-reveal][data-delay="2"] { transition-delay: 0.15s; }
[data-reveal][data-delay="3"] { transition-delay: 0.23s; }
[data-reveal][data-delay="4"] { transition-delay: 0.31s; }
[data-reveal][data-delay="5"] { transition-delay: 0.39s; }
[data-reveal][data-delay="6"] { transition-delay: 0.47s; }

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(34,155,110,0.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(34,155,110,0.5); }
