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

:root {
    --green: #3da32f;
    --green-dark: #2d7a22;
    --green-glow: rgba(61, 163, 47, 0.15);
    --brown: #A75F4A;
    --dark: #181D1F;
    --dark-2: #232930;
    --text-primary: #181D1F;
    --text-secondary: #424647;
    --text-muted: #7d7d87;
    --bg: #ffffff;
    --bg-warm: #EAE4DC;
    --border: #E7E7E9;
    --radius-sm: 12px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.5;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(0,0,0,0.55) 0.5px, transparent 0.7px),
        radial-gradient(circle at 80% 30%, rgba(0,0,0,0.45) 0.5px, transparent 0.7px),
        radial-gradient(circle at 40% 70%, rgba(0,0,0,0.35) 0.5px, transparent 0.7px);
    background-size: 14px 14px, 18px 18px, 22px 22px;
    mix-blend-mode: multiply;
}

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

@media (max-width: 768px) {
    .container { padding: 0 24px; }
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4 {
    font-family: 'Gabarito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.hide-mobile { display: inline; }
@media (max-width: 768px) { .hide-mobile { display: none; } }

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--dark);
    color: #fff;
    font-family: 'Gabarito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--dark-2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn-primary.btn-lg {
    padding: 18px 40px;
    font-size: 17px;
}

.btn-primary.full-width { width: 100%; }

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-primary);
    font-family: 'Gabarito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 100px;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    letter-spacing: 0.02em;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(0,0,0,0.03);
    transform: translateY(-2px);
}

.kicker {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: inline-block;
}

.kicker.light { color: rgba(255,255,255,0.4); }

.pill {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.65);
    color: var(--text-secondary);
    backdrop-filter: blur(4px);
}

/* TOPBAR */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 48px;
    transition: background 0.3s, box-shadow 0.3s;
}

.topbar.scrolled {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--border);
}

@media (max-width: 768px) {
    .topbar { padding: 0 24px; }
}

.topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.topbar-logo img { height: 32px; }

@media (min-width: 769px) {
    .topbar-logo img { height: 26px; }
}

.topbar-nav { display: flex; gap: 32px; }

.topbar-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.15s;
    letter-spacing: 0.015em;
}

.topbar-nav a:hover { color: var(--text-primary); }

.topbar-btn {
    font-family: 'Gabarito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    background: var(--dark);
    color: #fff;
    border-radius: 100px;
    transition: background 0.15s;
}

.topbar-btn:hover { background: var(--dark-2); }

.topbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.topbar-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    display: block;
}

.topbar-toggle.active span:first-child { transform: rotate(45deg) translate(3px, 3px); }
.topbar-toggle.active span:last-child { transform: rotate(-45deg) translate(3px, -3px); }

@media (max-width: 768px) {
    .topbar-nav, .topbar-btn { display: none; }
    .topbar-toggle { display: flex; }
    .topbar-nav.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: #fff;
        align-items: center;
        justify-content: center;
        gap: 36px;
        z-index: 999;
    }
    .topbar-nav.active a {
        font-family: 'Gabarito', sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: var(--text-primary);
    }
}

/* HERO */
.hero {
    position: relative;
    padding: 150px 48px 0;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero { padding: 128px 24px 0; min-height: auto; }
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(24, 29, 31, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24, 29, 31, 0.035) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
    opacity: 0.6;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: #E4EED2;
    top: -10%;
    left: -5%;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: #FDDBCE;
    top: 20%;
    right: -8%;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: #D7CEF0;
    bottom: 10%;
    left: 30%;
    animation: orbFloat 18s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(30px, -20px); }
    66% { transform: translate(-20px, 15px); }
}

.hero-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    padding-top: 8px;
}

.hero-scene {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 72px auto 0;
    padding: 0 24px;
}

.scene-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 760px) 220px;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.scene-main-card {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 30px 80px rgba(24, 29, 31, 0.09);
    border-radius: 32px;
    padding: 26px;
}

.scene-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    font-family: 'Gabarito', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.scene-status {
    color: var(--green);
    background: rgba(61, 163, 47, 0.1);
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 13px;
}

.scene-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 18px;
}

.scene-stat-card {
    min-height: 108px;
    border-radius: 22px;
    padding: 18px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.soft-green { background: #E4EED2; }
.soft-peach { background: #FDDBCE; }
.soft-blue { background: #DBE5F0; }
.soft-lilac { background: #D7CEF0; }

.scene-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(24, 29, 31, 0.55);
}

.scene-stat-card strong {
    font-family: 'Gabarito', sans-serif;
    font-size: 26px;
    line-height: 1;
}

.scene-chart-card {
    background: rgba(255,255,255,0.65);
    border: 1px solid rgba(24, 29, 31, 0.05);
    border-radius: 24px;
    padding: 18px 18px 22px;
}

.scene-chart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.scene-bars {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 10px;
}

.scene-bars .bar {
    flex: 1;
    border-radius: 16px 16px 8px 8px;
    background: linear-gradient(180deg, rgba(61, 163, 47, 0.9), rgba(61, 163, 47, 0.22));
    animation: barDance 4s ease-in-out infinite;
}

.scene-bars .b1 { height: 36%; }
.scene-bars .b2 { height: 62%; animation-delay: 0.2s; }
.scene-bars .b3 { height: 52%; animation-delay: 0.4s; }
.scene-bars .b4 { height: 84%; animation-delay: 0.6s; }
.scene-bars .b5 { height: 58%; animation-delay: 0.8s; }
.scene-bars .b6 { height: 72%; animation-delay: 1s; }
.scene-bars .b7 { height: 48%; animation-delay: 1.2s; }

@keyframes barDance {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.92); }
}

.scene-aside {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.aside-card {
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 20px 40px rgba(24, 29, 31, 0.08);
    position: relative;
    z-index: 2;
}

.attendance-card { background: #fff; }
.harvest-card { background: #181D1F; color: #fff; }

.aside-title {
    font-family: 'Gabarito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.people-row {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.people-row span {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E4EED2, #9dd28f);
}

.aside-meter,
.yield-scale,
.visual-track {
    height: 10px;
    border-radius: 100px;
    background: rgba(24, 29, 31, 0.08);
    overflow: hidden;
}

.aside-meter i,
.yield-scale i,
.visual-track i {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--green), #7bd468);
}

.aside-meter i {
    width: 78%;
    animation: trackMove 5s ease-in-out infinite;
}

.harvest-amount {
    font-family: 'Gabarito', sans-serif;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
}

.harvest-crops {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.harvest-crops span {
    font-size: 12px;
    padding: 7px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.8);
}

.floating-badge {
    position: absolute;
    font-family: 'Gabarito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 28px rgba(24, 29, 31, 0.08);
    color: var(--text-primary);
}

.badge-one { left: 5%; top: 12%; }
.badge-two { right: 16%; top: -12px; }
.badge-three { left: 22%; bottom: -14px; }

@keyframes trackMove {
    0%, 100% { width: 78%; }
    50% { width: 62%; }
}

.hero-kicker {
    font-family: 'Gabarito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-glow);
    padding: 8px 20px;
    border-radius: 100px;
}

.hero-title {
    font-size: clamp(42px, 8vw, 86px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-wrap: balance;
}

.title-gradient {
    background: linear-gradient(135deg, var(--green) 0%, #2d7a22 50%, var(--brown) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 28px;
}

.hero-signals {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.hero-signals span {
    font-family: 'Gabarito', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(24, 29, 31, 0.06);
    box-shadow: 0 10px 30px rgba(24, 29, 31, 0.04);
}

@media (max-width: 768px) {
    .hero-sub { font-size: 16px; line-height: 24px; }
    .hero-signals { margin-bottom: 28px; }
    .hero-signals span { font-size: 13px; padding: 8px 12px; }
}

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

@media (max-width: 1100px) {
    .scene-shell {
        grid-template-columns: 1fr;
    }

    .scene-aside {
        flex-direction: row;
        justify-content: center;
    }

    .aside-card {
        flex: 1;
        max-width: 260px;
    }

    .floating-badge {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-scene {
        margin-top: 48px;
        padding: 0;
    }

    .scene-main-card {
        padding: 18px;
        border-radius: 24px;
    }

    .scene-card-head {
        flex-wrap: wrap;
    }

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

    .scene-aside {
        flex-direction: column;
    }

    .aside-card {
        max-width: none;
    }

    .scene-bars {
        height: 92px;
    }
}

/* MARQUEE */
.hero-marquee {
    overflow: hidden;
    padding: 56px 0 0;
    position: relative;
    z-index: 2;
}

.hero-marquee::before,
.hero-marquee::after {
    content: '';
    position: absolute;
    top: 56px;
    bottom: 0;
    width: 120px;
    z-index: 3;
    pointer-events: none;
}

.hero-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.hero-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
    width: max-content;
    padding: 20px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee-track span {
    font-family: 'Gabarito', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    flex-shrink: 0;
}

.marquee-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    display: inline-block;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* METRICS STRIP */
.metrics-strip {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.metrics-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(61, 163, 47, 0.12), transparent 35%), radial-gradient(circle at 80% 80%, rgba(167, 95, 74, 0.12), transparent 35%);
    pointer-events: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.metric {
    text-align: center;
    padding: 24px;
    position: relative;
    z-index: 2;
}

.metric-number {
    font-family: 'Gabarito', sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
}

.metric-unit {
    font-size: 0.5em;
    color: var(--green);
    font-weight: 600;
}

.metric p {
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    line-height: 22px;
    max-width: 240px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .metrics-grid { grid-template-columns: 1fr; gap: 16px; }
    .metric { padding: 20px; }
}

/* SECTION COMMONS */
.section-kicker-row { margin-bottom: 16px; }

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    margin-bottom: 16px;
    max-width: 700px;
}

.section-sub {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 56px;
}

@media (max-width: 768px) {
    .section-sub { font-size: 16px; line-height: 24px; margin-bottom: 36px; }
}

/* WHY SECTION */
.why-section { padding: 96px 0; }

.why-section,
.solution-section,
.vision-section,
.cta-section {
    position: relative;
}

.why-section::before,
.solution-section::before,
.vision-section::before,
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top right, rgba(61, 163, 47, 0.04), transparent 30%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-card {
    border-radius: var(--radius-lg);
    padding: 36px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-card:hover { transform: translateY(-6px); }

.why-card-hero {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 48px;
    min-height: 200px;
}

.why-card-hero .why-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-icon-float {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card p {
    font-size: 15px;
    line-height: 24px;
    color: var(--text-secondary);
}

/* Paper stack art */
.why-card-art { display: flex; align-items: center; justify-content: center; }

.paper-stack {
    position: relative;
    width: 100px;
    height: 120px;
}

.paper-page {
    position: absolute;
    width: 80px;
    height: 100px;
    border-radius: 6px;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(58, 125, 42, 0.15);
}

.paper-page::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: rgba(58, 125, 42, 0.15);
    box-shadow: 0 10px 0 rgba(58, 125, 42, 0.12), 0 20px 0 rgba(58, 125, 42, 0.09), 0 30px 0 rgba(58, 125, 42, 0.06);
}

.paper-page.p1 { top: 0; left: 10px; transform: rotate(-3deg); z-index: 3; }
.paper-page.p2 { top: 4px; left: 16px; transform: rotate(2deg); z-index: 2; opacity: 0.7; }
.paper-page.p3 { top: 8px; left: 6px; transform: rotate(-1deg); z-index: 1; opacity: 0.4; }

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; }
    .why-card-hero { grid-template-columns: 1fr; gap: 24px; }
    .why-card-art { display: none; }
    .why-card { padding: 28px; min-height: 160px; }
}

/* SOLUTION SECTION */
.solution-section { padding: 96px 0 0; }

.big-feature-card {
    background: var(--bg-warm);
    border-radius: var(--radius-xl);
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
}

.big-feature-card::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    right: -80px;
    top: -80px;
    background: rgba(255,255,255,0.22);
}

.bf-badge {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brown);
    background: rgba(167, 95, 74, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 20px;
}

.big-feature-content h3 {
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.big-feature-content p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 440px;
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Sync visual art */
.big-feature-art {
    display: flex;
    align-items: center;
    justify-content: center;
}

.sync-visual {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sync-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(61, 163, 47, 0.15);
}

.sync-ring.ring-1 {
    width: 100%;
    height: 100%;
    animation: ringPulse 4s ease-in-out infinite;
}

.sync-ring.ring-2 {
    width: 70%;
    height: 70%;
    border-color: rgba(61, 163, 47, 0.25);
    animation: ringPulse 4s ease-in-out 0.5s infinite;
}

.sync-ring.ring-3 {
    width: 45%;
    height: 45%;
    border-color: rgba(61, 163, 47, 0.4);
    animation: ringPulse 4s ease-in-out 1s infinite;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.06); opacity: 0.6; }
}

.sync-center {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px var(--green-glow);
    animation: syncSpin 6s linear infinite;
    position: relative;
    z-index: 2;
}

.sync-chip {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.75);
    color: var(--text-primary);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(24, 29, 31, 0.08);
}

.sync-chip-1 { top: 10%; left: -6%; }
.sync-chip-2 { top: 50%; right: -10%; }
.sync-chip-3 { bottom: 12%; left: 0; }

@keyframes syncSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 900px) {
    .big-feature-card { grid-template-columns: 1fr; padding: 36px; }
    .sync-visual { width: 180px; height: 180px; }
    .sync-chip { display: none; }
}

@media (max-width: 768px) {
    .big-feature-card { border-radius: var(--radius-lg); }
}

/* FEATURE CARDS */
.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding-bottom: 96px;
}

.feature-card {
    border-radius: var(--radius-lg);
    padding: 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card:hover { transform: translateY(-6px); }

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: translate(30%, 30%);
    pointer-events: none;
}

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 22px;
    color: var(--text-secondary);
}

.feature-visual {
    margin-top: auto;
    padding-top: 22px;
}

.payroll-dots {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.payroll-dots span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255,255,255,0.75);
}

.visual-track i {
    width: 74%;
    animation: trackMove 5s ease-in-out infinite;
}

.money-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.money-pill {
    font-family: 'Gabarito', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 100px;
    background: rgba(255,255,255,0.6);
}

.money-pill.income { color: var(--green-dark); }
.money-pill.expense { color: #b25d4e; }

.mini-bars {
    display: flex;
    align-items: end;
    gap: 6px;
    margin-left: auto;
    height: 32px;
}

.mini-bars span {
    width: 8px;
    border-radius: 999px;
    background: rgba(42, 90, 140, 0.55);
}

.mini-bars span:nth-child(1) { height: 45%; }
.mini-bars span:nth-child(2) { height: 100%; }
.mini-bars span:nth-child(3) { height: 70%; }

.yield-chips {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.yield-chips span {
    font-size: 12px;
    font-weight: 600;
    padding: 7px 10px;
    border-radius: 100px;
    background: rgba(255,255,255,0.58);
    color: #8f5d2b;
}

.yield-scale i {
    width: 68%;
    background: linear-gradient(90deg, #c7783d, #f3b06a);
}

.network-visual {
    position: relative;
    height: 82px;
}

.network-visual::before,
.network-visual::after {
    content: '';
    position: absolute;
    background: rgba(45, 107, 74, 0.2);
    transform-origin: left center;
}

.network-visual::before {
    left: 50%;
    top: 36px;
    width: 68px;
    height: 2px;
    transform: rotate(-26deg);
}

.network-visual::after {
    left: 50%;
    top: 38px;
    width: 62px;
    height: 2px;
    transform: rotate(28deg);
}

.node {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 0 0 6px rgba(255,255,255,0.18);
}

.node.center {
    width: 24px;
    height: 24px;
    left: 50%;
    top: 26px;
    transform: translateX(-50%);
    background: #2d6b4a;
}

.node.n1 { left: 20%; top: 8px; }
.node.n2 { right: 18%; top: 12px; }
.node.n3 { left: 36%; bottom: 2px; }

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

@media (max-width: 600px) {
    .features-row { grid-template-columns: 1fr; }
    .feature-card { min-height: auto; }
}

/* HOW SECTION */
.how-section {
    padding: 96px 0;
    background: var(--dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.how-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.35;
    pointer-events: none;
}

.how-section .section-title { color: #fff; }
.how-section .section-sub { color: rgba(255,255,255,0.4); }
.how-section .kicker { color: rgba(255,255,255,0.3); }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
}

.step-card {
    background: var(--dark-2);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: border-color 0.3s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.step-card:hover {
    border-color: rgba(255,255,255,0.1);
    transform: translateY(-6px);
}

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

.step-num {
    font-family: 'Gabarito', sans-serif;
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--green), rgba(61,163,47,0.3));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 24px;
}

.step-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.step-card p {
    font-size: 15px;
    line-height: 24px;
    color: rgba(255,255,255,0.45);
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; }
    .step-card { padding: 28px; }
}

/* AUDIENCE */
.audience-section { padding: 96px 0; }

.audience-card {
    background: var(--dark);
    border-radius: var(--radius-xl);
    padding: 72px 64px;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--green-glow), transparent 70%);
    pointer-events: none;
}

@media (max-width: 768px) {
    .audience-card { padding: 40px 28px; border-radius: var(--radius-lg); }
}

.audience-content { position: relative; z-index: 2; }

.audience-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    color: #fff;
    margin-bottom: 36px;
    max-width: 560px;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.audience-tags span {
    font-family: 'Gabarito', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
    cursor: default;
}

.audience-tags span:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
    color: #fff;
    transform: translateY(-2px);
}

/* VISION */
.vision-section { padding: 0 0 96px; }

.vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vision-card {
    border-radius: var(--radius-xl);
    padding: 52px;
    position: relative;
    overflow: hidden;
}

.vision-card::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    pointer-events: none;
}

@media (max-width: 768px) {
    .vision-card { padding: 36px; border-radius: var(--radius-lg); }
}

.vision-card .kicker { margin-bottom: 16px; }

.vision-card h3 {
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.25;
    margin-bottom: 16px;
}

.vision-card p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .vision-grid { grid-template-columns: 1fr; }
}

/* CTA */
.cta-section { padding: 0 0 96px; }

.cta-card {
    background: linear-gradient(135deg, #E4EED2 0%, #D5E2DA 100%);
    border-radius: var(--radius-xl);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    left: -100px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    pointer-events: none;
}

@media (max-width: 900px) {
    .cta-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 32px; }
}

@media (max-width: 768px) {
    .cta-card { border-radius: var(--radius-lg); padding: 32px 24px; }
}

.cta-left h2 {
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-left p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text-secondary);
}

.cta-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.cta-points span {
    font-family: 'Gabarito', sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 100px;
    background: rgba(255,255,255,0.55);
    color: var(--text-primary);
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 16px 20px;
    border: 1.5px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

.cta-form input::placeholder { color: var(--text-muted); }

.cta-form input:focus,
.cta-form select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}

.cta-form select { cursor: pointer; color: var(--text-muted); }
.cta-form select:valid { color: var(--text-primary); }

.cta-form .btn-primary {
    margin-top: 4px;
    padding: 16px 32px;
    font-size: 16px;
    background: var(--green);
}

.cta-form .btn-primary:hover {
    background: var(--green-dark);
    box-shadow: 0 8px 24px var(--green-glow);
}

/* FOOTER */
.site-footer {
    padding: 64px 0 32px;
    background: var(--dark);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    height: 28px;
    filter: brightness(10);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    max-width: 260px;
    line-height: 22px;
}

.footer-cols { display: flex; gap: 64px; }

.footer-col h5 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 10px;
    transition: color 0.15s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom span {
    font-size: 12px;
    color: rgba(255,255,255,0.18);
}

@media (max-width: 768px) {
    .footer-top { flex-direction: column; }
    .footer-cols { gap: 40px; }
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-d1 { transition-delay: 0.06s; }
.reveal-d2 { transition-delay: 0.12s; }
.reveal-d3 { transition-delay: 0.18s; }
.reveal-d4 { transition-delay: 0.24s; }
.reveal-d5 { transition-delay: 0.30s; }
