:root {
    --ink: #0a1713;
    --ink-2: #10251e;
    --green: #9fe870;
    --green-2: #65c466;
    --green-soft: #eaf8df;
    --cream: #f6f4ed;
    --paper: #fffef9;
    --white: #fff;
    --muted: #65726d;
    --line: #dfe4df;
    --purple: #4d46a8;
    --orange: #f2a93b;
    --font-display: "Bricolage Grotesque", sans-serif;
    --font-body: "Figtree", sans-serif;
    --nav-h: 5rem;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; }

/* Navigation */
.site-nav {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    min-height: var(--nav-h);
    padding: .8rem 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: color .3s ease, background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-nav.is-scrolled {
    padding: .55rem 0;
    color: var(--ink);
    background: rgba(255,254,249,.94);
    border-bottom-color: rgba(10,23,19,.08);
    box-shadow: 0 8px 35px rgba(8,26,20,.08);
    backdrop-filter: blur(18px);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: inherit !important;
    font-family: var(--font-display);
    font-size: 1.32rem;
    font-weight: 750;
    letter-spacing: -.04em;
}
.brand-symbol {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    flex: 0 0 auto;
    color: var(--green);
}
.brand-symbol img { width: 100%; height: 100%; object-fit: contain; }
.brand-dot { color: var(--green); }
.site-nav .nav-link {
    padding: .55rem .85rem !important;
    color: inherit;
    font-size: .9rem;
    font-weight: 600;
    opacity: .72;
    transition: opacity .2s ease;
}
.site-nav .nav-link:hover { color: inherit; opacity: 1; }
.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .67rem 1rem;
    color: var(--ink) !important;
    background: var(--green);
    border-radius: .65rem;
    font-size: .88rem;
    font-weight: 750;
    transition: transform .25s var(--ease), box-shadow .25s ease;
}
.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 9px 24px rgba(107,209,100,.2); }
.btn-nav span { font-size: 1rem; }
.navbar-toggler { padding: .25rem; color: inherit; border: 0; }
.navbar-toggler:focus { box-shadow: none; }

/* Hero */
.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    padding: calc(var(--nav-h) + 5.5rem) 0 0;
    color: var(--white);
    background: var(--ink);
}
.hero-grid, .cta-grid {
    position: absolute;
    inset: 0;
    opacity: .5;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000 10%, transparent 85%);
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}
.hero-orb-one {
    top: -19rem;
    right: -11rem;
    width: 42rem;
    height: 42rem;
    background: radial-gradient(circle, rgba(107,209,100,.19), rgba(107,209,100,0) 70%);
}
.hero-orb-two {
    bottom: 0;
    left: 30%;
    width: 28rem;
    height: 28rem;
    background: radial-gradient(circle, rgba(57,111,92,.24), transparent 70%);
}
.hero-container { position: relative; z-index: 2; padding-bottom: 7rem; }
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1.5rem;
    padding: .44rem .7rem;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.status-dot {
    width: .45rem;
    height: .45rem;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(159,232,112,.1);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .55; box-shadow: 0 0 0 7px rgba(159,232,112,.03); } }
.hero-title {
    max-width: 660px;
    margin: 0 0 1.55rem;
    font-family: var(--font-display);
    font-size: clamp(3.3rem, 6vw, 6.25rem);
    font-weight: 650;
    letter-spacing: -.066em;
    line-height: .94;
}
.hero-title span { color: var(--green); }
.hero-lead {
    max-width: 590px;
    margin: 0 0 2rem;
    color: rgba(255,255,255,.65);
    font-size: clamp(1.04rem, 1.5vw, 1.18rem);
    line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; }
.btn-primary-lg, .btn-ghost {
    display: inline-flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    padding: .8rem 1.25rem;
    border-radius: .65rem;
    font-size: .92rem;
    font-weight: 750;
    transition: transform .25s var(--ease), background .25s ease, box-shadow .25s ease;
}
.btn-primary-lg { color: var(--ink); background: var(--green); }
.btn-primary-lg:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(107,209,100,.18); }
.btn-ghost { color: rgba(255,255,255,.82); background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); }
.btn-ghost:hover { color: var(--white); background: rgba(255,255,255,.1); transform: translateY(-2px); }
.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 3rem;
}
.hero-proof > div { display: flex; flex-direction: column; }
.hero-proof strong { color: var(--white); font-size: .84rem; font-weight: 700; }
.hero-proof span { color: rgba(255,255,255,.4); font-size: .68rem; }
.hero-proof > i { width: 1px; height: 1.8rem; background: rgba(255,255,255,.12); }

/* Hero product suite */
.suite-visual {
    position: relative;
    overflow: visible;
    margin-left: 1.5rem;
    background: #111e1a;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 1.2rem;
    box-shadow: 0 45px 90px rgba(0,0,0,.42);
    transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.suite-toolbar, .app-topbar {
    position: relative;
    display: flex;
    height: 2.8rem;
    align-items: center;
    padding: 0 .85rem;
    color: rgba(255,255,255,.38);
    background: rgba(255,255,255,.035);
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: .67rem;
}
.browser-dots { display: flex; gap: .3rem; }
.browser-dots i { width: .45rem; height: .45rem; background: rgba(255,255,255,.2); border-radius: 50%; }
.browser-dots i:first-child { background: #ef7c72; }
.browser-dots i:nth-child(2) { background: #ebba58; }
.browser-dots i:nth-child(3) { background: #65bb78; }
.suite-toolbar > span { position: absolute; left: 50%; transform: translateX(-50%); }
.live-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-left: auto;
    padding: .23rem .47rem;
    color: rgba(255,255,255,.62);
    background: rgba(255,255,255,.05);
    border-radius: .3rem;
}
.live-pill i, .product-state i { width: .38rem; height: .38rem; background: var(--green); border-radius: 50%; }
.suite-body { display: grid; min-height: 470px; grid-template-columns: 3.6rem 1fr; }
.suite-sidebar {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: .9rem;
    padding: 1rem .6rem;
    background: rgba(0,0,0,.18);
    border-right: 1px solid rgba(255,255,255,.07);
}
.suite-s {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    margin-bottom: 1rem;
    color: var(--ink);
    background: var(--green);
    border-radius: .55rem;
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 800;
}
.suite-sidebar > i { width: 1.35rem; height: 1.35rem; border: 1px solid rgba(255,255,255,.12); border-radius: .35rem; }
.suite-sidebar > i.active { background: rgba(159,232,112,.15); border-color: rgba(159,232,112,.4); }
.suite-avatar {
    display: grid;
    width: 1.7rem;
    height: 1.7rem;
    place-items: center;
    margin-top: auto;
    color: rgba(255,255,255,.65);
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    font-size: .5rem;
    font-weight: 700;
}
.suite-content { padding: 1.5rem; }
.suite-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.suite-head > div { display: flex; flex-direction: column; }
.suite-head small { color: rgba(255,255,255,.35); font-size: .58rem; }
.suite-head b { color: var(--white); font-size: .9rem; }
.suite-head > span { padding: .43rem .6rem; color: var(--ink); background: var(--green); border-radius: .4rem; font-size: .58rem; font-weight: 700; }
.suite-product {
    position: relative;
    display: grid;
    grid-template-columns: 3.8rem 1fr auto;
    gap: .9rem;
    align-items: center;
    margin-top: .75rem;
    padding: 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: .75rem;
    transition: background .25s ease, border-color .25s ease, transform .25s var(--ease);
}
.suite-product:hover { color: inherit; background: rgba(255,255,255,.07); border-color: rgba(159,232,112,.25); transform: translateX(3px); }
.suite-product-icon {
    display: grid;
    width: 3.6rem;
    height: 3.6rem;
    place-items: center;
    background: #f5f7f3;
    border-radius: .65rem;
}
.suite-product-icon img { width: 2.7rem; height: 2.7rem; object-fit: contain; }
.suite-binar .suite-product-icon { background: #f1effe; }
.suite-product-copy { display: flex; min-width: 0; flex-direction: column; }
.suite-product-copy small { color: rgba(255,255,255,.3); font-size: .48rem; font-weight: 800; letter-spacing: .12em; }
.suite-product-copy strong { color: var(--white); font-family: var(--font-display); font-size: .98rem; }
.suite-product-copy p { overflow: hidden; margin: .18rem 0 0; color: rgba(255,255,255,.44); font-size: .61rem; text-overflow: ellipsis; white-space: nowrap; }
.product-state {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: .28rem .43rem;
    color: rgba(255,255,255,.52);
    background: rgba(159,232,112,.06);
    border: 1px solid rgba(159,232,112,.13);
    border-radius: 999px;
    font-size: .49rem;
}
.suite-arrow { position: absolute; top: .55rem; right: .65rem; color: rgba(255,255,255,.28); font-size: .7rem; }
.suite-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: .6rem; margin-top: 1rem; }
.suite-metrics > div { position: relative; overflow: hidden; min-height: 5rem; padding: .7rem; background: rgba(255,255,255,.025); border: 1px solid rgba(255,255,255,.07); border-radius: .6rem; }
.suite-metrics span { display: block; color: rgba(255,255,255,.29); font-size: .48rem; }
.suite-metrics b { display: block; margin-top: .15rem; color: rgba(255,255,255,.75); font-size: .61rem; }
.metric-line { position: absolute; right: 0; bottom: .9rem; left: 0; height: 1.5rem; opacity: .55; clip-path: polygon(0 80%, 15% 65%, 27% 75%, 42% 35%, 58% 53%, 73% 20%, 86% 33%, 100% 4%, 100% 100%, 0 100%); background: linear-gradient(180deg, rgba(159,232,112,.8), rgba(159,232,112,.03)); }
.m2 { clip-path: polygon(0 60%, 18% 76%, 31% 38%, 48% 48%, 62% 15%, 78% 33%, 100% 8%, 100% 100%, 0 100%); }
.m3 { clip-path: polygon(0 73%, 22% 52%, 36% 62%, 51% 31%, 70% 48%, 87% 17%, 100% 26%, 100% 100%, 0 100%); }
.floating-code {
    position: absolute;
    right: -1.4rem;
    bottom: -1.7rem;
    display: flex;
    flex-direction: column;
    padding: .8rem 1rem;
    color: rgba(255,255,255,.52);
    background: #152721;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: .6rem;
    box-shadow: 0 18px 40px rgba(0,0,0,.3);
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .6rem;
}
.floating-code i { color: #78b7ff; font-style: normal; }
.floating-code b { color: var(--green); font-weight: 500; }

.hero-bottom {
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(255,255,255,.09);
    background: rgba(0,0,0,.16);
}
.hero-bottom .container { display: flex; min-height: 5.5rem; align-items: center; justify-content: space-between; gap: 2rem; }
.hero-bottom .container > span { color: rgba(255,255,255,.35); font-size: .72rem; }
.hero-product-logos { display: flex; align-items: center; gap: 2.2rem; }
.hero-product-logos a { display: flex; align-items: center; gap: .55rem; color: rgba(255,255,255,.7); font-family: var(--font-display); font-size: .78rem; letter-spacing: .04em; }
.hero-product-logos img { width: 1.8rem; height: 1.8rem; object-fit: contain; }

.hero-anim { opacity: 0; transform: translateY(24px); animation: rise .8s var(--ease) forwards; }
.hero-anim.d1 { animation-delay: .05s; }.hero-anim.d2 { animation-delay: .15s; }
.hero-anim.d3 { animation-delay: .28s; }.hero-anim.d4 { animation-delay: .4s; }
.hero-anim.d5 { animation-delay: .52s; }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* Shared */
.section { padding: clamp(5.5rem, 10vw, 9rem) 0; }
.eyebrow {
    margin: 0 0 1.1rem;
    color: #4b7d5b;
    font-size: .69rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}
.eyebrow::before { content: ""; display: inline-block; width: 1.6rem; height: 1px; margin: 0 .7rem .23rem 0; background: currentColor; }
.eyebrow.light { color: var(--green); }
.section-title {
    max-width: 790px;
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.7rem);
    font-weight: 650;
    letter-spacing: -.055em;
    line-height: 1;
}
.section-title.light { color: var(--white); }
.section-head {
    display: grid;
    gap: 3rem;
    align-items: end;
    margin-bottom: 4rem;
}
.section-head > p { max-width: 500px; margin: 0 0 .25rem auto; color: var(--muted); font-size: 1.08rem; }

/* Process */
.studio-section { background: var(--cream); }
.process-grid { display: grid; gap: 1rem; }
.process-card {
    position: relative;
    min-height: 330px;
    padding: 2rem;
    background: rgba(255,255,255,.6);
    border: 1px solid var(--line);
    border-radius: 1rem;
    transition: transform .35s var(--ease), box-shadow .35s ease, background .35s ease;
}
.process-card:hover { transform: translateY(-5px); background: var(--paper); box-shadow: 0 20px 55px rgba(15,43,34,.08); }
.process-card.featured { color: var(--white); background: var(--ink-2); border-color: var(--ink-2); }
.process-no { position: absolute; top: 1.5rem; right: 1.5rem; color: #a9b1ad; font-family: ui-monospace, monospace; font-size: .63rem; }
.featured .process-no { color: rgba(255,255,255,.3); }
.process-icon {
    display: grid;
    width: 3.3rem;
    height: 3.3rem;
    place-items: center;
    margin-bottom: 4rem;
    color: var(--ink);
    background: var(--green-soft);
    border-radius: .7rem;
}
.featured .process-icon { background: var(--green); }
.process-card h3 { margin: 0 0 .65rem; font-family: var(--font-display); font-size: 1.42rem; font-weight: 650; letter-spacing: -.025em; }
.process-card p { margin: 0; color: var(--muted); font-size: .94rem; }
.featured p { color: rgba(255,255,255,.56); }
.process-label { position: absolute; right: 2rem; bottom: 1.5rem; left: 2rem; padding-top: .8rem; color: #8d9893; border-top: 1px solid var(--line); font-size: .59rem; font-weight: 800; letter-spacing: .11em; }
.featured .process-label { color: rgba(255,255,255,.35); border-color: rgba(255,255,255,.1); }

/* Projects */
.products-section {
    overflow: hidden;
    color: var(--white);
    background: #091713;
}
.products-intro { max-width: 880px; margin-bottom: 5rem; }
.products-intro > p:last-child { max-width: 570px; margin: 1.4rem 0 0; color: rgba(255,255,255,.48); font-size: 1.05rem; }
.project {
    display: grid;
    overflow: hidden;
    margin-top: 2rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 1.35rem;
}
.project-copy { display: flex; align-items: flex-start; flex-direction: column; padding: clamp(2.3rem, 5vw, 4.7rem); }
.project-logo { display: flex; align-items: center; gap: .9rem; margin-bottom: 2.8rem; }
.project-logo > img { width: 3.4rem; height: 3.4rem; object-fit: contain; }
.project-logo > div { display: flex; flex-direction: column; }
.project-logo strong { font-family: var(--font-display); font-size: 1.1rem; letter-spacing: -.02em; }
.project-logo span { max-width: 250px; color: var(--muted); font-size: .56rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.binar-brand > img { width: 3.7rem; height: 3.7rem; }
.project-category { margin-bottom: 1rem; color: #71817b; font-family: ui-monospace, monospace; font-size: .63rem; letter-spacing: .08em; }
.project-copy h3 {
    max-width: 590px;
    margin: 0 0 1.1rem;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 650;
    letter-spacing: -.05em;
    line-height: 1;
}
.project-copy > p { max-width: 570px; margin: 0; color: var(--muted); font-size: .98rem; }
.project-points { display: grid; width: 100%; grid-template-columns: 1fr 1fr; gap: .65rem; margin: 2rem 0 2.4rem; padding: 1.4rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-points span { display: flex; align-items: center; gap: .5rem; color: #44514c; font-size: .79rem; font-weight: 650; }
.project-points i { display: grid; width: 1.15rem; height: 1.15rem; place-items: center; color: #29633e; background: #e4f4e2; border-radius: 50%; font-size: .58rem; font-style: normal; }
.project-link {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-top: auto;
    padding: .85rem 1rem;
    color: var(--white);
    background: var(--ink);
    border-radius: .6rem;
    font-size: .85rem;
    font-weight: 750;
    transition: transform .25s var(--ease), box-shadow .25s ease;
}
.project-link:hover { color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(10,23,19,.15); }
.binar-link { background: var(--purple); }
.project-stage { position: relative; display: flex; min-height: 690px; align-items: center; justify-content: center; overflow: hidden; padding: 3rem; }
.dolan-stage { background: linear-gradient(150deg, #2f6b50, #153d2d 60%, #0d2b20); }
.binar-stage { background: linear-gradient(150deg, #4c45a7, #302b7b 62%, #211d5e); }
.stage-glow { position: absolute; width: 25rem; height: 25rem; background: rgba(159,232,112,.15); border-radius: 50%; filter: blur(70px); }
.binar-stage .stage-glow { background: rgba(243,169,59,.2); }
.app-window {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 590px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(255,255,255,.35);
    border-radius: .9rem;
    box-shadow: 0 35px 80px rgba(0,0,0,.35);
    transform: rotate(-1.5deg);
    transition: transform .7s var(--ease);
}
.project:hover .app-window { transform: rotate(0) translateY(-5px); }
.app-topbar { height: 2.3rem; justify-content: flex-start; color: #939b97; background: #f5f6f4; border-color: #e7eae7; }
.app-topbar > span { position: absolute; left: 50%; transform: translateX(-50%); font-size: .49rem; }
.app-topbar .browser-dots i { width: .4rem; height: .4rem; }

/* Dolan UI */
.dolan-ui { color: #193228; background: #faf9f3; }
.dolan-ui-nav { display: flex; height: 3.3rem; align-items: center; gap: 1rem; padding: 0 1.2rem; background: var(--white); font-size: .5rem; }
.dolan-ui-nav img { width: 1.8rem; height: 1.8rem; }
.dolan-ui-nav b { margin-right: auto; font-family: var(--font-display); font-size: .8rem; }
.dolan-ui-nav > span { color: #65736d; }
.dolan-ui-nav > i { padding: .35rem .55rem; color: var(--white); background: #214b38; border-radius: .3rem; font-style: normal; }
.dolan-ui-hero { position: relative; height: 250px; overflow: hidden; }
.dolan-ui-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,29,20,.87), rgba(4,29,20,.08)); }
.dolan-ui-hero > img { width: 100%; height: 100%; object-fit: cover; }
.dolan-ui-hero > div { position: absolute; z-index: 1; top: 50%; left: 1.8rem; color: var(--white); transform: translateY(-50%); }
.dolan-ui-hero small { display: block; margin-bottom: .35rem; color: #c8e8a2; font-size: .43rem; font-weight: 800; letter-spacing: .13em; }
.dolan-ui-hero strong { display: block; font-family: var(--font-display); font-size: 1.65rem; letter-spacing: -.04em; line-height: 1.03; }
.dolan-ui-hero button { margin-top: .9rem; padding: .45rem .6rem; color: #1d382d; background: #c6e9a1; border: 0; border-radius: .3rem; font-size: .46rem; font-weight: 750; }
.dolan-ui-hero button span { margin-left: .5rem; }
.dolan-ui-flow { display: grid; grid-template-columns: repeat(3, 1fr); gap: .55rem; padding: .9rem; }
.dolan-ui-flow > div { display: flex; align-items: center; gap: .5rem; padding: .65rem; background: var(--white); border: 1px solid #e4e7e2; border-radius: .45rem; }
.dolan-ui-flow > div > i { display: grid; width: 1.6rem; height: 1.6rem; place-items: center; color: #23533b; background: #e5f4dc; border-radius: 50%; font-size: .4rem; font-style: normal; font-weight: 800; }
.dolan-ui-flow span { display: flex; flex-direction: column; }
.dolan-ui-flow b { font-size: .5rem; }.dolan-ui-flow small { color: #8a948f; font-size: .38rem; }
.whatsapp-card, .catalog-card {
    position: absolute;
    z-index: 3;
    right: 1.2rem;
    bottom: 2.2rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .75rem .85rem;
    color: #183228;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: .65rem;
    box-shadow: 0 16px 35px rgba(3,24,16,.25);
    backdrop-filter: blur(10px);
}
.wa-icon { display: grid; width: 2rem; height: 2rem; place-items: center; color: var(--white); background: #25b966; border-radius: .5rem; }
.whatsapp-card > span:nth-child(2), .catalog-card div { display: flex; flex-direction: column; }
.whatsapp-card small, .catalog-card small { color: #8a958f; font-size: .48rem; }
.whatsapp-card b, .catalog-card b { font-size: .65rem; }
.whatsapp-card > i { display: grid; width: 1.1rem; height: 1.1rem; place-items: center; color: #fff; background: #48b66b; border-radius: 50%; font-size: .5rem; font-style: normal; }

/* Binar UI */
.project-binar { background: #f8f7ff; }
.binar-ui { min-height: 435px; color: #2a2853; background: #faf9f6; }
.binar-ui-nav { display: flex; height: 3.3rem; align-items: center; gap: .9rem; padding: 0 1.1rem; background: var(--white); border-bottom: 1px solid #ebe9e3; font-size: .47rem; }
.binar-ui-nav > div { display: flex; align-items: center; gap: .4rem; margin-right: auto; }
.binar-ui-nav img { width: 1.8rem; height: 1.8rem; object-fit: contain; }
.binar-ui-nav b { font-size: .65rem; }
.binar-ui-nav > span { color: #7d7a82; }
.binar-ui-nav > i { padding: .35rem .55rem; color: var(--white); background: #3e397e; border-radius: .3rem; font-style: normal; }
.binar-ui-heading { padding: 1.3rem 1.3rem .8rem; }
.binar-ui-heading small { color: #8e5c27; font-size: .4rem; font-weight: 800; letter-spacing: .13em; }
.binar-ui-heading strong { display: block; font-family: var(--font-display); font-size: 1.45rem; letter-spacing: -.04em; }
.binar-ui-heading p { margin: .1rem 0 0; color: #88858a; font-size: .46rem; }
.binar-ui-products { display: grid; grid-template-columns: 1.05fr .95fr; gap: .7rem; padding: .3rem 1.3rem 1.3rem; }
.binar-product-img { overflow: hidden; min-height: 230px; background: #eee8dc; border-radius: .55rem; }
.binar-product-img img { width: 100%; height: 100%; object-fit: cover; }
.binar-product-info { display: flex; align-items: flex-start; padding: 1rem; flex-direction: column; background: var(--white); border: 1px solid #e8e5df; border-radius: .55rem; }
.binar-product-info > span { padding: .2rem .4rem; color: #367149; background: #e9f4e9; border-radius: 999px; font-size: .37rem; font-weight: 800; }
.binar-product-info small { margin-top: .9rem; color: #9a969c; font-size: .4rem; }
.binar-product-info b { font-family: var(--font-display); font-size: .95rem; }
.binar-product-info strong { margin-top: .2rem; color: #5c4079; font-size: .75rem; }
.binar-product-info > i { margin-top: auto; color: #514b8c; font-size: .45rem; font-style: normal; font-weight: 700; }
.binar-stat { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; padding: .6rem .75rem; background: #f1eff9; border-radius: .45rem; }
.binar-stat small { color: #77738a; font-size: .42rem; }
.binar-stat strong { font-size: .65rem; }
.binar-stat > span { grid-column: 1 / -1; height: .23rem; margin-top: .35rem; overflow: hidden; background: #dcd9e9; border-radius: 999px; }
.binar-stat > span i { display: block; width: 100%; height: 100%; background: linear-gradient(90deg, #554e9a, #f2a93b); }
.catalog-card { right: auto; bottom: 2rem; left: 1.3rem; color: #2c285c; }
.catalog-card > span { display: grid; width: 2rem; height: 2rem; place-items: center; color: var(--white); background: var(--purple); border-radius: .5rem; }

/* Impact */
.impact-section { background: var(--paper); }
.impact-layout { display: grid; gap: 5rem; }
.impact-copy > p:not(.eyebrow) { max-width: 570px; margin: 1.4rem 0 1.8rem; color: var(--muted); font-size: 1.04rem; }
.text-link { display: inline-flex; align-items: center; gap: .6rem; padding-bottom: .25rem; color: #326347; border-bottom: 1px solid #8aad96; font-size: .87rem; font-weight: 750; }
.text-link:hover { color: var(--ink); }
.impact-list { border-top: 1px solid var(--line); }
.impact-row {
    position: relative;
    display: grid;
    grid-template-columns: 3rem 1fr auto;
    gap: 1rem;
    padding: 1.8rem 0;
    border-bottom: 1px solid var(--line);
}
.impact-row > span { color: #8b9792; font-family: ui-monospace, monospace; font-size: .65rem; }
.impact-row h3 { margin: 0 0 .35rem; font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -.025em; }
.impact-row p { max-width: 440px; margin: 0; color: var(--muted); font-size: .9rem; }
.impact-row > i { color: #a3aca8; font-size: 1.2rem; font-style: normal; transition: transform .3s var(--ease), color .3s ease; }
.impact-row:hover > i { color: #3a714f; transform: translate(3px, 3px); }

/* CTA */
.cta-section { padding: 0 0 clamp(5rem, 9vw, 8rem); background: var(--paper); }
.cta-panel {
    position: relative;
    display: flex;
    min-height: 420px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    overflow: hidden;
    padding: clamp(2.5rem, 6vw, 5rem);
    color: var(--white);
    background:
        radial-gradient(circle at 78% 20%, rgba(159,232,112,.16), transparent 28%),
        var(--ink);
    border-radius: 1.35rem;
}
.cta-grid { opacity: .55; mask-image: linear-gradient(90deg, #000, transparent 82%); }
.cta-copy, .cta-button { position: relative; z-index: 1; }
.cta-copy p { margin: 0 0 .7rem; color: var(--green); font-size: .72rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.cta-copy h2 { max-width: 830px; margin: 0; font-family: var(--font-display); font-size: clamp(2.5rem, 5.6vw, 5.2rem); font-weight: 620; letter-spacing: -.06em; line-height: .98; }
.cta-button {
    display: inline-flex;
    min-width: max-content;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.25rem;
    color: var(--ink);
    background: var(--green);
    border-radius: .65rem;
    font-size: .88rem;
    font-weight: 750;
    transition: transform .25s var(--ease);
}
.cta-button:hover { color: var(--ink); transform: translateY(-3px); }
.cta-button span { font-size: 1.1rem; }

/* Footer */
.site-footer { padding: 4.5rem 0 2rem; color: rgba(255,255,255,.55); background: #06110e; }
.footer-main { display: flex; justify-content: space-between; gap: 4rem; }
.footer-brand { display: flex; align-items: center; gap: .55rem; color: var(--white); font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; letter-spacing: -.04em; }
.footer-brand .brand-symbol { width: 2rem; height: 2rem; }
.footer-brand > span:last-child { color: var(--green); }
.footer-main > div:first-child > p { max-width: 270px; margin: .85rem 0 0; color: rgba(255,255,255,.35); font-size: .86rem; }
.footer-nav { display: flex; gap: clamp(2.5rem, 7vw, 6rem); }
.footer-nav > div { display: flex; flex-direction: column; gap: .45rem; }
.footer-nav span { margin-bottom: .45rem; color: var(--green); font-size: .61rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-nav a { color: rgba(255,255,255,.5); font-size: .82rem; }
.footer-nav a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 2rem; margin-top: 4rem; padding-top: 1.3rem; color: rgba(255,255,255,.25); border-top: 1px solid rgba(255,255,255,.09); font-size: .7rem; }

/* Motion */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

@media (min-width: 768px) {
    .section-head { grid-template-columns: 1.1fr .9fr; }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 992px) {
    .project { grid-template-columns: .92fr 1.08fr; }
    .project-binar { grid-template-columns: 1.08fr .92fr; }
    .impact-layout { grid-template-columns: .9fr 1.1fr; }
}
@media (max-width: 1199.98px) {
    .suite-visual { margin-left: 0; }
    .suite-body { min-height: 440px; }
    .suite-content { padding: 1.1rem; }
    .project-stage { min-height: 620px; padding: 2rem; }
}
@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        margin-top: .65rem;
        padding: .8rem;
        color: var(--ink);
        background: rgba(255,254,249,.98);
        border: 1px solid rgba(10,23,19,.08);
        border-radius: .8rem;
        box-shadow: 0 20px 50px rgba(0,0,0,.22);
    }
    .site-nav .btn-nav { margin-top: .4rem; }
    .hero { padding-top: calc(var(--nav-h) + 3.5rem); }
    .hero-container { padding-bottom: 5rem; }
    .suite-visual { margin: 1.2rem auto 0; transform: none; }
    .project-stage { min-height: 620px; }
    .project-binar .project-stage { order: 2; }
    .project-binar .project-copy { order: 1; }
    .impact-layout { gap: 3rem; }
}
@media (max-width: 767.98px) {
    :root { --nav-h: 4.5rem; }
    .hero { padding-top: calc(var(--nav-h) + 3rem); }
    .hero-title { font-size: clamp(3.1rem, 14vw, 4.8rem); }
    .hero-proof { gap: .8rem; }
    .hero-proof > i { display: none; }
    .hero-proof > div { flex: 1; }
    .suite-visual { margin-top: .5rem; }
    .suite-body { grid-template-columns: 3rem 1fr; min-height: 410px; }
    .suite-content { padding: .85rem; }
    .suite-head > span { display: none; }
    .suite-product { grid-template-columns: 3rem 1fr; padding: .75rem; }
    .suite-product-icon { width: 3rem; height: 3rem; }
    .suite-product-icon img { width: 2.2rem; height: 2.2rem; }
    .product-state { display: none; }
    .suite-metrics { gap: .35rem; }
    .suite-metrics > div { min-height: 4rem; padding: .5rem; }
    .floating-code { display: none; }
    .hero-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; gap: .7rem; padding-top: 1rem; padding-bottom: 1rem; }
    .section-head { gap: 1.5rem; }
    .section-head > p { margin-left: 0; }
    .process-card { min-height: 290px; }
    .products-intro { margin-bottom: 3rem; }
    .project { border-radius: 1rem; }
    .project-copy { padding: 2rem 1.3rem 2.5rem; }
    .project-logo { margin-bottom: 2rem; }
    .project-points { grid-template-columns: 1fr; }
    .project-stage { min-height: 500px; padding: 1.3rem; }
    .dolan-ui-nav span, .binar-ui-nav > span { display: none; }
    .dolan-ui-hero { height: 220px; }
    .dolan-ui-flow { gap: .3rem; padding: .55rem; }
    .dolan-ui-flow > div { padding: .45rem; }
    .dolan-ui-flow small { display: none; }
    .whatsapp-card, .catalog-card { right: .5rem; bottom: 1.2rem; }
    .catalog-card { right: auto; left: .5rem; }
    .binar-ui-products { padding-right: .8rem; padding-left: .8rem; }
    .binar-ui-heading { padding-right: .8rem; padding-left: .8rem; }
    .binar-product-img { min-height: 190px; }
    .impact-row { grid-template-columns: 2.2rem 1fr auto; }
    .cta-panel { min-height: 460px; align-items: flex-start; flex-direction: column; justify-content: flex-end; border-radius: 1rem; }
    .footer-main { flex-direction: column; }
    .footer-nav { flex-wrap: wrap; gap: 2.5rem; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 575.98px) {
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-proof span { font-size: .6rem; }
    .hero-bottom .container > span { display: none; }
    .hero-product-logos { width: 100%; justify-content: space-around; }
    .suite-toolbar > span { display: none; }
    .suite-body { grid-template-columns: 2.6rem 1fr; }
    .suite-sidebar { padding-right: .4rem; padding-left: .4rem; }
    .suite-product-copy p { max-width: 170px; }
    .suite-metrics span { font-size: .4rem; }
    .suite-metrics b { font-size: .5rem; }
    .project-stage { min-height: 430px; padding: .75rem; }
    .app-window { border-radius: .65rem; }
    .dolan-ui-hero { height: 190px; }
    .dolan-ui-hero > div { left: 1rem; }
    .dolan-ui-hero strong { font-size: 1.25rem; }
    .dolan-ui-flow > div > i { width: 1.25rem; height: 1.25rem; }
    .dolan-ui-flow b { font-size: .42rem; }
    .whatsapp-card { bottom: .7rem; transform: scale(.88); transform-origin: right bottom; }
    .binar-ui { min-height: 385px; }
    .binar-ui-products { grid-template-columns: 1fr 1fr; gap: .4rem; }
    .binar-product-img { min-height: 160px; }
    .binar-product-info { padding: .65rem; }
    .catalog-card { bottom: .6rem; transform: scale(.88); transform-origin: left bottom; }
    .cta-copy h2 br { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
