:root { --bg: #f4efe7; --bg-soft: rgba(255, 255, 255, 0.58); --surface: rgba(255, 252, 246, 0.75); --surface-strong: #fffaf1; --card: rgba(17, 24, 29, 0.9); --text: #142126; --muted: #5f6d71; --line: rgba(20, 33, 38, 0.1); --line-strong: rgba(20, 33, 38, 0.18); --green: #14715d; --green-bright: #1ea37f; --sand: #f0d3a1; --shadow: 0 18px 60px rgba(20, 33, 38, 0.12); --radius-xl: 28px; --radius-lg: 22px; --radius-md: 16px; --max: 1200px; }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: "Manrope", sans-serif; color: var(--text); background: radial-gradient(circle at top left, rgba(30, 163, 127, 0.18), transparent 30%), radial-gradient(circle at 90% 15%, rgba(240, 211, 161, 0.55), transparent 24%), linear-gradient(180deg, #f7f3ec 0%, #f2eee6 35%, #f6f3ee 100%); touch-action: pan-x pan-y; }
body::before { content: ""; position: fixed; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(20, 33, 38, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 33, 38, 0.025) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 95%); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.page-shell { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; padding-bottom: 48px; }
.site-header { position: sticky; top: 16px; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; padding: 14px 18px; background: rgba(255, 248, 239, 0.72); border: 1px solid rgba(255, 255, 255, 0.8); backdrop-filter: blur(18px); border-radius: 999px; box-shadow: 0 14px 40px rgba(20, 33, 38, 0.08); }
.brand { display: flex; align-items: center; gap: 12px; min-width: max-content; min-height: 44px; padding-left: 12px; }
.brand-logo { display: block; width: auto; max-width: min(260px, 26vw); max-height: 48px; height: auto; object-fit: contain; object-position: left center; flex: 0 1 auto; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong, .brand-copy span { font-family: "Space Grotesk", sans-serif; }
.brand-copy strong { font-size: 1.05rem; }
.brand-copy span { margin-top: 4px; color: var(--muted); font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 0.95rem; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--text); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; align-items: center; justify-content: center; flex-direction: column; gap: 5px; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255, 255, 255, 0.72); color: var(--text); cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 2px; border-radius: 999px; background: var(--text); }
.mobile-menu { position: fixed; inset: 0; z-index: 300; display: flex; justify-content: flex-end; padding: 12px; background: rgba(20, 33, 38, 0.28); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 220ms ease, visibility 220ms ease; }
.mobile-menu.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.mobile-menu-panel { width: min(88vw, 360px); height: 100%; padding: 22px 18px; border-radius: 28px; background: rgba(255, 251, 246, 0.98); box-shadow: 0 24px 48px rgba(20, 33, 38, 0.18); transform: translateX(24px); transition: transform 220ms ease; overflow-y: auto; }
.mobile-menu.is-open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 24px; font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; font-weight: 700; }
.menu-close { border: 0; background: transparent; color: var(--muted); font: inherit; cursor: pointer; }
.mobile-menu-links { display: grid; gap: 10px; }
.mobile-menu-links a { display: flex; align-items: center; min-height: 52px; padding: 0 16px; border-radius: 18px; background: rgba(255, 255, 255, 0.88); border: 1px solid var(--line); font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.mobile-menu-links a:last-child { background: linear-gradient(135deg, var(--green-bright), var(--green)); color: #fff; border-color: transparent; }
body.menu-open { overflow: hidden; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border: 0; border-radius: 999px; font-family: "Space Grotesk", sans-serif; font-size: 0.95rem; font-weight: 700; background: linear-gradient(135deg, var(--green-bright), var(--green)); color: #fff; box-shadow: 0 16px 26px rgba(20, 113, 93, 0.2); cursor: pointer; transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease; }
.button:hover, .button:focus-visible { transform: translateY(-1px); box-shadow: 0 18px 30px rgba(20, 113, 93, 0.24); }
.button-small { min-height: 42px; padding: 0 18px; }
.button-ghost { background: rgba(255, 255, 255, 0.6); color: var(--text); box-shadow: inset 0 0 0 1px var(--line), 0 10px 20px rgba(20, 33, 38, 0.05); }
.section { padding: 92px 0 0; }
.hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; min-height: calc(100vh - 120px); }
.eyebrow { margin: 0 0 12px; color: var(--green); text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; font-weight: 800; }
.hero h1, .section-heading h2, .contact-panel h2 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2.8rem, 6vw, 5.4rem); line-height: 0.96; letter-spacing: -0.05em; }
.section-heading h2, .contact-panel h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); }
.hero-text, .section-heading p, .contact-panel p, .benefit-card p, .step-card p, .agnostic-card p, .screen-card p, .testimonial-card p, .faq-item p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; margin: 28px 0 22px; }
.hero-points { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.hero-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); line-height: 1.55; }
.hero-points li::before { content: ""; width: 10px; height: 10px; margin-top: 9px; border-radius: 999px; background: linear-gradient(135deg, var(--green-bright), var(--sand)); flex: 0 0 auto; }
.hero-visual { position: relative; min-height: 640px; }
.quote-marquee-frame { position: relative; grid-column: 1 / -1; overflow: hidden; margin-top: 22px; border-radius: 24px; background: rgba(255, 251, 246, 0.72); border: 1px solid rgba(255, 255, 255, 0.82); box-shadow: 0 12px 34px rgba(20, 33, 38, 0.06); }
.quote-marquee-shell { overflow-x: auto; overflow-y: hidden; padding: 14px 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.quote-marquee-shell::-webkit-scrollbar { display: none; }
.quote-marquee-frame::before, .quote-marquee-frame::after { content: ""; position: absolute; top: 0; bottom: 0; width: 72px; z-index: 1; pointer-events: none; }
.quote-marquee-frame::before { left: 0; background: linear-gradient(90deg, rgba(246, 242, 234, 0.98), rgba(246, 242, 234, 0)); }
.quote-marquee-frame::after { right: 0; background: linear-gradient(270deg, rgba(246, 242, 234, 0.98), rgba(246, 242, 234, 0)); }
.quote-marquee-track { display: inline-flex; align-items: center; gap: 18px; min-width: max-content; }
.quote-marquee-group { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.quote-pill { margin: 0; padding: 18px 22px; border-radius: 20px; background: rgba(255, 255, 255, 0.86); border: 1px solid var(--line); font-family: "Space Grotesk", sans-serif; font-size: 1rem; font-weight: 600; line-height: 1.55; color: var(--text); max-width: 460px; }
.dashboard-card, .benefit-spotlight, .benefit-card, .step-card, .compatibility-panel, .agnostic-card, .screen-card, .testimonial-card, .faq-item, .contact-panel { border: 1px solid rgba(255, 255, 255, 0.72); box-shadow: var(--shadow); }
.dashboard-primary { position: absolute; inset: 48px 0 80px 70px; padding: 26px; border-radius: 32px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.4)), linear-gradient(145deg, #2a3840, #1b252b);  color: #f4f7f5; overflow: hidden; }

/* background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.14)), linear-gradient(145deg, #2a3840, #1b252b); */


.dashboard-primary::after { content: ""; position: absolute; inset: auto -20% -15% auto; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(30, 163, 127, 0.24), transparent 70%); }
.dash-topline { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.dash-topline span { color: rgba(244, 247, 245, 0.72); font-size: 0.95rem; }
.dash-topline strong { font-family: "Space Grotesk", sans-serif; font-size: 2.5rem; }
.chart { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; align-items: end; height: 220px; margin: 24px 0; }
.chart span { border-radius: 18px 18px 0 0; background: linear-gradient(180deg, rgba(30, 163, 127, 0.95), rgba(30, 163, 127, 0.22)); }
.chart span:nth-child(1) { height: 34%; }
.chart span:nth-child(2) { height: 62%; }
.chart span:nth-child(3) { height: 48%; }
.chart span:nth-child(4) { height: 82%; }
.chart span:nth-child(5) { height: 67%; }
.chart span:nth-child(6) { height: 92%; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; height: 100%; }
.collage-shot { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 22px; }
.dashboard-grid article { padding: 16px; border-radius: 20px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08); }
.dashboard-grid small { display: block; color: rgba(244, 247, 245, 0.68); margin-bottom: 8px; }
.dashboard-grid strong { font-size: 1.15rem; }
.dashboard-float { position: absolute; max-width: 250px; padding: 16px 18px; border-radius: 22px; background: rgba(255, 251, 246, 0.92); box-shadow: 0 20px 30px rgba(20, 33, 38, 0.12); backdrop-filter: blur(10px); }
.dashboard-float p, .dashboard-float span { margin: 0; color: var(--muted); line-height: 1.55; }
.dashboard-float strong { display: block; margin: 8px 0 6px; }
.float-left { left: 0; bottom: 120px; }
.float-right { right: 14px; top: 0; }
.trust-strip { display: grid; gap: 18px; margin-top: -24px; padding: 26px 28px; background: rgba(255, 252, 247, 0.66); border: 1px solid rgba(255, 255, 255, 0.82); border-radius: var(--radius-xl); box-shadow: 0 12px 34px rgba(20, 33, 38, 0.06); }
.logo-marquee-section { padding-top: 38px; }
.logo-marquee-copy { max-width: 700px; margin-bottom: 24px; }
.logo-marquee-copy h2 { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.02; letter-spacing: -0.04em; }
.logo-marquee-frame { position: relative; overflow: hidden; border-radius: 28px; background: rgba(255, 251, 246, 0.72); border: 1px solid rgba(255, 255, 255, 0.82); box-shadow: 0 12px 34px rgba(20, 33, 38, 0.06); }
.logo-marquee-shell { overflow-x: auto; overflow-y: hidden; padding: 18px 0; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.logo-marquee-shell::-webkit-scrollbar { display: none; }
.logo-marquee-frame::before, .logo-marquee-frame::after { content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 1; pointer-events: none; }
.logo-marquee-frame::before { left: 0; background: linear-gradient(90deg, rgba(246, 242, 234, 0.98), rgba(246, 242, 234, 0)); }
.logo-marquee-frame::after { right: 0; background: linear-gradient(270deg, rgba(246, 242, 234, 0.98), rgba(246, 242, 234, 0)); }
.logo-marquee-track { display: inline-flex; align-items: center; gap: 18px; min-width: max-content; }
.logo-marquee-group { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.logo-card { display: grid; place-items: center; width: 220px; height: 120px; margin: 0; padding: 18px 22px; border-radius: 22px; background: rgba(255, 255, 255, 0.85); border: 1px solid var(--line); }
.logo-card img { max-width: 100%; max-height: 68px; width: auto; height: auto; object-fit: contain; filter: grayscale(1) saturate(0.2) brightness(0.82); opacity: 0.82; }
.trust-strip p { margin: 0; font-size: 1.05rem; line-height: 1.7; }
.trust-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-tags span, .compatibility-list span { display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.58); color: var(--text); }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.steps, .testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.screen-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.step-card, .benefit-card, .agnostic-card, .screen-card, .testimonial-card { padding: 24px; border-radius: var(--radius-lg); background: var(--surface); backdrop-filter: blur(12px); }
.step-card span { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 14px; background: rgba(20, 113, 93, 0.1); color: var(--green); font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.step-card h3, .benefit-card h3, .agnostic-card h3, .screen-card h3 { margin: 18px 0 10px; font-family: "Space Grotesk", sans-serif; font-size: 1.35rem; }
.benefit-layout, .agnostic-layout { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 20px; align-items: stretch; }
.benefit-stack { display: grid; gap: 20px; }
.benefit-spotlight { padding: 28px; border-radius: 30px; background: linear-gradient(180deg, rgba(20, 113, 93, 0.96), rgba(15, 77, 64, 0.98)); color: #fff; }
.spotlight-label { margin: 0 0 20px; font-family: "Space Grotesk", sans-serif; font-size: 1.1rem; }
.benefit-spotlight ul { display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.benefit-spotlight li { padding-bottom: 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.14); line-height: 1.55; }
.benefit-spotlight li: last-child { border-bottom: 0; padding-bottom: 0; }
.compatibility-panel { padding: 28px; border-radius: 30px; background: radial-gradient(circle at top right, rgba(240, 211, 161, 0.32), transparent 35%), linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.58)); }
.compatibility-panel p { margin: 0 0 18px; font-family: "Space Grotesk", sans-serif; font-size: 1.15rem; }
.compatibility-list { display: flex; flex-wrap: wrap; gap: 12px; }
.screen-ui { display: grid; gap: 12px; min-height: 230px; padding: 16px; margin-bottom: 18px; border-radius: 22px; background: linear-gradient(180deg, #152329, #0e161b); }
.product-shot { display: block; width: 100%; height: 230px; margin-bottom: 18px; border-radius: 22px; object-fit: cover; background: rgba(255, 255, 255, 0.78); border: 1px solid var(--line); }
.screen-portfolio { grid-template-columns: 74px 1fr; }
.screen-sidebar, .screen-header, .screen-timeline, .alert-chart { border-radius: 16px; background: rgba(255, 255, 255, 0.08); }
.screen-main { display: grid; gap: 12px; }
.screen-bars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.screen-bars span, .screen-table span, .screen-therms span, .alert-lines span { border-radius: 14px; background: rgba(30, 163, 127, 0.42); }
.screen-bars span { height: 58px; }
.screen-table { display: grid; gap: 10px; }
.screen-table span { height: 30px; background: rgba(255, 255, 255, 0.09); }
.screen-location, .screen-alerts { align-content: start; }
.screen-header { height: 52px; }
.screen-therms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.screen-therms span { height: 92px; }
.screen-timeline { height: 70px; }
.alert-pill { width: 110px; height: 30px; border-radius: 999px; background: rgba(240, 211, 161, 0.9); }
.alert-lines { display: grid; gap: 10px; }
.alert-lines span { height: 20px; }
.alert-lines span:nth-child(2) { width: 78%; }
.alert-lines span:nth-child(3) { width: 58%; }
.alert-chart { height: 84px; }
.testimonial-card { background: rgba(255, 252, 246, 0.82); }
.testimonial-card footer { margin-top: 18px; color: var(--muted); font-size: 0.95rem; }
.faq-list { display: grid; gap: 16px; }
.faq-item { padding: 0; overflow: hidden; border-radius: 20px; background: rgba(255, 251, 246, 0.82); }
.faq-item summary { padding: 22px 24px; cursor: pointer; list-style: none; font-family: "Space Grotesk", sans-serif; font-size: 1.08rem; font-weight: 700; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 24px 24px; margin: 0; }
.contact-panel { display: grid; grid-template-columns: 1fr 0.95fr; gap: 28px; padding: 32px; border-radius: 34px; background: radial-gradient(circle at top left, rgba(30, 163, 127, 0.14), transparent 30%), linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(255, 248, 239, 0.88)); }
.contact-form { display: grid; gap: 14px; }
.form-status { padding: 18px 20px; border-radius: 18px; font-weight: 800; font-size: 1rem; line-height: 1.5; box-shadow: 0 18px 34px rgba(20, 33, 38, 0.12); }
.form-status-success { background: linear-gradient(135deg, #2a3238, #161d22); color: #fff7e8; border: 1px solid rgba(240, 211, 161, 0.38); }
.form-status-error { background: linear-gradient(135deg, #4a2323, #2d1414); color: #ffe5e5; border: 1px solid rgba(255, 179, 179, 0.28); }
.contact-direct { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.contact-direct a { display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; border-radius: 999px; background: rgba(255, 255, 255, 0.74); border: 1px solid var(--line); font-weight: 700; }
.contact-form label { display: grid; gap: 8px; font-size: 0.95rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line-strong); border-radius: 16px; padding: 14px 16px; font: inherit; color: var(--text); background: rgba(255, 255, 255, 0.75); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-note { margin: 0; color: var(--muted); font-size: 0.92rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1100px) { .hero, .benefit-layout, .agnostic-layout, .contact-panel { grid-template-columns: 1fr; }
.hero { min-height: auto; padding-top: 48px; }
.hero-visual { min-height: 560px; }
.dashboard-primary { inset: 40px 30px 56px 30px; } }
@media (max-width: 900px) { .site-header { border-radius: 28px; align-items: flex-start; flex-wrap: wrap; }
.site-nav { order: 3; flex-wrap: wrap; gap: 14px 18px; }
.header-actions { margin-left: auto; }
.brand-logo { max-width: min(240px, 40vw); max-height: 38px; }
.steps, .screen-grid, .testimonial-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) { .page-shell { width: min(calc(100% - 20px), var(--max)); }
.site-header { top: 10px; gap: 12px; padding: 14px; }
.menu-toggle { display: inline-flex; margin-left: auto; }
.site-nav { display: none; }
.header-actions { display: none; }
.brand-logo { max-width: min(210px, 52vw); max-height: 34px; }
.section { padding-top: 72px; }
.hero-actions { flex-direction: column; }
.hero-visual { min-height: 500px; }
.dashboard-primary { inset: 50px 10px 46px 10px; padding: 20px; }
.dashboard-grid { grid-template-columns: 1fr; }
.float-left, .float-right { position: relative; left: auto; right: auto; top: auto; bottom: auto; max-width: none; margin: 12px 10px 0; }
.contact-panel { padding: 24px 18px; }
.contact-form input, .contact-form select, .contact-form textarea { font-size: 16px; } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; }
.reveal, .button { transition: none; }
.reveal { opacity: 1; transform: none; } } 
