:root {
    --navy-950: #050d18;
    --navy-900: #071629;
    --navy-850: #0a1c33;
    --navy-800: #0c2340;
    --blue-700: #1e5bc6;
    --blue-600: #2b6de8;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;
    --cyan-400: #4cc9f0;
    --green-500: #15b67a;
    --amber-500: #e6a23c;
    --purple-500: #8b5cf6;
    --ink: #0b172a;
    --text: #3a4a5f;
    --muted: #6f7f91;
    --line: #dfe7ef;
    --line-soft: #edf2f7;
    --surface: #f5f8fb;
    --white: #fff;
    --shadow-sm: 0 12px 35px rgba(5, 22, 42, .08);
    --shadow-md: 0 25px 70px rgba(5, 22, 42, .15);
    --shadow-lg: 0 42px 120px rgba(2, 12, 26, .28);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --container: 1220px;
    --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.1; letter-spacing: -.035em; }
p { color: var(--text); }
.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 9999; padding: 12px 18px; background: var(--white); color: var(--ink); border-radius: 8px; box-shadow: var(--shadow-sm); transition: top .2s; }
.skip-link:focus { top: 18px; }

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(5, 13, 24, .82);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(18px);
    transition: background .25s, box-shadow .25s, height .25s;
}
.site-header.is-scrolled { background: rgba(5, 13, 24, .96); box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.header-shell { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-link { position: relative; display: inline-flex; align-items: center; min-height: 44px; padding: 0 13px; border-radius: 9px; color: rgba(255,255,255,.72); font-size: 14px; font-weight: 650; transition: .2s; }
.nav-link:hover, .nav-link.is-active { color: var(--white); background: rgba(255,255,255,.06); }
.nav-link.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; border-radius: 2px; background: var(--blue-400); }
.nav-group { position: relative; display: flex; align-items: center; }
.nav-caret { width: 23px; height: 34px; padding: 0; margin-left: -10px; border: 0; background: transparent; color: rgba(255,255,255,.65); cursor: pointer; }
.nav-dropdown { position: absolute; top: calc(100% + 14px); left: 0; width: 295px; padding: 10px; background: rgba(9, 24, 43, .98); border: 1px solid rgba(255,255,255,.1); border-radius: 15px; box-shadow: 0 25px 60px rgba(0,0,0,.35); opacity: 0; visibility: hidden; transform: translateY(8px); transition: .22s; }
.nav-dropdown::before { content: ""; position: absolute; left: 20px; top: -15px; width: 60px; height: 16px; }
.nav-dropdown a { display: flex; flex-direction: column; padding: 12px 14px; border-radius: 10px; color: var(--white); }
.nav-dropdown a:hover { background: rgba(255,255,255,.07); }
.nav-dropdown strong { font-size: 14px; letter-spacing: -.01em; }
.nav-dropdown span { color: rgba(255,255,255,.55); font-size: 12px; }
.nav-group:hover .nav-dropdown, .nav-group.is-open .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.header-cta { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 19px; border-radius: 10px; background: var(--blue-600); color: var(--white); font-size: 14px; font-weight: 750; box-shadow: 0 10px 25px rgba(43,109,232,.28); transition: .2s; }
.header-cta:hover { transform: translateY(-2px); background: var(--blue-500); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; background: rgba(255,255,255,.04); cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: white; border-radius: 2px; transition: .2s; }

/* General UI */
.section { position: relative; padding: 112px 0; }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--blue-600); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.section-kicker.light { color: var(--blue-300); }
.section-heading { margin-bottom: 52px; }
.section-heading h2, .split-heading h2, .product-overview h2, .about-intro h2, .reference-intro h2, .career-intro h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 58px); }
.section-heading p { max-width: 640px; margin: 18px auto 0; font-size: 18px; }
.centered { text-align: center; }
.centered .section-kicker { justify-content: center; }
.split-heading { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: end; }
.split-heading p { max-width: 520px; margin: 0 0 5px; font-size: 17px; }
.dark-section { overflow: hidden; background: var(--navy-950); color: var(--white); }
.dark-section p { color: rgba(255,255,255,.64); }
.light-heading h2 { color: var(--white); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 11px; font-size: 14px; font-weight: 800; transition: transform .2s, background .2s, border-color .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button span { font-size: 18px; line-height: 1; }
.button-primary { background: var(--blue-600); color: var(--white); box-shadow: 0 15px 35px rgba(43,109,232,.3); }
.button-primary:hover { background: var(--blue-500); box-shadow: 0 20px 45px rgba(43,109,232,.4); }
.button-ghost { border-color: rgba(255,255,255,.18); color: var(--white); background: rgba(255,255,255,.04); }
.button-ghost:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.button-dark { background: var(--navy-900); color: var(--white); box-shadow: 0 15px 35px rgba(5,22,42,.2); }
.button-dark:hover { background: var(--blue-700); }
.button-light { background: var(--white); color: var(--navy-900); box-shadow: 0 15px 35px rgba(0,0,0,.18); }
.button-light:hover { background: #eef6ff; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-size: 14px; font-weight: 800; }
.text-link span { color: var(--blue-600); font-size: 18px; transition: .2s; }
.text-link:hover span { transform: translate(3px,-3px); }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 26px; color: rgba(255,255,255,.48); font-size: 13px; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb b { color: rgba(255,255,255,.82); font-weight: 650; }
.rich-copy p { font-size: 17px; }
.rich-copy .lead { color: var(--ink); font-size: 22px; font-weight: 630; line-height: 1.5; }

/* Home Hero */
.hero { position: relative; min-height: 790px; padding: calc(var(--header-height) + 82px) 0 78px; overflow: hidden; background: var(--navy-950); color: var(--white); }
.hero-grid, .product-hero-grid, .page-hero-grid, .capability-grid-bg { position: absolute; inset: 0; 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: 56px 56px; mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%); }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 170px; background: linear-gradient(transparent, rgba(5,13,24,.72)); pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .26; }
.hero-orb-one { width: 520px; height: 520px; right: -80px; top: 10px; background: #1d74ff; }
.hero-orb-two { width: 380px; height: 380px; left: 28%; bottom: -210px; background: #1aa8c8; opacity: .16; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .92fr 1.08fr; gap: 54px; align-items: center; }
.hero-copy { padding-top: 20px; }
.eyebrow { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 23px; color: var(--blue-300); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--blue-400); }
.hero h1 { max-width: 650px; margin-bottom: 25px; font-size: clamp(49px, 5.2vw, 78px); font-weight: 760; letter-spacing: -.055em; }
.hero h1 em, .page-hero h1 em, .product-hero h1 em { color: var(--blue-400); font-style: normal; }
.hero-copy > p { max-width: 640px; margin-bottom: 34px; color: rgba(255,255,255,.68); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-proof { display: flex; gap: 34px; margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-proof div { display: flex; flex-direction: column; }
.hero-proof strong { font-size: 24px; letter-spacing: -.04em; }
.hero-proof span { color: rgba(255,255,255,.48); font-size: 12px; }
.hero-visual { position: relative; min-height: 560px; display: flex; align-items: center; justify-content: center; }
.visual-ring { position: absolute; border: 1px solid rgba(74,163,255,.18); border-radius: 50%; }
.ring-one { width: 590px; height: 590px; }
.ring-two { width: 470px; height: 470px; border-color: rgba(74,163,255,.1); }
.dashboard-card { position: relative; z-index: 3; width: 660px; max-width: 100%; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(11, 29, 51, .9); box-shadow: var(--shadow-lg); transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); backdrop-filter: blur(18px); }
.dashboard-topbar { height: 48px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.025); }
.window-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.23); }
.dashboard-title { margin-left: 12px; color: rgba(255,255,255,.42); font-size: 9px; font-weight: 800; letter-spacing: .13em; }
.live-pill { display: inline-flex; align-items: center; gap: 6px; margin-left: auto; padding: 5px 9px; border-radius: 99px; background: rgba(21,182,122,.1); color: #77e0b5; font-size: 9px; font-weight: 700; }
.live-pill i { width: 6px; height: 6px; border-radius: 50%; background: #20d791; box-shadow: 0 0 0 5px rgba(32,215,145,.1); }
.dashboard-body { display: grid; grid-template-columns: 62px 1fr; min-height: 408px; }
.dashboard-sidebar { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 18px 0; border-right: 1px solid rgba(255,255,255,.07); background: rgba(1,8,17,.22); }
.side-logo { display: grid; place-items: center; width: 32px; height: 32px; margin-bottom: 9px; border: 1px solid rgba(92,169,255,.45); border-radius: 10px; background: linear-gradient(145deg, rgba(92,169,255,.22), rgba(43,109,232,.08)); color: var(--blue-300); font-size: 15px; font-weight: 900; }
.side-item { width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.18); border-radius: 6px; }
.side-item.active { border-color: var(--blue-400); background: rgba(59,130,246,.2); box-shadow: 0 0 18px rgba(59,130,246,.3); }
.dashboard-content { padding: 20px; }
.dash-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-head div { display: flex; flex-direction: column; }
.dash-head small { color: rgba(255,255,255,.36); font-size: 10px; }
.dash-head strong { font-size: 17px; }
.avatar { display: grid; place-items: center; width: 33px; height: 33px; border-radius: 10px; background: linear-gradient(145deg,#3b82f6,#1e5bc6); font-size: 10px; font-weight: 800; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.metric-card { min-height: 88px; padding: 13px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.035); }
.metric-card span, .metric-card small { display: block; color: rgba(255,255,255,.38); font-size: 8px; }
.metric-card strong { display: block; margin: 5px 0 3px; font-size: 20px; }
.metric-card .good { color: #53dca6; font-size: 14px; }
.metric-card small { color: rgba(112,218,176,.74); }
.dash-main { display: grid; grid-template-columns: 1.45fr .75fr; gap: 10px; margin-top: 10px; }
.chart-card, .activity-card { min-height: 194px; padding: 14px; border: 1px solid rgba(255,255,255,.07); border-radius: 12px; background: rgba(255,255,255,.025); }
.card-label { color: rgba(255,255,255,.7); font-size: 9px; font-weight: 700; }
.chart-bars { height: 125px; display: flex; align-items: end; gap: 8px; padding-top: 20px; border-bottom: 1px solid rgba(255,255,255,.08); background: repeating-linear-gradient(to bottom, transparent 0, transparent 30px, rgba(255,255,255,.035) 31px); }
.chart-bars i { flex: 1; min-width: 5px; border-radius: 3px 3px 0 0; background: linear-gradient(to top,#1e5bc6,#65b4ff); box-shadow: 0 -8px 20px rgba(59,130,246,.2); }
.chart-days { display: flex; justify-content: space-between; padding-top: 7px; color: rgba(255,255,255,.25); font-size: 7px; }
.activity { display: flex; gap: 9px; align-items: center; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.05); }
.activity:last-child { border: 0; }
.activity > i { width: 8px; height: 8px; border-radius: 50%; }
.activity i.blue { background: var(--blue-400); box-shadow: 0 0 0 5px rgba(96,165,250,.1); }
.activity i.green { background: #30ce93; box-shadow: 0 0 0 5px rgba(48,206,147,.1); }
.activity i.purple { background: #a78bfa; box-shadow: 0 0 0 5px rgba(167,139,250,.1); }
.activity span { display: flex; flex-direction: column; }
.activity b { font-size: 8px; }
.activity small { color: rgba(255,255,255,.3); font-size: 7px; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; padding: 13px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(10,27,49,.92); box-shadow: 0 20px 45px rgba(0,0,0,.3); backdrop-filter: blur(15px); }
.floating-card div { display: flex; flex-direction: column; }
.floating-card strong { font-size: 11px; }
.floating-card small { color: rgba(255,255,255,.42); font-size: 8px; }
.floating-security { left: -5px; bottom: 62px; }
.icon-shield { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 10px; background: rgba(21,182,122,.13); color: #64ddad; font-size: 14px; font-weight: 900; }
.floating-support { right: -8px; top: 80px; }
.support-pulse { width: 28px; height: 28px; border-radius: 50%; background: radial-gradient(circle at 50% 50%,#60a5fa 0 24%,rgba(96,165,250,.18) 26% 56%,rgba(96,165,250,.06) 58%); }

/* Trust strip */
.trust-strip { position: relative; z-index: 4; border-bottom: 1px solid var(--line-soft); background: var(--white); }
.trust-strip-inner { min-height: 90px; display: flex; align-items: center; gap: 50px; }
.trust-strip-inner > span { flex: 0 0 auto; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.trust-items { display: flex; flex: 1; justify-content: space-between; align-items: center; gap: 24px; color: #66778a; }
.trust-items b { font-size: 12px; letter-spacing: .08em; }
.trust-items i { width: 4px; height: 4px; border-radius: 50%; background: #bdcad7; }

/* Solution cards */
.solutions-preview { background: var(--surface); }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card { position: relative; overflow: hidden; min-height: 490px; padding: 32px 30px 30px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 8px 24px rgba(5,22,42,.04); transition: transform .25s, box-shadow .25s, border-color .25s; }
.solution-card:hover { transform: translateY(-7px); border-color: #bfd5ef; box-shadow: var(--shadow-md); }
.solution-card-featured { background: var(--navy-900); border-color: rgba(255,255,255,.08); color: var(--white); }
.solution-card-featured p { color: rgba(255,255,255,.63); }
.solution-card-featured .text-link { color: var(--white); }
.solution-number { position: absolute; right: 25px; top: 21px; color: #a8b5c3; font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.solution-card-featured .solution-number { color: rgba(255,255,255,.28); }
.solution-icon { position: relative; width: 67px; height: 67px; margin-bottom: 46px; border: 1px solid #d7e4f1; border-radius: 18px; background: #f3f8fd; }
.solution-card-featured .solution-icon { border-color: rgba(96,165,250,.22); background: rgba(59,130,246,.1); }
.icon-doc span { position: absolute; width: 26px; height: 34px; left: 19px; top: 15px; border: 2px solid var(--blue-600); border-radius: 4px; }
.icon-doc span::after { content: ""; position: absolute; right: -2px; top: -2px; border-left: 9px solid transparent; border-bottom: 9px solid var(--blue-300); }
.icon-doc i { position: absolute; left: 25px; width: 15px; height: 2px; background: var(--blue-500); }
.icon-doc i:nth-of-type(1) { top: 29px; }.icon-doc i:nth-of-type(2) { top: 35px; }.icon-doc i:nth-of-type(3) { top: 41px; width: 10px; }
.icon-pump span { position: absolute; left: 19px; top: 14px; width: 25px; height: 37px; border: 2px solid var(--blue-600); border-radius: 5px; }
.icon-pump span::before { content: ""; position: absolute; left: 5px; top: 5px; width: 11px; height: 9px; border: 2px solid var(--blue-400); border-radius: 2px; }
.icon-pump i { position: absolute; left: 28px; top: 50px; width: 22px; height: 2px; background: var(--blue-600); }
.icon-pump b { position: absolute; left: 45px; top: 20px; width: 8px; height: 24px; border-top: 2px solid var(--blue-500); border-right: 2px solid var(--blue-500); border-radius: 0 7px 0 0; }
.icon-water span { position: absolute; left: 23px; top: 12px; width: 22px; height: 31px; border-radius: 55% 45% 60% 40% / 65% 45% 55% 35%; background: linear-gradient(145deg,var(--blue-400),var(--blue-700)); transform: rotate(45deg); }
.icon-water i, .icon-water b { position: absolute; left: 13px; right: 13px; height: 2px; border-radius: 100%; background: var(--cyan-400); }
.icon-water i { bottom: 15px; transform: rotate(4deg); }.icon-water b { bottom: 9px; transform: rotate(-4deg); }
.solution-card h3 { margin-bottom: 16px; font-size: 28px; }
.solution-card > p { min-height: 110px; margin-bottom: 20px; font-size: 15px; }
.check-list { margin: 0 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 6px 0 6px 23px; color: #506175; font-size: 13px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: 900; }
.solution-card-featured .check-list li { color: rgba(255,255,255,.64); }
.card-glow { position: absolute; width: 260px; height: 260px; right: -110px; bottom: -120px; border-radius: 50%; background: var(--blue-600); filter: blur(80px); opacity: .18; }

/* Why section */
.capability-section { padding: 124px 0; }
.capability-grid-bg { opacity: .65; }
.capability-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .78fr 1.22fr; gap: 105px; align-items: center; }
.capability-copy h2 { margin-bottom: 24px; font-size: clamp(40px,4vw,62px); }
.capability-copy p { max-width: 470px; margin-bottom: 34px; font-size: 17px; }
.capability-list { border-top: 1px solid rgba(255,255,255,.1); }
.capability-item { display: grid; grid-template-columns: 55px 1fr; gap: 22px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.capability-item > span { color: var(--blue-400); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.capability-item h3 { margin-bottom: 8px; font-size: 20px; }
.capability-item p { max-width: 560px; margin: 0; font-size: 14px; }

/* Product focus */
.product-focus { overflow: hidden; background: var(--white); }
.product-focus-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 90px; align-items: center; }
.product-ui { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-md); transform: rotate(-1.2deg); }
.product-ui-top { height: 50px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; background: var(--navy-900); color: var(--white); }
.product-ui-top span { font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.product-ui-top div { display: flex; gap: 6px; }.product-ui-top i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.26); }
.product-ui-body { display: grid; grid-template-columns: 56px 1fr; min-height: 390px; }
.product-ui-body aside { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 17px 0; background: #0c213d; }
.product-ui-body aside b { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(96,165,250,.5); border-radius: 9px; color: var(--blue-300); }
.product-ui-body aside i { width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.18); border-radius: 5px; }.product-ui-body aside i.active { border-color: var(--blue-400); background: rgba(59,130,246,.2); }
.product-ui-content { padding: 24px; background: #f4f8fc; }
.ui-title-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ui-title-row div { display: flex; flex-direction: column; }.ui-title-row small { color: #7a8a9b; font-size: 9px; }.ui-title-row strong { font-size: 18px; }
.ui-title-row button { padding: 8px 12px; border: 0; border-radius: 7px; background: var(--blue-600); color: white; font-size: 9px; font-weight: 750; }
.ui-filters { display: grid; grid-template-columns: 1.5fr 1fr .7fr; gap: 8px; margin-bottom: 15px; }.ui-filters span { padding: 9px 10px; border: 1px solid #dce5ef; border-radius: 7px; background: white; color: #91a0af; font-size: 8px; }
.ui-table { overflow: hidden; border: 1px solid #dfe7ef; border-radius: 10px; background: white; }.ui-tr { display: grid; grid-template-columns: 1fr 1.55fr 1fr .8fr; align-items: center; min-height: 47px; padding: 0 13px; border-bottom: 1px solid #edf2f7; color: #526275; font-size: 8px; }.ui-tr:last-child { border: 0; }.ui-th { min-height: 36px; background: #f7f9fc; color: #8c99a8; font-weight: 700; }
.status { display: inline-flex; width: max-content; padding: 5px 7px; border-radius: 99px; font-size: 7px; }.status.green { background: #e8f8f1; color: #159367; }.status.blue { background: #eaf2ff; color: #2b6de8; }.status.amber { background: #fff4e1; color: #bf7c14; }
.product-focus-copy h2 { margin-bottom: 21px; font-size: clamp(38px,4vw,60px); }.product-focus-copy > p { margin-bottom: 30px; font-size: 17px; }
.feature-points { margin-bottom: 34px; }
.feature-points > div { display: grid; grid-template-columns: 32px 1fr; gap: 13px; padding: 15px 0; border-bottom: 1px solid var(--line-soft); }
.feature-points > div > span { display: grid; place-items: center; width: 27px; height: 27px; border-radius: 8px; background: #eaf3ff; color: var(--blue-600); font-size: 12px; font-weight: 900; }
.feature-points p { margin: 0; font-size: 13px; }.feature-points strong { display: block; color: var(--ink); font-size: 15px; }

/* References home */
.references-home { overflow: hidden; background: var(--surface); }
.reference-marquee { position: relative; overflow: hidden; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.reference-marquee::before, .reference-marquee::after { content: ""; position: absolute; z-index: 2; top: 0; bottom: 0; width: 110px; }.reference-marquee::before { left: 0; background: linear-gradient(90deg,var(--surface),transparent); }.reference-marquee::after { right: 0; background: linear-gradient(-90deg,var(--surface),transparent); }
.reference-track { width: max-content; display: flex; gap: 12px; animation: marquee 38s linear infinite; }
.reference-track span { display: inline-flex; align-items: center; min-height: 54px; padding: 0 23px; border: 1px solid #dce6f0; border-radius: 99px; background: rgba(255,255,255,.8); color: #516276; font-size: 13px; font-weight: 700; }
@keyframes marquee { to { transform: translateX(-50%); } }
.reference-summary { display: grid; grid-template-columns: repeat(3,1fr) 1.2fr; align-items: center; gap: 25px; margin-top: 45px; }
.reference-summary div { display: flex; flex-direction: column; }.reference-summary strong { font-size: 36px; }.reference-summary span { color: var(--muted); font-size: 12px; }
.reference-summary .text-link { justify-self: end; }

/* Process */
.process-section { background: white; }
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-grid article { position: relative; min-height: 250px; padding: 32px 28px; border-right: 1px solid var(--line); }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { display: inline-block; margin-bottom: 56px; color: var(--blue-600); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.process-grid h3 { margin-bottom: 13px; font-size: 23px; }.process-grid p { margin: 0; font-size: 14px; }

/* CTA */
.cta-section { padding: 0 0 110px; background: white; }
.cta-card { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 50px; min-height: 280px; padding: 55px 65px; border-radius: var(--radius-lg); background: linear-gradient(125deg,#0a1b31,#0d2b50 60%,#174e96); color: white; box-shadow: var(--shadow-md); }
.cta-pattern { position: absolute; inset: 0; opacity: .16; background-image: radial-gradient(circle at 1px 1px,rgba(255,255,255,.4) 1px,transparent 0); background-size: 22px 22px; mask-image: linear-gradient(90deg,transparent,black); }
.cta-card > *:not(.cta-pattern) { position: relative; z-index: 2; }
.cta-card h2 { max-width: 700px; margin: 0; font-size: clamp(32px,3.5vw,50px); }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; flex: 0 0 auto; }
.cta-phone { display: flex; flex-direction: column; color: white; }.cta-phone small { color: rgba(255,255,255,.5); font-size: 11px; }.cta-phone strong { font-size: 17px; }

/* Page hero */
.page-hero { position: relative; overflow: hidden; min-height: 560px; display: flex; align-items: center; padding: calc(var(--header-height) + 70px) 0 75px; background: var(--navy-950); color: white; }
.compact-page-hero { min-height: 520px; }
.page-hero::after, .product-hero::after { content: ""; position: absolute; width: 540px; height: 540px; right: -100px; top: -130px; border-radius: 50%; background: #1f72e8; filter: blur(120px); opacity: .23; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { max-width: 870px; margin-bottom: 25px; font-size: clamp(50px,6vw,78px); }
.page-hero p { max-width: 670px; margin: 0; color: rgba(255,255,255,.65); font-size: 19px; }

/* About */
.about-intro-grid, .reference-intro-grid, .career-intro-grid, .product-overview-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.value-cards-section { padding-top: 0; }
.value-cards { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }
.value-cards article { min-height: 250px; padding: 30px; border-right: 1px solid var(--line); background: white; }.value-cards article:last-child { border: 0; }
.value-cards span { display: inline-block; margin-bottom: 50px; color: var(--blue-600); font-size: 11px; font-weight: 800; }.value-cards h3 { font-size: 22px; }.value-cards p { margin: 0; font-size: 14px; }
.story-section { padding: 125px 0; }
.story-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 110px; align-items: center; }
.story-timeline { position: relative; }.timeline-line { position: absolute; left: 84px; top: 15px; bottom: 15px; width: 1px; background: rgba(255,255,255,.12); }
.story-timeline article { position: relative; display: grid; grid-template-columns: 85px 1fr; gap: 25px; padding: 18px 0 28px; }.story-timeline article::before { content: ""; position: absolute; left: 80px; top: 26px; width: 9px; height: 9px; border-radius: 50%; background: var(--blue-400); box-shadow: 0 0 0 8px rgba(96,165,250,.1); }
.story-timeline article > span { color: var(--blue-300); font-size: 11px; font-weight: 800; }.story-timeline h3 { margin-bottom: 8px; font-size: 21px; }.story-timeline p { margin: 0; font-size: 14px; }
.story-copy h2 { margin-bottom: 24px; font-size: clamp(38px,4vw,60px); }.story-copy > p { font-size: 17px; }
.story-stat { display: flex; align-items: center; gap: 20px; margin-top: 35px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); }.story-stat strong { color: var(--blue-300); font-size: 45px; }.story-stat span { max-width: 160px; color: rgba(255,255,255,.55); font-size: 13px; line-height: 1.4; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mission-card { min-height: 390px; padding: 50px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #f7faff; }.mission-card h2 { margin-bottom: 25px; font-size: clamp(32px,3.3vw,49px); }.mission-card p { max-width: 530px; font-size: 16px; }
.vision-card { background: var(--navy-900); color: white; border-color: var(--navy-900); }.vision-card p { color: rgba(255,255,255,.64); }

/* Solution listing */
.solution-detail-list { background: #f7f9fc; }
.solution-detail-row { display: grid; grid-template-columns: 1.12fr .88fr; gap: 80px; align-items: center; margin-bottom: 90px; }.solution-detail-row:last-child { margin-bottom: 0; }.solution-detail-row.reverse { grid-template-columns: .88fr 1.12fr; }.solution-detail-row.reverse .solution-detail-visual { order: 2; }
.solution-detail-visual { min-height: 500px; display: grid; place-items: center; overflow: hidden; border-radius: 26px; background: linear-gradient(145deg,#091a31,#143c70); box-shadow: var(--shadow-md); }
.solution-detail-copy { max-width: 530px; }.solution-index { display: block; margin-bottom: 24px; color: #98a7b6; font-size: 11px; font-weight: 800; letter-spacing: .16em; }.solution-detail-copy h2 { margin-bottom: 20px; font-size: clamp(42px,4.6vw,65px); }.solution-detail-copy p { font-size: 17px; }.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 27px 0 32px; }.tag-list span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 99px; background: white; color: #5b6b7e; font-size: 12px; font-weight: 650; }
.mini-window { width: 82%; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: #f5f8fc; box-shadow: 0 35px 90px rgba(0,0,0,.28); transform: rotate(-2deg); }.mini-window-top { height: 44px; display: flex; align-items: center; gap: 6px; padding: 0 14px; background: #08182d; }.mini-window-top i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); }.mini-window-top span { margin-left: 8px; color: rgba(255,255,255,.66); font-size: 9px; font-weight: 800; }
.mini-window-body { display: grid; grid-template-columns: 50px 1fr; min-height: 300px; }.mini-window-body aside { display: flex; flex-direction: column; align-items: center; gap: 17px; padding: 15px 0; background: #102b4e; }.mini-window-body aside b { color: var(--blue-300); }.mini-window-body aside span { width: 15px; height: 15px; border: 2px solid rgba(255,255,255,.2); border-radius: 5px; }.mini-window-body > div { padding: 23px; }.mini-window-body strong { font-size: 16px; }
.flow-line { display: flex; align-items: center; gap: 6px; margin: 28px 0; }.flow-line span { display: inline-flex; padding: 8px 9px; border-radius: 7px; background: #e7f1ff; color: #2b6de8; font-size: 7px; font-weight: 800; }.flow-line i { flex: 1; height: 1px; background: #b8c9db; }
.mini-table-lines i { display: block; height: 36px; margin: 7px 0; border: 1px solid #e1e7ee; border-radius: 7px; background: white; }
.pet-visual { background: linear-gradient(145deg,#071a25,#0c5061); }.pet-console { width: 78%; padding: 25px; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(5,18,28,.76); box-shadow: 0 35px 90px rgba(0,0,0,.3); transform: rotate(2deg); }.pet-console-top { display: flex; justify-content: space-between; align-items: center; color: white; }.pet-console-top span { color: #76d7eb; font-size: 10px; font-weight: 900; letter-spacing: .15em; }.pet-console-top b { font-size: 13px; }.pet-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 26px 0; }.pet-metrics span { padding: 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; background: rgba(255,255,255,.04); }.pet-metrics small { display: block; color: rgba(255,255,255,.45); font-size: 8px; }.pet-metrics strong { color: white; font-size: 20px; }.fuel-bars { height: 150px; display: flex; align-items: end; gap: 9px; padding: 15px; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; background: rgba(255,255,255,.03); }.fuel-bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(to top,#0c9bb3,#62d4e7); }
.water-visual { background: linear-gradient(145deg,#071f2a,#075c67); }.water-map { position: relative; width: 78%; height: 340px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: #0c3341; box-shadow: 0 35px 90px rgba(0,0,0,.3); }.map-shape { position: absolute; border: 1px solid rgba(97,218,210,.25); background: rgba(29,180,168,.16); }.shape-a { width: 210px; height: 135px; left: 35px; top: 28px; clip-path: polygon(10% 10%,80% 0,100% 44%,78% 100%,13% 82%,0 38%); }.shape-b { width: 210px; height: 150px; right: 20px; bottom: 30px; clip-path: polygon(20% 0,90% 14%,100% 70%,58% 100%,0 76%,8% 20%); }.shape-c { width: 130px; height: 100px; left: 160px; bottom: 20px; clip-path: polygon(20% 0,100% 15%,85% 100%,0 70%); }
.map-pin { position: absolute; width: 13px; height: 13px; border: 3px solid #9df2e7; border-radius: 50% 50% 50% 0; background: #13a995; transform: rotate(-45deg); }.pin-a { left: 120px; top: 80px; }.pin-b { right: 90px; top: 145px; }.pin-c { left: 225px; bottom: 85px; }
.water-panel { position: absolute; left: 23px; bottom: 20px; display: flex; flex-direction: column; width: 185px; padding: 14px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(4,28,38,.84); color: white; }.water-panel small { color: rgba(255,255,255,.5); font-size: 8px; }.water-panel strong { font-size: 18px; }.water-panel span { margin-top: 8px; color: rgba(255,255,255,.55); font-size: 8px; }.water-panel b { color: #70e0c4; }
.common-feature-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 1px solid rgba(255,255,255,.1); }.common-feature-grid article { min-height: 260px; padding: 35px 28px; border-right: 1px solid rgba(255,255,255,.1); }.common-feature-grid article:last-child { border: 0; }.common-feature-grid article > span { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 45px; border: 1px solid rgba(96,165,250,.25); border-radius: 14px; background: rgba(59,130,246,.08); color: var(--blue-300); font-size: 21px; }.common-feature-grid h3 { font-size: 20px; }.common-feature-grid p { margin: 0; font-size: 14px; }

/* Product heroes */
.product-hero { position: relative; overflow: hidden; min-height: 810px; padding: calc(var(--header-height) + 65px) 0 80px; background: var(--navy-950); color: white; }
.product-hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 55px; align-items: center; }
.product-label { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 22px; color: var(--blue-300); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.product-label span { display: grid; place-items: center; width: 32px; height: 32px; border: 1px solid rgba(147,197,253,.35); border-radius: 9px; background: rgba(59,130,246,.1); }
.product-hero h1 { margin-bottom: 23px; font-size: clamp(48px,5vw,72px); }.product-hero-copy > p { max-width: 660px; margin-bottom: 32px; color: rgba(255,255,255,.66); font-size: 18px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 40px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); }.product-meta span { color: rgba(255,255,255,.55); font-size: 12px; }.product-meta b { margin-right: 5px; color: #69d7ab; }
.product-hero-device { position: relative; min-height: 560px; display: grid; place-items: center; }
.ebys-device, .pet-dashboard, .water-dashboard { position: relative; z-index: 2; width: 690px; max-width: 100%; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: #f5f8fc; box-shadow: var(--shadow-lg); transform: perspective(1200px) rotateY(-5deg); }
.ebys-device-head, .pet-dashboard-head, .water-dashboard-head { height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; background: #0a1b31; }.ebys-device-head > span, .pet-dashboard-head > span, .water-dashboard-head > span { color: rgba(255,255,255,.7); font-size: 9px; font-weight: 900; letter-spacing: .16em; }.ebys-device-head div, .pet-dashboard-head div, .water-dashboard-head div { display: flex; gap: 6px; }.ebys-device-head i, .pet-dashboard-head i, .water-dashboard-head i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.24); }
.ebys-device-body, .pet-dashboard-body, .water-dashboard-body { display: grid; grid-template-columns: 58px 1fr; min-height: 420px; }.ebys-device-body aside, .pet-dashboard-body aside, .water-dashboard-body aside { display: flex; flex-direction: column; align-items: center; gap: 19px; padding: 17px 0; background: #102b4e; }.ebys-device-body aside b, .pet-dashboard-body aside b, .water-dashboard-body aside b { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(96,165,250,.45); border-radius: 9px; color: var(--blue-300); }.ebys-device-body aside i, .pet-dashboard-body aside span, .water-dashboard-body aside span { width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.18); border-radius: 5px; }.ebys-device-body aside i.active, .pet-dashboard-body aside span.active, .water-dashboard-body aside span.active { border-color: var(--blue-400); background: rgba(59,130,246,.2); }
.ebys-device-body section, .pet-dashboard-body section, .water-dashboard-body section { padding: 23px; background: #f4f8fc; color: var(--ink); }
.device-title, .pet-title-row, .water-title-row { display: flex; justify-content: space-between; align-items: center; }.device-title div, .pet-title-row div, .water-title-row div { display: flex; flex-direction: column; }.device-title small, .pet-title-row small, .water-title-row small { color: #8191a2; font-size: 8px; }.device-title strong, .pet-title-row strong, .water-title-row strong { font-size: 18px; }.device-title button { padding: 8px 11px; border: 0; border-radius: 7px; background: var(--blue-600); color: white; font-size: 8px; font-weight: 800; }
.flow-board { display: flex; align-items: center; gap: 6px; margin: 26px 0 20px; }.flow-board > div { flex: 1; min-width: 82px; padding: 12px 8px; border: 1px solid #dfe7ef; border-radius: 10px; background: white; text-align: center; }.flow-board > div span { display: grid; place-items: center; width: 22px; height: 22px; margin: 0 auto 7px; border-radius: 7px; background: #e8f2ff; color: #2b6de8; font-size: 8px; font-weight: 900; }.flow-board strong { display: block; font-size: 8px; }.flow-board small { color: #8b99a8; font-size: 7px; }.flow-board > i { flex: 0 0 10px; height: 1px; background: #b8c7d7; }
.device-list { overflow: hidden; border: 1px solid #dfe7ef; border-radius: 10px; background: white; }.device-list > div { display: grid; grid-template-columns: 1.5fr 1fr .65fr; align-items: center; min-height: 47px; padding: 0 12px; border-bottom: 1px solid #edf2f7; color: #566678; font-size: 8px; }.device-list > div:last-child { border: 0; }.device-list .device-list-head { min-height: 34px; background: #f7f9fc; color: #8d9aaa; font-weight: 700; }.device-list b { color: #26384c; margin-right: 4px; }.device-list em { width: max-content; padding: 5px 7px; border-radius: 99px; font-style: normal; font-size: 7px; }.device-list em.green { background: #e6f8f0; color: #138f62; }.device-list em.blue { background: #e8f2ff; color: #2b6de8; }.device-list em.amber { background: #fff1dc; color: #b97711; }
.device-float { position: absolute; z-index: 5; display: flex; align-items: center; gap: 11px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(8,25,45,.94); box-shadow: 0 22px 50px rgba(0,0,0,.3); }.device-float div { display: flex; flex-direction: column; }.device-float b { font-size: 10px; }.device-float small, .device-float > span { color: rgba(255,255,255,.45); font-size: 8px; }.device-float > span:first-child { display: grid; place-items: center; width: 29px; height: 29px; border-radius: 9px; background: rgba(25,190,129,.12); color: #5cdbab; font-size: 13px; font-weight: 900; }.device-float-one { left: -8px; bottom: 80px; }.device-float-two { right: -4px; top: 82px; flex-direction: column; align-items: flex-start; }.device-float-two strong { color: var(--blue-300); font-size: 23px; }.device-float-two span { line-height: 1.3; }
.product-hero-pet::after { background: #008da5; }.pet-dashboard { transform: perspective(1200px) rotateY(-4deg) rotateX(1deg); }.pet-dashboard-head { background: #062530; }.pet-dashboard-body aside { background: #0b3947; }.online-dot { color: #159d71; font-size: 8px; font-weight: 800; }.pet-kpis, .water-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 9px; margin: 22px 0 12px; }.pet-kpis > div, .water-kpis > div { padding: 13px; border: 1px solid #dfe7ef; border-radius: 10px; background: white; }.pet-kpis small, .water-kpis small { display: block; color: #8a98a7; font-size: 7px; }.pet-kpis strong, .water-kpis strong { display: block; margin: 5px 0 2px; font-size: 16px; }.pet-kpis em { color: #13956a; font-size: 7px; font-style: normal; }
.pet-chart-area { display: grid; grid-template-columns: 1.5fr .7fr; gap: 9px; }.pet-chart-area > div { min-height: 180px; padding: 13px; border: 1px solid #dfe7ef; border-radius: 10px; background: white; }.pet-chart-area > div > span, .tank-widget > span { font-size: 8px; font-weight: 800; }.pet-bars { height: 130px; display: flex; align-items: end; gap: 7px; padding-top: 18px; border-bottom: 1px solid #e7edf3; }.pet-bars i { flex: 1; border-radius: 3px 3px 0 0; background: linear-gradient(to top,#087e91,#49c7d8); }.tank-widget > div { height: 126px; display: flex; align-items: end; justify-content: center; gap: 9px; padding-top: 20px; }.tank-widget i { position: relative; width: 27px; height: 100px; overflow: hidden; border: 2px solid #9eb0c0; border-radius: 8px 8px 11px 11px; }.tank-widget i::after { content: ""; position: absolute; left: 3px; right: 3px; bottom: 3px; height: var(--fill); border-radius: 4px 4px 7px 7px; background: linear-gradient(#4ad0dc,#0f8ca0); }.pet-float-one > span:first-child { background: rgba(76,201,240,.12); color: #77dcef; }.pet-float-two strong { color: #70d8e6; }
.product-hero-water::after { background: #0fa58e; }.water-dashboard-head { background: #062c34; }.water-dashboard-body aside { background: #0a4148; }.water-title-row > span { padding: 6px 8px; border-radius: 99px; background: #e7f8f4; color: #178c7a; font-size: 7px; font-weight: 800; }.water-content-row { display: grid; grid-template-columns: 1.45fr .65fr; gap: 9px; }.water-map-card, .water-collection { min-height: 185px; padding: 13px; border: 1px solid #dfe7ef; border-radius: 10px; background: white; }.water-map-card > span, .water-collection > span { font-size: 8px; font-weight: 800; }.abstract-map { position: relative; height: 135px; overflow: hidden; margin-top: 8px; border-radius: 8px; background: #eaf6f4; }.abstract-map i { position: absolute; }.zone-one { width: 120px; height: 80px; left: 15px; top: 12px; background: #b9e3d9; clip-path: polygon(0 20%,75% 0,100% 70%,35% 100%); }.zone-two { width: 120px; height: 90px; right: 15px; bottom: 5px; background: #96d4c6; clip-path: polygon(20% 0,100% 20%,75% 100%,0 70%); }.zone-three { width: 85px; height: 60px; left: 105px; bottom: 9px; background: #d1ede7; clip-path: polygon(15% 0,100% 15%,80% 100%,0 70%); }.canal-line { width: 230px; height: 4px; left: 5px; top: 65px; background: #4aadd4; transform: rotate(-11deg); border-radius: 10px; }.wpin { position: absolute; width: 8px; height: 8px; border: 2px solid white; border-radius: 50%; background: #0c9a87; box-shadow: 0 0 0 3px rgba(12,154,135,.2); }.p1 { left: 70px; top: 38px; }.p2 { right: 55px; top: 62px; }.p3 { left: 145px; bottom: 30px; }
.water-collection { display: flex; flex-direction: column; align-items: center; }.donut { display: grid; place-items: center; width: 100px; height: 100px; margin: 11px auto 6px; border-radius: 50%; background: conic-gradient(#12a68e 0 91%,#e4edf1 91%); }.donut::before { content: ""; position: absolute; width: 72px; height: 72px; border-radius: 50%; background: white; }.donut b { position: relative; z-index: 2; font-size: 18px; }.water-collection small { color: #748496; font-size: 7px; }.water-float-one > span:first-child { background: rgba(21,182,122,.12); }.water-float-two strong { color: #72e1c8; }

/* Product content */
.product-overview { background: white; }
.feature-section { background: var(--surface); }
.feature-card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card-grid article { min-height: 245px; padding: 29px; border: 1px solid var(--line); border-radius: 18px; background: white; transition: transform .2s, box-shadow .2s; }.feature-card-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }.feature-icon { display: grid; place-items: center; width: 47px; height: 47px; margin-bottom: 39px; border-radius: 13px; background: #eaf3ff; color: var(--blue-600); font-size: 11px; font-weight: 900; }.feature-card-grid h3 { margin-bottom: 11px; font-size: 20px; }.feature-card-grid p { margin: 0; font-size: 14px; }
.benefits-section { padding: 120px 0; }
.benefits-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }.benefits-copy h2 { margin-bottom: 23px; font-size: clamp(40px,4.2vw,61px); }.benefits-copy p { font-size: 17px; }
.benefit-stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }.benefit-stats article { min-height: 240px; padding: 35px 25px; border-right: 1px solid rgba(255,255,255,.12); }.benefit-stats article:last-child { border: 0; }.benefit-stats strong { display: block; margin-bottom: 65px; color: var(--blue-300); font-size: 41px; }.benefit-stats span { color: rgba(255,255,255,.6); font-size: 13px; }
.benefit-list-dark { border-top: 1px solid rgba(255,255,255,.12); }.benefit-list-dark > div { display: grid; grid-template-columns: 54px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }.benefit-list-dark > div > span { color: var(--blue-300); font-size: 11px; font-weight: 900; }.benefit-list-dark p { margin: 0; font-size: 14px; }.benefit-list-dark b { display: block; margin-bottom: 5px; color: white; font-size: 17px; }
.legacy-screens { background: white; }.screen-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }.screen-card { overflow: hidden; padding: 0; border: 1px solid var(--line); border-radius: 18px; background: white; text-align: left; cursor: zoom-in; transition: transform .2s, box-shadow .2s; }.screen-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }.screen-card img { width: 100%; height: 370px; object-fit: contain; padding: 24px; background: #f4f7fa; }.screen-card span { display: flex; justify-content: space-between; padding: 18px 21px; color: var(--ink); font-size: 14px; font-weight: 750; }.screen-card b { color: var(--blue-600); }
.implementation-section { background: var(--surface); }.implementation-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 95px; }.implementation-grid h2 { font-size: clamp(38px,4vw,58px); }.implementation-grid > div > p { font-size: 17px; }.implementation-grid ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }.implementation-grid li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }.implementation-grid li > span { color: var(--blue-600); font-size: 11px; font-weight: 900; }.implementation-grid li b { font-size: 17px; }.implementation-grid li p { margin: 6px 0 0; font-size: 14px; }
.lightbox { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 50px; background: rgba(2,8,17,.9); opacity: 0; visibility: hidden; transition: .2s; }.lightbox.is-open { opacity: 1; visibility: visible; }.lightbox > button { position: absolute; right: 25px; top: 20px; width: 45px; height: 45px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: rgba(255,255,255,.08); color: white; font-size: 28px; cursor: pointer; }.lightbox figure { max-width: 1100px; max-height: 90vh; margin: 0; }.lightbox img { max-height: 80vh; border-radius: 12px; background: white; box-shadow: var(--shadow-lg); }.lightbox figcaption { padding-top: 12px; color: rgba(255,255,255,.7); text-align: center; }
.references-highlight { background: white; }.references-highlight-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }.references-highlight h2 { font-size: clamp(38px,4vw,58px); }.references-highlight p { margin-bottom: 30px; font-size: 17px; }.region-cloud { display: flex; flex-wrap: wrap; align-content: center; justify-content: center; gap: 10px; min-height: 430px; padding: 50px; border-radius: 25px; background: linear-gradient(145deg,#071d29,#0b4b55); }.region-cloud span { padding: 11px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 99px; background: rgba(255,255,255,.05); color: rgba(255,255,255,.72); font-size: 13px; font-weight: 700; }.region-cloud span:nth-child(3n) { color: #84e2d3; border-color: rgba(132,226,211,.25); }.legacy-water-showcase { display: grid; grid-template-columns: .75fr 1.25fr; gap: 60px; align-items: center; }.legacy-water-illustration { display: grid; place-items: center; min-height: 390px; border-radius: 22px; background: #eff8f5; }.legacy-water-illustration img { max-width: 320px; mix-blend-mode: multiply; }.legacy-water-list { border-top: 1px solid var(--line); }.legacy-water-list > div { display: grid; grid-template-columns: 50px 1fr; gap: 20px; padding: 23px 0; border-bottom: 1px solid var(--line); }.legacy-water-list > div > span { color: #15967f; font-size: 11px; font-weight: 900; }.legacy-water-list p { margin: 0; font-size: 14px; }.legacy-water-list b { display: block; margin-bottom: 5px; color: var(--ink); font-size: 17px; }

/* References */
.reference-numbers-section { padding-top: 0; }.reference-numbers { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }.reference-numbers article { min-height: 190px; display: flex; flex-direction: column; justify-content: center; padding: 30px; border-right: 1px solid var(--line); }.reference-numbers article:last-child { border: 0; }.reference-numbers strong { font-size: 45px; }.reference-numbers span { color: var(--muted); font-size: 13px; }
.references-list-section { background: var(--surface); }.reference-list-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }.reference-list-grid article { display: grid; grid-template-columns: 38px 1fr 20px; gap: 12px; align-items: center; min-height: 85px; padding: 16px 19px; border: 1px solid var(--line); border-radius: 13px; background: white; transition: .2s; }.reference-list-grid article:hover { transform: translateY(-3px); border-color: #b9d0e8; box-shadow: var(--shadow-sm); }.reference-list-grid span { color: var(--blue-600); font-size: 10px; font-weight: 900; }.reference-list-grid h3 { margin: 0; font-size: 14px; letter-spacing: -.015em; }.reference-list-grid i { color: #a1afbd; font-style: normal; }
.reference-case { padding: 120px 0; }.reference-case-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }.reference-case h2 { font-size: clamp(39px,4vw,58px); }.reference-case p { margin-bottom: 31px; font-size: 17px; }.certificate-card { overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.04); }.certificate-card img { width: 100%; max-height: 350px; object-fit: cover; object-position: center; background: white; }.certificate-card div { display: flex; flex-direction: column; padding: 20px 24px; }.certificate-card strong { font-size: 20px; }.certificate-card span { color: rgba(255,255,255,.45); font-size: 12px; }

/* Support */
.support-intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }.support-intro h2 { font-size: clamp(40px,4vw,58px); }.support-intro p { margin-bottom: 30px; font-size: 17px; }.support-steps { border-top: 1px solid var(--line); }.support-steps article { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid var(--line); }.support-steps article > span { color: var(--blue-600); font-size: 11px; font-weight: 900; }.support-steps h3 { margin-bottom: 7px; font-size: 19px; }.support-steps p { margin: 0; font-size: 14px; }
.support-tools-section { background: var(--surface); }.support-tool-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }.support-tool-card { min-height: 360px; display: flex; flex-direction: column; justify-content: space-between; padding: 30px; border: 1px solid var(--line); border-radius: 20px; background: white; transition: .2s; }.support-tool-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }.tool-logo { display: grid; place-items: center; width: 78px; height: 78px; margin-bottom: 50px; border-radius: 20px; font-weight: 900; }.teamviewer-logo { background: #e6f1ff; color: #0878d1; font-size: 30px; }.anydesk-logo { background: #fff0f0; color: #e52b2f; font-size: 19px; letter-spacing: -6px; padding-right: 7px; }.alpemix-logo { background: #edf5ff; color: #1658a8; font-size: 21px; }.support-tool-card h3 { font-size: 25px; }.support-tool-card p { min-height: 70px; font-size: 14px; }.support-tool-card b { display: inline-flex; gap: 8px; color: var(--blue-600); font-size: 13px; }
.support-security { padding: 115px 0; }.support-security-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }.support-security h2 { font-size: clamp(40px,4vw,58px); }.security-rules { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.security-rules > div { display: grid; grid-template-columns: 32px 1fr; gap: 12px; padding: 19px; border: 1px solid rgba(255,255,255,.1); border-radius: 13px; background: rgba(255,255,255,.03); }.security-rules span { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 8px; background: rgba(21,182,122,.12); color: #61d8aa; font-size: 11px; font-weight: 900; }.security-rules p { margin: 0; font-size: 13px; }
.support-contact-section { background: white; }.support-contact-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }.support-contact-grid article { min-height: 210px; padding: 35px; border-right: 1px solid var(--line); }.support-contact-grid article:last-child { border: 0; }.support-contact-grid small { color: var(--blue-600); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }.support-contact-grid h3 { margin: 35px 0 10px; font-size: 24px; }.support-contact-grid p { margin: 0; font-size: 13px; }

/* Career */
.career-values { padding-top: 0; }.career-value-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 1px solid var(--line); border-radius: 20px; overflow: hidden; }.career-value-grid article { min-height: 260px; padding: 32px; border-right: 1px solid var(--line); }.career-value-grid article:last-child { border: 0; }.career-value-grid span { display: block; margin-bottom: 60px; color: var(--blue-600); font-size: 11px; font-weight: 900; }.career-value-grid h3 { font-size: 22px; }.career-value-grid p { margin: 0; font-size: 14px; }
.career-apply { padding: 120px 0; }.career-apply-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: center; }.career-apply h2 { font-size: clamp(40px,4vw,58px); }.career-apply > .container > div:first-child p { font-size: 17px; }.career-mail-card { display: flex; flex-direction: column; align-items: flex-start; padding: 45px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.04); }.career-mail-card small { color: rgba(255,255,255,.45); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; }.career-mail-card > a:not(.button) { margin: 14px 0 12px; color: var(--blue-300); font-size: 28px; font-weight: 800; }.career-mail-card p { margin-bottom: 28px; font-size: 13px; }

/* Contact */
.contact-section { background: var(--surface); }.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; align-items: start; }.contact-info { position: sticky; top: 120px; }.contact-info h2 { margin-bottom: 45px; font-size: clamp(38px,4vw,55px); }.contact-detail { display: grid; grid-template-columns: 45px 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }.contact-detail > span { color: var(--blue-600); font-size: 10px; font-weight: 900; }.contact-detail small { display: block; margin-bottom: 6px; color: #8a99a8; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }.contact-detail p { margin: 0; color: var(--ink); font-size: 14px; }.contact-detail a:hover { color: var(--blue-600); }.contact-hours { display: flex; flex-direction: column; margin-top: 25px; padding: 18px; border-radius: 12px; background: #eaf3ff; }.contact-hours b { font-size: 13px; }.contact-hours span { color: #58708b; font-size: 12px; }
.contact-form-card { padding: 44px; border: 1px solid var(--line); border-radius: 24px; background: white; box-shadow: var(--shadow-sm); }.form-heading { margin-bottom: 31px; }.form-heading > span { color: var(--blue-600); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }.form-heading h2 { margin: 8px 0 10px; font-size: 34px; }.form-heading p { margin: 0; font-size: 14px; }.contact-form { display: grid; gap: 17px; }.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }.contact-form label { position: relative; display: flex; flex-direction: column; gap: 7px; }.contact-form label > span { color: #425267; font-size: 12px; font-weight: 750; }.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid #d7e1eb; border-radius: 10px; background: #fbfcfe; color: var(--ink); outline: 0; transition: .2s; }.contact-form input, .contact-form select { height: 49px; padding: 0 13px; }.contact-form textarea { min-height: 150px; padding: 13px; resize: vertical; }.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-500); background: white; box-shadow: 0 0 0 4px rgba(59,130,246,.1); }.char-count { position: absolute; right: 10px; bottom: 8px; color: #9aa8b6; font-size: 10px; }.consent { display: grid !important; grid-template-columns: 19px 1fr; gap: 10px !important; align-items: start; }.consent input { width: 17px; height: 17px; margin-top: 2px; }.consent span { color: #667789 !important; font-size: 11px !important; font-weight: 500 !important; }.form-submit { width: max-content; border: 0; cursor: pointer; }.form-note { margin: -6px 0 0; color: #8b99a7; font-size: 10px; }.honeypot { position: absolute; left: -9999px; }.form-alert { margin-bottom: 20px; padding: 13px 15px; border-radius: 10px; font-size: 13px; }.form-alert.success { background: #e8f8f1; color: #0d7c56; }.form-alert.error { background: #fff0f0; color: #b43737; }
.map-section { height: 430px; overflow: hidden; }.map-placeholder { position: relative; height: 100%; overflow: hidden; background: #dce7ed; }.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(73,96,111,.09) 1px, transparent 1px),linear-gradient(90deg,rgba(73,96,111,.09) 1px,transparent 1px); background-size: 55px 55px; transform: rotate(8deg) scale(1.25); }.map-road { position: absolute; height: 15px; border: 4px solid rgba(255,255,255,.9); border-left: 0; border-right: 0; background: #c4d2da; }.road-one { width: 120%; left: -10%; top: 45%; transform: rotate(-8deg); }.road-two { width: 80%; right: -10%; top: 25%; transform: rotate(32deg); }.road-three { width: 65%; left: 5%; bottom: 16%; transform: rotate(18deg); }.map-location { position: absolute; left: 52%; top: 47%; display: flex; align-items: center; gap: 12px; padding: 12px 15px; border-radius: 13px; background: var(--navy-900); color: white; box-shadow: var(--shadow-md); }.map-location > span { display: grid; place-items: center; width: 35px; height: 35px; border-radius: 10px; background: var(--blue-600); font-weight: 900; }.map-location div { display: flex; flex-direction: column; }.map-location b { font-size: 13px; }.map-location small { color: rgba(255,255,255,.5); font-size: 9px; }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding: 82px 0 28px; background: var(--navy-950); color: white; }
.footer-glow { position: absolute; width: 500px; height: 500px; left: -220px; bottom: -300px; border-radius: 50%; background: var(--blue-600); filter: blur(110px); opacity: .15; }
.footer-grid { position: relative; display: grid; grid-template-columns: 1.7fr .7fr .7fr 1.1fr; gap: 70px; padding-bottom: 60px; }
.footer-brand img { width: 210px; margin-bottom: 20px; }.footer-brand p { max-width: 380px; color: rgba(255,255,255,.5); font-size: 14px; }.footer-badges { display: flex; gap: 8px; margin-top: 24px; }.footer-badges span { padding: 7px 10px; border: 1px solid rgba(255,255,255,.1); border-radius: 99px; color: rgba(255,255,255,.55); font-size: 10px; }
.footer-grid h2 { margin: 9px 0 22px; color: rgba(255,255,255,.42); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; align-items: flex-start; }.footer-grid a { margin-bottom: 10px; color: rgba(255,255,255,.72); font-size: 13px; }.footer-grid a:hover { color: var(--blue-300); }.footer-contact p { color: rgba(255,255,255,.45); font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.34); font-size: 11px; }.footer-bottom a:hover { color: white; }
.back-to-top { position: fixed; z-index: 900; right: 22px; bottom: 22px; width: 43px; height: 43px; border: 1px solid rgba(255,255,255,.12); border-radius: 12px; background: var(--navy-900); color: white; box-shadow: var(--shadow-sm); opacity: 0; visibility: hidden; transform: translateY(10px); cursor: pointer; transition: .2s; }.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* Reveal */
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; transition-delay: var(--reveal-delay,0ms); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; } .js [data-reveal] { opacity: 1; transform: none; } }

/* Responsive */
@media (max-width: 1180px) {
    :root { --container: 1050px; }
    .site-nav { gap: 0; }.nav-link { padding-inline: 9px; }.header-cta { padding-inline: 15px; }
    .hero-layout, .product-hero-layout { grid-template-columns: 1fr 1fr; gap: 25px; }
    .dashboard-card, .ebys-device, .pet-dashboard, .water-dashboard { width: 610px; }
    .floating-security, .device-float-one { left: 0; }.floating-support, .device-float-two { right: 0; }
    .solution-card { padding: 28px 25px; }.solution-card > p { min-height: 130px; }
    .product-focus-grid { gap: 55px; }.capability-layout { gap: 70px; }
}

@media (max-width: 980px) {
    :root { --header-height: 72px; }
    .header-shell { gap: 14px; }.brand img { width: 180px; }.header-cta { display: none; }.menu-toggle { display: block; margin-left: auto; }
    .site-nav { position: fixed; inset: var(--header-height) 0 0; display: flex; flex-direction: column; align-items: stretch; gap: 4px; padding: 20px 22px 40px; background: rgba(5,13,24,.99); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s; overflow-y: auto; }.site-nav.is-open { opacity: 1; visibility: visible; transform: none; }.nav-link { min-height: 50px; padding: 0 15px; font-size: 16px; }.nav-link.is-active::after { display: none; }.nav-group { display: block; }.nav-group > .nav-link { display: flex; }.nav-caret { position: absolute; right: 8px; top: 8px; width: 40px; height: 40px; }.nav-dropdown { position: static; width: 100%; display: none; margin-top: 4px; opacity: 1; visibility: visible; transform: none; box-shadow: none; }.nav-group.is-open .nav-dropdown { display: block; }
    .hero { min-height: auto; padding-bottom: 100px; }.hero-layout { grid-template-columns: 1fr; }.hero-copy { max-width: 760px; padding-top: 30px; }.hero-visual { min-height: 540px; margin-top: 20px; }.dashboard-card { width: 720px; transform: none; }
    .trust-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; padding-block: 24px; }.trust-items { width: 100%; flex-wrap: wrap; justify-content: flex-start; }
    .split-heading, .about-intro-grid, .reference-intro-grid, .career-intro-grid, .product-overview-grid, .product-focus-grid, .capability-layout, .story-grid, .benefits-grid, .implementation-grid, .references-highlight-grid, .reference-case-grid, .support-intro-grid, .support-security-grid, .career-apply-grid, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .solution-grid, .feature-card-grid { grid-template-columns: 1fr 1fr; }.solution-card > p { min-height: auto; }.solution-card-featured { grid-column: 1 / -1; }
    .capability-copy { max-width: 720px; }.product-ui { max-width: 760px; }.product-focus-copy { max-width: 680px; }
    .reference-summary { grid-template-columns: repeat(3,1fr); }.reference-summary .text-link { grid-column: 1 / -1; justify-self: start; }
    .process-grid, .value-cards, .common-feature-grid, .reference-numbers { grid-template-columns: 1fr 1fr; }.process-grid article:nth-child(2), .value-cards article:nth-child(2), .common-feature-grid article:nth-child(2), .reference-numbers article:nth-child(2) { border-right: 0; }.process-grid article:nth-child(-n+2), .value-cards article:nth-child(-n+2), .common-feature-grid article:nth-child(-n+2), .reference-numbers article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }.common-feature-grid article:nth-child(-n+2) { border-bottom-color: rgba(255,255,255,.1); }
    .cta-card { align-items: flex-start; flex-direction: column; }
    .mission-grid { grid-template-columns: 1fr; }
    .solution-detail-row, .solution-detail-row.reverse { grid-template-columns: 1fr; gap: 45px; }.solution-detail-row.reverse .solution-detail-visual { order: 0; }.solution-detail-copy { max-width: 750px; }
    .product-hero { min-height: auto; }.product-hero-layout { grid-template-columns: 1fr; }.product-hero-copy { max-width: 800px; padding-top: 30px; }.product-hero-device { margin-top: 15px; }.ebys-device, .pet-dashboard, .water-dashboard { width: 760px; transform: none; }
    .benefit-stats { max-width: 760px; }.reference-list-grid { grid-template-columns: 1fr 1fr; }
    .support-tool-grid, .support-contact-grid, .career-value-grid { grid-template-columns: 1fr 1fr; }.support-tool-card:last-child, .support-contact-grid article:last-child, .career-value-grid article:last-child { grid-column: 1 / -1; }.support-contact-grid article:nth-child(2), .career-value-grid article:nth-child(2) { border-right: 0; }.support-contact-grid article:last-child, .career-value-grid article:last-child { border-top: 1px solid var(--line); }
    .contact-info { position: static; }.footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }.footer-contact { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, var(--container)); }
    .section { padding: 78px 0; }
    .brand img { width: 165px; }
    .hero { padding-top: calc(var(--header-height) + 55px); }.hero h1 { font-size: 47px; }.hero-copy > p { font-size: 17px; }.hero-actions, .product-hero .hero-actions { flex-direction: column; align-items: stretch; }.button { width: 100%; }.hero-proof { gap: 18px; }.hero-proof strong { font-size: 20px; }.hero-proof span { font-size: 10px; }
    .hero-visual { min-height: 420px; margin-inline: -5px; }.visual-ring { display: none; }.dashboard-card { width: 100%; border-radius: 15px; }.dashboard-body { grid-template-columns: 42px 1fr; min-height: 320px; }.dashboard-sidebar { gap: 14px; }.side-logo { width: 26px; height: 26px; }.side-item { width: 14px; height: 14px; }.dashboard-content { padding: 12px; }.metric-row { gap: 5px; }.metric-card { min-height: 70px; padding: 8px; }.metric-card strong { font-size: 14px; }.metric-card .good { font-size: 10px; }.dash-main { grid-template-columns: 1fr; }.activity-card { display: none; }.chart-card { min-height: 150px; }.chart-bars { height: 90px; }.floating-card { display: none; }
    .trust-items i { display: none; }.trust-items { gap: 11px 18px; }.trust-items b { font-size: 10px; }
    .split-heading { gap: 24px; }.section-heading h2, .split-heading h2, .product-overview h2, .about-intro h2, .reference-intro h2, .career-intro h2 { font-size: 37px; }.section-heading p, .split-heading p { font-size: 15px; }
    .solution-grid, .feature-card-grid, .process-grid, .value-cards, .common-feature-grid, .reference-numbers, .reference-list-grid, .support-tool-grid, .support-contact-grid, .career-value-grid, .security-rules, .form-row { grid-template-columns: 1fr; }.solution-card-featured { grid-column: auto; }.solution-card { min-height: auto; }.solution-card > p { min-height: auto; }
    .process-grid article, .value-cards article, .common-feature-grid article, .reference-numbers article, .support-contact-grid article, .career-value-grid article { border-right: 0; border-bottom: 1px solid var(--line); }.common-feature-grid article { border-bottom-color: rgba(255,255,255,.1); }.process-grid article:last-child, .value-cards article:last-child, .common-feature-grid article:last-child, .reference-numbers article:last-child, .support-contact-grid article:last-child, .career-value-grid article:last-child { border-bottom: 0; }.process-grid article > span, .value-cards span, .common-feature-grid article > span, .career-value-grid span { margin-bottom: 28px; }
    .capability-section, .story-section, .benefits-section, .reference-case, .support-security, .career-apply { padding: 85px 0; }
    .product-ui-body { grid-template-columns: 38px 1fr; }.product-ui-content { padding: 12px; }.ui-filters { grid-template-columns: 1fr; }.ui-filters span:nth-child(n+2) { display: none; }.ui-tr { grid-template-columns: .9fr 1.4fr .8fr; }.ui-tr span:nth-child(3) { display: none; }.ui-title-row strong { font-size: 14px; }
    .reference-summary { grid-template-columns: 1fr 1fr; }.reference-summary > div:nth-child(3) { grid-column: 1 / -1; }.reference-track span { font-size: 11px; }
    .cta-section { padding-bottom: 75px; }.cta-card { min-height: 0; padding: 38px 27px; border-radius: 20px; }.cta-card h2 { font-size: 34px; }.cta-actions { width: 100%; }
    .page-hero, .compact-page-hero { min-height: 500px; padding-top: calc(var(--header-height) + 55px); }.page-hero h1 { font-size: 47px; }.page-hero p { font-size: 16px; }
    .rich-copy .lead { font-size: 19px; }.rich-copy p { font-size: 15px; }.mission-card { min-height: 0; padding: 31px; }.story-timeline article { grid-template-columns: 65px 1fr; }.timeline-line { left: 64px; }.story-timeline article::before { left: 60px; }
    .solution-detail-row { margin-bottom: 65px; }.solution-detail-visual { min-height: 350px; }.mini-window, .pet-console, .water-map { width: 92%; }.mini-window-body { grid-template-columns: 39px 1fr; }.mini-window-body > div { padding: 13px; }.flow-line span { font-size: 6px; padding: 6px; }.pet-console { padding: 15px; }.water-map { height: 300px; }.solution-detail-copy h2 { font-size: 47px; }
    .product-hero { padding-top: calc(var(--header-height) + 45px); }.product-hero h1 { font-size: 46px; }.product-hero-copy > p { font-size: 16px; }.product-meta { gap: 10px 15px; }.product-hero-device { min-height: 390px; margin-inline: -4px; }.ebys-device, .pet-dashboard, .water-dashboard { width: 100%; border-radius: 14px; }.ebys-device-body, .pet-dashboard-body, .water-dashboard-body { grid-template-columns: 38px 1fr; min-height: 330px; }.ebys-device-body aside, .pet-dashboard-body aside, .water-dashboard-body aside { gap: 13px; }.ebys-device-body aside i, .pet-dashboard-body aside span, .water-dashboard-body aside span { width: 13px; height: 13px; }.ebys-device-body section, .pet-dashboard-body section, .water-dashboard-body section { padding: 12px; }.flow-board > div:nth-of-type(3), .flow-board > i:nth-of-type(2), .flow-board > div:nth-of-type(4), .flow-board > i:nth-of-type(3) { display: none; }.device-list > div { grid-template-columns: 1.5fr .7fr; }.device-list > div span:nth-child(2) { display: none; }.device-float { display: none; }.pet-kpis, .water-kpis { grid-template-columns: 1fr 1fr; }.pet-kpis > div:nth-child(3), .water-kpis > div:nth-child(3) { display: none; }.pet-chart-area, .water-content-row { grid-template-columns: 1fr; }.tank-widget, .water-collection { display: none !important; }
    .benefit-stats { grid-template-columns: 1fr; }.benefit-stats article { min-height: 150px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }.benefit-stats article:last-child { border: 0; }.benefit-stats strong { margin-bottom: 25px; }
    .screen-gallery { grid-template-columns: 1fr; }.screen-card img { height: 280px; padding: 14px; }.legacy-water-showcase { grid-template-columns: 1fr; }.region-cloud { min-height: 320px; padding: 30px 20px; }
    .certificate-card img { max-height: 220px; }.support-tool-card { min-height: 320px; }.career-mail-card { padding: 30px; }.career-mail-card > a:not(.button) { font-size: 20px; word-break: break-all; }
    .contact-form-card { padding: 28px 20px; }.form-heading h2 { font-size: 29px; }.form-submit { width: 100%; }.map-location { left: 25%; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px 25px; }.footer-brand, .footer-contact { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 8px; }.site-footer { padding-top: 65px; }
}
