:root {
  --ink: #07182d;
  --ink-2: #0d2745;
  --ink-3: #15385d;
  --cyan: #38d4f2;
  --cyan-2: #0aa9d2;
  --lime: #c7f36b;
  --paper: #f6fbff;
  --white: #ffffff;
  --muted: #5e7187;
  --line: #d9e6f0;
  --soft: #eaf6fb;
  --shadow: 0 24px 70px rgba(7, 24, 45, 0.12);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 36px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, h4 { margin-top: 0; }
p:last-child { margin-bottom: 0; }
.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(217,230,240,.78);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 35px rgba(7,24,45,.08); }
.header-inner { min-height: 78px; display: flex; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: var(--cyan);
  background: var(--ink);
  border-radius: 12px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: -.08em;
}
.brand-mark b { color: var(--lime); font-size: 17px; }
.brand-name { font-size: 21px; font-weight: 800; letter-spacing: -.045em; }
.brand-name span { color: var(--cyan-2); }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.site-nav > a, .nav-group > button {
  position: relative;
  padding: 27px 0;
  color: #253b52;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: .94rem;
  font-weight: 700;
}
.site-nav > a::after, .nav-group > button::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--cyan-2);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after,
.nav-group > button:hover::after, .nav-group.is-open > button::after { transform: scaleX(1); }
.nav-group { position: relative; }
.nav-group > button span { margin-left: 4px; font-size: 13px; }
.nav-dropdown {
  position: absolute;
  top: calc(100% - 10px);
  left: 50%;
  width: 270px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: .2s ease;
}
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown, .nav-group.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.nav-dropdown a { display: flex; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 10px; font-weight: 750; }
.nav-dropdown a:hover, .nav-dropdown a:focus { background: var(--soft); }
.nav-dropdown small { color: var(--muted); font-size: .73rem; font-weight: 600; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); background: var(--white); border-radius: 12px; }
.nav-toggle span { display: block; width: 100%; height: 2px; margin: 4px 0; background: var(--ink); transition: .2s ease; }

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--lime);
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(199,243,107,.2);
  font-size: .94rem;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover, .button:focus { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(199,243,107,.28); }
.button svg { width: 18px; height: 18px; }
.button-small { min-height: 42px; padding-inline: 17px; font-size: .88rem; }
.button-secondary { color: var(--white); background: transparent; border-color: rgba(255,255,255,.3); box-shadow: none; }
.button-secondary:hover, .button-secondary:focus { background: rgba(255,255,255,.08); box-shadow: none; }
.button-dark { color: var(--white); background: var(--ink); border-color: var(--ink); box-shadow: 0 14px 28px rgba(7,24,45,.18); }
.button-dark:hover, .button-dark:focus { background: var(--ink-2); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 800; }
.text-link svg { width: 17px; height: 17px; transition: transform .2s ease; }
.text-link:hover svg, .text-link:focus svg { transform: translateX(4px); }

.eyebrow { margin-bottom: 16px; color: var(--cyan-2); font-size: .78rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow-light { color: var(--cyan); }
.display {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6.2vw, 5.7rem);
  line-height: .98;
  letter-spacing: -.065em;
  text-wrap: balance;
}
.display .accent { color: var(--cyan); }
.lead { max-width: 700px; color: #b9cbe0; font-size: clamp(1.05rem, 2vw, 1.24rem); line-height: 1.7; }
.section-title { max-width: 780px; margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.7rem); line-height: 1.08; letter-spacing: -.05em; text-wrap: balance; }
.section-intro { max-width: 700px; color: var(--muted); font-size: 1.08rem; }
.section-heading { margin-bottom: 42px; }
.section-heading-split { display: flex; justify-content: space-between; align-items: end; gap: 32px; }
.section-heading-split .section-intro { max-width: 490px; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.hero::before {
  position: absolute;
  content: "";
  width: 760px;
  height: 760px;
  top: -420px;
  right: -180px;
  border: 1px solid rgba(56,212,242,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(56,212,242,.025), 0 0 0 220px rgba(56,212,242,.02);
}
.hero::after {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(rgba(104,228,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(104,228,255,.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, transparent 8%, #000 55%, transparent 100%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; min-height: 720px; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); align-items: center; gap: 70px; padding-block: 92px; }
.hero-copy { max-width: 760px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 52px; padding: 0; list-style: none; }
.hero-proof li { display: flex; align-items: center; gap: 9px; color: #d5e3f1; font-size: .9rem; font-weight: 700; }
.hero-proof li::before { width: 7px; height: 7px; content: ""; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 5px rgba(199,243,107,.12); }
.system-card { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; }
.system-orbit { position: absolute; width: 400px; height: 400px; border: 1px solid rgba(104,228,255,.18); border-radius: 50%; }
.system-orbit::before, .system-orbit::after { position: absolute; content: ""; inset: 55px; border: 1px solid rgba(104,228,255,.12); border-radius: inherit; }
.system-orbit::after { inset: 110px; }
.system-core {
  position: relative;
  z-index: 2;
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 34px;
  box-shadow: 0 0 0 18px rgba(199,243,107,.08), 0 28px 80px rgba(0,0,0,.3);
  transform: rotate(-4deg);
}
.system-core strong { display: block; font-size: 2.2rem; line-height: 1; letter-spacing: -.06em; }
.system-core span { display: block; margin-top: 8px; font-size: .75rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.system-node { position: absolute; z-index: 3; width: 132px; padding: 15px; color: #d7e8f8; background: rgba(14,43,75,.9); border: 1px solid rgba(104,228,255,.18); border-radius: 15px; box-shadow: 0 14px 40px rgba(0,0,0,.18); backdrop-filter: blur(12px); font-size: .78rem; font-weight: 750; }
.system-node::before { display: inline-block; width: 7px; height: 7px; margin-right: 7px; content: ""; background: var(--cyan); border-radius: 50%; }
.node-one { top: 44px; left: 16px; }
.node-two { top: 120px; right: -20px; }
.node-three { bottom: 52px; left: 5px; }
.node-four { right: 20px; bottom: 18px; }

.trust-bar { background: var(--soft); border-bottom: 1px solid var(--line); }
.trust-inner { min-height: 88px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.trust-item { padding: 14px 24px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--ink); font-size: .94rem; }
.trust-item span { color: var(--muted); font-size: .81rem; }

.section { padding-block: 110px; }
.section-soft { background: var(--paper); }
.section-dark { color: var(--white); background: var(--ink); }
.section-dark .section-intro { color: #abc0d5; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card, .product-card, .value-card, .feature-card {
  position: relative;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card:hover, .product-card:hover, .feature-card:hover { transform: translateY(-5px); border-color: #abd8e6; box-shadow: var(--shadow); }
.icon-box { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 24px; color: var(--cyan-2); background: var(--soft); border-radius: 14px; }
.icon-box svg { width: 25px; height: 25px; }
.service-card h3, .product-card h3, .value-card h3, .feature-card h3 { margin-bottom: 10px; font-size: 1.24rem; line-height: 1.3; letter-spacing: -.025em; }
.service-card p, .product-card p, .value-card p, .feature-card p { color: var(--muted); font-size: .94rem; }
.service-card .text-link, .product-card .text-link { margin-top: 20px; font-size: .88rem; }
.service-card-dark { color: var(--white); background: var(--ink-2); border-color: rgba(104,228,255,.13); }
.service-card-dark p { color: #abc0d5; }
.service-card-dark .icon-box { color: var(--lime); background: rgba(199,243,107,.1); }
.service-card-dark .text-link { color: var(--cyan); }

.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.product-card { min-height: 310px; display: flex; flex-direction: column; grid-column: span 4; overflow: hidden; }
.product-card-wide { grid-column: span 6; }
.product-card::after { position: absolute; content: ""; width: 160px; height: 160px; right: -80px; bottom: -80px; background: var(--soft); border-radius: 50%; }
.product-card .product-label { margin-bottom: 42px; color: var(--cyan-2); font-size: .72rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.product-card h3 { font-size: 1.55rem; }
.product-card .text-link { margin-top: auto; }
.product-card-featured { color: var(--white); background: var(--ink); border-color: var(--ink); }
.product-card-featured p { color: #b5c9dc; }
.product-card-featured::after { background: rgba(56,212,242,.08); }
.product-card-featured .product-label, .product-card-featured .text-link { color: var(--lime); }

.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-grid::before { position: absolute; content: ""; top: 27px; right: 12%; left: 12%; height: 1px; background: rgba(104,228,255,.22); }
.process-step { position: relative; z-index: 1; }
.process-number { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 22px; color: var(--ink); background: var(--cyan); border: 7px solid var(--ink); border-radius: 50%; font-weight: 900; }
.process-step h3 { font-size: 1.14rem; }
.process-step p { color: #abc0d5; font-size: .9rem; }

.cta-band { position: relative; overflow: hidden; padding-block: 84px; color: var(--ink); background: var(--lime); }
.cta-band::after { position: absolute; content: ""; width: 420px; height: 420px; right: -110px; top: -190px; border: 1px solid rgba(7,24,45,.16); border-radius: 50%; box-shadow: 0 0 0 80px rgba(7,24,45,.035), 0 0 0 160px rgba(7,24,45,.025); }
.cta-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 50px; }
.cta-band h2 { max-width: 720px; margin-bottom: 10px; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.05em; }
.cta-band p { max-width: 630px; color: #314221; }

.page-hero { position: relative; overflow: hidden; padding-block: 96px 88px; color: var(--white); background: var(--ink); }
.page-hero::after { position: absolute; content: ""; width: 420px; height: 420px; right: -80px; top: -260px; border: 1px solid rgba(56,212,242,.22); border-radius: 50%; box-shadow: 0 0 0 80px rgba(56,212,242,.035), 0 0 0 160px rgba(56,212,242,.02); }
.page-hero .shell { position: relative; z-index: 1; }
.page-hero h1 { max-width: 900px; margin-bottom: 22px; font-size: clamp(2.7rem, 6vw, 5.2rem); line-height: 1; letter-spacing: -.06em; text-wrap: balance; }
.page-hero p { max-width: 720px; color: #b8ccdf; font-size: 1.12rem; }
.breadcrumb { margin-bottom: 34px; color: #8fa9c1; font-size: .82rem; font-weight: 700; }
.breadcrumb a { color: var(--cyan); }

.split-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(360px,.7fr); gap: 80px; align-items: start; }
.story-copy p { color: #486079; font-size: 1.04rem; }
.story-copy .section-title { font-size: clamp(2rem, 4vw, 3.35rem); }
.fact-panel { position: sticky; top: 110px; padding: 32px; color: var(--white); background: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow); }
.fact-panel h3 { font-size: 1.25rem; }
.fact-list { margin: 24px 0 0; padding: 0; list-style: none; }
.fact-list li { display: flex; gap: 13px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); color: #c4d5e5; font-size: .93rem; }
.fact-list svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--lime); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { min-height: 225px; }
.value-number { margin-bottom: 34px; color: var(--cyan-2); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }

.office-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.office-card { padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.office-card .office-type { color: var(--cyan-2); font-size: .75rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.office-card h3 { margin: 12px 0 8px; font-size: 1.2rem; }
.office-card address { color: var(--muted); font-style: normal; font-size: .92rem; }

.technology-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.technology-row span { padding: 10px 15px; color: #22405d; background: var(--soft); border: 1px solid #d5eaf1; border-radius: 999px; font-size: .84rem; font-weight: 750; }

.product-hero { padding-block: 92px; color: var(--white); background: var(--ink); }
.product-hero-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(320px,.7fr); gap: 80px; align-items: center; }
.product-hero h1 { max-width: 820px; margin-bottom: 22px; font-size: clamp(2.8rem, 5.5vw, 5rem); line-height: .98; letter-spacing: -.06em; }
.product-hero .lead { max-width: 680px; }
.product-panel { padding: 28px; background: var(--ink-2); border: 1px solid rgba(104,228,255,.16); border-radius: var(--radius); }
.product-panel > span { color: var(--cyan); font-size: .74rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.product-panel h2 { margin: 15px 0 12px; font-size: 1.45rem; line-height: 1.25; }
.product-panel p { color: #b7cadd; font-size: .93rem; }
.delivery-options { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.delivery-card { padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.delivery-card .icon-box { color: var(--ink); background: var(--lime); }
.delivery-card h3 { font-size: 1.45rem; }
.delivery-card p { color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.feature-card { min-height: 220px; }
.feature-card::before { display: block; width: 34px; height: 4px; margin-bottom: 26px; content: ""; background: var(--cyan); border-radius: 4px; }
.comparison { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.comparison table { width: 100%; min-width: 680px; border-collapse: collapse; }
.comparison th, .comparison td { padding: 20px 24px; text-align: left; border-bottom: 1px solid var(--line); }
.comparison tr:last-child td { border-bottom: 0; }
.comparison th { color: var(--white); background: var(--ink); font-size: .9rem; }
.comparison td:first-child { color: var(--ink); font-weight: 800; }
.comparison td { color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: minmax(320px,.7fr) minmax(0,1fr); gap: 70px; align-items: start; }
.contact-card { padding: 34px; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.contact-card h2 { margin-bottom: 8px; font-size: 1.55rem; }
.contact-card > p { color: #aec3d6; }
.contact-details { margin: 28px 0 0; padding: 0; list-style: none; }
.contact-details li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); }
.contact-details svg { width: 22px; height: 22px; color: var(--lime); }
.contact-details strong { display: block; color: var(--white); font-size: .9rem; }
.contact-details span, .contact-details a { color: #b9ccdd; font-size: .9rem; }
.form-panel { padding: 38px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-panel h2 { margin-bottom: 7px; font-size: 1.8rem; letter-spacing: -.035em; }
.form-panel > p { color: var(--muted); }
.wpcf7-form { margin-top: 26px; }
.form-grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.wpcf7-form label { display: block; color: #233d58; font-size: .86rem; font-weight: 800; }
.wpcf7-form-control-wrap { display: block; margin-top: 7px; }
.wpcf7-form input:not([type="submit"]), .wpcf7-form textarea, .wpcf7-form select {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
.wpcf7-form textarea { min-height: 125px; resize: vertical; }
.wpcf7-form input:focus, .wpcf7-form textarea:focus, .wpcf7-form select:focus { border-color: var(--cyan-2); box-shadow: 0 0 0 4px rgba(10,169,210,.1); }
.wpcf7-form p { margin-bottom: 18px; }
.wpcf7-submit { min-width: 170px; min-height: 50px; color: var(--white); background: var(--ink); border: 0; border-radius: 12px; cursor: pointer; font-weight: 800; }
.wpcf7-submit:hover, .wpcf7-submit:focus { background: var(--ink-2); }
.wpcf7-spinner { vertical-align: middle; }
.wpcf7-response-output { margin-inline: 0 !important; border-radius: 10px; }
.wpcf7-not-valid-tip { margin-top: 5px; font-size: .8rem; }
.grecaptcha-badge { visibility: hidden; }
.privacy-note { margin-top: 18px; color: var(--muted); font-size: .8rem; }

.content-page { padding-block: 90px; }
.content-page article { max-width: 820px; }
.content-page h1 { font-size: clamp(2.5rem,5vw,4.4rem); line-height: 1.02; letter-spacing: -.055em; }
.content-page .entry-content { color: #486079; }
.error-page { min-height: 65vh; display: grid; place-items: center; padding-block: 100px; text-align: center; }
.error-code { margin-bottom: 15px; color: var(--cyan-2); font-size: .8rem; font-weight: 900; letter-spacing: .16em; }
.error-page h1 { font-size: clamp(2.6rem,6vw,5rem); line-height: 1; letter-spacing: -.06em; }
.error-page p { max-width: 570px; margin-inline: auto; color: var(--muted); }

.site-footer { padding-top: 80px; color: #a9bdd1; background: #04101f; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr 1fr; gap: 54px; }
.brand-light .brand-name { color: var(--white); }
.footer-brand p { max-width: 340px; margin-top: 22px; color: #90a8bf; font-size: .91rem; }
.site-footer h2 { margin-bottom: 18px; color: var(--white); font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a:hover, .site-footer a:focus { color: var(--cyan); }
.social-links { display: flex; gap: 9px; margin-top: 24px; }
.social-links a { width: 36px; height: 36px; display: grid; place-items: center; color: var(--white); border: 1px solid rgba(255,255,255,.15); border-radius: 10px; font-size: .78rem; font-weight: 850; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 64px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }

[data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
.has-js [data-reveal]:nth-child(2) { transition-delay: .06s; }
.has-js [data-reveal]:nth-child(3) { transition-delay: .12s; }
.has-js [data-reveal]:nth-child(4) { transition-delay: .18s; }

@media (max-width: 1060px) {
  .header-cta { display: none; }
  .hero-inner, .product-hero-grid { grid-template-columns: 1fr .65fr; gap: 35px; }
  .system-orbit { width: 330px; height: 330px; }
  .system-node { width: 120px; }
  .card-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card { grid-column: span 6; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-grid > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .header-inner { min-height: 70px; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    position: fixed;
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
    display: block;
    padding: 18px 20px 28px;
    overflow-y: auto;
    background: var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(7,24,45,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: .2s ease;
  }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .site-nav > a, .nav-group > button { width: 100%; display: flex; justify-content: space-between; padding: 13px 8px; text-align: left; }
  .site-nav > a::after, .nav-group > button::after { display: none; }
  .nav-dropdown { position: static; width: 100%; display: none; margin: 0 0 8px; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { display: none; }
  .nav-group.is-open .nav-dropdown { display: block; }
  .hero-inner, .product-hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 82px; }
  .hero-inner { gap: 20px; }
  .system-card { min-height: 390px; margin-top: 10px; }
  .system-orbit { width: 360px; height: 360px; }
  .trust-inner { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding-block: 82px; }
  .section-heading-split, .cta-inner { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .split-layout, .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .fact-panel { position: static; }
  .office-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  :root { --shell: calc(100% - 28px); --radius: 19px; }
  .brand-name { font-size: 19px; }
  .brand-mark { width: 36px; height: 36px; }
  .display { font-size: clamp(2.55rem, 13vw, 4rem); }
  .hero-inner { padding-block: 68px 58px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { gap: 13px 20px; margin-top: 38px; }
  .system-card { min-height: 320px; }
  .system-orbit { width: 285px; height: 285px; }
  .system-core { width: 145px; border-radius: 27px; }
  .system-core strong { font-size: 1.75rem; }
  .system-node { width: 104px; padding: 11px; font-size: .66rem; }
  .node-one { top: 25px; left: 0; }
  .node-two { top: 78px; right: -4px; }
  .node-three { bottom: 43px; left: -2px; }
  .node-four { right: 10px; bottom: 16px; }
  .trust-inner, .card-grid, .feature-grid, .value-grid, .delivery-options, .process-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 15px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:nth-child(3) { border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section { padding-block: 68px; }
  .section-heading { margin-bottom: 32px; }
  .service-card, .product-card, .value-card, .feature-card, .delivery-card, .office-card { padding: 24px; }
  .product-grid { display: block; }
  .product-card { min-height: 275px; margin-bottom: 14px; }
  .process-step { display: grid; grid-template-columns: 50px 1fr; column-gap: 14px; }
  .process-number { grid-row: span 2; width: 48px; height: 48px; }
  .page-hero { padding-block: 72px 64px; }
  .product-hero { padding-block: 72px; }
  .form-panel, .contact-card { padding: 25px; }
  .form-grid-two { grid-template-columns: 1fr; gap: 0; }
  .cta-band { padding-block: 62px; }
  .cta-inner .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child, .footer-grid > :last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; margin-top: 44px; }
}

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

@media print {
  .site-header, .site-footer, .cta-band, .hero-actions, .nav-toggle { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .page-hero, .product-hero, .section-dark { color: #000; background: #fff; }
}
