:root {
  --page:#f5f7f8;
  --surface:#ffffff;
  --surface2:#edf2f3;
  --header:rgba(255,255,255,.92);
  --text:#10181b;
  --muted:#607076;
  --border:#dfe7e9;
  --accent:#239d91;
  --accent2:#4fc3ae;
  --dark:#102528;
  --red:#ef3643;
  --shadow:0 18px 50px rgba(21,48,55,.12);
}

html[data-theme="dark"] {
  --page:#071316;
  --surface:#0d1c20;
  --surface2:#10262a;
  --header:rgba(7,19,22,.94);
  --text:#f4fbfb;
  --muted:#a0b4b8;
  --border:#21383c;
  --dark:#020a0c;
  --shadow:0 20px 60px rgba(0,0,0,.32);
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
}

body {
  margin:0;
  background:var(--page);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  transition:background .2s,color .2s;
}

button,
a {
  font:inherit;
}

.site-header {
  min-height:78px;
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  gap:35px;
  padding:10px max(28px,calc((100vw - 1420px)/2));
  background:var(--header);
  border-bottom:1px solid var(--border);
  backdrop-filter:blur(18px);
}

.brand {
  display:flex;
  align-items:center;
  gap:11px;
  margin-right:auto;
  color:var(--text);
  text-decoration:none;
}

.brand-logo {
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:white;
  font-weight:900;
  font-size:14px;
  background:linear-gradient(145deg,#309f9c,#67c6af);
}

.brand-text {
  display:flex;
  flex-direction:column;
}

.brand-text strong {
  font-size:15px;
}

.brand-text small {
  margin-top:3px;
  color:var(--muted);
  font-size:9px;
}

.top-nav {
  display:flex;
  gap:25px;
}

.top-nav a {
  color:var(--muted);
  text-decoration:none;
  font-size:13px;
}

.top-nav a:hover {
  color:var(--accent);
}

.header-tools {
  display:flex;
  align-items:center;
  gap:9px;
}

.tool-button,
.mobile-button {
  min-height:39px;
  border:1px solid var(--border);
  border-radius:10px;
  color:var(--text);
  background:var(--surface);
  cursor:pointer;
}

.tool-button {
  width:41px;
  font-size:18px;
}

.mobile-button {
  padding:0 13px;
  font-size:12px;
  font-weight:700;
}

.help-button {
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  border-radius:50%;
  text-decoration:none;
  color:white;
  background:var(--red);
  box-shadow:0 7px 22px rgba(239,54,67,.30);
  font-weight:900;
  font-size:19px;
}

.page-frame {
  width:100%;
  margin:auto;
  transition:max-width .25s;
}

.page-frame.mobile-preview {
  max-width:430px;
  border-left:1px solid var(--border);
  border-right:1px solid var(--border);
  box-shadow:var(--shadow);
}

main {
  max-width:1420px;
  margin:auto;
}

.hero {
  min-height:630px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  padding:75px 40px;
  position:relative;
}

.hero:before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:
    linear-gradient(120deg,transparent 58%,rgba(35,157,145,.05) 58%),
    linear-gradient(90deg,rgba(35,157,145,.035) 1px,transparent 1px),
    linear-gradient(rgba(35,157,145,.035) 1px,transparent 1px);
  background-size:auto,44px 44px,44px 44px;
}

.eyebrow {
  display:block;
  margin-bottom:15px;
  color:var(--accent);
  font-size:11px;
  font-weight:900;
  letter-spacing:.13em;
}

.hero h1 {
  max-width:650px;
  margin:0;
  font-size:62px;
  line-height:1.02;
  letter-spacing:-.045em;
}

.hero-lead {
  max-width:650px;
  margin:25px 0 12px;
  font-size:20px;
  font-weight:700;
  line-height:1.45;
}

.hero-description {
  max-width:650px;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

.hero-actions {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.primary-button,
.secondary-button,
.white-button {
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 21px;
  border-radius:9px;
  text-decoration:none;
  font-weight:800;
  font-size:13px;
}

.primary-button {
  color:white;
  background:linear-gradient(120deg,#178f86,#4bb8a2);
  box-shadow:0 10px 28px rgba(35,157,145,.25);
}

.secondary-button {
  color:var(--text);
  border:1px solid var(--border);
  background:var(--surface);
}

.hero-tags {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:25px;
}

.hero-tags span {
  padding:6px 10px;
  border-radius:20px;
  color:var(--accent);
  background:rgba(35,157,145,.08);
  font-size:9px;
  font-weight:900;
}

.system-visual {
  min-height:455px;
  position:relative;
  overflow:hidden;
  border:1px solid var(--border);
  border-radius:25px;
  background:var(--surface);
  box-shadow:var(--shadow);
}

.visual-grid {
  position:absolute;
  inset:0;
  opacity:.45;
  background:
    linear-gradient(90deg,rgba(35,157,145,.09) 1px,transparent 1px),
    linear-gradient(rgba(35,157,145,.09) 1px,transparent 1px);
  background-size:34px 34px;
}

.visual-sun {
  position:absolute;
  top:38px;
  left:42px;
  font-size:52px;
}

.solar-unit {
  position:absolute;
  left:35px;
  top:105px;
  color:var(--muted);
  font-size:11px;
  text-align:center;
}

.solar-panels {
  width:145px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4px;
  transform:skew(-8deg);
}

.solar-panels i {
  height:58px;
  border:2px solid #3e8fac;
  background:
    linear-gradient(90deg,transparent 48%,rgba(255,255,255,.4) 50%,transparent 52%),
    linear-gradient(#1d6685,#2995a7);
}

.solar-unit span {
  display:block;
  margin-top:9px;
  font-weight:800;
}

.ai-core {
  width:122px;
  height:122px;
  position:absolute;
  top:125px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius:28px;
  color:white;
  background:linear-gradient(145deg,#36a99f,#66c8b1);
  box-shadow:0 15px 40px rgba(35,157,145,.25);
}

.ai-core strong {
  font-size:34px;
}

.ai-core small {
  margin-top:5px;
  font-size:7px;
  letter-spacing:.08em;
}

.ai-small {
  font-size:11px;
}

.visual-device {
  position:absolute;
  width:128px;
  min-height:97px;
  padding:13px;
  border-radius:15px;
  color:var(--text);
  background:var(--surface2);
  border:1px solid var(--border);
  box-shadow:0 10px 25px rgba(20,60,60,.10);
  text-align:center;
}

.visual-device strong {
  display:block;
  margin-top:8px;
  font-size:10px;
}

.battery-device {
  left:35px;
  bottom:35px;
}

.inverter-device {
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
}

.ev-device {
  right:35px;
  bottom:35px;
}

.home-device {
  right:35px;
  top:55px;
}

.battery-display,
.inverter-screen {
  padding:10px;
  border-radius:7px;
  color:#2abc8f;
  background:#14272a;
  font-size:15px;
  font-weight:900;
}

.ev-ring {
  width:42px;
  height:42px;
  margin:auto;
  display:grid;
  place-items:center;
  border:4px solid var(--accent);
  border-radius:50%;
  font-weight:900;
}

.home-roof {
  font-size:36px;
  color:var(--accent);
}

.visual-line {
  height:2px;
  position:absolute;
  z-index:0;
  background:linear-gradient(90deg,var(--accent),transparent);
}

.line1 {
  width:120px;
  left:165px;
  top:170px;
}

.line2 {
  width:120px;
  right:160px;
  top:170px;
  transform:scaleX(-1);
}

.line3 {
  width:110px;
  left:155px;
  bottom:110px;
  transform:rotate(-18deg);
}

.line4 {
  width:110px;
  right:155px;
  bottom:110px;
  transform:rotate(18deg) scaleX(-1);
}

.agent-chip {
  position:absolute;
  top:275px;
  left:50%;
  transform:translateX(-50%);
  min-width:250px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:9px 13px;
  border:1px solid var(--border);
  border-radius:13px;
  background:var(--surface);
  box-shadow:var(--shadow);
}

.agent-chip > span {
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:10px;
  color:white;
  background:var(--accent);
  font-weight:900;
}

.agent-chip div {
  display:flex;
  flex-direction:column;
}

.agent-chip strong {
  font-size:11px;
}

.agent-chip small {
  margin-top:3px;
  color:var(--muted);
  font-size:8px;
}

.wide-promo {
  min-height:480px;
  position:relative;
  overflow:hidden;
  margin:10px 0 0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:
    radial-gradient(circle at 83% 55%,#e3b77e 0,#5d6f68 17%,transparent 38%),
    linear-gradient(120deg,#12272a,#31544f);
}

.promo-overlay {
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(4,13,15,.85),rgba(8,21,22,.35)),
    linear-gradient(0deg,rgba(0,0,0,.25),transparent);
}

.promo-house {
  width:570px;
  height:280px;
  position:absolute;
  right:70px;
  bottom:0;
}

.house-body {
  width:400px;
  height:190px;
  position:absolute;
  bottom:0;
  right:25px;
  background:#b5a28a;
  box-shadow:0 -20px 70px rgba(255,194,112,.10);
}

.house-roof {
  width:0;
  height:0;
  position:absolute;
  right:0;
  bottom:170px;
  border-left:250px solid transparent;
  border-right:250px solid transparent;
  border-bottom:150px solid #263636;
  transform:rotate(180deg);
}

.roof-panels {
  width:260px;
  height:80px;
  position:absolute;
  right:88px;
  top:34px;
  display:flex;
  gap:4px;
  transform:skewX(-29deg);
}

.roof-panels i {
  flex:1;
  border:2px solid #2d6b79;
  background:#154b5b;
}

.window {
  width:65px;
  height:60px;
  position:absolute;
  top:38px;
  background:#f1c57e;
  box-shadow:0 0 28px rgba(255,194,106,.35);
}

.w1 {
  left:55px;
}

.w2 {
  right:55px;
}

.door {
  width:60px;
  height:110px;
  position:absolute;
  bottom:0;
  left:170px;
  background:#4b4239;
}

.promo-content {
  width:100%;
  max-width:1280px;
  z-index:2;
  position:relative;
  padding:40px;
  color:white;
}

.promo-content > span {
  font-size:11px;
  font-weight:900;
  letter-spacing:.15em;
  color:#8ee0cc;
}

.promo-content h2 {
  max-width:650px;
  margin:15px 0;
  font-size:49px;
  line-height:1.05;
}

.promo-content p {
  max-width:510px;
  line-height:1.6;
}

.white-button {
  margin-top:15px;
  color:#172729;
  background:white;
}

.section {
  padding:100px 40px;
}

.section-title {
  max-width:780px;
  margin:0 auto 45px;
  text-align:center;
}

.section-title > span {
  color:var(--accent);
  font-size:10px;
  font-weight:900;
  letter-spacing:.14em;
}

.section-title h2,
.split-section h2,
.ai-content h2 {
  margin:12px 0;
  font-size:43px;
  letter-spacing:-.035em;
}

.section-title p,
.split-section p,
.ai-content p {
  color:var(--muted);
  line-height:1.65;
}

.why-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.feature-card,
.smart-grid article,
.apps-grid article,
.mode-card {
  padding:25px;
  border:1px solid var(--border);
  border-radius:15px;
  background:var(--surface);
  box-shadow:0 8px 25px rgba(30,60,65,.06);
}

.card-visual {
  height:130px;
  display:grid;
  place-items:center;
  border-radius:11px;
  color:var(--accent);
  background:var(--surface2);
  font-size:40px;
  font-weight:900;
}

.feature-card h3 {
  margin:20px 0 8px;
}

.feature-card p,
.smart-grid p,
.apps-grid p,
.mode-card p {
  color:var(--muted);
  line-height:1.5;
  font-size:13px;
}

.split-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.check-list {
  padding:0;
  list-style:none;
}

.check-list li {
  margin:10px 0;
}

.check-list li:before {
  content:"✓";
  margin-right:8px;
  color:var(--accent);
  font-weight:bold;
}

.dashboard-preview {
  padding:25px;
  border:1px solid var(--border);
  border-radius:18px;
  background:var(--surface);
  box-shadow:var(--shadow);
}

.dash-head,
.dash-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  border-bottom:1px solid var(--border);
}

.dash-head span {
  color:var(--accent);
  font-size:10px;
}

.dash-row span {
  color:var(--muted);
}

.dash-saving {
  margin-top:20px;
  padding:13px;
  border-radius:10px;
  color:#08795e;
  background:#d8f4eb;
  text-align:center;
  font-weight:800;
  font-size:12px;
}

.market-section {
  background:var(--surface2);
}

.market-grid {
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
}

.price-chart,
.energy-strategy {
  border:1px solid var(--border);
  border-radius:17px;
  background:var(--surface);
}

.price-chart {
  min-height:390px;
  padding:25px;
  display:flex;
  flex-direction:column;
}

.chart-header {
  display:flex;
  justify-content:space-between;
}

.chart-header div {
  display:flex;
  flex-direction:column;
}

.chart-header small {
  color:var(--accent);
}

.chart-header strong {
  margin-top:4px;
}

.chart-bars {
  flex:1;
  display:flex;
  gap:8px;
  align-items:flex-end;
  padding:30px 0 15px;
}

.chart-bars i {
  flex:1;
  min-width:8px;
  border-radius:5px 5px 0 0;
  background:linear-gradient(#50c6ad,#228f89);
}

.h1 { height:33%; }
.h2 { height:22%; }
.h3 { height:18%; }
.h4 { height:25%; }
.h5 { height:42%; }
.h6 { height:57%; }
.h7 { height:78%; }
.h8 { height:92%; }
.h9 { height:73%; }
.h10 { height:55%; }
.h11 { height:40%; }
.h12 { height:29%; }

.chart-hours {
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:10px;
}

.energy-strategy {
  padding:10px 25px;
}

.energy-strategy article {
  padding:23px 0;
  border-bottom:1px solid var(--border);
}

.energy-strategy article:last-child {
  border:0;
}

.energy-strategy p {
  margin:7px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.5;
}

.ai-large-card {
  min-height:410px;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:60px;
  align-items:center;
  padding:50px;
  overflow:hidden;
  border-radius:24px;
  color:white;
  background:
    radial-gradient(circle at 18% 50%,rgba(52,199,166,.3),transparent 24%),
    linear-gradient(120deg,#0b2024,#143d3d);
}

.ai-graphic {
  width:250px;
  height:250px;
  position:relative;
  margin:auto;
  display:grid;
  place-items:center;
}

.brain-core {
  width:105px;
  height:105px;
  z-index:2;
  display:grid;
  place-items:center;
  border-radius:50%;
  font-size:35px;
  font-weight:900;
  background:linear-gradient(145deg,#2a9d92,#63d0b7);
  box-shadow:0 0 45px rgba(81,214,181,.35);
}

.brain-orbit {
  position:absolute;
  border:1px solid rgba(111,223,196,.35);
  border-radius:50%;
}

.orbit1 {
  width:180px;
  height:180px;
}

.orbit2 {
  width:240px;
  height:130px;
  transform:rotate(35deg);
}

.ai-content p {
  color:#b6c9ca;
}

.ai-pills {
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:22px;
}

.ai-pills span {
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.17);
  border-radius:20px;
  color:#d4e8e5;
  font-size:10px;
}

.mode-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.mode-card > span {
  color:var(--accent);
  font-size:11px;
  font-weight:900;
}

.mode-card h3 {
  margin:15px 0 7px;
}

.mode-card.featured {
  color:white;
  border-color:#2fa493;
  background:linear-gradient(145deg,#14766e,#1b9384);
}

.mode-card.featured p,
.mode-card.featured > span {
  color:#d8f4ed;
}

.smart-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.smart-grid article > strong {
  width:43px;
  height:43px;
  display:grid;
  place-items:center;
  border-radius:10px;
  color:white;
  background:linear-gradient(145deg,#279b91,#59c6ae);
}

.smart-grid h3 {
  margin:17px 0 7px;
}

.apps-section {
  background:var(--surface2);
}

.apps-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.apps-grid article {
  text-align:center;
}

.platform-icon {
  width:65px;
  height:65px;
  margin:auto;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:white;
  background:linear-gradient(145deg,#28998f,#58c8af);
  font-weight:900;
}

.apps-grid article > span {
  color:var(--accent);
  font-size:10px;
  font-weight:800;
}

.pair-section {
  margin:30px 40px 100px;
  padding:45px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:40px;
  border-radius:20px;
  border:1px solid var(--border);
  background:var(--surface);
  box-shadow:var(--shadow);
}

.pair-section h2 {
  margin:10px 0;
  font-size:35px;
}

.pair-section p {
  max-width:800px;
  color:var(--muted);
  line-height:1.6;
}

.help-section {
  margin:0 40px 80px;
  display:flex;
  gap:20px;
  align-items:center;
  padding:30px;
  border:1px solid var(--border);
  border-radius:17px;
  background:var(--surface);
}

.help-circle {
  min-width:58px;
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:white;
  background:var(--red);
  font-size:27px;
  font-weight:900;
}

.help-section h2,
.help-section p {
  margin:5px 0;
}

.help-section p {
  color:var(--muted);
}

footer {
  max-width:1420px;
  min-height:100px;
  margin:auto;
  padding:25px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid var(--border);
  color:var(--muted);
}

footer div {
  display:flex;
  flex-direction:column;
}

footer strong {
  color:var(--text);
}

footer small {
  margin-top:5px;
}


/* MOBILE / RESPONSIVE */

@media (max-width:900px) {

  .top-nav {
    display:none;
  }

  .hero,
  .split-section,
  .market-grid {
    grid-template-columns:1fr;
  }

  .hero {
    padding-top:45px;
  }

  .hero h1 {
    font-size:48px;
  }

  .why-grid,
  .smart-grid {
    grid-template-columns:repeat(2,1fr);
  }

  .ai-large-card {
    grid-template-columns:1fr;
  }

  .apps-grid {
    grid-template-columns:1fr;
  }

  .promo-house {
    opacity:.35;
  }
}


@media (max-width:560px) {

  .site-header {
    padding:9px 13px;
  }

  .brand-text small {
    display:none;
  }

  .brand-text strong {
    font-size:12px;
  }

  .mobile-button {
    display:none;
  }

  .hero {
    min-height:auto;
    padding:45px 18px;
    gap:30px;
  }

  .hero h1 {
    font-size:38px;
  }

  .hero-lead {
    font-size:17px;
  }

  .system-visual {
    min-height:430px;
  }

  .home-device {
    display:none;
  }

  .wide-promo {
    min-height:470px;
  }

  .promo-content {
    padding:28px 18px;
  }

  .promo-content h2 {
    font-size:35px;
  }

  .promo-house {
    right:-190px;
  }

  .section {
    padding:70px 18px;
  }

  .section-title h2,
  .split-section h2,
  .ai-content h2 {
    font-size:32px;
  }

  .why-grid,
  .smart-grid,
  .mode-grid {
    grid-template-columns:1fr;
  }

  .ai-large-card {
    padding:28px 18px;
  }

  .ai-graphic {
    width:210px;
    height:210px;
  }

  .pair-section,
  .help-section {
    margin-left:18px;
    margin-right:18px;
  }

  .pair-section {
    padding:28px;
    flex-direction:column;
    align-items:flex-start;
  }

  footer {
    padding:25px 18px;
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }
}


/* DESKTOP MOBILE PREVIEW */

.page-frame.mobile-preview main {
  max-width:430px;
}

.page-frame.mobile-preview .hero,
.page-frame.mobile-preview .split-section,
.page-frame.mobile-preview .market-grid,
.page-frame.mobile-preview .ai-large-card {
  grid-template-columns:1fr;
}

.page-frame.mobile-preview .hero {
  padding:45px 18px;
}

.page-frame.mobile-preview .hero h1 {
  font-size:38px;
}

.page-frame.mobile-preview .why-grid,
.page-frame.mobile-preview .smart-grid,
.page-frame.mobile-preview .mode-grid,
.page-frame.mobile-preview .apps-grid {
  grid-template-columns:1fr;
}

.page-frame.mobile-preview .section {
  padding:65px 18px;
}

.page-frame.mobile-preview .promo-content {
  padding:25px 18px;
}

.page-frame.mobile-preview .promo-content h2 {
  font-size:34px;
}

.page-frame.mobile-preview .promo-house {
  opacity:.30;
  right:-260px;
}

.page-frame.mobile-preview .pair-section,
.page-frame.mobile-preview .help-section {
  margin-left:18px;
  margin-right:18px;
}

.page-frame.mobile-preview .pair-section {
  flex-direction:column;
  align-items:flex-start;
}


/* EMS_R39_CONTACT_PANEL_BEGIN */

.contact-launcher {
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:80;

  min-height:48px;
  padding:0 20px;

  border:0;
  border-radius:24px;

  color:white;
  background:
    linear-gradient(
      120deg,
      #178f86,
      #4bb8a2
    );

  box-shadow:
    0 12px 35px
    rgba(22,120,110,.30);

  cursor:pointer;
  font-weight:800;
}

.contact-drawer {
  width:min(560px,calc(100vw - 28px));
  max-height:calc(100vh - 28px);

  position:fixed;
  z-index:100;
  right:14px;
  bottom:14px;

  padding:28px;

  overflow:auto;

  border:
    1px solid
    var(--border);

  border-radius:22px;

  color:var(--text);
  background:var(--surface);

  box-shadow:
    0 25px 80px
    rgba(0,0,0,.28);

  transform:
    translateY(
      calc(100% + 40px)
    );

  opacity:0;
  pointer-events:none;

  transition:
    transform .25s ease,
    opacity .25s ease;
}

.contact-drawer.open {
  transform:translateY(0);
  opacity:1;
  pointer-events:auto;
}

.contact-drawer-head {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}

.contact-drawer-head h2 {
  margin:5px 0 0;
  font-size:29px;
}

.contact-close {
  width:40px;
  height:40px;

  border:
    1px solid
    var(--border);

  border-radius:50%;

  color:var(--text);
  background:var(--surface2);

  cursor:pointer;

  font-size:25px;
  line-height:1;
}

.contact-intro {
  margin:15px 0 20px;

  color:var(--muted);

  font-size:13px;
  line-height:1.5;
}

.contact-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}

#contactForm label {
  display:block;
  margin-bottom:14px;
}

#contactForm label > span:first-child {
  display:block;

  margin-bottom:6px;

  color:var(--muted);

  font-size:11px;
  font-weight:700;
}

#contactForm input,
#contactForm textarea {
  width:100%;

  padding:12px 13px;

  border:
    1px solid
    var(--border);

  border-radius:9px;

  outline:none;

  color:var(--text);
  background:var(--surface2);
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color:var(--accent);

  box-shadow:
    0 0 0 3px
    rgba(35,157,145,.10);
}

#contactForm textarea {
  resize:vertical;
  min-height:120px;
}

.contact-honeypot {
  position:absolute !important;

  width:1px !important;
  height:1px !important;

  overflow:hidden !important;

  opacity:0 !important;

  pointer-events:none !important;
}

.security-code {
  display:grid;

  grid-template-columns:
    1fr
    105px
    auto;

  gap:10px;

  align-items:center;

  padding:13px;

  margin:4px 0 16px;

  border:
    1px solid
    var(--border);

  border-radius:11px;

  background:var(--surface2);
}

.security-code div {
  display:flex;
  flex-direction:column;
}

.security-code strong {
  font-size:11px;
}

.security-code span {
  margin-top:4px;

  color:var(--accent);

  font-size:17px;
  font-weight:900;
}

.captcha-refresh {
  min-height:42px;

  border:
    1px solid
    var(--border);

  border-radius:8px;

  color:var(--text);
  background:var(--surface);

  cursor:pointer;

  font-size:11px;
  font-weight:800;
}

.consent-line {
  display:grid !important;

  grid-template-columns:
    22px
    1fr;

  gap:9px;

  align-items:start;
}

.consent-line input {
  width:18px !important;
  height:18px;

  margin:2px 0 0;
}

.consent-line span {
  margin:0 !important;

  color:var(--muted);

  font-size:11px !important;
  font-weight:400 !important;

  line-height:1.5;
}

.contact-actions {
  display:flex;
  align-items:center;
  gap:15px;

  margin-top:18px;
}

.contact-submit {
  border:0;
  cursor:pointer;
}

.contact-submit:disabled {
  opacity:.55;
  cursor:not-allowed;
}

.contact-status {
  color:var(--muted);

  font-size:11px;
  line-height:1.4;
}

.contact-status.success {
  color:#178767;
}

.contact-status.error {
  color:#d93b48;
}

@media (max-width:560px) {

  .contact-launcher {
    right:14px;
    bottom:14px;
  }

  .contact-drawer {
    width:calc(100vw - 16px);
    right:8px;
    bottom:8px;

    padding:20px;
  }

  .contact-grid {
    grid-template-columns:1fr;
    gap:0;
  }

  .security-code {
    grid-template-columns:1fr 90px;
  }

  .captcha-refresh {
    grid-column:1 / -1;
  }

  .contact-actions {
    flex-direction:column;
    align-items:stretch;
  }

}

/* EMS_R39_CONTACT_PANEL_END */

/* EMS_R39_PRICING_BEGIN */

.pricing-section {
  padding:
    90px
    40px;

  max-width:
    1280px;

  margin:
    0 auto;
}

.pricing-section .section-heading {
  max-width:
    760px;

  margin:
    0 auto 40px;

  text-align:
    center;
}

.pricing-section .section-heading h2 {
  margin:
    8px 0 12px;

  font-size:
    clamp(
      30px,
      4vw,
      48px
    );

  line-height:
    1.05;
}

.pricing-section .section-heading p {
  color:
    var(--muted);

  line-height:
    1.65;
}

.pricing-grid {
  display:
    grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0,1fr)
    );

  gap:
    22px;
}

.pricing-card {
  position:
    relative;

  padding:
    30px;

  border:
    1px solid
    var(--border);

  border-radius:
    22px;

  background:
    var(--surface);

  box-shadow:
    0 18px 50px
    rgba(0,0,0,.08);
}

.pricing-card-featured {
  transform:
    translateY(-10px);

  border-color:
    rgba(
      39,
      172,
      157,
      .55
    );
}

.pricing-card-plus {
  border-color:
    rgba(
      52,
      122,
      246,
      .45
    );
}

.pricing-label {
  display:
    inline-block;

  margin-bottom:
    22px;

  padding:
    7px 11px;

  border-radius:
    999px;

  background:
    var(--surface2);

  color:
    var(--accent);

  font-size:
    12px;

  font-weight:
    900;

  letter-spacing:
    .08em;
}

.pricing-price {
  display:
    flex;

  align-items:
    baseline;

  gap:
    8px;

  margin-bottom:
    5px;
}

.pricing-price strong {
  font-size:
    38px;

  line-height:
    1;
}

.pricing-price span,
.pricing-year {
  color:
    var(--muted);

  font-size:
    13px;
}

.pricing-year {
  margin-bottom:
    25px;
}

.pricing-card ul {
  margin:
    0;

  padding:
    0;

  list-style:
    none;
}

.pricing-card li {
  position:
    relative;

  padding:
    11px 0 11px 27px;

  border-bottom:
    1px solid
    var(--border);

  color:
    var(--text);

  line-height:
    1.45;
}

.pricing-card li:last-child {
  border-bottom:
    0;
}

.pricing-card li::before {
  content:
    "✓";

  position:
    absolute;

  left:
    0;

  color:
    var(--accent);

  font-weight:
    900;
}

@media (max-width:900px) {

  .pricing-grid {
    grid-template-columns:
      1fr;
  }

  .pricing-card-featured {
    transform:
      none;
  }

}

@media (max-width:560px) {

  .pricing-section {
    padding:
      65px
      18px;
  }

  .pricing-card {
    padding:
      24px;
  }

}

/* EMS_R39_PRICING_END */

/* ==========================================================
   EMS_R39_TELEMETRIX_COSMIC_CSS_V1
   ========================================================== */

.telemetrix-zone {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 46px;
  border-radius: 30px;
  isolation: isolate;
}

.telemetrix-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(100, 198, 255, .38);
  border-radius: 30px;
  color: #ecf8ff;
  background:
    radial-gradient(circle at 10% 10%, rgba(48, 150, 255, .25), transparent 28%),
    radial-gradient(circle at 92% 15%, rgba(101, 66, 255, .22), transparent 34%),
    radial-gradient(circle at 50% 120%, rgba(0, 190, 255, .22), transparent 42%),
    linear-gradient(145deg, #06162e 0%, #071a36 48%, #030b19 100%);
  box-shadow:
    0 28px 80px rgba(0, 38, 100, .30),
    0 0 40px rgba(42, 149, 255, .10),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.telemetrix-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(105, 196, 255, .12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 196, 255, .12) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

.telemetrix-card::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -220px;
  top: -235px;
  border: 1px solid rgba(120, 210, 255, .18);
  border-radius: 50%;
  box-shadow:
    0 0 60px rgba(74, 148, 255, .20),
    inset 0 0 70px rgba(95, 155, 255, .10);
  pointer-events: none;
}

.telemetrix-card[open] {
  border-color: rgba(105, 212, 255, .62);
  box-shadow:
    0 32px 100px rgba(0, 42, 115, .38),
    0 0 55px rgba(38, 160, 255, .17),
    inset 0 1px 0 rgba(255,255,255,.11);
}

.telemetrix-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  align-items: center;
  gap: 27px;
  min-height: 235px;
  padding: 32px 35px;
  cursor: pointer;
  list-style: none;
}

.telemetrix-summary::-webkit-details-marker {
  display: none;
}

.telemetrix-summary::marker {
  content: "";
}

.telemetrix-core-wrap {
  position: relative;
  width: 124px;
  height: 124px;
  display: grid;
  place-items: center;
}

.telemetrix-core {
  position: relative;
  z-index: 3;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 23px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .08em;
  background:
    linear-gradient(145deg, #42c4ff, #4967ff 58%, #7249ff);
  box-shadow:
    0 0 22px rgba(75, 199, 255, .85),
    0 0 55px rgba(70, 100, 255, .48),
    inset 0 1px 1px rgba(255,255,255,.55);
  animation: tmCorePulse 3.2s ease-in-out infinite;
}

.telemetrix-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(125, 218, 255, .48);
}

.telemetrix-ring-one {
  width: 98px;
  height: 98px;
  border-top-color: #81e0ff;
  border-right-color: transparent;
  animation: tmRotate 5s linear infinite;
}

.telemetrix-ring-two {
  width: 122px;
  height: 122px;
  opacity: .62;
  border-style: dashed;
  animation: tmRotateReverse 10s linear infinite;
}

.telemetrix-kicker {
  display: block;
  margin-bottom: 8px;
  color: #76d1ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .17em;
}

.telemetrix-intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.04em;
  text-shadow: 0 0 28px rgba(86, 192, 255, .28);
}

.telemetrix-slogan {
  margin: 12px 0 0;
  color: #d9efff;
  font-size: clamp(17px, 2vw, 23px);
}

.telemetrix-slogan strong {
  color: #8de2ff;
}

.telemetrix-short {
  margin: 10px 0 0;
  color: #a8c8e2;
  font-size: 14px;
  line-height: 1.55;
}

.telemetrix-plan {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px 11px;
  margin-top: 15px;
  padding: 8px 13px;
  border: 1px solid rgba(105, 205, 255, .30);
  border-radius: 999px;
  color: #c9eaff;
  background: rgba(37, 118, 192, .18);
  font-size: 11px;
}

.telemetrix-plan strong {
  color: white;
}

.telemetrix-open {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(115, 212, 255, .34);
  border-radius: 999px;
  color: #e3f7ff;
  background: rgba(46, 126, 199, .18);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.telemetrix-open span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #83dcff;
  background: rgba(91, 185, 255, .18);
  transition: transform .25s ease;
}

.telemetrix-card[open] .telemetrix-open span {
  transform: rotate(180deg);
}

.telemetrix-expanded {
  position: relative;
  z-index: 2;
  padding: 32px 35px 36px;
  border-top: 1px solid rgba(109, 195, 255, .15);
  background: rgba(1, 10, 26, .20);
}

.telemetrix-headline {
  max-width: 900px;
}

.telemetrix-headline > span,
.telemetrix-home > span {
  color: #6fd0ff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.telemetrix-headline h3,
.telemetrix-home h3 {
  max-width: 850px;
  margin: 9px 0 15px;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.14;
  letter-spacing: -.03em;
}

.telemetrix-headline p,
.telemetrix-diagnostic p,
.telemetrix-home p,
.telemetrix-notice p {
  color: #afcce3;
  line-height: 1.7;
}

.telemetrix-protocols {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 25px 0;
}

.telemetrix-protocols span {
  padding: 8px 13px;
  border: 1px solid rgba(104, 211, 255, .32);
  border-radius: 12px;
  color: #dcf5ff;
  background:
    linear-gradient(145deg, rgba(31, 111, 179, .22), rgba(15, 48, 94, .18));
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
}

.telemetrix-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}

.telemetrix-grid article {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 20px;
  border: 1px solid rgba(106, 190, 255, .20);
  border-radius: 19px;
  background:
    radial-gradient(circle at 90% 10%, rgba(74, 149, 255, .17), transparent 35%),
    linear-gradient(150deg, rgba(27, 79, 145, .27), rgba(5, 18, 41, .56));
  transition:
    transform .2s ease,
    border-color .2s ease,
    box-shadow .2s ease;
}

.telemetrix-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(100, 210, 255, .48);
  box-shadow: 0 13px 32px rgba(0, 39, 105, .22);
}

.telemetrix-grid h4 {
  margin: 0 0 10px;
  color: white;
  font-size: 17px;
}

.telemetrix-grid p {
  margin: 0;
  color: #a7c6df;
  font-size: 13px;
  line-height: 1.62;
}

.telemetrix-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 11px;
  margin-top: 28px;
}

.tm-step {
  position: relative;
  padding: 17px;
  border-radius: 17px;
  border: 1px solid rgba(107, 197, 255, .17);
  background: rgba(6, 28, 58, .50);
}

.tm-step strong {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-bottom: 10px;
  border-radius: 50%;
  border: 1px solid rgba(95, 214, 255, .50);
  color: #91e0ff;
  background: #09264a;
  box-shadow: 0 0 18px rgba(55, 179, 255, .18);
}

.tm-step span {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.tm-step p {
  margin: 0;
  color: #9fbfd8;
  font-size: 12px;
  line-height: 1.55;
}

.telemetrix-diagnostic,
.telemetrix-home {
  margin-top: 25px;
  padding: 25px;
  border-radius: 22px;
  border: 1px solid rgba(100, 202, 255, .20);
  background:
    radial-gradient(circle at 95% 8%, rgba(68, 155, 255, .16), transparent 31%),
    rgba(3, 17, 38, .55);
}

.telemetrix-diagnostic h4 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(20px, 2.4vw, 29px);
}

.telemetrix-notice {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(102, 212, 255, .30);
  border-radius: 17px;
  background: rgba(30, 112, 181, .15);
}

.telemetrix-notice strong {
  display: block;
  color: #fff;
  font-size: 15px;
}

.telemetrix-notice p {
  margin-bottom: 0;
  font-size: 12px;
}

@keyframes tmRotate {
  to { transform: rotate(360deg); }
}

@keyframes tmRotateReverse {
  to { transform: rotate(-360deg); }
}

@keyframes tmCorePulse {
  0%,100% {
    transform: scale(.96);
    filter: brightness(.92);
  }
  50% {
    transform: scale(1.04);
    filter: brightness(1.16);
  }
}

@media (max-width: 900px) {

  .telemetrix-summary {
    grid-template-columns: 100px minmax(0,1fr);
  }

  .telemetrix-open {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 127px;
  }

  .telemetrix-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .telemetrix-process {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {

  .telemetrix-zone {
    width: calc(100% - 20px);
    margin: 22px auto 34px;
  }

  .telemetrix-card {
    border-radius: 23px;
  }

  .telemetrix-summary {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .telemetrix-core-wrap {
    width: 94px;
    height: 94px;
  }

  .telemetrix-ring-one {
    width: 78px;
    height: 78px;
  }

  .telemetrix-ring-two {
    width: 94px;
    height: 94px;
  }

  .telemetrix-core {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 19px;
  }

  .telemetrix-open {
    grid-column: auto;
    margin-left: 0;
  }

  .telemetrix-expanded {
    padding: 27px 20px 25px;
  }

  .telemetrix-grid {
    grid-template-columns: 1fr;
  }

  .telemetrix-grid article {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  .telemetrix-zone *,
  .telemetrix-zone *::before,
  .telemetrix-zone *::after {
    animation: none !important;
    transition: none !important;
  }
}


/* ==========================================================
   EMS_R39_TELEMETRIX_PRICING_CSS_V1
   ========================================================== */

.telemetrix-pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: calc(100% - 32px);
  margin: 24px auto 0;
  padding: 11px 17px;
  border: 1px solid rgba(77, 201, 194, .38);
  border-radius: 999px;
  background:
    linear-gradient(
      135deg,
      rgba(33, 134, 126, .15),
      rgba(30, 92, 151, .13)
    );
  box-shadow:
    0 8px 28px rgba(0, 50, 80, .12),
    inset 0 1px 0 rgba(255,255,255,.05);
  color: inherit;
  text-align: center;
}

.telemetrix-pricing-note strong {
  font-size: 14px;
  font-weight: 800;
}

.telemetrix-pricing-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  background: #38d9cf;
  box-shadow:
    0 0 10px rgba(56, 217, 207, .9),
    0 0 20px rgba(56, 217, 207, .45);
}

@media (max-width: 620px) {

  .telemetrix-pricing-note {
    width: auto;
    border-radius: 18px;
    padding: 12px 15px;
  }

}

