:root {
  --navy: #06131b;
  --navy-2: #0a202a;
  --ink: #071824;
  --teal: #08b893;
  --mint: #9de9d1;
  --blue: #27a7df;
  --amber: #f6b23c;
  --paper: #f7fbfa;
  --muted: #637481;
  --line: rgba(8, 184, 147, 0.16);
  --shadow: 0 24px 80px rgba(4, 16, 22, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: fixed;
  z-index: 40;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  color: #fff;
  background: rgba(4, 16, 22, 0.5);
  box-shadow: 0 18px 60px rgba(0,0,0,0.2);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.site-header.scrolled,
.site-header.open {
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  border-color: rgba(8,184,147,0.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px 4px 4px;
  border-radius: 16px;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 14px 38px rgba(8,184,147,0.16);
  font-weight: 850;
  font-size: 1.35rem;
  color: var(--ink);
}
.brand-logo {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--teal);
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.32);
}
.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
}
.site-header.scrolled .nav-links,
.site-header.open .nav-links {
  color: var(--ink);
  background: rgba(6,19,27,0.04);
  border-color: rgba(6,19,27,0.08);
}
.nav-links a {
  padding: 9px 13px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-links a:hover { background: rgba(8,184,147,0.16); color: #fff; }
.site-header.scrolled .nav-links a:hover,
.site-header.open .nav-links a:hover { color: var(--ink); }
.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  font-weight: 800;
  cursor: pointer;
}
.nav-cta { color: var(--navy); background: linear-gradient(135deg,#fff,#d8fff4); }
.site-header.scrolled .nav-cta,
.site-header.open .nav-cta { color: #fff; background: var(--teal); }
.install-app {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  padding: 5px 12px 5px 6px;
  border: 1px solid rgba(157, 233, 209, 0.28);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
  cursor: pointer;
}
.install-app.available { display: inline-flex; }
.install-app img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  object-fit: cover;
}
.install-app:hover { background: rgba(8, 184, 147, 0.28); }
.site-header.scrolled .install-app,
.site-header.open .install-app {
  color: var(--ink);
  border-color: rgba(8, 184, 147, 0.22);
  background: rgba(8, 184, 147, 0.09);
}
.menu-button { display: none; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; background: transparent; color: inherit; }
.menu-button span { display: block; width: 18px; height: 2px; margin: 5px auto; background: currentColor; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.hero-art,
.hero-overlay,
.hero-grid-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-art {
  object-fit: cover;
  object-position: center right;
  opacity: 0.96;
}
.hero-overlay {
  background:
    radial-gradient(circle at 75% 50%, rgba(8,184,147,0.18), transparent 35%),
    linear-gradient(90deg, rgba(3,11,16,0.98), rgba(6,19,27,0.82) 42%, rgba(6,19,27,0.26) 78%),
    linear-gradient(0deg, rgba(3,11,16,0.9), rgba(3,11,16,0.08) 52%);
}
.hero-grid-lines {
  opacity: 0.18;
  background-image: linear-gradient(rgba(157,233,209,0.11) 1px, transparent 1px), linear-gradient(90deg, rgba(157,233,209,0.11) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}
.upgraded-hero {
  position: relative;
  z-index: 2;
  width: min(1160px, calc(100% - 36px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 116px 0 60px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.58fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.hero-mainline { max-width: 660px; }
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(157,233,209,0.24);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  font-size: 0.8rem;
  backdrop-filter: blur(12px);
}
.hero-status-pill strong { color: var(--mint); }
.pulse-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 0 rgba(8,184,147,0.8); animation: pulse 1.9s infinite; }
.eyebrow { margin: 0 0 10px; color: var(--mint); text-transform: uppercase; letter-spacing: 0; font-size: 0.76rem; font-weight: 850; }
h1,h2,h3,p { overflow-wrap: anywhere; }
.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(2.55rem, 4.4vw, 4.85rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 16px 58px rgba(0,0,0,0.42);
}
.hero-copy { max-width: 590px; margin: 18px 0 0; color: rgba(255,255,255,0.82); font-size: clamp(1rem, 1.16vw, 1.1rem); line-height: 1.62; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.button.primary { color: #fff; background: linear-gradient(135deg,#10d1aa,var(--teal) 55%,var(--blue)); box-shadow: 0 18px 46px rgba(8,184,147,0.28); }
.button.secondary { color: #fff; border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); }
.enhanced-signals { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.signal-row button { border: 1px solid rgba(157,233,209,0.3); border-radius: 999px; padding: 7px 11px; color: rgba(255,255,255,0.82); background: rgba(255,255,255,0.08); font: inherit; font-size: 0.84rem; cursor: pointer; }
.signal-row button:hover,.signal-row button.active { background: rgba(8,184,147,0.22); border-color: rgba(157,233,209,0.62); }

.hero-console {
  justify-self: end;
  width: min(500px, 100%);
  padding: 24px;
  border: 1px solid rgba(157,233,209,0.24);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.14), rgba(255,255,255,0.055)), rgba(5,18,26,0.68);
  box-shadow: 0 34px 100px rgba(0,0,0,0.34), inset 0 0 72px rgba(8,184,147,0.1);
  backdrop-filter: blur(20px);
}
.console-topline { display: flex; justify-content: space-between; gap: 16px; color: rgba(255,255,255,0.72); font-size: 0.88rem; }
.console-topline strong { color: var(--mint); }
.console-topline span::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 16px rgba(8,184,147,0.8); }
.console-orbit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 12px;
  margin: 20px 0 16px;
  padding: 16px;
  border: 1px solid rgba(157,233,209,0.15);
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(8,184,147,0.12), rgba(255,255,255,0.035), rgba(39,167,223,0.1));
  overflow: hidden;
}
.console-orbit::before { content: ""; position: absolute; inset: 0; opacity: 0.55; background: linear-gradient(90deg, transparent, rgba(157,233,209,0.16), transparent), linear-gradient(rgba(157,233,209,0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(157,233,209,0.08) 1px, transparent 1px); background-size: 180px 100%, 34px 34px, 34px 34px; animation: sweep 8s ease-in-out infinite; pointer-events: none; }
.orbit-node { position: relative; z-index: 1; min-height: 78px; display: grid; align-content: center; justify-items: start; gap: 5px; padding: 14px; border: 1px solid rgba(157,233,209,0.18); border-radius: 16px; color: #fff; background: rgba(5,18,26,0.72); box-shadow: 0 12px 30px rgba(0,0,0,0.14); cursor: pointer; }
.orbit-node:hover,.orbit-node.active { border-color: rgba(157,233,209,0.56); background: linear-gradient(145deg, rgba(8,184,147,0.28), rgba(39,167,223,0.12)), rgba(5,18,26,0.8); }
.orbit-node span { font-weight: 850; font-size: 1rem; }
.orbit-node small { color: rgba(157,233,209,0.78); font-size: 0.7rem; text-transform: uppercase; }
.console-metrics { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; }
.console-metrics div { min-height: 78px; padding: 13px; border: 1px solid rgba(255,255,255,0.11); border-radius: 16px; background: rgba(255,255,255,0.075); }
.console-metrics strong,.console-metrics span { display: block; }
.console-metrics strong { color: #fff; font-size: 1.45rem; }
.console-metrics span { color: rgba(255,255,255,0.64); font-size: 0.74rem; line-height: 1.35; }
.console-flow { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 14px; }
.console-flow span { height: 7px; border-radius: 999px; background: rgba(255,255,255,0.12); overflow: hidden; }
.console-flow span::before { content: ""; display: block; width: 55%; height: 100%; border-radius: inherit; background: var(--teal); animation: flow 2.4s ease-in-out infinite; }
.console-flow span:nth-child(2)::before { background: var(--blue); animation-delay: .2s; }
.console-flow span:nth-child(3)::before { background: var(--amber); animation-delay: .4s; }
.console-flow span:nth-child(4)::before { animation-delay: .6s; }

.trust-band { display: grid; grid-template-columns: repeat(3,1fr); width: min(1160px, calc(100% - 36px)); margin: 0 auto; border: 1px solid rgba(8,184,147,0.14); border-radius: 22px; overflow: hidden; background: rgba(255,255,255,0.94); box-shadow: var(--shadow); }
.trust-band a { display: block; padding: 28px; border-right: 1px solid #e4eeeb; }
.trust-band a:last-child { border-right: 0; }
.trust-band strong,.trust-band span { display: block; }
.trust-band strong { margin-bottom: 8px; }
.trust-band span { color: var(--muted); line-height: 1.55; }
.section,.industries,.contact-section { padding: 96px clamp(18px,6vw,80px); }
.section-heading { max-width: 790px; margin-bottom: 38px; }
.section-heading.compact { max-width: 680px; }
.section-heading h2,.contact-section h2 { margin: 0; font-size: clamp(2rem,3.6vw,3.75rem); line-height: 1.05; letter-spacing: 0; text-wrap: balance; }
.intro-grid,.industry-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.industry-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
.feature-card,.industry-card,.timeline article { display: block; padding: 28px; border: 1px solid rgba(8,184,147,0.14); border-radius: 12px; background: linear-gradient(180deg,#fff,#f7fcfb); box-shadow: 0 16px 46px rgba(6,19,27,0.07); transition: transform 180ms ease, box-shadow 180ms ease; }
.feature-card:hover,.industry-card:hover,.timeline article:hover { transform: translateY(-5px); box-shadow: 0 24px 64px rgba(6,19,27,0.12); }
.feature-card h3,.industry-card h3,.timeline h3 { margin: 0 0 10px; font-size: 1.16rem; }
.feature-card p,.industry-card p,.timeline p,.contact-section p { margin: 0; color: var(--muted); line-height: 1.65; }
.icon-dot { display: block; width: 34px; height: 34px; margin-bottom: 22px; border-radius: 50%; background: radial-gradient(circle at 35% 35%,#fff 0 16%,var(--teal) 17%); }
.icon-dot.amber { background: radial-gradient(circle at 35% 35%,#fff 0 16%,var(--amber) 17%); }
.icon-dot.blue { background: radial-gradient(circle at 35% 35%,#fff 0 16%,var(--blue) 17%); }
.products-section { color: #fff; background: radial-gradient(circle at 14% 18%,rgba(8,184,147,0.18),transparent 34%), #06131b; }
.product-tabs { display: flex; flex-wrap: wrap; gap: 9px; width: max-content; max-width: 100%; margin-bottom: 24px; padding: 8px; border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; background: rgba(255,255,255,0.08); }
.tab { min-height: 42px; min-width: 92px; padding: 0 14px; border: 1px solid rgba(255,255,255,0.13); border-radius: 12px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.75); font: inherit; font-weight: 800; cursor: pointer; }
.tab.active { color: #fff; background: linear-gradient(135deg,var(--teal),var(--blue)); border-color: transparent; }
.product-showcase { display: grid; grid-template-columns: minmax(0,.9fr) minmax(360px,1.1fr); gap: 28px; padding: 28px; border: 1px solid rgba(255,255,255,0.1); border-radius: 28px; background: rgba(255,255,255,0.055); box-shadow: 0 30px 90px rgba(0,0,0,0.18); }
.product-copy { align-self: center; }
.product-copy h3 { margin: 0; font-size: clamp(1.8rem,3vw,3.2rem); line-height: 1.07; }
.product-copy p { color: rgba(255,255,255,0.72); line-height: 1.7; }
.product-copy ul { display: grid; gap: 12px; padding: 0; margin: 22px 0 0; list-style: none; }
.product-copy li { position: relative; padding-left: 22px; color: rgba(255,255,255,0.84); }
.product-copy li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); }
.product-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.product-demo { color: #fff; background: linear-gradient(135deg,var(--teal),var(--blue)); }
.preview-link { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 16px; border: 1px solid rgba(157,233,209,0.24); border-radius: 14px; color: rgba(255,255,255,0.88); font-weight: 800; background: rgba(255,255,255,0.08); }
.product-panel { min-height: 390px; padding: 18px; border: 1px solid rgba(255,255,255,0.13); border-radius: 22px; background: linear-gradient(135deg,rgba(8,184,147,0.14),transparent 38%),#0d2631; box-shadow: 0 28px 80px rgba(0,0,0,0.28); }
.panel-top { display: flex; gap: 8px; height: 28px; }
.panel-top span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.35); }
.mock-layout { display: grid; grid-template-columns: 70px 1fr; gap: 16px; min-height: 330px; }
.mock-sidebar,.mock-main { border-radius: 14px; background: rgba(255,255,255,0.075); }
.mock-main { padding: 24px; }
.mock-line { height: 13px; width: 52%; margin-bottom: 12px; border-radius: 99px; background: rgba(255,255,255,0.16); }
.mock-line.wide { width: 76%; background: rgba(157,233,209,0.42); }
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 24px 0; }
.mock-cards span { height: 82px; border-radius: 12px; background: rgba(255,255,255,0.08); }
.mock-chart { height: 145px; display: flex; align-items: end; gap: 12px; padding: 20px; border-radius: 14px; background: rgba(0,0,0,0.18); }
.mock-chart i { flex: 1; border-radius: 8px 8px 0 0; background: linear-gradient(var(--mint),var(--teal)); animation: chart 2.4s ease-in-out infinite alternate; }
.mock-chart i:nth-child(1){height:38%}.mock-chart i:nth-child(2){height:64%;animation-delay:.1s}.mock-chart i:nth-child(3){height:48%;background:linear-gradient(#76c7ee,var(--blue));animation-delay:.2s}.mock-chart i:nth-child(4){height:82%;animation-delay:.3s}.mock-chart i:nth-child(5){height:55%;background:linear-gradient(#ffd78a,var(--amber));animation-delay:.4s}.mock-chart i:nth-child(6){height:72%;animation-delay:.5s}
.industries { background: linear-gradient(180deg,#fff,#eef7f4); }
.process-section { background: linear-gradient(135deg,#e9f7f3,#fff 52%,#e7f4fb); }
.timeline { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 16px; }
.timeline span { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; margin-bottom: 24px; border-radius: 50%; color: var(--mint); background: var(--navy); font-weight: 850; }
.contact-section { display: grid; grid-template-columns: minmax(0,.95fr) minmax(340px,.72fr); gap: 42px; align-items: start; color: #fff; background: radial-gradient(circle at 18% 20%,rgba(8,184,147,0.22),transparent 32%), #06131b; }
.contact-section p { color: rgba(255,255,255,0.72); max-width: 690px; margin-top: 20px; }
.contact-form,.demo-form { display: grid; gap: 15px; }
.contact-form { padding: 24px; border: 1px solid rgba(255,255,255,0.14); border-radius: 24px; background: rgba(255,255,255,0.1); backdrop-filter: blur(20px); box-shadow: 0 26px 70px rgba(0,0,0,0.24); }
label { display: grid; gap: 8px; color: rgba(255,255,255,0.84); font-weight: 800; }
input,select,textarea { width: 100%; padding: 13px 14px; border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; color: #fff; background: rgba(0,0,0,0.22); }
textarea { resize: vertical; }
input::placeholder,textarea::placeholder { color: rgba(255,255,255,0.48); }
.footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; padding: 28px clamp(18px,6vw,80px); color: rgba(255,255,255,0.68); background: #041016; }
.footer p { margin: 0; }
.demo-modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity 220ms ease; }
.demo-modal.open { opacity: 1; pointer-events: auto; }
.demo-backdrop { position: absolute; inset: 0; background: rgba(2,9,13,0.72); backdrop-filter: blur(14px); }
.demo-dialog { position: relative; width: min(520px,100%); padding: 30px; border: 1px solid rgba(157,233,209,0.24); border-radius: 28px; color: #fff; background: radial-gradient(circle at 16% 0%,rgba(8,184,147,0.24),transparent 34%),#06131b; box-shadow: 0 36px 120px rgba(0,0,0,0.48); }
.demo-close { position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.18); border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; font-weight: 850; cursor: pointer; }
.demo-dialog h2 { margin: 0; font-size: clamp(1.75rem,4vw,2.55rem); line-height: 1.04; }
.demo-dialog p:not(.eyebrow) { color: rgba(255,255,255,0.74); line-height: 1.65; }
.demo-form { margin-top: 22px; }
.demo-form .button { width: 100%; }
.reveal-section { opacity: 0; transform: translateY(22px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal-section.is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(8,184,147,0); } 100% { box-shadow: 0 0 0 0 rgba(8,184,147,0); } }
@keyframes sweep { 0%,100% { background-position: -180px 0,0 0,0 0; } 50% { background-position: 220px 0,18px 18px,18px 18px; } }
@keyframes flow { 0%,100% { transform: translateX(-40%); opacity:.45; } 50% { transform: translateX(100%); opacity:1; } }
@keyframes chart { from { filter: brightness(.88); transform: scaleY(.9); transform-origin: bottom; } to { filter: brightness(1.15); transform: scaleY(1); transform-origin: bottom; } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav-links,.nav-cta { display: none; }
  .menu-button { display: block; }
  .site-header.open .nav-links,.site-header.open .nav-cta { display: flex; grid-column: 1 / -1; }
  .site-header.open .nav-links { flex-direction: column; align-items: stretch; justify-self: stretch; border-radius: 16px; }
  .site-header.open .nav-cta { width: max-content; }
  .upgraded-hero,.product-showcase,.contact-section { grid-template-columns: 1fr; }
  .hero-console { justify-self: center; width: min(560px,100%); }
  .trust-band,.intro-grid,.industry-grid,.timeline { grid-template-columns: 1fr; }
  .trust-band a { border-right: 0; border-bottom: 1px solid #e4eeeb; }
  .trust-band a:last-child { border-bottom: 0; }
}
@media (max-width: 620px) {
  .brand { font-size: 1.15rem; }
  .brand-logo { width: 40px; height: 40px; flex-basis: 40px; border-radius: 12px; }
  .upgraded-hero { padding-top: 108px; min-height: auto; }
  .hero h1 { font-size: clamp(2.25rem,10vw,3.35rem); }
  .hero-actions,.product-actions { display: grid; grid-template-columns: 1fr; }
  .console-orbit,.console-metrics { grid-template-columns: 1fr; }
  .mock-layout { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .mock-cards { grid-template-columns: 1fr; }
  .footer { align-items: flex-start; flex-direction: column; }
}

/* BizYako creative polish and hero carousel */
body {
  background:
    radial-gradient(circle at 8% 4%, rgba(8,184,147,0.18), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(39,167,223,0.13), transparent 24rem),
    linear-gradient(180deg, #fbfffd 0%, #f2fbf8 42%, #eef7fb 100%);
}
.site-header {
  border-radius: 24px;
  box-shadow: 0 18px 62px rgba(4,16,22,0.22), inset 0 1px 0 rgba(255,255,255,0.08);
}
.brand { border-radius: 18px; }
.nav-cta,.button,.tab,.orbit-node,.feature-card,.industry-card,.timeline article { transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease; }
.nav-cta:hover,.button:hover,.tab:hover { transform: translateY(-2px); }
.hero { isolation: isolate; }
.hero-art { transition: opacity 320ms ease, transform 900ms cubic-bezier(.22,.61,.36,1), filter 320ms ease; transform: scale(1.02); filter: saturate(1.1) contrast(1.03); }
.hero.hero-transitioning .hero-art { opacity: 0.54; transform: scale(1.045); }
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(180deg, transparent, rgba(247,251,250,0.98));
  pointer-events: none;
  z-index: 1;
}
.hero-overlay {
  background:
    radial-gradient(circle at 72% 46%, rgba(8,184,147,0.26), transparent 32%),
    radial-gradient(circle at 92% 18%, rgba(39,167,223,0.18), transparent 24%),
    linear-gradient(90deg, rgba(3,11,16,0.97), rgba(6,19,27,0.78) 44%, rgba(6,19,27,0.18) 82%),
    linear-gradient(0deg, rgba(3,11,16,0.88), rgba(3,11,16,0.08) 54%);
}
.hero-mainline {
  padding: clamp(18px,2.4vw,28px);
  border: 1px solid rgba(157,233,209,0.14);
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(3,11,16,0.5), rgba(255,255,255,0.035));
  box-shadow: 0 30px 100px rgba(0,0,0,0.24);
  backdrop-filter: blur(16px);
}
.hero h1 { font-size: clamp(2.45rem, 4vw, 4.45rem); }
.hero-copy { color: rgba(255,255,255,0.86); }
.hero-carousel-controls {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 9px;
  margin-top: 22px;
  max-width: 560px;
}
.hero-carousel-controls button {
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid rgba(157,233,209,0.2);
  border-radius: 16px;
  color: rgba(255,255,255,0.72);
  background: rgba(255,255,255,0.07);
  cursor: pointer;
  font-weight: 850;
  text-align: left;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.hero-carousel-controls button:hover,.hero-carousel-controls button.active {
  color: #fff;
  border-color: rgba(157,233,209,0.58);
  background: linear-gradient(135deg, rgba(8,184,147,0.3), rgba(39,167,223,0.16));
  transform: translateY(-2px);
}
.hero-carousel-controls span { display: block; color: var(--mint); font-size: .72rem; margin-bottom: 3px; }
.hero-console {
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.16), rgba(255,255,255,0.045)), rgba(4,16,22,0.76);
  box-shadow: 0 38px 120px rgba(0,0,0,0.38), inset 0 0 90px rgba(8,184,147,0.12);
}
.orbit-node { border-radius: 18px; }
.orbit-node:hover,.orbit-node.active { transform: translateY(-3px); }
.trust-band {
  margin-top: -38px;
  position: relative;
  z-index: 3;
  border-radius: 28px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
}
.trust-band a { position: relative; overflow: hidden; }
.trust-band a::after {
  content: "";
  position: absolute;
  inset: auto 24px 18px 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--teal),var(--blue),var(--amber));
  opacity: .45;
}
.feature-card,.industry-card,.timeline article {
  border-radius: 24px;
  background: linear-gradient(180deg,#fff,rgba(238,251,247,0.86));
  box-shadow: 0 18px 54px rgba(6,19,27,0.08);
}
.feature-card:hover,.industry-card:hover,.timeline article:hover {
  border-color: rgba(8,184,147,0.34);
  box-shadow: 0 28px 76px rgba(6,19,27,0.13);
}
.products-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(8,184,147,0.24), transparent 33%),
    radial-gradient(circle at 86% 18%, rgba(39,167,223,0.18), transparent 28%),
    linear-gradient(135deg,#06131b,#082331 58%,#071824);
}
.product-showcase {
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(8,184,147,0.07)), rgba(255,255,255,0.04);
}
.product-panel { border-radius: 28px; overflow: hidden; }
.mock-cards span,.mock-sidebar,.mock-main,.mock-chart { box-shadow: inset 0 1px 0 rgba(255,255,255,0.07); }
.contact-form,.demo-dialog { border-radius: 30px; }
input:focus,select:focus,textarea:focus { outline: none; border-color: rgba(157,233,209,.72); box-shadow: 0 0 0 4px rgba(8,184,147,.14); }
@media (max-width: 620px) {
  .hero-mainline { padding: 18px; border-radius: 24px; }
  .hero-carousel-controls { grid-template-columns: 1fr; }
  .trust-band { margin-top: 0; }
}

/* Fail-safe reveal handling: content stays visible if scripts ever fail */
.reveal-section {
  opacity: 1;
  transform: none;
}
body.js-enabled .reveal-section {
  opacity: 0;
  transform: translateY(22px);
}
body.js-enabled .reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hidden carousel admin */
.admin-page {
  min-height: 100vh;
  color: #eefdfa;
  background:
    radial-gradient(circle at 12% 8%, rgba(8,184,147,0.24), transparent 28rem),
    radial-gradient(circle at 88% 12%, rgba(39,167,223,0.18), transparent 26rem),
    #041016;
}
.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 120px;
}
.admin-hero-card,
.admin-slide-card,
.admin-save-bar,
.admin-spec-grid article {
  border: 1px solid rgba(157,233,209,0.18);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
  backdrop-filter: blur(18px);
}
.admin-hero-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
  padding: clamp(22px,4vw,42px);
  border-radius: 30px;
}
.admin-hero-card h1 { margin: 0; color: #fff; font-size: clamp(2rem,4vw,4rem); }
.admin-hero-card p:not(.eyebrow) { margin: 10px 0 0; color: rgba(255,255,255,0.72); }
.admin-spec-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.admin-spec-grid article { padding: 18px; border-radius: 20px; }
.admin-spec-grid span { display: block; color: var(--mint); font-size: .8rem; font-weight: 850; text-transform: uppercase; }
.admin-spec-grid strong { display: block; margin-top: 8px; color: #fff; line-height: 1.3; }
.admin-editor-grid { display: grid; gap: 18px; }
.admin-slide-card {
  display: grid;
  grid-template-columns: minmax(320px,.72fr) minmax(0,1fr);
  gap: 18px;
  padding: 18px;
  border-radius: 26px;
}
.admin-slide-preview img { width: 100%; aspect-ratio: 16 / 9; border-radius: 20px; background: #06131b; object-fit: cover; }
.admin-slide-fields { display: grid; gap: 12px; }
.admin-slide-fields h2 { margin: 0; color: #fff; }
.admin-slide-fields label { color: rgba(255,255,255,0.86); }
.admin-slide-fields input,
.admin-slide-fields textarea {
  color: #fff;
  background: rgba(0,0,0,0.24);
  border-color: rgba(157,233,209,0.2);
}
.admin-field-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.admin-save-bar {
  position: sticky;
  bottom: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 14px;
  border-radius: 22px;
}
.admin-save-bar p { margin: 0; color: rgba(255,255,255,.76); }
@media (max-width: 860px) {
  .admin-hero-card,.admin-save-bar { display: grid; }
  .admin-spec-grid,.admin-slide-card,.admin-field-row { grid-template-columns: 1fr; }
}

/* Conversion support hub, chatbot, and product-definition lead flow */
.support-hub {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: grid;
  gap: 10px;
}
.support-action {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 20px;
  color: #fff;
  background: rgba(4,16,22,0.78);
  box-shadow: 0 18px 54px rgba(3,11,16,0.28), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.support-action:hover,
.support-action.active {
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(8,184,147,0.24);
}
.support-action svg {
  width: 28px;
  height: 28px;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}
.support-action:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(157,233,209,0.24), 0 24px 70px rgba(8,184,147,0.24);
}
.whatsapp-action { background: linear-gradient(145deg,#25d366,#0a9f56); }
.chat-action { background: linear-gradient(145deg,var(--teal),var(--blue)); }
.whatsapp-action::before,
.chat-action::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255,255,255,0.28), transparent 58%);
  pointer-events: none;
}
.support-action { position: relative; overflow: hidden; }
.support-action svg { position: relative; z-index: 1; }

.chat-panel {
  position: fixed;
  right: 94px;
  bottom: 22px;
  z-index: 72;
  width: min(410px, calc(100vw - 32px));
  max-height: min(680px, calc(100svh - 42px));
  display: grid;
  grid-template-rows: auto minmax(170px,1fr) auto auto;
  overflow: hidden;
  border: 1px solid rgba(157,233,209,0.24);
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 18% 0%, rgba(8,184,147,0.24), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045)),
    rgba(4,16,22,0.94);
  box-shadow: 0 34px 120px rgba(0,0,0,0.42);
  backdrop-filter: blur(22px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(.98);
  transition: opacity 180ms ease, transform 180ms ease;
}
.chat-panel.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}
.chat-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 20px 14px;
  border-bottom: 1px solid rgba(157,233,209,0.14);
}
.chat-head h2 { margin: 0; font-size: 1.22rem; line-height: 1.1; }
.chat-head .eyebrow { margin-bottom: 6px; }
.chat-head button,
.lead-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,0.08);
  font-weight: 900;
  cursor: pointer;
}
.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px;
  overflow: auto;
}
.chat-bubble {
  display: grid;
  gap: 6px;
  max-width: 92%;
  padding: 13px 14px;
  border-radius: 18px;
  line-height: 1.48;
  font-size: .92rem;
}
.chat-bubble.bot {
  justify-self: start;
  color: rgba(255,255,255,0.86);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(157,233,209,0.14);
}
.chat-bubble.user {
  justify-self: end;
  color: #041016;
  background: linear-gradient(135deg,#d9fff4,#8be8cc);
}
.chat-bubble strong { color: #fff; }
.chat-bubble.user strong { color: #041016; }
.chat-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.chat-inline-actions button,
.chat-inline-actions a,
.chat-quick-actions button {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(157,233,209,0.2);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,0.08);
  font-size: .78rem;
  font-weight: 850;
  cursor: pointer;
}
.chat-inline-actions button,
.chat-inline-actions a { background: rgba(8,184,147,0.2); }
.chat-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}
.chat-quick-actions button:hover,
.chat-inline-actions button:hover,
.chat-inline-actions a:hover {
  background: rgba(8,184,147,0.28);
  border-color: rgba(157,233,209,0.5);
}
.chat-footer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(157,233,209,0.14);
}
.chat-footer-actions .button { min-height: 44px; padding: 0 12px; font-size: .84rem; }
.lead-builder {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}
.lead-builder.open { opacity: 1; pointer-events: auto; }
.lead-backdrop { position: absolute; inset: 0; background: rgba(2,9,13,0.76); backdrop-filter: blur(14px); }
.lead-dialog {
  position: relative;
  width: min(860px,100%);
  max-height: calc(100svh - 40px);
  overflow: auto;
  padding: clamp(22px,4vw,34px);
  border: 1px solid rgba(157,233,209,0.24);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 0%, rgba(8,184,147,0.25), transparent 32%),
    radial-gradient(circle at 86% 10%, rgba(39,167,223,0.18), transparent 28%),
    #06131b;
  box-shadow: 0 38px 130px rgba(0,0,0,0.5);
}
.lead-close { position: absolute; top: 18px; right: 18px; }
.lead-dialog h2 { margin: 0; max-width: 720px; font-size: clamp(1.85rem,3.4vw,3rem); line-height: 1.04; }
.lead-intro { max-width: 660px; color: rgba(255,255,255,0.72); line-height: 1.65; }
.lead-form { display: grid; gap: 15px; margin-top: 22px; }
.lead-form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.lead-form .button { width: max-content; min-width: 210px; }
.lead-form input,
.lead-form select,
.lead-form textarea {
  color: #fff;
  background: rgba(0,0,0,0.24);
  border-color: rgba(157,233,209,0.2);
}

@media (max-width: 980px) {
  .product-tabs {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
  }
  .tab { flex: 0 0 auto; }
}

@media (max-width: 720px) {
  .support-hub {
    right: 14px;
    bottom: 14px;
    grid-template-columns: repeat(2, 54px);
  }
  .support-action { width: 54px; height: 54px; border-radius: 18px; }
  .support-action svg { width: 26px; height: 26px; }
  .chat-panel {
    right: 12px;
    bottom: 82px;
    width: calc(100vw - 24px);
    max-height: calc(100svh - 100px);
    border-radius: 24px;
  }
  .chat-footer-actions,
  .lead-form-grid { grid-template-columns: 1fr; }
  .lead-builder { padding: 12px; }
  .lead-dialog { max-height: calc(100svh - 24px); border-radius: 24px; }
  .lead-form .button { width: 100%; }
  .section,.industries,.contact-section { padding-top: 72px; padding-bottom: 72px; }
  .hero-status-pill { flex-wrap: wrap; border-radius: 18px; }
  .enhanced-signals { max-height: 92px; overflow: auto; padding-bottom: 2px; }
}

@media (max-width: 420px) {
  .site-header { width: calc(100% - 20px); top: 10px; padding: 8px; border-radius: 18px; }
  .brand { font-size: 1rem; padding-right: 8px; }
  .brand-logo { width: 36px; height: 36px; flex-basis: 36px; }
  .hero h1 { font-size: clamp(2rem,9.4vw,2.9rem); }
  .hero-copy { font-size: .96rem; line-height: 1.55; }
  .chat-head { padding: 16px; }
  .chat-messages { padding: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}


/* BizYako demo product pages */
.product-demo-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 12% 8%, rgba(8,184,147,0.22), transparent 28rem),
    radial-gradient(circle at 86% 12%, rgba(39,167,223,0.16), transparent 26rem),
    #06131b;
}
.demo-header { position: sticky; margin-top: 16px; }
.demo-page-hero {
  width: min(1160px, calc(100% - 36px));
  min-height: 88svh;
  margin: 0 auto;
  padding: 130px 0 70px;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(360px,.82fr);
  gap: clamp(28px,5vw,64px);
  align-items: center;
}
.demo-page-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem,5vw,5.2rem);
  line-height: 1;
  text-wrap: balance;
}
.demo-page-copy p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255,255,255,0.76);
  font-size: clamp(1rem,1.2vw,1.14rem);
  line-height: 1.72;
}
.demo-product-console,
.demo-contact-card,
.demo-detail-grid article {
  border: 1px solid rgba(157,233,209,0.18);
  background: linear-gradient(145deg, rgba(255,255,255,0.12), rgba(255,255,255,0.045));
  box-shadow: 0 30px 100px rgba(0,0,0,0.28);
  backdrop-filter: blur(18px);
}
.demo-product-console { padding: 20px; border-radius: 32px; }
.demo-screen-grid { display: grid; grid-template-columns: 80px 1fr; gap: 16px; min-height: 390px; margin-top: 14px; }
.demo-screen-side,
.demo-screen-main { border-radius: 18px; background: rgba(255,255,255,0.08); }
.demo-screen-main { padding: 22px; }
.demo-screen-line { height: 14px; width: 54%; margin-bottom: 12px; border-radius: 999px; background: rgba(255,255,255,0.16); }
.demo-screen-line.wide { width: 78%; background: rgba(157,233,209,0.42); }
.demo-screen-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 22px 0; }
.demo-screen-cards span { height: 92px; border-radius: 16px; background: linear-gradient(145deg, rgba(8,184,147,0.18), rgba(39,167,223,0.1)); }
.demo-screen-table { display: grid; gap: 10px; padding: 18px; border-radius: 18px; background: rgba(0,0,0,0.2); }
.demo-screen-table span { height: 13px; border-radius: 999px; background: rgba(255,255,255,0.14); }
.demo-screen-table span:nth-child(odd) { width: 82%; }
.demo-page-body,
.demo-page-cta { padding: 86px clamp(18px,6vw,80px); }
.demo-detail-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.demo-detail-grid article { min-height: 210px; padding: 26px; border-radius: 26px; }
.demo-detail-grid span { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; margin-bottom: 22px; border-radius: 50%; color: var(--navy); background: var(--mint); font-weight: 900; }
.demo-detail-grid h3 { margin: 0 0 10px; font-size: 1.22rem; }
.demo-detail-grid p { margin: 0; color: rgba(255,255,255,0.68); line-height: 1.65; }
.demo-page-cta {
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(320px,.44fr);
  gap: 28px;
  align-items: start;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(8,184,147,0.08));
}
.demo-page-cta h2 { margin: 0; font-size: clamp(2rem,3.6vw,3.8rem); line-height: 1.04; }
.demo-page-cta p { color: rgba(255,255,255,0.7); line-height: 1.68; }
.demo-contact-card { display: grid; gap: 12px; padding: 22px; border-radius: 26px; }
.demo-contact-card a:not(.button),
.footer-contact a,
.contact-quick-details a { color: var(--mint); font-weight: 850; }
.footer-contact { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 14px; color: rgba(255,255,255,0.7); }
.footer-contact p { margin: 0; }
.contact-quick-details { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.contact-quick-details a,
.contact-quick-details span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(157,233,209,0.2);
  border-radius: 999px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
}
@media (max-width: 900px) {
  .demo-page-hero,
  .demo-page-cta { grid-template-columns: 1fr; }
  .demo-detail-grid { grid-template-columns: 1fr; }
  .demo-product-console { order: -1; margin-top: 26px; }
}
@media (max-width: 560px) {
  .demo-page-hero { width: min(100% - 24px, 1160px); padding-top: 112px; min-height: auto; }
  .demo-page-copy h1 { font-size: clamp(2.2rem,11vw,3.35rem); }
  .demo-screen-grid { grid-template-columns: 1fr; min-height: 300px; }
  .demo-screen-side { display: none; }
  .demo-screen-cards { grid-template-columns: 1fr; }
  .footer-contact { justify-content: flex-start; }
}

/* Premium demo page refinement */
.product-demo-page {
  background:
    radial-gradient(circle at 9% 4%, rgba(8,184,147,0.28), transparent 28rem),
    radial-gradient(circle at 84% 10%, rgba(39,167,223,0.22), transparent 26rem),
    linear-gradient(135deg, #030b10 0%, #071824 48%, #05262c 100%);
}
.product-demo-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background-image:
    linear-gradient(rgba(157,233,209,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,233,209,.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, black, transparent 78%);
}
.demo-page-hero { position: relative; z-index: 1; }
.demo-page-copy {
  padding: clamp(18px,2.2vw,30px);
  border: 1px solid rgba(157,233,209,.13);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.025));
  box-shadow: 0 34px 120px rgba(0,0,0,.26);
  backdrop-filter: blur(18px);
}
.demo-product-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
}
.demo-switch-pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(157,233,209,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.76);
  background: rgba(255,255,255,.07);
  font-size: .84rem;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.demo-switch-pill:hover,
.demo-switch-pill.active {
  color: #fff;
  border-color: rgba(157,233,209,.55);
  background: linear-gradient(135deg, rgba(8,184,147,.32), rgba(39,167,223,.18));
  transform: translateY(-2px);
}
.demo-stat-row {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 10px;
  margin-top: 20px;
  max-width: 590px;
}
.demo-stat-row span {
  min-height: 70px;
  display: grid;
  align-content: center;
  padding: 12px;
  border: 1px solid rgba(157,233,209,.15);
  border-radius: 18px;
  color: rgba(255,255,255,.84);
  background: rgba(255,255,255,.07);
  font-weight: 850;
}
.premium-console {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.17), rgba(255,255,255,.045)),
    rgba(4,16,22,.78);
  box-shadow: 0 38px 140px rgba(0,0,0,.4), inset 0 0 96px rgba(8,184,147,.12);
}
.premium-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(157,233,209,.13), transparent);
  transform: translateX(-100%);
  animation: refinedShimmer 7s ease-in-out infinite;
  pointer-events: none;
}
.demo-live-card {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 16px;
  padding: 18px;
  border: 1px solid rgba(157,233,209,.18);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(8,184,147,.2), rgba(39,167,223,.1));
}
.demo-live-card small,
.demo-live-card span { color: rgba(255,255,255,.68); }
.demo-live-card strong { display: block; color: #fff; font-size: 2.4rem; line-height: 1; }
.demo-screen-side { display: grid; align-content: start; gap: 10px; padding: 14px; }
.demo-screen-side span { height: 12px; border-radius: 999px; background: rgba(255,255,255,.16); }
.demo-screen-side span:first-child { background: var(--mint); }
.demo-screen-cards span { position: relative; overflow: hidden; }
.demo-screen-cards span::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px 12px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--teal),var(--blue),var(--amber));
}
.demo-workflow-section {
  padding: 86px clamp(18px,6vw,80px);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(8,184,147,.07));
}
.demo-workflow-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
}
.demo-workflow-grid article {
  position: relative;
  min-height: 230px;
  padding: 26px;
  border: 1px solid rgba(157,233,209,.18);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.105), rgba(255,255,255,.04));
  box-shadow: 0 28px 90px rgba(0,0,0,.18);
  overflow: hidden;
}
.demo-workflow-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--teal),var(--blue),var(--amber));
}
.demo-workflow-grid small {
  color: var(--mint);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .74rem;
}
.demo-workflow-grid h3 { margin: 18px 0 10px; font-size: 1.22rem; }
.demo-workflow-grid p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.65; }
.demo-page-body { background: rgba(255,255,255,.025); }
.demo-detail-grid article {
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}
.demo-detail-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(157,233,209,.42);
  box-shadow: 0 34px 110px rgba(8,184,147,.14);
}
.demo-detail-grid article::after {
  content: "";
  position: absolute;
  right: -46px;
  top: -46px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,184,147,.2), transparent 68%);
}
.demo-page-cta {
  border-top: 1px solid rgba(157,233,209,.12);
  border-bottom: 1px solid rgba(157,233,209,.12);
}
.demo-contact-card { position: relative; overflow: hidden; }
.demo-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.08), transparent 46%, rgba(8,184,147,.08));
  pointer-events: none;
}
.demo-contact-card > * { position: relative; z-index: 1; }
.demo-contact-badge {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--mint);
  background: rgba(8,184,147,.12);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-quick-details a,
.contact-quick-details span,
.footer-contact a,
.footer-contact span,
.footer-contact p {
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.contact-quick-details a:hover,
.footer-contact a:hover { transform: translateY(-2px); }
.footer.premium-footer,
.footer { border-top: 1px solid rgba(157,233,209,.12); }
@keyframes refinedShimmer { 0%, 62%, 100% { transform: translateX(-110%); opacity: 0; } 72% { opacity: 1; } 88% { transform: translateX(110%); opacity: 0; } }
@media (max-width: 900px) {
  .demo-stat-row,
  .demo-workflow-grid { grid-template-columns: 1fr; }
  .demo-page-copy { border-radius: 26px; }
}
@media (max-width: 560px) {
  .demo-product-switcher { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 4px; }
  .demo-switch-pill { flex: 0 0 auto; }
  .demo-live-card { display: grid; }
  .demo-live-card strong { font-size: 2rem; }
}

/* World-standard BizYako footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px clamp(18px,6vw,80px) 28px;
  color: rgba(255,255,255,.74);
  background:
    radial-gradient(circle at 12% 0%, rgba(8,184,147,.18), transparent 30rem),
    radial-gradient(circle at 92% 12%, rgba(39,167,223,.14), transparent 26rem),
    linear-gradient(180deg, #041016 0%, #030b10 100%);
  border-top: 1px solid rgba(157,233,209,.14);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image:
    linear-gradient(rgba(157,233,209,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,233,209,.12) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px,1.25fr) minmax(150px,.62fr) minmax(150px,.62fr) minmax(300px,1fr);
  gap: clamp(24px,4vw,56px);
  align-items: start;
}
.footer-brand-panel {
  display: grid;
  gap: 16px;
  max-width: 430px;
}
.footer-brand-panel .brand {
  width: max-content;
  max-width: 100%;
}
.footer-brand-panel p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem,2.2vw,2.3rem);
  line-height: 1.08;
  font-weight: 850;
  text-wrap: balance;
}
.footer-brand-panel > span {
  color: rgba(255,255,255,.68);
  line-height: 1.7;
  max-width: 390px;
}
.footer-column,
.footer-contact-panel {
  display: grid;
  gap: 10px;
}
.footer-column h2,
.footer-contact-panel h2 {
  margin: 0 0 10px;
  color: var(--mint);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.footer-column a {
  width: max-content;
  max-width: 100%;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
  transition: color 180ms ease, transform 180ms ease;
}
.footer-column a:hover,
.footer-column a:focus-visible {
  color: #fff;
  transform: translateX(3px);
  outline: none;
}
.footer-contact-panel { gap: 11px; }
.footer-icon-card {
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px minmax(0,1fr);
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(157,233,209,.15);
  border-radius: 18px;
  color: rgba(255,255,255,.76);
  background: linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.035));
  box-shadow: 0 18px 54px rgba(0,0,0,.16);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
a.footer-icon-card:hover,
a.footer-icon-card:focus-visible {
  color: #fff;
  border-color: rgba(157,233,209,.42);
  background: linear-gradient(145deg, rgba(8,184,147,.18), rgba(39,167,223,.08));
  box-shadow: 0 24px 70px rgba(8,184,147,.13);
  transform: translateY(-3px);
  outline: none;
}
.footer-icon-card svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, rgba(8,184,147,.9), rgba(39,167,223,.78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 12px 30px rgba(8,184,147,.16);
}
.footer-icon-card span {
  min-width: 0;
  display: grid;
  gap: 3px;
  line-height: 1.25;
}
.footer-icon-card strong {
  color: #fff;
  font-size: .86rem;
}
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(157,233,209,.13);
}
.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.56);
  font-size: .88rem;
}
.footer-bottom p:nth-child(2) {
  justify-self: center;
  color: var(--mint);
  font-weight: 850;
}
.footer-bottom p:last-child {
  justify-self: end;
  text-align: right;
}
@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: minmax(0,1.1fr) minmax(0,.9fr);
  }
  .footer-contact-panel {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2,minmax(0,1fr));
  }
  .footer-contact-panel h2 { grid-column: 1 / -1; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom p,
  .footer-bottom p:nth-child(2),
  .footer-bottom p:last-child { justify-self: start; text-align: left; }
}
@media (max-width: 620px) {
  .site-footer { padding-top: 56px; padding-bottom: 96px; }
  .footer-grid,
  .footer-contact-panel { grid-template-columns: 1fr; }
  .footer-brand-panel p { font-size: 1.55rem; }
  .footer-column a { min-height: 34px; display: inline-flex; align-items: center; }
  .footer-icon-card { border-radius: 16px; }
}

/* Enhanced carousel admin image controls */
.admin-guidance-panel {
  display: grid;
  grid-template-columns: minmax(280px,.8fr) minmax(0,1.2fr);
  gap: 18px;
  margin-bottom: 18px;
  padding: clamp(18px,3vw,28px);
  border: 1px solid rgba(157,233,209,0.18);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  box-shadow: 0 24px 80px rgba(0,0,0,0.22);
  backdrop-filter: blur(18px);
}
.admin-guidance-panel h2 { margin: 0; color: #fff; font-size: clamp(1.55rem,3vw,2.7rem); line-height: 1.05; }
.admin-guidance-panel p:not(.eyebrow) { color: rgba(255,255,255,0.72); line-height: 1.65; }
.admin-guidance-panel .admin-spec-grid { margin-bottom: 0; }
.admin-guidance-panel .admin-spec-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
.admin-slide-preview { display: grid; gap: 12px; align-content: start; }
.admin-image-meta {
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(0,0,0,0.18);
}
.admin-image-meta strong { color: #fff; }
.admin-image-meta span { color: rgba(255,255,255,0.68); line-height: 1.45; }
.admin-image-meta.good { border-color: rgba(8,184,147,0.46); background: rgba(8,184,147,0.12); }
.admin-image-meta.warn { border-color: rgba(246,178,60,0.5); background: rgba(246,178,60,0.12); }
.admin-slide-title-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}
.admin-slide-title-row .eyebrow { margin-bottom: 5px; }
.admin-slide-title-row > span {
  flex: 0 0 auto;
  padding: 8px 10px;
  border: 1px solid rgba(157,233,209,0.22);
  border-radius: 999px;
  color: var(--mint);
  background: rgba(8,184,147,0.1);
  font-size: .78rem;
  font-weight: 900;
}
.admin-slide-fields label span,
.admin-upload-field span { color: rgba(255,255,255,0.9); }
.admin-slide-fields label small,
.admin-upload-field small { color: rgba(255,255,255,0.58); line-height: 1.45; }
.admin-upload-field {
  padding: 15px;
  border: 1px dashed rgba(157,233,209,0.34);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(8,184,147,0.14), rgba(39,167,223,0.06));
}
.admin-upload-field input[type="file"] {
  padding: 12px;
  color: rgba(255,255,255,0.82);
  background: rgba(0,0,0,0.2);
  cursor: pointer;
}
.admin-slide-preview img {
  min-height: 240px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.24);
}
@media (max-width: 900px) {
  .admin-guidance-panel,
  .admin-guidance-panel .admin-spec-grid { grid-template-columns: 1fr; }
  .admin-slide-title-row { display: grid; }
}

/* 2026 wide visual system and support refinement */
html { overflow-x: hidden; }
body { background: #f6faf9; }

.site-header {
  top: 10px;
  width: calc(100% - 24px);
  grid-template-columns: auto minmax(360px, 1fr) auto auto;
  gap: 12px;
  padding: 7px 9px;
  border-radius: 14px;
  background: rgba(3, 15, 21, 0.58);
  backdrop-filter: blur(20px) saturate(135%);
}
.site-header.scrolled,
.site-header.open {
  color: #071824;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 38px rgba(3, 18, 24, 0.12);
}
.brand {
  gap: 9px;
  padding: 3px 11px 3px 3px;
  border-radius: 11px;
  font-size: 1.18rem;
}
.brand-logo {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
  border-radius: 9px;
  background: #fff;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  padding: 1px;
  object-fit: contain;
  transform: none;
}
.nav-links {
  width: min(600px, 100%);
  justify-content: space-evenly;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
}
.site-header.scrolled .nav-links,
.site-header.open .nav-links {
  color: #071824;
  border: 0;
  background: transparent;
}
.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 10px;
}
.nav-links a:hover { color: #fff; background: rgba(8, 184, 147, 0.24); }
.site-header.scrolled .nav-links a:hover,
.site-header.open .nav-links a:hover { color: #071824; }
.nav-cta { min-height: 42px; border-radius: 10px; white-space: nowrap; }
.install-app { border-radius: 10px; white-space: nowrap; }

.hero { min-height: 100svh; }
.hero-art {
  opacity: 1;
  object-position: center;
  filter: saturate(1.16) brightness(1.07) contrast(1.03);
  transform: scale(1.004);
  transition: opacity 440ms ease, transform 900ms cubic-bezier(.2,.75,.2,1), filter 440ms ease;
}
.hero-transitioning .hero-art {
  opacity: .92;
  filter: saturate(1.08) brightness(1.01) contrast(1.02);
  transform: scale(1.014);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 12, 17, .32) 0%, rgba(3, 17, 22, .2) 38%, rgba(3, 17, 22, .08) 68%, rgba(3, 17, 22, .04) 100%),
    linear-gradient(0deg, rgba(3, 12, 17, .16), transparent 44%);
}
.hero-grid-lines { opacity: .08; }
.upgraded-hero {
  width: min(1440px, calc(100% - 64px));
  min-height: 100svh;
  padding: 100px 0 38px;
  grid-template-columns: minmax(500px, .96fr) minmax(500px, .74fr);
  gap: clamp(32px, 4.2vw, 72px);
}
.hero-mainline {
  max-width: 680px;
  border-color: rgba(255, 255, 255, .2);
  background: linear-gradient(145deg, rgba(3, 18, 23, .7), rgba(3, 18, 23, .52));
  box-shadow: 0 24px 70px rgba(1, 10, 15, .2), inset 0 1px rgba(255, 255, 255, .1);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}
.hero h1 {
  max-width: 620px;
  font-size: 3rem;
  line-height: 1.06;
  font-weight: 800;
  text-shadow: 0 10px 34px rgba(0, 0, 0, .34);
}
.hero-copy {
  max-width: 570px;
  margin-top: 16px;
  font-size: .96rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, .9);
}
.hero-actions { margin-top: 21px; }
.hero-actions .button { min-height: 44px; border-radius: 10px; }
.hero-carousel-controls { margin-top: 18px; }
.enhanced-signals {
  max-width: 100%;
  flex-wrap: nowrap;
  gap: 7px;
  margin-top: 16px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.enhanced-signals::-webkit-scrollbar,
.product-tabs::-webkit-scrollbar { display: none; }
.signal-row button { flex: 0 0 auto; padding: 6px 10px; font-size: .78rem; }

.hero-console {
  width: min(560px, 100%);
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(5, 25, 31, .72), rgba(6, 20, 28, .58));
  box-shadow: 0 28px 82px rgba(0, 0, 0, .3), inset 0 0 48px rgba(8, 184, 147, .08);
  backdrop-filter: blur(18px) saturate(1.18);
}
.console-orbit {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0 12px;
  padding: 10px;
  border-radius: 8px;
}
.orbit-node {
  min-height: 62px;
  gap: 3px;
  padding: 9px 10px;
  border-radius: 7px;
}
.orbit-node span { font-size: .9rem; }
.orbit-node small { font-size: .64rem; }
.console-metrics { gap: 8px; }
.console-metrics div { min-height: 66px; padding: 10px; border-radius: 7px; }
.console-metrics strong { font-size: 1.2rem; }
.console-flow { margin-top: 10px; }

.trust-band {
  width: min(1440px, calc(100% - 64px));
  margin-top: 24px;
  border-radius: 8px;
}
.trust-band a { padding: 24px; }
.section,
.industries,
.contact-section,
.demo-page-body,
.demo-page-cta {
  padding-block: 84px;
  padding-inline: max(32px, calc((100vw - 1440px) / 2));
}
.section-heading h2,
.contact-section h2 { font-size: 2.85rem; line-height: 1.09; }
.feature-card,
.industry-card,
.timeline article,
.product-showcase,
.product-panel,
.contact-form,
.demo-product-console,
.demo-contact-card,
.demo-detail-grid article { border-radius: 8px; }
.feature-card,
.industry-card,
.timeline article { padding: 25px; }
.product-tabs {
  width: 100%;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab { flex: 0 0 auto; border-radius: 8px; }
.product-showcase { padding: 26px; }
.product-copy h3 { font-size: 2.5rem; line-height: 1.1; }
.product-panel { min-height: 370px; }
.products-section {
  background:
    linear-gradient(110deg, rgba(8, 184, 147, .13), transparent 40%),
    linear-gradient(290deg, rgba(39, 167, 223, .11), transparent 42%),
    #06131b;
}
.process-section { background: linear-gradient(110deg, #eaf8f4, #fff 58%, #eaf4fa); }
.contact-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-top: 2px solid #08b893;
}
.contact-section > * {
  position: relative;
  z-index: 1;
}
.site-footer { width: 100%; }
.footer-grid,
.footer-bottom {
  width: min(1440px, calc(100% - 64px));
  margin-inline: auto;
}

.demo-page-hero {
  width: min(1440px, calc(100% - 64px));
  min-height: 82svh;
  padding: 112px 0 58px;
}
.demo-page-copy h1 { font-size: 3.6rem; line-height: 1.06; }
.demo-page-cta h2 { font-size: 2.8rem; line-height: 1.08; }

.support-hub {
  top: 52%;
  right: 18px;
  bottom: auto;
  gap: 10px;
  transform: translateY(-50%);
}
.support-action {
  position: relative;
  width: 54px;
  height: 54px;
  display: inline-grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
}
.support-action:hover,
.support-action.active {
  transform: none;
  box-shadow: none;
}
.whatsapp-action { color: #25d366; background: transparent; }
.chat-action { color: #12a9c2; background: transparent; }
.whatsapp-action::before,
.chat-action::before { display: none; }
.support-action svg {
  width: 40px;
  height: 40px;
  display: block;
  overflow: visible;
  transform-origin: center;
  filter: drop-shadow(0 5px 10px rgba(1, 10, 15, .28));
  transition: transform 180ms ease, filter 180ms ease;
  will-change: transform;
}
.support-action:hover svg,
.support-action.active svg {
  transform: translateY(-2px) scale(1.06);
  filter: drop-shadow(0 7px 13px rgba(1, 10, 15, .34));
}
.launcher-bubble { vector-effect: non-scaling-stroke; }
.launcher-detail,
.chat-dot { fill: #fff; }
.support-action:focus-visible {
  outline: 2px solid rgba(8, 184, 147, .9);
  outline-offset: 2px;
  box-shadow: none;
}
.chat-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: chatDot 1.35s ease-in-out infinite;
}
.chat-dot:nth-of-type(2) { animation-delay: .15s; }
.chat-dot:nth-of-type(3) { animation-delay: .3s; }
.chat-action.active .chat-dot { animation-play-state: paused; opacity: 1; transform: none; }
@keyframes chatDot {
  0%, 60%, 100% { opacity: .68; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) {
  .support-action svg,
  .chat-dot {
    animation: none;
    transition: none;
  }
  .support-action:hover svg,
  .support-action.active svg { transform: none; }
}
.chat-panel {
  right: 84px;
  bottom: 18px;
  width: min(380px, calc(100vw - 112px));
  max-height: min(610px, calc(100svh - 36px));
  border: 0;
  border-radius: 8px;
  font-size: 0.86rem;
  background: rgba(4, 18, 24, .97);
  box-shadow: 0 28px 88px rgba(0, 0, 0, .4);
}
.chat-head { padding: 17px 17px 13px; }
.chat-head h2 { font-size: 1.08rem; }
.chat-messages { padding: 13px; }
.chat-bubble { padding: 11px 12px; border-radius: 8px; font-size: .84rem; }
.chat-quick-actions { padding: 0 13px 13px; }
.chat-quick-actions button,
.chat-inline-actions button,
.chat-inline-actions a { font-size: .78rem; }
.chat-footer-actions { padding: 12px 13px 13px; }
.chat-footer-actions .button { min-height: 40px; font-size: .8rem; border-radius: 8px; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto minmax(330px, 1fr) auto auto; gap: 8px; }
  .nav-links { gap: 2px; }
  .nav-links a { padding-inline: 10px; }
  .install-app.available span { display: none; }
  .install-app { padding-right: 6px; }
  .upgraded-hero { grid-template-columns: minmax(420px, .9fr) minmax(430px, .75fr); }
  .hero h1 { font-size: 3rem; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .install-app.available { justify-self: end; }
  .upgraded-hero {
    width: min(760px, calc(100% - 48px));
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 106px;
  }
  .hero-mainline { max-width: 680px; }
  .hero-console { justify-self: stretch; width: 100%; }
  .trust-band { width: calc(100% - 48px); }
  .product-showcase { grid-template-columns: 1fr; }
  .product-panel { min-height: 330px; }
  .demo-page-copy h1 { font-size: 3rem; }
}

@media (max-width: 620px) {
  .site-header { top: 8px; width: calc(100% - 16px); padding: 6px; border-radius: 11px; }
  .brand { gap: 7px; padding-right: 8px; font-size: 1rem; }
  .brand-logo { width: 36px; height: 36px; flex-basis: 36px; }
  .install-app { min-height: 38px; padding: 4px; }
  .install-app img { width: 28px; height: 28px; }
  .menu-button { width: 38px; height: 38px; border-radius: 9px; }
  .upgraded-hero {
    width: calc(100% - 28px);
    padding: 92px 0 38px;
    gap: 24px;
  }
  .hero h1 { font-size: 2.32rem; line-height: 1.08; }
  .hero-copy { font-size: .96rem; }
  .hero-mainline { background: linear-gradient(145deg, rgba(3, 18, 23, .76), rgba(3, 18, 23, .6)); }
  .hero-status-pill { font-size: .7rem; }
  .hero-status-pill strong { display: none; }
  .hero-actions { gap: 9px; }
  .hero-actions .button { flex: 1 1 140px; padding-inline: 12px; }
  .hero-carousel-controls button { min-width: 92px; }
  .hero-console { padding: 13px; }
  .console-topline { font-size: .76rem; }
  .console-orbit { gap: 6px; padding: 7px; }
  .orbit-node { min-height: 54px; padding: 7px; }
  .orbit-node span { font-size: .8rem; }
  .orbit-node small { font-size: .56rem; }
  .console-metrics div { min-height: 60px; padding: 8px; }
  .console-metrics strong { font-size: 1rem; }
  .console-metrics span { font-size: .63rem; }
  .trust-band { width: calc(100% - 28px); }
  .section,
  .industries,
  .contact-section,
  .demo-page-body,
  .demo-page-cta { padding: 64px 18px; }
  .section-heading h2,
  .contact-section h2 { font-size: 2.05rem; }
  .product-copy h3 { font-size: 2rem; }
  .product-showcase { padding: 18px; }
  .demo-page-hero { width: calc(100% - 28px); padding-top: 96px; }
  .demo-page-copy h1 { font-size: 2.35rem; }
  .demo-page-cta h2 { font-size: 2.1rem; }
  .footer-grid,
  .footer-bottom { width: calc(100% - 36px); }
  .support-hub { top: 58%; right: 10px; bottom: auto; }
  .hero-carousel-controls,
  .enhanced-signals {
    max-width: calc(100% - 58px);
  }
  .support-action { width: 50px; height: 50px; }
  .support-action svg { width: 38px; height: 38px; }
  .chat-panel {
    right: 12px;
    bottom: 72px;
    width: calc(100vw - 24px);
    max-height: calc(100svh - 88px);
  }
}
/* Intrinsic sizing guards for narrow viewports */
.hero-mainline,
.hero-console {
  min-width: 0;
  width: 100%;
}
.hero-carousel-controls {
  display: flex;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}
.hero-carousel-controls button { flex: 1 0 96px; }
.hero-carousel-controls::-webkit-scrollbar { display: none; }

@media (max-width: 620px) {
  .upgraded-hero { grid-template-columns: minmax(0, 1fr); }
}
/* Independent review hardening */
.demo-header {
  position: fixed;
  margin-top: 0;
  grid-template-columns: auto minmax(320px, 1fr) auto;
}
.demo-page-copy,
.demo-product-console {
  min-width: 0;
  width: 100%;
}
.demo-product-switcher {
  max-width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.demo-product-switcher::-webkit-scrollbar { display: none; }
.demo-switch-pill { flex: 0 0 auto; min-height: 44px; }
.chat-quick-actions button,
.chat-inline-actions button,
.chat-inline-actions a { min-height: 44px; }
.chat-footer-actions .button { min-height: 44px; }

@media (max-width: 900px) {
  .demo-page-hero { grid-template-columns: minmax(0, 1fr); }
}

@media (max-width: 980px) {
  .demo-header { grid-template-columns: auto 1fr auto; }
  .demo-header .nav-cta {
    display: inline-flex;
    grid-column: 3;
    justify-self: end;
  }
}

@media (max-width: 620px) {
  .install-app { min-height: 44px; }
  .install-app.available { grid-column: 2; justify-self: end; }
  .menu-button {
    grid-column: 3;
    justify-self: end;
    width: 44px;
    height: 44px;
  }
}
/* Authenticated admin and protected-form refinements */
.admin-access-shell {
  width: 100%;
  min-height: 100svh;
}
.admin-login-panel {
  width: min(460px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(32px, 8vh, 72px) 0;
}
.admin-login-panel::before {
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 28px;
  content: '';
  background: linear-gradient(90deg, #08b893, #27a7df 68%, #f7c759);
}
.admin-login-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  color: #fff;
  font-size: 1.18rem;
  font-weight: 850;
}
.admin-login-panel h1 {
  max-width: 420px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 1.04;
}
.admin-login-panel > p:not(.eyebrow):not(.admin-login-status) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}
.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(157, 233, 209, .2);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 24px 72px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}
.admin-login-form label {
  color: rgba(255, 255, 255, .88);
  font-weight: 750;
}
.admin-login-form input {
  margin-top: 8px;
  color: #fff;
  border-color: rgba(157, 233, 209, .25);
  background: rgba(0, 0, 0, .28);
}
.admin-login-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #9de9d1;
  font-size: .88rem;
}
.admin-return-link {
  display: inline-flex;
  margin-top: 10px;
  color: rgba(255, 255, 255, .72);
  font-weight: 750;
}
.admin-return-link:hover { color: #fff; }
.admin-session-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 620px) {
  .admin-login-panel { padding-top: 30px; }
  .admin-login-form { padding: 18px; }
  .admin-session-actions { width: 100%; }
  .admin-session-actions .button { flex: 1 1 140px; }
}
/* Focused advisor */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.chat-panel {
  right: 82px;
  bottom: 18px;
  width: min(420px, calc(100vw - 112px));
  height: min(680px, calc(100svh - 36px));
  max-height: none;
  grid-template-rows: auto minmax(120px, 1fr) auto auto auto auto;
  border: 1px solid rgba(160, 232, 213, .2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(13, 35, 44, .98), rgba(4, 17, 23, .99)),
    #071820;
  box-shadow: 0 30px 96px rgba(0, 0, 0, .42);
  backdrop-filter: blur(20px);
}
.chat-head {
  align-items: center;
  padding: 16px 16px 13px;
  background: rgba(255, 255, 255, .025);
}
.chat-head .eyebrow { margin-bottom: 4px; font-size: .66rem; }
.chat-head h2 { font-size: 1.06rem; line-height: 1.2; }
.chat-presence {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
}
.chat-presence > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #49d6a8;
  box-shadow: 0 0 0 3px rgba(73, 214, 168, .12);
}
.chat-head-actions {
  display: flex;
  align-items: center;
  gap: 7px;
}
.chat-head .chat-clear {
  width: auto;
  height: 34px;
  padding: 0 10px;
  border-radius: 6px;
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  font-weight: 700;
}
.chat-head .chat-close {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}
.chat-head button:hover {
  color: #fff;
  background: rgba(255, 255, 255, .14);
}
.chat-messages {
  min-height: 0;
  padding: 14px 15px;
  scrollbar-color: rgba(133, 226, 200, .35) transparent;
}
.chat-bubble {
  max-width: 88%;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: .82rem;
  line-height: 1.5;
}
.chat-bubble.bot {
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .07);
  border-color: rgba(164, 229, 211, .13);
}
.chat-bubble.user {
  color: #05221f;
  background: linear-gradient(135deg, #e5fff7, #9be9d1);
}
.chat-typing {
  display: flex;
  width: max-content;
  gap: 5px;
  padding: 13px 14px;
}
.chat-typing > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9be9d1;
  animation: advisorTyping 1.1s ease-in-out infinite;
}
.chat-typing > span:nth-child(2) { animation-delay: .14s; }
.chat-typing > span:nth-child(3) { animation-delay: .28s; }
@keyframes advisorTyping {
  0%, 60%, 100% { opacity: .38; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.chat-quick-actions {
  flex-wrap: nowrap;
  gap: 7px;
  padding: 10px 14px;
  overflow-x: auto;
  border-top: 1px solid rgba(157, 233, 209, .1);
  scrollbar-width: none;
}
.chat-quick-actions::-webkit-scrollbar { display: none; }
.chat-quick-actions button {
  flex: 0 0 auto;
  min-height: 34px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .055);
  font-size: .72rem;
}
.chat-quick-actions button:disabled { opacity: .48; cursor: wait; }
.chat-composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px;
  align-items: end;
  gap: 8px;
  padding: 10px 13px 8px;
  border-top: 1px solid rgba(157, 233, 209, .1);
  background: rgba(0, 0, 0, .14);
}
.chat-composer textarea {
  width: 100%;
  min-height: 42px;
  max-height: 112px;
  resize: none;
  padding: 10px 11px;
  border: 1px solid rgba(174, 235, 218, .2);
  border-radius: 7px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, .065);
  font: inherit;
  font-size: .82rem;
  line-height: 1.42;
}
.chat-composer textarea::placeholder { color: rgba(255, 255, 255, .46); }
.chat-composer textarea:focus {
  border-color: rgba(78, 220, 182, .7);
  box-shadow: 0 0 0 3px rgba(42, 200, 161, .12);
}
.chat-composer button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: #05211f;
  background: #76e1c0;
  cursor: pointer;
}
.chat-composer button:hover { background: #9bedD3; }
.chat-composer button:disabled { opacity: .48; cursor: wait; }
.chat-composer button svg { width: 21px; height: 21px; }
.chat-advisor-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 14px 9px;
  color: rgba(255, 255, 255, .48);
  background: rgba(0, 0, 0, .14);
  font-size: .65rem;
}
.chat-advisor-meta [data-state="working"] { color: #9be9d1; }
.chat-advisor-meta [data-state="fallback"] { color: #ffd27a; }
.chat-conversion {
  border-top: 1px solid rgba(157, 233, 209, .1);
  background: rgba(255, 255, 255, .025);
}
.chat-footer-actions {
  padding: 10px 13px 12px;
  border-top: 0;
}
.chat-footer-actions .button {
  min-height: 40px;
  border-radius: 7px;
  font-size: .76rem;
}
.chat-footer-actions .recommended {
  border-color: #f3c66c;
  box-shadow: inset 0 0 0 1px rgba(243, 198, 108, .28);
}
.chat-lead-capture {
  display: grid;
  gap: 10px;
  padding: 0 13px 13px;
  color: #0a2430;
}
.chat-lead-capture[hidden] { display: none; }
.chat-lead-capture > p {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 10px 11px;
  border-radius: 7px;
  background: #f2fbf8;
  font-size: .72rem;
}
.chat-lead-capture > p span { color: #52636b; }
.chat-lead-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.chat-lead-fields label {
  display: grid;
  gap: 4px;
  color: rgba(255, 255, 255, .68);
  font-size: .68rem;
  font-weight: 700;
}
.chat-lead-fields input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 9px;
  border: 1px solid rgba(174, 235, 218, .2);
  border-radius: 6px;
  outline: 0;
  color: #fff;
  background: rgba(255, 255, 255, .065);
}
.chat-lead-fields input:focus { border-color: #65dcb9; }
.chat-lead-capture > .button { min-height: 40px; border-radius: 7px; font-size: .76rem; }
.chat-lead-status {
  display: block !important;
  padding: 0 !important;
  color: rgba(255, 255, 255, .68) !important;
  background: transparent !important;
}
.chat-lead-status a { color: #8ce5ca; font-weight: 800; }
@media (prefers-reduced-motion: reduce) {
  .chat-typing > span { animation: none; }
}
@media (max-width: 760px) {
  .chat-panel {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    height: min(700px, calc(100svh - 24px));
  }
}
@media (max-width: 420px) {
  .chat-panel { right: 8px; bottom: 8px; width: calc(100vw - 16px); height: calc(100svh - 16px); }
  .chat-head { padding: 13px; }
  .chat-head h2 { font-size: 1rem; }
  .chat-messages { padding: 12px; }
  .chat-lead-fields { grid-template-columns: 1fr; }
  .chat-advisor-meta { font-size: .61rem; }
}
