:root {
    --navy-950: #031524;
    --navy-900: #06233b;
    --navy-800: #0a3554;
    --navy-700: #164f72;
    --cyan-500: #10b8d3;
    --cyan-400: #43d5e8;
    --cyan-100: #dff9fc;
    --orange-500: #f59b32;
    --orange-400: #ffb85e;
    --purple-500: #8068dc;
    --green-500: #1baa72;
    --red-500: #df5a5a;
    --ink: #0f2638;
    --muted: #5f7384;
    --line: #dce7ed;
    --surface: #ffffff;
    --soft: #f3f8fa;
    --shadow-sm: 0 12px 35px rgba(10, 46, 70, .08);
    --shadow-lg: 0 30px 90px rgba(2, 24, 42, .22);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --container: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 86px; }

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
    position: fixed;
    left: 18px;
    top: -80px;
    z-index: 2000;
    padding: 10px 16px;
    border-radius: 0 0 10px 10px;
    color: #fff;
    background: var(--navy-950);
    transition: top .2s ease;
}

.skip-link:focus { top: 0; }

:focus-visible {
    outline: 3px solid rgba(16, 184, 211, .55);
    outline-offset: 3px;
}

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 110px 0; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
    border-color: rgba(9, 54, 78, .1);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 36px rgba(3, 28, 45, .08);
    backdrop-filter: blur(16px);
}

.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 82px; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--navy-900); text-decoration: none; }
.brand-mark { position: relative; display: block; flex: 0 0 auto; width: 56px; height: 56px; border: 0; border-radius: 50%; background: transparent; filter: drop-shadow(0 7px 10px rgba(8, 70, 101, .18)); clip-path: circle(50%); overflow: hidden; }
.brand-mark img { position: absolute; top: -10px; left: 50%; width: 93px; height: 93px; max-width: none; object-fit: contain; transform: translateX(-50%); }
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { font-size: 21px; font-weight: 850; letter-spacing: -.4px; }
.brand-copy small { margin-top: 5px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 1.15px; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 27px; }
.primary-nav > a { position: relative; color: #244154; font-size: 13px; font-weight: 750; text-decoration: none; }
.primary-nav > a:not(.btn):not(.developer-badge)::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--cyan-500), var(--orange-500));
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}
.primary-nav > a:not(.btn):not(.developer-badge):hover::after, .primary-nav > a:not(.btn):not(.developer-badge):focus-visible::after { transform: scaleX(1); transform-origin: left; }
.primary-nav .nav-enquire { display: none; }
.developer-badge { display: flex; align-items: center; gap: 9px; min-height: 46px; padding: 7px 11px; border: 1px solid #dce6e9; border-radius: 12px; background: rgba(255, 255, 255, .82); box-shadow: 0 7px 20px rgba(7, 48, 68, .06); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.developer-badge:hover { border-color: #efb5af; box-shadow: 0 10px 28px rgba(7, 48, 68, .11); transform: translateY(-2px); }
.developer-badge img { width: 66px; height: 23px; object-fit: contain; }
.developer-badge > span { display: grid; padding-left: 8px; border-left: 1px solid #dde6e9; line-height: 1.15; }
.developer-badge small { color: #85959e; font-size: 7px; font-weight: 800; letter-spacing: .45px; text-transform: uppercase; }
.developer-badge strong { margin-top: 3px; color: var(--navy-900); font-size: 9px; white-space: nowrap; }

.nav-toggle { display: none; width: 45px; height: 45px; padding: 11px; border: 0; border-radius: 12px; background: #edf6f8; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 3px; background: var(--navy-900); transition: transform .2s ease, opacity .2s ease; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 13px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .1px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 10px 15px; border-radius: 11px; }
.btn-outline { border-color: #b7d2de; color: var(--navy-800); background: rgba(255, 255, 255, .6); }
.btn-outline:hover { border-color: var(--navy-800); background: #fff; box-shadow: var(--shadow-sm); }
.btn-primary { color: #fff; background: linear-gradient(120deg, #087ca4, var(--cyan-500)); box-shadow: 0 14px 34px rgba(9, 154, 184, .25); }
.btn-primary:hover { box-shadow: 0 17px 38px rgba(9, 154, 184, .34); }
.btn-white { color: var(--navy-900); background: #fff; box-shadow: 0 15px 35px rgba(0, 0, 0, .15); }

.hero {
    position: relative;
    min-height: 820px;
    padding: 155px 0 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(25, 189, 215, .14), transparent 28%),
        linear-gradient(145deg, #f9fcfd 0%, #f1f9fb 58%, #fff8ef 100%);
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -3;
    opacity: .34;
    background-image: linear-gradient(rgba(15, 91, 122, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 91, 122, .06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000, transparent 82%);
    content: "";
}

.hero::after {
    position: absolute;
    right: -9%;
    bottom: -26%;
    z-index: -2;
    width: 620px;
    height: 620px;
    border: 100px solid rgba(245, 155, 50, .06);
    border-radius: 50%;
    content: "";
}

.hero-glow { position: absolute; z-index: -2; border-radius: 50%; filter: blur(6px); animation: glow-drift 9s ease-in-out infinite alternate; }
.hero-glow-one { top: 13%; left: -130px; width: 310px; height: 310px; background: rgba(84, 93, 220, .1); }
.hero-glow-two { right: 7%; bottom: 11%; width: 210px; height: 210px; background: rgba(245, 155, 50, .13); animation-delay: -3s; }

.circuit-line { position: absolute; z-index: -1; width: 300px; height: 2px; opacity: .55; background: linear-gradient(90deg, transparent, var(--cyan-500), transparent); }
.circuit-line::after { position: absolute; top: -5px; width: 11px; height: 11px; border: 2px solid var(--cyan-500); border-radius: 50%; background: #f5fbfc; content: ""; animation: circuit-run 5s linear infinite; }
.circuit-one { top: 27%; right: -60px; transform: rotate(-20deg); }
.circuit-two { bottom: 25%; left: -90px; transform: rotate(15deg); }

.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(500px, .94fr); align-items: center; gap: 70px; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 64px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px; color: var(--navy-700); font-size: 11px; font-weight: 850; letter-spacing: 1.7px; text-transform: uppercase; }
.eyebrow span { width: 27px; height: 2px; background: linear-gradient(90deg, var(--cyan-500), var(--orange-500)); }
.hero h1 { max-width: 680px; margin: 0; color: var(--navy-950); font-size: clamp(55px, 6vw, 88px); font-weight: 850; letter-spacing: -4.5px; line-height: .97; }
.hero h1 em { color: transparent; background: linear-gradient(95deg, #087ea6, #17b7ce 55%, #f39228); background-clip: text; -webkit-background-clip: text; font-style: normal; }
.hero-lead { max-width: 645px; margin: 29px 0 0; color: #4c6678; font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 35px; }
.text-link { color: var(--navy-800); font-size: 13px; font-weight: 850; text-decoration: none; }
.text-link span { display: inline-block; margin-left: 5px; transition: transform .2s ease; }
.text-link:hover span { transform: translateY(3px); }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 18px 26px; margin: 30px 0 0; padding: 0; color: #38546a; list-style: none; font-size: 12px; font-weight: 750; }
.hero-assurances li { display: flex; align-items: center; gap: 7px; }
.hero-assurances span { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; color: #fff; background: var(--green-500); font-size: 10px; }

.hero-visual { position: relative; min-height: 560px; }
.orbit { position: absolute; border: 1px solid rgba(24, 155, 184, .23); border-radius: 50%; animation: orbit-spin 22s linear infinite; }
.orbit::after { position: absolute; top: 50%; left: -5px; width: 10px; height: 10px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 20px var(--orange-400); content: ""; }
.orbit-one { inset: 11px 2px 15px 10px; }
.orbit-two { inset: 61px 48px; animation-direction: reverse; animation-duration: 17s; }

.console-card {
    position: absolute;
    top: 65px;
    right: 10px;
    left: 35px;
    z-index: 2;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 30px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 34px 90px rgba(5, 46, 70, .19);
    backdrop-filter: blur(18px);
    animation: console-float 5.5s ease-in-out infinite;
}

.console-card::before { position: absolute; inset: 0; z-index: -1; border-radius: inherit; background: linear-gradient(135deg, rgba(20, 190, 214, .08), transparent 35%, rgba(245, 155, 50, .08)); content: ""; }
.console-topbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 21px; border-bottom: 1px solid var(--line); }
.console-topbar > div { display: grid; }
.console-kicker { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 1.3px; text-transform: uppercase; }
.console-topbar strong { margin-top: 2px; color: var(--navy-900); font-size: 20px; }
.secure-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; border-radius: 20px; color: #0d7250; background: #e4f8ef; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.secure-pill i { width: 7px; height: 7px; border-radius: 50%; background: #20ae78; box-shadow: 0 0 0 4px rgba(32, 174, 120, .13); animation: status-pulse 1.8s ease infinite; }

.property-summary { display: grid; grid-template-columns: auto 1fr 58px; align-items: center; gap: 18px; margin: 22px 0; }
.pr-chip { display: grid; min-width: 128px; padding: 12px 14px; border-radius: 13px; color: #fff; background: linear-gradient(135deg, var(--navy-800), #107fa7); }
.pr-chip span, .summary-copy small { color: rgba(255, 255, 255, .7); font-size: 8px; font-weight: 850; letter-spacing: 1px; text-transform: uppercase; }
.pr-chip strong { margin-top: 1px; font-size: 15px; }
.summary-copy { display: grid; }
.summary-copy small { color: var(--muted); }
.summary-copy strong { margin-top: 2px; font-size: 15px; }
.mock-qr { display: grid; width: 58px; height: 58px; place-items: center; border: 7px solid #fff; border-radius: 9px; color: #fff; background: repeating-conic-gradient(var(--navy-900) 0 8%, transparent 0 16%) 0 / 15px 15px, #e8f3f6; box-shadow: 0 5px 14px rgba(10, 51, 77, .14); }
.mock-qr span { padding: 2px 4px; border-radius: 4px; background: var(--navy-900); font-size: 8px; font-weight: 900; letter-spacing: .5px; }

.exhibit-card { padding: 19px; border: 1px solid #dce9ed; border-radius: 18px; background: #fff; box-shadow: 0 10px 35px rgba(12, 57, 81, .06); }
.exhibit-row { display: grid; grid-template-columns: 43px 1fr auto; align-items: center; gap: 12px; }
.exhibit-icon { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 12px; color: #0d7698; background: var(--cyan-100); font-size: 11px; font-weight: 900; }
.exhibit-row > div:nth-child(2) { display: grid; }
.exhibit-row small { color: var(--muted); font-size: 9px; }
.exhibit-row strong { font-size: 13px; }
.status-dot { padding: 6px 9px; border-radius: 20px; color: #136d51; background: #e6f7f0; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.custody-track { display: flex; justify-content: space-between; margin: 24px 18px 8px; height: 3px; background: #dce8ed; }
.custody-track span { position: relative; top: -5px; width: 13px; height: 13px; border: 3px solid #dce8ed; border-radius: 50%; background: #fff; }
.custody-track .done { border-color: var(--green-500); background: var(--green-500); }
.custody-track .active { border-color: var(--orange-500); background: #fff; box-shadow: 0 0 0 5px rgba(245, 155, 50, .13); }
.track-labels { display: flex; justify-content: space-between; color: #76909e; font-size: 7px; font-weight: 800; text-transform: uppercase; }
.console-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.console-metrics > div { display: flex; align-items: center; gap: 10px; padding: 11px; border-radius: 13px; background: #f2f7f9; }
.metric-icon { display: grid; flex: 0 0 auto; width: 34px; height: 34px; place-items: center; border-radius: 10px; font-size: 9px; font-weight: 900; }
.metric-icon.cyan { color: #087d9d; background: #d9f6fa; }
.metric-icon.orange { color: #ae6110; background: #ffedd8; font-size: 17px; }
.console-metrics p { display: grid; margin: 0; line-height: 1.25; }
.console-metrics strong { font-size: 10px; }
.console-metrics small { margin-top: 3px; color: var(--muted); font-size: 8px; }

.floating-note { position: absolute; z-index: 4; display: flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255, 255, 255, .85); border-radius: 12px; color: var(--navy-800); background: rgba(255, 255, 255, .92); box-shadow: 0 14px 34px rgba(3, 35, 55, .15); font-size: 9px; font-weight: 850; backdrop-filter: blur(10px); }
.floating-note span { display: grid; min-width: 23px; height: 23px; padding: 0 4px; place-items: center; border-radius: 7px; color: #fff; background: var(--green-500); font-size: 8px; }
.note-one { top: 35px; right: -9px; animation: note-float 4s ease-in-out infinite; }
.note-two { bottom: 47px; left: 0; animation: note-float 4.8s ease-in-out infinite reverse; }
.note-two span { background: var(--purple-500); }

.hero-foot { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 28px; min-height: 95px; border-top: 1px solid rgba(18, 91, 118, .13); }
.hero-foot p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; }
.trust-points { display: flex; align-items: center; gap: 16px; color: #3d596b; font-size: 10px; font-weight: 800; }
.trust-points i { width: 4px; height: 4px; border-radius: 50%; background: var(--orange-500); }

.experience-strip { position: relative; z-index: 3; padding: 24px 0; border-bottom: 1px solid #dfe9ed; background: #fff; }
.experience-shell { display: grid; grid-template-columns: auto 1px auto 1px 1fr; align-items: center; gap: 28px; }
.experience-shell > i { width: 1px; height: 48px; background: #dce7eb; }
.experience-partner { display: flex; align-items: center; gap: 18px; }
.experience-partner > span { color: #7b8d98; font-size: 8px; font-weight: 850; letter-spacing: 1px; text-transform: uppercase; }
.experience-partner a { display: block; padding: 7px 10px; border: 1px solid #e1e8eb; border-radius: 10px; background: #fff; }
.experience-partner img { width: 110px; height: 37px; object-fit: contain; }
.experience-years { display: flex; align-items: center; gap: 12px; }
.experience-years > strong { color: transparent; background: linear-gradient(135deg, var(--navy-800), var(--cyan-500)); background-clip: text; -webkit-background-clip: text; font-size: 48px; font-weight: 900; letter-spacing: -3px; line-height: 1; }
.experience-years > span { display: grid; line-height: 1.25; }
.experience-years b { color: var(--navy-900); font-size: 12px; }
.experience-years small { margin-top: 3px; color: var(--muted); font-size: 9px; }
.experience-shell > p { max-width: 430px; margin: 0; color: #687e8c; font-size: 11px; }

.section-label { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px; color: #087a9d; font-size: 10px; font-weight: 900; letter-spacing: 1.8px; text-transform: uppercase; }
.section-label::before { width: 24px; height: 2px; background: linear-gradient(90deg, var(--cyan-500), var(--orange-500)); content: ""; }
.section-label.light { color: var(--cyan-400); }
.section-copy h2, .section-heading h2, .architecture-copy h2, .faq-copy h2, .enquiry-copy h2, .control-copy h2 { margin: 0; color: var(--navy-950); font-size: clamp(38px, 4.5vw, 61px); letter-spacing: -2.3px; line-height: 1.05; }
.section-heading { max-width: 720px; margin: 0 auto 52px; }
.section-heading.centered { text-align: center; }
.section-heading.centered .section-label { justify-content: center; }
.section-heading p { max-width: 590px; margin: 18px auto 0; color: var(--muted); }

.intro { background: #fff; }
.intro-grid { display: grid; grid-template-columns: .82fr 1fr; gap: 90px; align-items: start; }
.intro-copy > p { margin: 9px 0 31px; color: #566e7e; font-size: 17px; }
.mini-highlights { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.mini-highlights div { display: grid; padding: 21px 18px 0 0; }
.mini-highlights div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.mini-highlights strong { color: var(--navy-900); font-size: 13px; }
.mini-highlights span { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.45; }

.capabilities { background: var(--soft); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { position: relative; min-height: 365px; padding: 31px; border: 1px solid #dce9ee; border-radius: 23px; background: rgba(255, 255, 255, .93); box-shadow: 0 8px 25px rgba(4, 46, 70, .04); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.feature-card::after { position: absolute; right: -70px; bottom: -80px; width: 170px; height: 170px; border: 35px solid rgba(15, 183, 210, .04); border-radius: 50%; content: ""; transition: transform .35s ease; }
.feature-card:hover { z-index: 2; border-color: #acd8e2; box-shadow: 0 24px 60px rgba(4, 46, 70, .11); transform: translateY(-7px); }
.feature-card:hover::after { transform: scale(1.18); }
.feature-card.featured { color: #fff; border-color: transparent; background: linear-gradient(145deg, #07324f, #0a5a78); box-shadow: 0 22px 55px rgba(5, 60, 86, .22); }
.feature-card.featured h3 { color: #fff; }
.feature-card.featured p, .feature-card.featured li { color: #cae3ed; }
.feature-card.featured li::before { background: var(--orange-400); }
.feature-number { position: absolute; top: 24px; right: 25px; color: #9db1bd; font-size: 10px; font-weight: 900; letter-spacing: 1px; }
.feature-icon { display: grid; width: 50px; height: 50px; margin-bottom: 25px; place-items: center; border-radius: 14px; font-size: 12px; font-weight: 950; letter-spacing: -.4px; }
.feature-icon.blue { color: #087d9f; background: #dff7fb; }
.feature-icon.orange { color: #a65c0f; background: #ffead1; }
.feature-icon.purple { color: #6651bd; background: #ebe7fd; }
.feature-icon.green { color: #12815a; background: #dff7ee; }
.feature-icon.red { color: #a43a3a; background: #fee5e5; }
.feature-icon.teal { color: #147b74; background: #def6f3; }
.feature-card h3 { margin: 0 0 12px; color: var(--navy-900); font-size: 20px; letter-spacing: -.4px; }
.feature-card p { margin: 0; color: #607889; font-size: 13px; }
.feature-card ul { display: grid; gap: 7px; margin: 19px 0 0; padding: 0; color: #496476; font-size: 11px; list-style: none; }
.feature-card li { display: flex; align-items: center; gap: 8px; }
.feature-card li::before { flex: 0 0 auto; width: 5px; height: 5px; border-radius: 50%; background: var(--cyan-500); content: ""; }

.workflow { position: relative; color: #fff; background: var(--navy-950); overflow: hidden; }
.workflow::before { position: absolute; inset: 0; opacity: .23; background-image: radial-gradient(rgba(50, 205, 225, .28) 1px, transparent 1px); background-size: 25px 25px; content: ""; }
.workflow::after { position: absolute; top: -220px; right: -150px; width: 520px; height: 520px; border: 1px solid rgba(50, 204, 225, .15); border-radius: 50%; box-shadow: 0 0 0 70px rgba(50, 204, 225, .025), 0 0 0 140px rgba(245, 155, 50, .018); content: ""; }
.workflow .container { position: relative; z-index: 1; }
.workflow-head { display: grid; grid-template-columns: 1.1fr .75fr; align-items: end; gap: 60px; }
.workflow-head h2 { margin: 0; font-size: clamp(42px, 5vw, 66px); letter-spacing: -2.6px; line-height: 1.03; }
.workflow-head > p { margin: 0 0 4px; color: #a9c4d1; font-size: 14px; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 70px 0 0; padding: 0; list-style: none; }
.workflow-grid li { position: relative; padding: 0 30px 0 0; }
.step-number { display: grid; width: 50px; height: 50px; place-items: center; border: 1px solid rgba(255, 255, 255, .2); border-radius: 50%; color: var(--cyan-400); background: #09263c; font-size: 10px; font-weight: 900; box-shadow: 0 0 0 7px rgba(255, 255, 255, .025); }
.step-line { position: absolute; top: 25px; right: 0; left: 54px; height: 1px; background: linear-gradient(90deg, rgba(66, 214, 232, .65), rgba(255, 255, 255, .07)); }
.workflow-grid li:last-child .step-line { display: none; }
.workflow-grid h3 { margin: 23px 0 8px; font-size: 21px; }
.workflow-grid p { max-width: 230px; margin: 0; color: #9cb9c7; font-size: 12px; }

.architecture { background: #fff; }
.architecture-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }
.architecture-visual { position: relative; display: grid; justify-items: center; min-height: 540px; padding: 40px; border: 1px solid #d8e8ee; border-radius: 30px; background: radial-gradient(circle at 50% 36%, rgba(30, 190, 214, .11), transparent 35%), #f7fbfc; overflow: hidden; }
.architecture-visual::before { position: absolute; inset: 0; opacity: .55; background-image: linear-gradient(rgba(18, 117, 150, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(18, 117, 150, .055) 1px, transparent 1px); background-size: 30px 30px; content: ""; }
.network-card { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; min-width: 185px; padding: 13px 15px; border: 1px solid #d6e6eb; border-radius: 14px; background: rgba(255, 255, 255, .96); box-shadow: 0 12px 30px rgba(6, 50, 73, .09); }
.provider-card { align-self: start; min-width: 225px; border-color: rgba(255, 255, 255, .2); color: #fff; background: linear-gradient(135deg, var(--navy-900), #0d6c8a); }
.network-icon { display: grid; flex: 0 0 auto; width: 38px; height: 38px; place-items: center; border-radius: 11px; color: #fff; background: var(--orange-500); font-size: 9px; font-weight: 900; }
.network-icon.cyan { background: var(--cyan-500); }
.network-icon.orange { background: var(--orange-500); }
.network-icon.purple { background: var(--purple-500); }
.network-card > div { display: grid; line-height: 1.25; }
.network-card small { color: #718793; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.provider-card small { color: #bcd9e4; }
.network-card strong { margin-top: 2px; font-size: 11px; }
.network-branch { position: absolute; top: 115px; width: 52%; height: 95px; border-right: 1px solid #8bcbd7; border-bottom: 1px solid #8bcbd7; border-left: 1px solid #8bcbd7; border-radius: 0 0 20px 20px; }
.network-branch::before { position: absolute; top: -36px; left: calc(50% - .5px); width: 1px; height: 36px; background: #8bcbd7; content: ""; }
.network-branch i { position: absolute; bottom: -5px; width: 9px; height: 9px; border: 2px solid #22a7c0; border-radius: 50%; background: #fff; }
.network-branch i:first-child { left: -5px; }.network-branch i:nth-child(2) { left: calc(50% - 4px); }.network-branch i:last-child { right: -5px; }
.district-node { position: relative; z-index: 3; align-self: center; display: grid; min-width: 190px; padding: 13px 20px; border-radius: 14px; text-align: center; background: #e3f7fa; box-shadow: 0 8px 22px rgba(12, 112, 139, .1); }
.district-node span { color: #398396; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.district-node strong { color: var(--navy-800); font-size: 13px; }
.station-grid { position: relative; z-index: 2; align-self: end; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; width: 100%; }
.station-grid .network-card { min-width: 0; padding: 11px; }
.station-grid .network-icon { width: 33px; height: 33px; }
.station-grid strong { font-size: 9px; }
.architecture-copy > p { margin: 22px 0 28px; color: var(--muted); font-size: 16px; }
.check-list { display: grid; gap: 11px; }
.check-list > div { display: flex; align-items: flex-start; gap: 13px; padding: 14px 16px; border: 1px solid #e0e9ed; border-radius: 14px; transition: border-color .2s ease, transform .2s ease; }
.check-list > div:hover { border-color: #acd7e1; transform: translateX(4px); }
.check-list > div > span { display: grid; flex: 0 0 auto; width: 27px; height: 27px; place-items: center; border-radius: 9px; color: #fff; background: var(--green-500); font-size: 11px; font-weight: 900; }
.check-list p { display: grid; margin: 0; line-height: 1.35; }
.check-list strong { font-size: 13px; }
.check-list small { margin-top: 4px; color: var(--muted); font-size: 10px; }

.control { padding-top: 0; background: #fff; }
.control-shell { position: relative; display: grid; grid-template-columns: 1fr .9fr; align-items: center; gap: 85px; padding: 70px; border-radius: 35px; color: #fff; background: linear-gradient(135deg, #06243c, #0a5975); box-shadow: var(--shadow-lg); overflow: hidden; }
.control-shell::before { position: absolute; top: -120px; right: -100px; width: 420px; height: 420px; border: 1px solid rgba(255, 255, 255, .1); border-radius: 50%; box-shadow: 0 0 0 60px rgba(255, 255, 255, .025), 0 0 0 120px rgba(255, 255, 255, .016); content: ""; }
.control-copy { position: relative; z-index: 1; }
.control-copy h2 { color: #fff; }
.control-copy > p { margin: 20px 0 28px; color: #c5dce5; }
.status-board { position: relative; z-index: 1; padding: 21px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 22px; background: rgba(2, 22, 37, .37); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12); backdrop-filter: blur(12px); }
.board-head { display: flex; align-items: center; justify-content: space-between; padding: 2px 4px 16px; }
.board-head strong { font-size: 15px; }.board-head span { color: #8fb4c3; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.status-row { display: grid; grid-template-columns: 37px 1fr auto; align-items: center; gap: 11px; padding: 12px; border-radius: 13px; background: rgba(255, 255, 255, .08); }
.status-row + .status-row { margin-top: 8px; }
.status-symbol { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 10px; font-size: 10px; font-weight: 900; }
.status-symbol.store { color: #54d7eb; background: rgba(67, 213, 232, .14); }
.status-symbol.zimma { color: #c4b5fd; background: rgba(128, 104, 220, .18); }
.status-symbol.lab { color: #ffc27a; background: rgba(245, 155, 50, .17); }
.status-symbol.disposed { color: #69e2ad; background: rgba(27, 170, 114, .16); }
.status-row p { display: grid; margin: 0; line-height: 1.3; }.status-row strong { font-size: 11px; }.status-row small { margin-top: 3px; color: #9fbdc8; font-size: 8px; }
.status-row i { padding: 5px 7px; border-radius: 8px; color: #bad5df; background: rgba(255, 255, 255, .08); font-size: 7px; font-style: normal; font-weight: 800; text-transform: uppercase; }

.benefits { background: var(--soft); }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-grid article { padding: 29px 25px; border-top: 3px solid #c8e9ef; border-radius: 5px 5px 18px 18px; background: #fff; box-shadow: var(--shadow-sm); }
.benefit-grid article:nth-child(2) { border-color: #ffcf97; }.benefit-grid article:nth-child(3) { border-color: #cfc6fa; }.benefit-grid article:nth-child(4) { border-color: #a6e3ca; }
.benefit-grid article > span { color: #91a6b2; font-size: 9px; font-weight: 900; letter-spacing: 1px; }
.benefit-grid h3 { margin: 15px 0 8px; color: var(--navy-900); font-size: 17px; }
.benefit-grid p { margin: 0; color: var(--muted); font-size: 12px; }

.faq { background: #fff; }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; align-items: start; gap: 95px; }
.faq-copy { position: sticky; top: 120px; }
.faq-copy > p { margin: 20px 0 27px; color: var(--muted); }
.contact-inline { display: inline-flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid #d6e6eb; border-radius: 14px; text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-inline:hover { border-color: #8dcbd8; box-shadow: var(--shadow-sm); }
.contact-inline > span { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 11px; color: #fff; background: var(--navy-800); }
.contact-inline > div { display: grid; line-height: 1.3; }.contact-inline small { color: var(--muted); font-size: 8px; text-transform: uppercase; }.contact-inline strong { color: var(--navy-900); font-size: 13px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 23px 0; cursor: pointer; color: var(--navy-900); font-size: 16px; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; flex: 0 0 auto; width: 28px; height: 28px; place-items: center; border-radius: 9px; color: #0c7b9e; background: var(--cyan-100); font-size: 18px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 680px; margin: -5px 48px 24px 0; color: var(--muted); font-size: 13px; }

.enquiry { position: relative; color: #fff; background: var(--navy-950); overflow: hidden; }
.enquiry::before { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(65, 202, 222, .2) 1px, transparent 1px), linear-gradient(90deg, rgba(65, 202, 222, .2) 1px, transparent 1px); background-size: 54px 54px; mask-image: linear-gradient(90deg, #000, transparent 68%); content: ""; }
.enquiry::after { position: absolute; right: -190px; bottom: -260px; width: 650px; height: 650px; border: 110px solid rgba(245, 155, 50, .055); border-radius: 50%; content: ""; }
.enquiry-shell { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; gap: 90px; }
.enquiry-copy h2 { color: #fff; }
.enquiry-copy > p { margin: 22px 0 31px; color: #aac4cf; font-size: 16px; }
.enquiry-details { display: grid; gap: 11px; }
.enquiry-details a { display: flex; align-items: center; gap: 12px; width: fit-content; text-decoration: none; }
.enquiry-details a > span { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 12px; color: var(--cyan-400); background: rgba(255, 255, 255, .06); font-size: 10px; font-weight: 900; }
.enquiry-details a > div { display: grid; line-height: 1.3; }.enquiry-details small { color: #7fa3b2; font-size: 8px; text-transform: uppercase; }.enquiry-details strong { font-size: 13px; }
.enquiry-form { padding: 31px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 26px; color: var(--ink); background: rgba(255, 255, 255, .97); box-shadow: 0 30px 80px rgba(0, 0, 0, .25); }
.form-head { display: grid; margin-bottom: 21px; line-height: 1.3; }.form-head span { color: #1285a6; font-size: 9px; font-weight: 900; letter-spacing: 1.3px; text-transform: uppercase; }.form-head strong { margin-top: 2px; color: var(--navy-900); font-size: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: grid; gap: 6px; }
.field > span { color: #425d6e; font-size: 9px; font-weight: 850; letter-spacing: .3px; }
.field input, .field select, .field textarea { width: 100%; min-height: 45px; padding: 11px 13px; border: 1px solid #d5e3e9; border-radius: 10px; color: var(--ink); background: #f9fbfc; font-size: 12px; outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field textarea { min-height: 100px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #9badb7; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--cyan-500); background: #fff; box-shadow: 0 0 0 3px rgba(16, 184, 211, .12); }
.full-field { grid-column: 1 / -1; }
.consent { display: flex; align-items: flex-start; gap: 8px; margin: 16px 0; color: #617683; font-size: 9px; cursor: pointer; }
.consent input { margin-top: 2px; accent-color: var(--cyan-500); }
.form-submit { width: 100%; border: 0; }
.form-note { margin: 10px 0 0; color: #82949e; font-size: 8px; text-align: center; }
.form-status { min-height: 0; margin: 8px 0 0; color: #12815a; font-size: 10px; font-weight: 750; text-align: center; }

.site-footer { color: #9ab5c2; background: #02101c; }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 50px; min-height: 150px; border-bottom: 1px solid rgba(255, 255, 255, .08); }
.footer-brand { color: #fff; }.footer-brand .brand-mark { width: 62px; height: 62px; }.footer-brand .brand-mark img { top: -11px; width: 103px; height: 103px; }.footer-brand .brand-copy small { color: #7896a5; }
.footer-developer { display: grid; justify-self: center; gap: 8px; }
.footer-developer > span { color: #6f8c9a; font-size: 7px; font-weight: 850; letter-spacing: 1px; text-align: center; text-transform: uppercase; }
.footer-developer a { display: flex; align-items: center; gap: 13px; padding: 10px 13px; border: 1px solid rgba(255, 255, 255, .11); border-radius: 12px; background: rgba(255, 255, 255, .95); text-decoration: none; }
.footer-developer img { width: 92px; height: 31px; object-fit: contain; }
.footer-developer small { padding-left: 12px; border-left: 1px solid #dde4e7; color: #3b5361; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.footer-links a { font-size: 10px; font-weight: 750; text-decoration: none; transition: color .2s ease; }.footer-links a:hover { color: var(--cyan-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 65px; font-size: 9px; }
.footer-bottom a { color: var(--orange-400); font-weight: 850; text-decoration: none; }

.floating-actions { position: fixed; right: 21px; bottom: 22px; z-index: 900; display: grid; gap: 10px; justify-items: end; }
.floating-button { display: flex; align-items: center; gap: 9px; min-height: 49px; padding: 6px 13px 6px 7px; border-radius: 28px; color: #fff; box-shadow: 0 12px 28px rgba(3, 32, 48, .24); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.floating-button:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px rgba(3, 32, 48, .3); }
.floating-button span { display: grid; width: 37px; height: 37px; place-items: center; border: 1px solid rgba(255, 255, 255, .25); border-radius: 50%; background: rgba(255, 255, 255, .13); font-size: 12px; font-weight: 900; }
.floating-button em { font-size: 10px; font-style: normal; font-weight: 850; }
.floating-call { background: linear-gradient(135deg, #087fa8, #0bb2c9); }
.floating-whatsapp { background: linear-gradient(135deg, #159a55, #25d366); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, .7, .2, 1); }
.reveal.reveal-delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes glow-drift { to { transform: translate(35px, -18px) scale(1.08); } }
@keyframes circuit-run { from { left: 0; } to { left: calc(100% - 11px); } }
@keyframes orbit-spin { to { transform: rotate(360deg); } }
@keyframes console-float { 0%, 100% { transform: translateY(0) rotate(.35deg); } 50% { transform: translateY(-9px) rotate(-.25deg); } }
@keyframes note-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes status-pulse { 0%, 100% { box-shadow: 0 0 0 3px rgba(32, 174, 120, .13); } 50% { box-shadow: 0 0 0 7px rgba(32, 174, 120, .04); } }

@media (max-width: 1050px) {
    .primary-nav { gap: 19px; }
    .primary-nav > a { font-size: 11px; }
    .developer-badge > span { display: none; }
    .developer-badge img { width: 58px; }
    .hero-grid { grid-template-columns: 1fr .9fr; gap: 25px; }
    .hero h1 { font-size: 64px; }
    .hero-visual { transform: scale(.9); transform-origin: center right; }
    .feature-grid { grid-template-columns: repeat(2, 1fr); }
    .architecture-grid, .control-shell { gap: 50px; }
    .station-grid { grid-template-columns: 1fr; width: 80%; }
    .architecture-visual { min-height: 650px; }
    .network-branch { height: 190px; }
    .benefit-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
    .section-pad { padding: 85px 0; }
    .nav-shell { min-height: 72px; }
    .brand-mark { width: 49px; height: 49px; }.brand-mark img { top: -9px; width: 81px; height: 81px; }.brand-copy strong { font-size: 18px; }
    .nav-toggle { display: block; }
    .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-7px) rotate(-45deg); }
    .primary-nav { position: fixed; top: 72px; right: 0; bottom: 0; left: 0; display: grid; align-content: start; gap: 0; padding: 20px; background: rgba(255, 255, 255, .98); transform: translateX(100%); transition: transform .3s ease; }
    .primary-nav.open { transform: translateX(0); }
    .primary-nav > a { padding: 16px 8px; border-bottom: 1px solid var(--line); font-size: 14px; }
    .primary-nav > a::after { display: none; }
    .primary-nav .nav-enquire { display: block; }
    .primary-nav .btn { margin-top: 18px; }
    .primary-nav .developer-badge { justify-content: center; margin-top: 18px; padding: 13px; border: 1px solid #dce6e9; }
    .primary-nav .developer-badge img { width: 92px; height: 32px; }
    .primary-nav .developer-badge > span { display: grid; }
    .experience-shell { grid-template-columns: 1fr 1px auto; }
    .experience-shell > i:nth-of-type(2), .experience-shell > p { display: none; }

    .hero { min-height: auto; padding-top: 125px; }
    .hero-grid { grid-template-columns: 1fr; gap: 0; }
    .hero-copy { padding-bottom: 20px; }
    .hero h1 { font-size: clamp(52px, 12vw, 75px); }
    .hero-visual { width: min(100%, 610px); margin: 5px auto 20px; transform: none; }
    .hero-foot { align-items: flex-start; flex-direction: column; justify-content: center; padding: 26px 0; }
    .trust-points { flex-wrap: wrap; }

    .intro-grid, .architecture-grid, .control-shell, .faq-grid, .enquiry-shell { grid-template-columns: 1fr; gap: 48px; }
    .intro-grid { gap: 28px; }
    .workflow-head { grid-template-columns: 1fr; gap: 22px; }
    .workflow-grid { grid-template-columns: repeat(2, 1fr); gap: 42px 0; }
    .workflow-grid li:nth-child(2) .step-line { display: none; }
    .architecture-visual { order: 2; }
    .control-shell { padding: 50px; }
    .faq-copy { position: static; }
    .enquiry-shell { align-items: start; }
    .footer-main { grid-template-columns: 1fr; gap: 18px; padding: 35px 0; }
    .footer-developer { justify-self: start; }
    .footer-developer > span { text-align: left; }
    .footer-links { justify-content: flex-start; }
}

@media (max-width: 620px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .section-pad { padding: 68px 0; }
    .brand-copy small { display: none; }
    .hero { padding-top: 112px; }
    .hero h1 { font-size: 49px; letter-spacing: -2.8px; }
    .hero-lead { margin-top: 21px; font-size: 15px; }
    .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
    .hero-actions .btn { width: 100%; }
    .text-link { text-align: center; }
    .hero-assurances { display: grid; gap: 10px; }
    .hero-visual { min-height: 470px; margin-top: 14px; }
    .console-card { top: 35px; right: 4px; left: 4px; padding: 18px; border-radius: 23px; }
    .console-topbar strong { font-size: 16px; }
    .property-summary { grid-template-columns: 1fr auto; gap: 12px; }
    .summary-copy { display: none; }
    .pr-chip { min-width: 0; }
    .console-metrics { grid-template-columns: 1fr; }
    .note-one { top: 6px; right: -2px; }.note-two { bottom: 8px; left: 7px; }
    .orbit-one { inset: 0; }
    .hero-foot p { line-height: 1.4; }
    .trust-points { gap: 10px; }
    .trust-points i { display: none; }
    .trust-points span { padding: 5px 8px; border-radius: 8px; background: rgba(255, 255, 255, .8); }
    .experience-strip { padding: 21px 0; }
    .experience-shell { grid-template-columns: 1fr; gap: 16px; }
    .experience-shell > i { display: none; }
    .experience-partner { justify-content: space-between; gap: 12px; }
    .experience-partner > span { max-width: 95px; line-height: 1.35; }
    .experience-partner img { width: 100px; }
    .experience-years { padding-top: 14px; border-top: 1px solid #dce7eb; }

    .section-copy h2, .section-heading h2, .architecture-copy h2, .faq-copy h2, .enquiry-copy h2, .control-copy h2 { font-size: 37px; letter-spacing: -1.7px; }
    .mini-highlights { grid-template-columns: 1fr; }
    .mini-highlights div, .mini-highlights div + div { padding: 14px 0; border-bottom: 1px solid var(--line); border-left: 0; }
    .feature-grid, .benefit-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 0; padding: 26px; }
    .workflow-grid { grid-template-columns: 1fr; gap: 34px; }
    .workflow-grid li { display: grid; grid-template-columns: 52px 1fr; gap: 0 14px; padding: 0; }
    .workflow-grid .step-line { top: 50px; right: auto; bottom: -34px; left: 25px; width: 1px; height: auto; background: linear-gradient(#43d5e8, rgba(255,255,255,.06)); }
    .workflow-grid li:nth-child(2) .step-line { display: block; }
    .workflow-grid li:last-child .step-line { display: none; }
    .workflow-grid h3 { align-self: center; margin: 0; }
    .workflow-grid p { grid-column: 2; margin-top: 7px; }

    .architecture-visual { min-height: 625px; padding: 26px 16px; }
    .network-branch { width: 70%; }
    .station-grid { width: 95%; }
    .control-shell { width: calc(100% - 18px); padding: 38px 22px; border-radius: 26px; }
    .status-board { padding: 13px; }
    .status-row { grid-template-columns: 34px 1fr; }
    .status-row > i { display: none; }

    .faq-list summary { padding: 20px 0; font-size: 14px; }
    .enquiry-form { padding: 22px 17px; }
    .form-grid { grid-template-columns: 1fr; }
    .full-field { grid-column: auto; }
    .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
    .footer-developer a { align-items: flex-start; flex-direction: column; }
    .footer-developer small { padding: 8px 0 0; border-top: 1px solid #dde4e7; border-left: 0; }
    .floating-actions { right: 13px; bottom: 14px; }
    .floating-button { width: 50px; min-height: 50px; padding: 6px; border-radius: 50%; }
    .floating-button span { width: 38px; height: 38px; }
    .floating-button em { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
