:root {
  --mint: #18c7ce;
  --mint-dark: #158b9b;
  --mint-soft: #eafafb;
  --ink: #1a1d23;
  --ink-2: #262a31;
  --text: #20242b;
  --muted: #667085;
  --muted-2: #98a2b3;
  --line: #e6e9ee;
  --soft: #f7f9fa;
  --surface: #ffffff;
  --danger: #ef5b5b;
  --amber: #f3a53b;
  --blue: #4d7cfe;
  --shadow-sm: 0 8px 24px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 22px 55px rgba(16, 24, 40, 0.12);
  --shadow-lg: 0 36px 90px rgba(16, 24, 40, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Inter","Noto Sans Thai",sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

.landing-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.bme-landing .bme-svg-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.18em;
}

.bme-landing .bme-icon-host {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.bme-landing .bme-icon-host > .bme-svg-icon {
  width: 100%;
  height: 100%;
}

/* Header */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(230, 233, 238, 0.86);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.landing-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px -22px rgba(16, 24, 40, 0.32);
}

.landing-nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.landing-brand img {
  width: 72px;
  height: auto;
}

.landing-brand span {
  display: grid;
  line-height: 1;
}

.landing-brand strong {
  color: var(--ink);
  font: 600 16px/1.05 "Inter","Noto Sans Thai",sans-serif;
  letter-spacing: 0.02em;
}

.landing-brand small {
  margin-top: 5px;
  color: var(--mint-dark);
  font: 600 9.5px/1.15 "Inter","Noto Sans Thai",sans-serif;
  letter-spacing: 0.12em;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: auto;
}

.landing-nav-links a {
  position: relative;
  padding: 26px 0 23px;
  color: #555b66;
  font-size: 13.5px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.landing-nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--mint);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms cubic-bezier(.2,0,0,1);
}

.landing-nav-links a:hover,
.landing-nav-links a.active {
  color: var(--ink);
}

.landing-nav-links a:hover::after,
.landing-nav-links a.active::after {
  transform: scaleX(1);
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.landing-language {
  border: 0;
  padding: 9px 2px;
  color: var(--muted-2);
  background: transparent;
  font: 600 11.5px/1 "Inter","Noto Sans Thai",sans-serif;
  cursor: pointer;
  transition: color 0.2s ease;
}

.landing-language:hover {
  color: var(--ink);
}

.landing-sign-in {
  color: #4f5662;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.landing-sign-in:hover {
  color: var(--ink);
}

.landing-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.landing-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.landing-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.landing-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */
.landing-button {
  min-height: 42px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.landing-button:hover {
  transform: translateY(-2px);
}

.landing-button .bme-svg-icon {
  font-size: 16px;
}

.landing-button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 13px 26px -17px rgba(26, 29, 35, 0.74);
}

.landing-button-dark:hover {
  background: #050607;
  box-shadow: 0 18px 30px -18px rgba(26, 29, 35, 0.72);
}

.landing-button-outline {
  border-color: #dfe3e8;
  color: var(--ink);
  background: #fff;
}

.landing-button-outline:hover {
  border-color: #bdc3ca;
  box-shadow: var(--shadow-sm);
}

.landing-button-mint {
  color: #10251f;
  background: var(--mint);
  box-shadow: 0 16px 30px -18px rgba(0, 208, 158, 0.72);
}

.landing-button-mint:hover {
  background: #00bc8f;
}

.landing-button-large {
  min-height: 50px;
  padding: 13px 26px;
  font-size: 14px;
}

.play-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  transition: background 0.2s ease;
}

.landing-button-outline:hover .play-icon {
  background: var(--mint-dark);
}

/* Hero */
.landing-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 92px;
  background: #fff;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(110px);
}

.hero-glow-main {
  top: -170px;
  left: 50%;
  width: 850px;
  height: 520px;
  transform: translateX(-50%);
  background: rgba(0, 208, 158, 0.12);
}

.hero-glow-side {
  top: 330px;
  right: -130px;
  width: 360px;
  height: 360px;
  background: rgba(0, 208, 158, 0.07);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
}

.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 15px;
  border: 1px solid #e1e5e8;
  border-radius: 999px;
  color: #5f6670;
  background: rgba(248, 250, 250, 0.88);
  font-size: 12px;
  font-weight: 500;
}

.landing-eyebrow i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(0, 208, 158, 0.12);
}

.hero-copy h1 {
  margin: 24px 0 18px;
  color: var(--ink);
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero-copy h1 em {
  font-style: normal;
  background: linear-gradient(100deg, #00d09e 0%, #00b88a 52%, #008e6d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 190% auto;
  animation: gradient-shimmer 5s ease-in-out infinite;
}

.hero-copy > p {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes gradient-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero device */
.hero-stage {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin-top: 66px;
  padding: 0 46px 44px;
}

.hero-device {
  position: relative;
  transform: perspective(1500px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) scale(var(--mockup-scale, 1));
  transform-origin: center center;
  transition: transform 0.18s ease;
  will-change: transform;
}

.laptop-screen {
  overflow: hidden;
  border: 1px solid #d9dee3;
  border-bottom: 0;
  border-radius: 18px 18px 5px 5px;
  background: #0d1623;
  box-shadow: 0 32px 80px -28px rgba(16, 24, 40, 0.32);
}

.browser-bar {
  height: 41px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #0a111c;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff7e78;
}

.browser-dots i:nth-child(2) { background: #f5c35e; }
.browser-dots i:nth-child(3) { background: #5dcf84; }

.browser-url {
  width: 280px;
  margin: 0 auto;
  padding: 6px 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.055);
  font: 500 9px/1 "Inter","Noto Sans Thai",sans-serif;
  text-align: center;
}

.browser-user {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #10251f;
  background: var(--mint);
  font: 600 8px/1 "Inter","Noto Sans Thai",sans-serif;
}

.dashboard-shell {
  min-height: 475px;
  display: grid;
  grid-template-columns: 170px 1fr;
  background: #f5f7f8;
}

.dashboard-sidebar {
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #8d98a8;
  background: #111a27;
}

.dashboard-logo {
  margin: 2px 7px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-logo > span {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: #11231f;
  background: var(--mint);
  font: 600 12px/1 "Inter","Noto Sans Thai",sans-serif;
}

.dashboard-logo b {
  color: #fff;
  font: 600 10px/1 "Inter","Noto Sans Thai",sans-serif;
}

.dashboard-menu {
  min-height: 34px;
  padding: 8px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  font: 500 8px/1 "Inter","Noto Sans Thai",sans-serif;
}

.dashboard-menu i {
  display: inline-grid;
  place-items: center;
  font-size: 13px;
}

.dashboard-menu.active {
  color: #fff;
  background: rgba(0, 208, 158, 0.15);
}

.dashboard-menu.active i {
  color: var(--mint);
}

.dashboard-main {
  min-width: 0;
  padding: 20px;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-head small {
  display: block;
  color: #8d96a5;
  font-size: 8px;
}

.dashboard-head h2 {
  margin: 3px 0 0;
  color: #1f2530;
  font-size: 17px;
  font-weight: 600;
}

.dashboard-head button {
  min-height: 30px;
  padding: 7px 11px;
  border: 0;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #10251f;
  background: var(--mint);
  font-size: 8px;
  font-weight: 600;
}

.dashboard-kpis {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-kpis article {
  min-height: 76px;
  padding: 12px;
  border: 1px solid #e5e8ec;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
}

.kpi-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 15px;
}

.kpi-icon.mint { color: var(--mint-dark); background: #e7faf4; }
.kpi-icon.blue { color: var(--blue); background: #ecf1ff; }
.kpi-icon.amber { color: #d99020; background: #fff4df; }

.dashboard-kpis small {
  display: block;
  color: #8d96a5;
  font-size: 7px;
}

.dashboard-kpis strong {
  display: inline-block;
  margin-top: 2px;
  color: #242a33;
  font: 600 14px/1 "Inter","Noto Sans Thai",sans-serif;
}

.dashboard-kpis em {
  display: block;
  margin-top: 4px;
  color: var(--mint-dark);
  font: 600 6px/1 "Inter","Noto Sans Thai",sans-serif;
}

.dashboard-grid {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.5fr 0.78fr;
  gap: 10px;
}

.dashboard-chart-card,
.dashboard-status-card,
.dashboard-table {
  border: 1px solid #e5e8ec;
  border-radius: 11px;
  background: #fff;
}

.dashboard-chart-card,
.dashboard-status-card {
  min-height: 176px;
  padding: 13px;
}

.dashboard-chart-card header,
.dashboard-status-card header,
.dashboard-table header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-chart-card header div {
  display: grid;
  gap: 3px;
}

.dashboard-chart-card header small,
.dashboard-status-card header small {
  color: #9aa1ad;
  font-size: 6.5px;
}

.dashboard-chart-card header b,
.dashboard-status-card header b,
.dashboard-table header b {
  color: #2e343d;
  font-size: 8px;
  font-weight: 600;
}

.dashboard-chart-card header > span {
  color: var(--mint-dark);
  font-size: 6px;
  font-weight: 600;
}

.mock-bars {
  height: 105px;
  margin-top: 13px;
  padding: 0 4px;
  display: flex;
  align-items: end;
  gap: 7px;
  border-bottom: 1px solid #eff1f3;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 25px, #f3f5f6 26px);
}

.mock-bars i {
  width: 100%;
  height: var(--bar);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(0, 163, 123, 0.45), var(--mint));
}

.mock-labels {
  margin-top: 7px;
  display: flex;
  justify-content: space-between;
  color: #a3a9b2;
  font: 500 5.5px/1 "Inter","Noto Sans Thai",sans-serif;
}

.dashboard-status-card header b {
  color: #252b33;
  font: 600 13px/1 "Inter","Noto Sans Thai",sans-serif;
}

.status-ring {
  width: 82px;
  height: 82px;
  margin: 11px auto 8px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--mint) 0 88%, var(--amber) 88% 95%, #e7eaee 95%);
}

.status-ring::before {
  content: "";
  width: 58px;
  height: 58px;
  border-radius: 50%;
  grid-area: 1 / 1;
  background: #fff;
}

.status-ring span {
  z-index: 1;
  grid-area: 1 / 1;
  text-align: center;
}

.status-ring strong {
  display: block;
  color: #232932;
  font: 600 12px/1 "Inter","Noto Sans Thai",sans-serif;
}

.status-ring small {
  display: block;
  margin-top: 3px;
  color: #9aa1ad;
  font-size: 6px;
}

.status-legend {
  display: grid;
  gap: 4px;
}

.status-legend span {
  display: grid;
  grid-template-columns: 6px 1fr auto;
  align-items: center;
  gap: 5px;
  color: #777f8c;
  font: 500 5.8px/1 "Inter","Noto Sans Thai",sans-serif;
}

.status-legend i {
  width: 6px;
  height: 6px;
  border-radius: 2px;
}

.status-legend b {
  color: #3a4049;
  font-size: 5.8px;
}

.mint-dot { background: var(--mint); }
.amber-dot { background: var(--amber); }
.gray-dot { background: #d7dce2; }

.dashboard-table {
  margin-top: 10px;
  padding: 12px 13px 7px;
}

.dashboard-table header > span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--mint-dark);
  font-size: 6px;
  font-weight: 600;
}

.dashboard-table > div {
  min-height: 40px;
  padding: 7px 0;
  display: grid;
  grid-template-columns: 28px 1fr 56px 48px;
  align-items: center;
  gap: 8px;
  border-top: 1px solid #eff1f3;
}

.asset-icon {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.asset-icon.mint { color: var(--mint-dark); background: #e7faf4; }
.asset-icon.blue { color: var(--blue); background: #ecf1ff; }

.dashboard-table > div span b {
  display: block;
  color: #30363f;
  font: 600 6.5px/1.2 "Inter","Noto Sans Thai",sans-serif;
}

.dashboard-table > div span small {
  display: block;
  margin-top: 3px;
  color: #939aa5;
  font-size: 6.5px;
}

.dashboard-table > div em {
  padding: 4px 6px;
  border-radius: 999px;
  color: var(--mint-dark);
  background: #e7f8f2;
  font: 600 5.5px/1 "Inter","Noto Sans Thai",sans-serif;
  text-align: center;
}

.dashboard-table > div > strong {
  color: #67707d;
  font: 600 6px/1 "Inter","Noto Sans Thai",sans-serif;
}

.laptop-base {
  position: relative;
  height: 27px;
  border-radius: 0 0 25px 25px;
  background: linear-gradient(to bottom, #eef1f3 0%, #cfd4d9 68%, #eef0f2 100%);
  box-shadow: 0 18px 35px -17px rgba(16, 24, 40, 0.35);
}

.laptop-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4%;
  width: 108%;
  height: 7px;
  border-radius: 2px 2px 12px 12px;
  background: linear-gradient(to bottom, #f8f9fa, #d8dce0);
}

.laptop-base i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 90px;
  height: 5px;
  transform: translateX(-50%);
  border-radius: 0 0 7px 7px;
  background: #c5cbd0;
}

.floating-card {
  position: absolute;
  z-index: 4;
  padding: 11px 13px;
  border: 1px solid #eef0f2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  box-shadow: 0 20px 45px -19px rgba(16, 24, 40, 0.28);
  animation: float-card 4.5s ease-in-out infinite;
}

.floating-inventory {
  top: 34%;
  left: 0;
}

.floating-branch {
  right: 4px;
  bottom: 23%;
  animation-delay: -2s;
}

.floating-icon {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.floating-icon.mint { color: var(--mint-dark); background: var(--mint-soft); }
.floating-icon.dark { color: var(--ink); background: #f0f2f4; }

.floating-card small {
  display: block;
  color: #8f97a2;
  font-size: 8px;
}

.floating-card strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font: 600 12px/1 "Inter","Noto Sans Thai",sans-serif;
}

.floating-card strong b {
  font-size: 8px;
  font-weight: 500;
}

.phone-device {
  position: absolute;
  z-index: 5;
  right: 53px;
  bottom: 0;
  width: 142px;
  min-height: 270px;
  padding: 18px 9px 10px;
  border: 4px solid var(--ink);
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 25px 55px -22px rgba(16, 24, 40, 0.42);
  animation: phone-float 5.2s ease-in-out infinite;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 52px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 0 0 11px 11px;
  background: var(--ink);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #89919d;
  font: 600 7px/1 "Inter","Noto Sans Thai",sans-serif;
}

.phone-status i { font-size: 9px; }

.phone-summary {
  margin-top: 12px;
  padding: 10px;
  border-radius: 10px;
  background: #f5f7f8;
}

.phone-summary small {
  display: block;
  color: #949ca7;
  font-size: 7px;
}

.phone-summary strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font: 600 14px/1 "Inter","Noto Sans Thai",sans-serif;
}

.phone-summary em {
  display: block;
  margin-top: 5px;
  color: var(--mint-dark);
  font: 600 6px/1 "Inter","Noto Sans Thai",sans-serif;
}

.phone-bars {
  height: 76px;
  margin-top: 9px;
  padding: 8px;
  border-radius: 10px;
  display: flex;
  align-items: end;
  gap: 4px;
  background: #f5f7f8;
}

.phone-bars i {
  width: 100%;
  height: var(--bar);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(to top, rgba(0, 163, 123, 0.38), var(--mint));
}

.phone-item {
  margin-top: 9px;
  padding: 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: #f5f7f8;
}

.phone-item > i {
  width: 25px;
  height: 25px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--mint-dark);
  background: var(--mint-soft);
  font-size: 12px;
}

.phone-item b,
.phone-item small {
  display: block;
  font: 600 6.5px/1.2 "Inter","Noto Sans Thai",sans-serif;
}

.phone-item small {
  margin-top: 2px;
  color: #969da7;
  font-size: 5.5px;
  font-weight: 500;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotate(0.001deg); }
  50% { transform: translateY(-4px) rotate(0.001deg); }
}

.feature-row {
  position: relative;
  z-index: 2;
  max-width: 910px;
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-row article {
  text-align: center;
}

.feature-row article > span {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border: 1px solid rgba(0, 208, 158, 0.2);
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--mint-dark);
  background: rgba(0, 208, 158, 0.08);
  font-size: 21px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-row article:hover > span {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px -18px rgba(0, 163, 123, 0.65);
}

.feature-row b {
  display: block;
  color: var(--ink);
  font: 600 13px/1.2 "Inter","Noto Sans Thai",sans-serif;
}

.feature-row small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

/* Trust bar */
.trust-section {
  padding: 45px 0 48px;
  overflow: hidden;
  border-top: 1px solid #eef0f2;
  border-bottom: 1px solid #eef0f2;
  background: #f8faf9;
}

.trust-marquee-wrap {
  position: relative;
  overflow: hidden;
}

.trust-marquee-wrap > p {
  margin: 0 0 22px;
  color: #929aa5;
  font: 600 10.5px/1.4 "Inter","Noto Sans Thai",sans-serif;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.trust-marquee {
  overflow: hidden;
}

.trust-track {
  width: max-content;
  display: flex;
  gap: 12px;
  animation: marquee 30s linear infinite;
}

.trust-track span {
  min-height: 39px;
  padding: 9px 17px;
  border: 1px solid #e2e6e9;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #565e69;
  background: #fff;
  box-shadow: 0 5px 16px rgba(16, 24, 40, 0.035);
  font: 600 11.5px/1 "Inter","Noto Sans Thai",sans-serif;
  white-space: nowrap;
}

.trust-track span i {
  color: var(--mint-dark);
  font-size: 15px;
}

.trust-fade {
  position: absolute;
  z-index: 2;
  top: 28px;
  bottom: 0;
  width: 105px;
  pointer-events: none;
}

.trust-fade-left {
  left: 0;
  background: linear-gradient(90deg, #f8faf9 12%, rgba(248, 250, 249, 0));
}

.trust-fade-right {
  right: 0;
  background: linear-gradient(270deg, #f8faf9 12%, rgba(248, 250, 249, 0));
}

.trust-stats {
  max-width: 940px;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-stats article {
  text-align: center;
}

.trust-stats strong {
  display: block;
  color: var(--mint-dark);
  font: 600 32px/1 "Inter","Noto Sans Thai",sans-serif;
}

.trust-stats span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 400;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.landing-section {
  padding: 96px 0;
}

.section-heading {
  max-width: 710px;
  margin: 0 auto 50px;
  text-align: center;
}

.section-kicker {
  display: inline-block;
  color: var(--mint-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.section-heading h2,
.insights-copy h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(31px, 3.5vw, 43px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-heading p,
.insights-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
}

/* Products */
.products-section {
  background: #fff;
}

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

.product-card {
  position: relative;
  min-height: 270px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(16, 24, 40, 0.035);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 208, 158, 0.32);
  box-shadow: 0 24px 48px -24px rgba(16, 24, 40, 0.25);
}

.product-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(0, 208, 158, 0.04);
  transition: transform 0.3s ease;
}

.product-card:hover::after {
  transform: scale(1.22);
}

.product-available {
  border-color: rgba(0, 208, 158, 0.28);
  background: linear-gradient(145deg, #fff 48%, #f2fcf9 100%);
}

.product-icon {
  width: 49px;
  height: 49px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--mint-dark);
  background: linear-gradient(145deg, rgba(0, 208, 158, 0.12), rgba(0, 208, 158, 0.045));
  font-size: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover .product-icon {
  transform: scale(1.08);
  box-shadow: 0 16px 28px -20px rgba(0, 163, 123, 0.68);
}

.product-status {
  position: absolute;
  top: 25px;
  right: 23px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #9aa1ab;
  background: #f2f4f5;
  font: 600 8px/1 "Inter","Noto Sans Thai",sans-serif;
  letter-spacing: 0.05em;
}

.product-status.available {
  color: #087c5e;
  background: #def8ef;
}

.product-card h3 {
  margin: 20px 0 9px;
  color: var(--ink);
  font: 600 18px/1.25 "Inter","Noto Sans Thai",sans-serif;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.68;
}

.product-card > a {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--mint-dark);
  font-size: 12.5px;
  font-weight: 600;
  transition: gap 0.2s ease;
}

.product-card > a:hover {
  gap: 9px;
}

.product-card > a i {
  font-size: 14px;
}

.product-coming {
  margin-top: 20px;
  display: inline-block;
  color: #9ca3ad;
  font-size: 12px;
  font-weight: 500;
}

/* Insights */
.insights-section {
  background: #f7f9f9;
}

.insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 78px;
}

.insights-copy p {
  max-width: 520px;
}

.insights-copy .landing-button {
  margin-top: 27px;
}

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

.metric-grid article {
  min-height: 205px;
  padding: 22px;
  border: 1px solid #eceff1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.045);
}

.metric-icon {
  width: 37px;
  height: 37px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 17px;
}

.metric-icon.green { color: #1a9d5c; background: #eaf8f0; }
.metric-icon.red { color: #dc5353; background: #fff0f0; }
.metric-icon.mint { color: var(--mint-dark); background: var(--mint-soft); }
.metric-icon.amber { color: #d88d20; background: #fff5e3; }

.metric-grid small {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
}

.metric-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font: 600 28px/1.1 "Inter","Noto Sans Thai",sans-serif;
}

.metric-line {
  position: relative;
  height: 47px;
  margin-top: 14px;
  overflow: hidden;
}

.metric-line::before,
.metric-line i {
  content: "";
  position: absolute;
  inset: auto 0 5px;
  height: 2px;
  background: #eef1f2;
}

.metric-line i {
  height: 42px;
  border: 0;
  background: none;
}

.metric-line i::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 38px;
  clip-path: polygon(0 82%, 14% 68%, 28% 76%, 43% 48%, 57% 58%, 72% 30%, 86% 42%, 100% 4%, 100% 100%, 0 100%);
  background: linear-gradient(to top, rgba(34, 197, 94, 0.04), rgba(34, 197, 94, 0.22));
}

.metric-line i::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 2px;
  transform: rotate(-11deg);
  transform-origin: left center;
  background: #22b665;
  box-shadow: 34px 4px 0 #22b665, 68px -7px 0 #22b665, 102px -2px 0 #22b665;
}

.metric-bars {
  height: 48px;
  margin-top: 14px;
  display: flex;
  align-items: end;
  gap: 9px;
}

.metric-bars i {
  flex: 1;
  height: 88%;
  border-radius: 4px 4px 0 0;
  background: #ef6464;
}

.metric-bars i:nth-child(2) { height: 66%; opacity: 0.85; }
.metric-bars i:nth-child(3) { height: 47%; opacity: 0.7; }
.metric-bars i:nth-child(4) { height: 31%; opacity: 0.56; }

.metric-donut {
  width: 53px;
  height: 53px;
  margin-top: 12px;
  border-radius: 50%;
  background: conic-gradient(var(--mint) 0 88.6%, #e8ecee 88.6%);
  position: relative;
}

.metric-donut::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}

.metric-spark {
  height: 49px;
  margin-top: 13px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.metric-spark i {
  width: 10px;
  height: 35%;
  border-radius: 4px 4px 0 0;
  background: #f3ae48;
}

.metric-spark i:nth-child(2) { height: 52%; }
.metric-spark i:nth-child(3) { height: 78%; }
.metric-spark i:nth-child(4) { height: 63%; }
.metric-spark i:nth-child(5) { height: 100%; }

/* Pricing */
.pricing-section {
  background: #fff;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
}

.plan-grid > article {
  position: relative;
  min-height: 470px;
  padding: 29px;
  border: 1px solid #e4e8eb;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.04);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.plan-grid > article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 208, 158, 0.32);
  box-shadow: 0 24px 48px -24px rgba(16, 24, 40, 0.24);
}

.plan-grid h3 {
  margin: 0;
  color: var(--ink);
  font: 600 19px/1.2 "Inter","Noto Sans Thai",sans-serif;
}

.plan-grid > article > p {
  min-height: 49px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.6;
}

.plan-price {
  min-height: 48px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
}

.plan-grid .landing-button {
  width: 100%;
  margin-top: 18px;
}

.plan-grid ul {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.plan-grid li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #5e6671;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
}

.plan-grid li i {
  margin-top: 2px;
  flex: 0 0 auto;
  color: var(--mint-dark);
  font-size: 15px;
}

.plan-grid > article.recommended-plan {
  transform: translateY(-13px);
  border-color: rgba(0, 208, 158, 0.38);
  color: #fff;
  background: var(--ink);
  box-shadow: 0 25px 55px -28px rgba(0, 208, 158, 0.58), 0 22px 55px -30px rgba(16, 24, 40, 0.72);
}

.plan-grid > article.recommended-plan:hover {
  transform: translateY(-17px);
  box-shadow: 0 28px 60px -26px rgba(0, 208, 158, 0.62), 0 28px 60px -28px rgba(16, 24, 40, 0.76);
}

.recommended-plan h3,
.recommended-plan .plan-price {
  color: #fff;
}

.plan-grid > article.recommended-plan > p,
.recommended-plan li {
  color: #bdc3cb;
}

.recommended-plan li i {
  color: var(--mint);
}

.recommended-label {
  position: absolute;
  top: -14px;
  left: 50%;
  min-height: 28px;
  padding: 7px 15px;
  transform: translateX(-50%);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #10251f;
  background: var(--mint);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.recommended-label i {
  font-size: 12px;
}

/* CTA */
.landing-cta {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  color: #fff;
  background: var(--ink);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 690px;
  height: 380px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 208, 158, 0.13);
  filter: blur(115px);
  pointer-events: none;
}

.landing-cta .landing-container {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
}

.cta-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  border: 1px solid rgba(0, 208, 158, 0.24);
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--mint);
  background: rgba(0, 208, 158, 0.08);
  font-size: 27px;
}

.landing-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 3.8vw, 46px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.landing-cta p {
  max-width: 670px;
  margin: 17px auto 0;
  color: #aeb5be;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.landing-cta .landing-button {
  margin-top: 29px;
}

/* Footer */
.landing-footer {
  color: #aeb4bd;
  background: #14171c;
}

.footer-grid {
  padding-top: 58px;
  padding-bottom: 47px;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.15fr;
  gap: 44px;
}

.footer-logo strong {
  color: #fff;
}

.footer-brand > p {
  max-width: 345px;
  margin: 19px 0 0;
  color: #989fa9;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.75;
}

.footer-grid h3 {
  margin: 0 0 17px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.footer-grid > div:not(.footer-brand) > a,
.footer-grid > div:not(.footer-brand) > p {
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #979ea8;
  font-size: 11.5px;
  font-weight: 400;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.footer-grid > div:not(.footer-brand) > a:hover {
  color: #fff;
}

.footer-grid p i {
  flex: 0 0 auto;
  color: var(--mint);
  font-size: 14px;
}

.footer-bottom {
  min-height: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #7f8792;
  font: 500 10px/1.3 "Inter","Noto Sans Thai",sans-serif;
}

.landing-back-top {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #10251f;
  background: var(--mint);
  box-shadow: 0 15px 35px -15px rgba(0, 163, 123, 0.68);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.landing-back-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="scale"] {
  transform: translateY(18px) scale(0.975);
}

[data-reveal].in-view {
  opacity: 1;
  transform: none;
}

.product-grid [data-reveal]:nth-child(2),
.plan-grid [data-reveal]:nth-child(2) { transition-delay: 0.06s; }
.product-grid [data-reveal]:nth-child(3),
.plan-grid [data-reveal]:nth-child(3) { transition-delay: 0.12s; }
.product-grid [data-reveal]:nth-child(4) { transition-delay: 0.06s; }
.product-grid [data-reveal]:nth-child(5) { transition-delay: 0.12s; }
.product-grid [data-reveal]:nth-child(6) { transition-delay: 0.18s; }

/* Tablet */
@media (max-width: 1080px) {
  .landing-nav-links {
    gap: 20px;
  }

  .landing-brand span {
    display: none;
  }

  .hero-stage {
    padding-right: 30px;
    padding-left: 30px;
  }

  .dashboard-shell {
    grid-template-columns: 145px 1fr;
  }

  .dashboard-sidebar {
    padding-inline: 9px;
  }

  .floating-inventory {
    left: -8px;
  }

  .floating-branch {
    right: -4px;
  }

  .insights-grid {
    gap: 50px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 920px) {
  .landing-menu-toggle {
    display: block;
  }

  .landing-nav {
    position: relative;
    min-height: 68px;
    flex-wrap: wrap;
  }

  .landing-brand span {
    display: grid;
  }

  .landing-nav-links,
  .landing-nav-actions {
    display: none;
  }

  .landing-nav-links.open {
    order: 4;
    width: 100%;
    margin: 0;
    padding: 8px 0 10px;
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .landing-nav-links.open a {
    padding: 13px 5px;
  }

  .landing-nav-links.open a::after {
    display: none;
  }

  .landing-nav-links.open + .landing-nav-actions {
    order: 5;
    width: 100%;
    padding: 0 0 18px;
    display: grid;
    grid-template-columns: auto 1fr 1.35fr;
    gap: 10px;
  }

  .landing-nav-links.open + .landing-nav-actions .landing-language,
  .landing-nav-links.open + .landing-nav-actions .landing-sign-in,
  .landing-nav-links.open + .landing-nav-actions .landing-button {
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .landing-nav-links.open + .landing-nav-actions .landing-sign-in {
    color: var(--ink);
    background: #fff;
  }

  .hero-stage {
    padding-right: 8px;
    padding-left: 8px;
  }

  .dashboard-shell {
    grid-template-columns: 128px 1fr;
  }

  .dashboard-menu {
    gap: 6px;
    font-size: 7px;
  }

  .dashboard-main {
    padding: 15px;
  }

  .phone-device {
    right: 5px;
    transform: scale(0.88);
    transform-origin: right bottom;
  }

  .floating-card {
    display: none;
  }

  .feature-row {
    margin-top: 54px;
  }

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

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .insights-copy {
    max-width: 690px;
    text-align: center;
    margin-inline: auto;
  }

  .insights-copy p {
    margin-inline: auto;
  }

  .metric-grid {
    max-width: 690px;
    margin-inline: auto;
  }

  .plan-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin-inline: auto;
  }

  .plan-grid > article,
  .plan-grid > article.recommended-plan,
  .plan-grid > article.recommended-plan:hover {
    min-height: auto;
    transform: none;
  }

  .plan-grid > article > p {
    min-height: auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .landing-container {
    width: min(100% - 32px, 1180px);
  }

  .landing-brand img {
    width: 67px;
  }

  .landing-brand strong {
    font-size: 11.5px;
  }

  .landing-brand small {
    font-size: 6.5px;
  }

  .landing-nav-links.open + .landing-nav-actions {
    grid-template-columns: 1fr 1fr;
  }

  .landing-nav-links.open + .landing-nav-actions .landing-language {
    grid-column: 1 / -1;
  }

  .landing-hero {
    padding: 56px 0 72px;
  }

  .hero-copy h1 {
    margin-top: 19px;
    font-size: clamp(36px, 11vw, 49px);
    line-height: 1.12;
  }

  .hero-copy > p {
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 340px;
    margin-inline: auto;
    margin-top: 25px;
  }

  .hero-actions .landing-button {
    width: 100%;
  }

  .hero-stage {
    width: calc(100% - 6px);
    margin-top: 48px;
    padding: 0 0 30px;
  }

  .browser-bar {
    height: 34px;
  }

  .browser-url {
    width: 190px;
    font-size: 7px;
  }

  .browser-user {
    display: none;
  }

  .dashboard-shell {
    min-height: 330px;
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-main {
    padding: 12px;
  }

  .dashboard-head h2 {
    font-size: 13px;
  }

  .dashboard-head button {
    padding: 6px 8px;
    font-size: 6.5px;
  }

  .dashboard-kpis {
    gap: 6px;
  }

  .dashboard-kpis article {
    min-height: 62px;
    padding: 8px;
    gap: 6px;
  }

  .kpi-icon {
    width: 27px;
    height: 27px;
    flex-basis: 27px;
    border-radius: 8px;
    font-size: 12px;
  }

  .dashboard-kpis small {
    font-size: 5.7px;
  }

  .dashboard-kpis strong {
    font-size: 10px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr 0.72fr;
    gap: 6px;
  }

  .dashboard-chart-card,
  .dashboard-status-card {
    min-height: 139px;
    padding: 9px;
  }

  .mock-bars {
    height: 78px;
    gap: 4px;
  }

  .status-ring {
    width: 63px;
    height: 63px;
    margin-top: 10px;
  }

  .status-ring::before {
    width: 45px;
    height: 45px;
  }

  .status-legend span:nth-child(n+2) {
    display: none;
  }

  .dashboard-table {
    padding: 9px 10px 5px;
  }

  .dashboard-table > div {
    min-height: 35px;
    grid-template-columns: 24px 1fr 43px;
    gap: 6px;
  }

  .dashboard-table > div > strong {
    display: none;
  }

  .asset-icon {
    width: 23px;
    height: 23px;
    font-size: 10px;
  }

  .laptop-base {
    height: 20px;
  }

  .phone-device {
    display: none;
  }

  .feature-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 18px;
    margin-top: 44px;
  }

  .trust-section {
    padding-top: 39px;
  }

  .trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
  }

  .trust-stats strong {
    font-size: 28px;
  }

  .landing-section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .insights-copy h2 {
    font-size: 30px;
  }

  .section-heading p,
  .insights-copy p {
    font-size: 14px;
  }

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

  .product-card {
    min-height: auto;
  }

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

  .metric-grid article {
    min-height: 178px;
  }

  .plan-grid > article {
    padding: 26px 23px;
  }

  .plan-price {
    font-size: 25px;
  }

  .landing-cta {
    padding: 75px 0;
  }

  .landing-cta p {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
    padding-top: 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-back-top {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .landing-brand span {
    display: none;
  }

  .landing-eyebrow {
    padding-inline: 12px;
    font-size: 10.5px;
  }

  .dashboard-kpis article:nth-child(3) {
    display: none;
  }

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

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

  .dashboard-status-card {
    display: none;
  }

  .feature-row {
    gap: 26px 12px;
  }

  .feature-row b {
    font-size: 11px;
  }

  .feature-row small {
    font-size: 10px;
  }

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

  .footer-grid > div:last-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Round 13 — landing typography consistency; miniature product mockups keep their designed scale. */
body.bme-landing,
body.bme-landing button,
body.bme-landing input,
body.bme-landing select,
body.bme-landing textarea{
  font-family:"Inter","Noto Sans Thai",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  font-synthesis:none;
}
body.bme-landing{font-weight:400;-webkit-font-smoothing:antialiased}
body.bme-landing :where(h1,h2,h3,h4,strong,b){font-weight:600}
body.bme-landing :lang(th){letter-spacing:0;line-break:loose}
@media(max-width:640px){
  body.bme-landing{font-size:15px;line-height:1.6}
  body.bme-landing .landing-button{min-height:44px;font-size:14px}
  body.bme-landing .section-heading p,
  body.bme-landing .insights-copy p,
  body.bme-landing .landing-cta p{font-size:14px;line-height:1.65}
}


/* =========================================================
   BME Public Landing — Platform Storytelling refinement v130
   Keeps the existing landing architecture, interaction model,
   hero product foundation and Vanilla CSS/JS stack.
   ========================================================= */
.bme-landing {
  --bme-navy: #071b33;
  --bme-navy-2: #0d2948;
  --bme-aqua: #18c7ce;
  --bme-cyan: #34d9e6;
  --bme-blue: #3b82f6;
  --bme-aqua-soft: #eafafb;
  --bme-fast: 140ms;
  --bme-base: 220ms;
  --bme-reveal: 520ms;
  --bme-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.bme-landing .landing-header {
  border-bottom-color: rgba(7, 27, 51, 0.08);
  transition: box-shadow var(--bme-base) var(--bme-ease), background var(--bme-base) var(--bme-ease), border-color var(--bme-base) var(--bme-ease);
}

.bme-landing .landing-header.scrolled {
  border-bottom-color: rgba(7, 27, 51, 0.1);
  box-shadow: 0 14px 36px -28px rgba(7, 27, 51, 0.45);
}

.bme-landing .landing-brand img {
  max-height: 42px;
  width: 72px;
  object-fit: contain;
}

.bme-landing .landing-brand small,
.bme-landing .section-kicker {
  color: #158b9b;
}

.bme-landing .landing-nav-links a {
  font-size: 14px;
  transition: color var(--bme-fast) var(--bme-ease);
}

.bme-landing .landing-nav-links a::after {
  background: linear-gradient(90deg, var(--bme-aqua), var(--bme-blue));
  transition: transform var(--bme-fast) var(--bme-ease);
}

.bme-landing .landing-button {
  transition: transform var(--bme-fast) var(--bme-ease), box-shadow var(--bme-base) var(--bme-ease), border-color var(--bme-base) var(--bme-ease), background var(--bme-base) var(--bme-ease), color var(--bme-base) var(--bme-ease);
}

.bme-landing .landing-button .bme-svg-icon {
  transition: transform var(--bme-fast) var(--bme-ease);
}

.bme-landing .landing-button:hover .bme-svg-icon {
  transform: translateX(3px);
}

.bme-landing .landing-button-dark {
  background: var(--bme-navy);
  box-shadow: 0 16px 32px -20px rgba(7, 27, 51, 0.78);
}

.bme-landing .landing-button-dark:hover {
  background: #031426;
}

.bme-landing .landing-button-mint {
  color: #052229;
  background: linear-gradient(110deg, #35d9df, #62dce7);
  box-shadow: 0 16px 34px -22px rgba(24, 199, 206, 0.72);
}

.bme-landing .landing-button-mint:hover {
  background: linear-gradient(110deg, #2bd0d7, #57d5e0);
}

.bme-landing .landing-button-ghost-light {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.bme-landing .landing-button-ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

/* Hero hierarchy */
.bme-landing .landing-hero {
  padding-top: 78px;
  background:
    radial-gradient(circle at 50% 0%, rgba(24, 199, 206, 0.08), transparent 37%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
}

.bme-landing .hero-glow-main {
  background: rgba(24, 199, 206, 0.1);
}

.bme-landing .hero-glow-side {
  background: rgba(59, 130, 246, 0.055);
}

.bme-landing .landing-eyebrow i {
  background: var(--bme-aqua);
  box-shadow: 0 0 0 5px rgba(24, 199, 206, 0.11);
}

.bme-landing .hero-copy h1 {
  max-width: 960px;
  margin-inline: auto;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.bme-landing .hero-copy h1 em {
  background: linear-gradient(100deg, #0c7184 0%, #1aa9ba 45%, #3178d7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  animation: none;
}

.bme-landing .hero-copy > p {
  max-width: 780px;
  font-size: 16px;
  line-height: 1.78;
}

.bme-landing .hero-stage {
  margin-top: 58px;
}

.bme-landing .hero-device {
  transition: transform var(--bme-base) var(--bme-ease);
}

.bme-landing .laptop-screen {
  box-shadow: 0 42px 96px -38px rgba(7, 27, 51, 0.38);
}

.bme-landing .platform-feature-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.bme-landing .platform-feature-row article {
  min-width: 0;
}

.bme-landing .platform-feature-row b {
  font-size: 11.5px;
  line-height: 1.35;
}

.bme-landing .platform-feature-row small {
  color: #7e8a98;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .07em;
}

/* Story rhythm and architecture */
.bme-landing .landing-section {
  padding: 112px 0;
}

.bme-landing .section-heading-wide {
  max-width: 820px;
}

.bme-landing .section-heading h2,
.bme-landing .story-copy h2,
.bme-landing .roadmap-copy h2,
.bme-landing .scale-card h2,
.bme-landing .security-card h2 {
  color: var(--bme-navy);
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.17;
  letter-spacing: -0.03em;
}

.bme-landing .section-heading p,
.bme-landing .story-copy p,
.bme-landing .roadmap-copy p,
.bme-landing .scale-card p,
.bme-landing .security-card p {
  color: #697586;
  font-size: 16px;
  line-height: 1.75;
}

.bme-landing .platform-section {
  background: #fff;
}

.bme-landing .platform-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bme-landing .platform-module {
  min-height: 290px;
  padding: 28px;
  border: 1px solid #e8edf2;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px -26px rgba(7, 27, 51, 0.25);
  transition: transform var(--bme-base) var(--bme-ease), border-color var(--bme-base) var(--bme-ease), box-shadow var(--bme-base) var(--bme-ease);
}

.bme-landing .platform-module:hover {
  transform: translateY(-2px);
  border-color: rgba(24, 199, 206, 0.34);
  box-shadow: 0 24px 52px -34px rgba(7, 27, 51, 0.38);
}

.bme-landing .platform-module.is-live {
  background: linear-gradient(145deg, #ffffff 48%, #f3fcfd 100%);
  border-color: rgba(24, 199, 206, 0.25);
}

.bme-landing .module-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.bme-landing .platform-module .product-icon {
  color: #117f91;
  background: linear-gradient(145deg, rgba(24, 199, 206, 0.12), rgba(59, 130, 246, 0.05));
}

.bme-landing .module-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .065em;
  white-space: nowrap;
}

.bme-landing .module-status.live {
  color: #086b72;
  background: #dcf7f7;
}

.bme-landing .module-status.soon {
  color: #6b5b13;
  background: #fff6d8;
}

.bme-landing .module-status.planned {
  color: #667085;
  background: #eef1f4;
}

.bme-landing .platform-module h3 {
  margin: 24px 0 10px;
  color: var(--bme-navy);
  font-size: 19px;
  line-height: 1.35;
}

.bme-landing .platform-module p {
  margin: 0;
  color: #6d7887;
  font-size: 13.5px;
  line-height: 1.72;
}

.bme-landing .platform-module > a {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #107b8b;
  font-size: 13px;
  font-weight: 650;
}

.bme-landing .platform-module > a .bme-svg-icon {
  transition: transform var(--bme-fast) var(--bme-ease);
}

.bme-landing .platform-module > a:hover .bme-svg-icon {
  transform: translateX(3px);
}

/* Asset story */
.bme-landing .asset-story {
  overflow: hidden;
  background: #f6f9fb;
}

.bme-landing .story-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: 70px;
}

.bme-landing .story-copy h2,
.bme-landing .roadmap-copy h2,
.bme-landing .scale-card h2,
.bme-landing .security-card h2 {
  margin: 12px 0 16px;
}

.bme-landing .story-copy p,
.bme-landing .roadmap-copy p,
.bme-landing .scale-card p,
.bme-landing .security-card p {
  margin: 0;
}

.bme-landing .capability-cloud {
  margin: 28px 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bme-landing .capability-cloud span {
  padding: 8px 11px;
  border: 1px solid #dce6eb;
  border-radius: 999px;
  color: #4f6070;
  background: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 550;
}

.bme-landing .story-visual {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #dce6ec;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgba(24, 199, 206, .12), transparent 27%),
    linear-gradient(145deg, #fff 0%, #f4f8fb 100%);
  box-shadow: 0 34px 74px -48px rgba(7, 27, 51, .4);
}

.bme-landing .visual-browser-bar {
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #e5ebef;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #7a8795;
  background: rgba(255,255,255,.82);
  font-size: 10px;
}

.bme-landing .visual-browser-bar > span {
  display: flex;
  gap: 6px;
}

.bme-landing .visual-browser-bar > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d8dfe4;
}

.bme-landing .visual-browser-bar b {
  color: #465666;
  font-size: 10px;
  font-weight: 600;
}

.bme-landing .visual-browser-bar em {
  justify-self: end;
  color: #0c737a;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .07em;
}

.bme-landing .asset-map-center,
.bme-landing .asset-map-node {
  position: absolute;
  z-index: 3;
  display: grid;
  justify-items: center;
  text-align: center;
  background: #fff;
  box-shadow: 0 20px 44px -30px rgba(7, 27, 51, .45);
}

.bme-landing .asset-map-center {
  top: 50%;
  left: 50%;
  width: 184px;
  min-height: 154px;
  padding: 24px 18px;
  transform: translate(-50%, -43%);
  border: 1px solid rgba(24,199,206,.3);
  border-radius: 24px;
}

.bme-landing .asset-map-center > span {
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #0e8292;
  background: var(--bme-aqua-soft);
  font-size: 23px;
}

.bme-landing .asset-map-center strong {
  color: var(--bme-navy);
  font-size: 15px;
}

.bme-landing .asset-map-center small,
.bme-landing .asset-map-node small {
  margin-top: 5px;
  color: #8995a1;
  font-size: 9px;
}

.bme-landing .asset-map-node {
  width: 142px;
  min-height: 108px;
  padding: 16px 12px;
  border: 1px solid #e0e8ed;
  border-radius: 18px;
}

.bme-landing .asset-map-node i {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #176d92;
  background: #edf7fb;
  font-size: 17px;
}

.bme-landing .asset-map-node b {
  color: #34485a;
  font-size: 11px;
}

.bme-landing .node-a { top: 86px; left: 44px; }
.bme-landing .node-b { top: 86px; right: 44px; }
.bme-landing .node-c { bottom: 42px; left: 44px; }
.bme-landing .node-d { right: 44px; bottom: 42px; }

.bme-landing .asset-map-line {
  position: absolute;
  z-index: 1;
  width: 170px;
  height: 1px;
  background: linear-gradient(90deg, rgba(24,199,206,.08), rgba(24,199,206,.48), rgba(24,199,206,.08));
  transform-origin: center;
}

.bme-landing .line-a { top: 190px; left: 150px; transform: rotate(29deg); }
.bme-landing .line-b { top: 190px; right: 150px; transform: rotate(-29deg); }
.bme-landing .line-c { bottom: 146px; left: 150px; transform: rotate(-29deg); }
.bme-landing .line-d { right: 150px; bottom: 146px; transform: rotate(29deg); }

/* Explorer */
.bme-landing .explorer-section {
  background: #fff;
}

.bme-landing .feature-explorer {
  overflow: hidden;
  border: 1px solid #e0e8ed;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 30px 80px -55px rgba(7, 27, 51, .45);
}

.bme-landing .explorer-tabs {
  padding: 12px;
  border-bottom: 1px solid #e7edf1;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  background: #f8fafb;
  scrollbar-width: none;
}

.bme-landing .explorer-tabs::-webkit-scrollbar { display: none; }

.bme-landing .explorer-tab {
  min-height: 40px;
  padding: 9px 16px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: #6f7b89;
  background: transparent;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--bme-base) var(--bme-ease), background var(--bme-base) var(--bme-ease), border-color var(--bme-base) var(--bme-ease), box-shadow var(--bme-base) var(--bme-ease);
}

.bme-landing .explorer-tab:hover {
  color: var(--bme-navy);
  background: #fff;
}

.bme-landing .explorer-tab.active {
  border-color: #dbe5ea;
  color: var(--bme-navy);
  background: #fff;
  box-shadow: 0 8px 18px -14px rgba(7,27,51,.4);
}

.bme-landing .explorer-panels {
  min-height: 330px;
}

.bme-landing .explorer-panel {
  min-height: 330px;
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 56px;
  opacity: 0;
  transform: translateY(7px);
  transition: opacity var(--bme-base) var(--bme-ease), transform var(--bme-base) var(--bme-ease);
}

.bme-landing .explorer-panel.active {
  opacity: 1;
  transform: translateY(0);
}

.bme-landing .explorer-panel[hidden] { display: none; }

.bme-landing .explorer-panel h3 {
  max-width: 530px;
  margin: 16px 0 12px;
  color: var(--bme-navy);
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.bme-landing .explorer-panel p {
  margin: 0;
  color: #6c7887;
  font-size: 14px;
  line-height: 1.75;
}

.bme-landing .explorer-flow {
  min-height: 158px;
  padding: 28px;
  border: 1px solid #dfe9ee;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(145deg, #f8fbfc, #fff);
}

.bme-landing .explorer-flow span {
  min-width: 90px;
  padding: 12px 13px;
  border: 1px solid #dce7eb;
  border-radius: 12px;
  color: #415466;
  background: #fff;
  font-size: 10.5px;
  font-weight: 650;
  text-align: center;
  box-shadow: 0 10px 22px -18px rgba(7,27,51,.35);
}

.bme-landing .explorer-flow i {
  width: 28px;
  height: 1px;
  flex: 0 0 28px;
  background: linear-gradient(90deg, #d5e5e8, var(--bme-aqua), #d5e5e8);
}

/* Alternating roadmap stories */
.bme-landing .roadmap-stories {
  padding-top: 30px;
  background: #f7f9fb;
}

.bme-landing .story-stack {
  display: grid;
  gap: 28px;
}

.bme-landing .roadmap-story {
  min-height: 420px;
  padding: 52px;
  border: 1px solid #e3e9ee;
  border-radius: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  align-items: center;
  gap: 64px;
  background: #fff;
}

.bme-landing .roadmap-story.reverse .roadmap-visual { order: 2; }
.bme-landing .roadmap-story.reverse .roadmap-copy { order: 1; }

.bme-landing .roadmap-copy .section-kicker {
  display: block;
  margin-top: 16px;
}

.bme-landing .roadmap-visual {
  min-height: 250px;
  padding: 34px;
  border: 1px solid #e1e9ee;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  background:
    radial-gradient(circle at 50% 50%, rgba(24,199,206,.08), transparent 40%),
    #f9fbfc;
}

.bme-landing .roadmap-visual span {
  padding: 12px 14px;
  border: 1px solid #dbe6eb;
  border-radius: 12px;
  color: #405469;
  background: #fff;
  font-size: 11px;
  font-weight: 650;
  text-align: center;
  box-shadow: 0 10px 20px -18px rgba(7,27,51,.35);
}

.bme-landing .roadmap-visual i {
  width: 20px;
  height: 1px;
  background: linear-gradient(90deg, #cbdce0, var(--bme-aqua));
}

/* Real workflow */
.bme-landing .workflow-section {
  background: #fff;
}

.bme-landing .workflow-track {
  padding: 28px;
  border: 1px solid #e1e9ee;
  border-radius: 26px;
  display: flex;
  align-items: stretch;
  gap: 8px;
  background: linear-gradient(145deg, #fbfdfe, #fff);
  box-shadow: 0 24px 64px -50px rgba(7,27,51,.4);
}

.bme-landing .workflow-track > article {
  min-width: 0;
  flex: 1 1 0;
  padding: 18px 10px;
  border: 1px solid #e3ebef;
  border-radius: 16px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 7px;
  background: #fff;
  text-align: center;
}

.bme-landing .workflow-track > article > span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #117f91;
  background: #edf9fa;
  font-size: 16px;
}

.bme-landing .workflow-track > article b {
  color: #34495b;
  font-size: 11px;
}

.bme-landing .workflow-track > article small {
  color: #929ca7;
  font-size: 8.5px;
}

.bme-landing .workflow-track > .bme-icon-host {
  align-self: center;
  flex: 0 0 auto;
  color: #a8b5bf;
  font-size: 15px;
}

/* Multi-company and security */
.bme-landing .scale-security-section {
  background: #f7f9fb;
}

.bme-landing .scale-security-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bme-landing .scale-card,
.bme-landing .security-card {
  min-height: 560px;
  padding: 44px;
  border: 1px solid #e2e9ee;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 48px -42px rgba(7,27,51,.4);
}

.bme-landing .org-flow {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid #e3ebef;
  border-radius: 20px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #f9fbfc;
}

.bme-landing .org-flow span {
  padding: 10px 11px;
  border: 1px solid #dce7eb;
  border-radius: 10px;
  color: #405468;
  background: #fff;
  font-size: 10px;
  font-weight: 650;
}

.bme-landing .org-flow .bme-svg-icon {
  color: #9cb0bc;
  font-size: 12px;
}

.bme-landing .security-list {
  margin-top: 30px;
  display: grid;
  gap: 10px;
}

.bme-landing .security-list article {
  padding: 14px;
  border: 1px solid #e5ebef;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: #fbfcfd;
  transition: transform var(--bme-base) var(--bme-ease), border-color var(--bme-base) var(--bme-ease), background var(--bme-base) var(--bme-ease);
}

.bme-landing .security-list article:hover {
  transform: translateY(-2px);
  border-color: rgba(24,199,206,.28);
  background: #fff;
}

.bme-landing .security-list article > i {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #0d7f8f;
  background: #eaf9fa;
  font-size: 16px;
}

.bme-landing .security-list article span {
  display: grid;
  gap: 3px;
}

.bme-landing .security-list article b {
  color: #34495b;
  font-size: 11.5px;
}

.bme-landing .security-list article small {
  color: #8895a2;
  font-size: 9.5px;
}

/* CTA and footer platform message */
.bme-landing .landing-cta {
  background: var(--bme-navy);
}

.bme-landing .cta-glow {
  background: rgba(24, 199, 206, 0.13);
}

.bme-landing .landing-cta h2 {
  font-weight: 600;
}

.bme-landing .cta-actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.bme-landing .footer-grid-platform {
  grid-template-columns: 1.35fr 1fr .9fr .9fr;
}

.bme-landing .footer-disabled {
  display: block;
  margin-top: 10px;
  color: #8f98a5;
  font-size: 11.5px;
  line-height: 1.5;
}

/* Motion standardization */
.bme-landing [data-reveal] {
  transform: translateY(18px);
  transition: opacity var(--bme-reveal) var(--bme-ease), transform var(--bme-reveal) var(--bme-ease);
}

.bme-landing [data-reveal="scale"] {
  transform: translateY(12px) scale(.992);
}

.bme-landing [data-reveal].in-view {
  transform: none;
}

/* Responsive */
@media (max-width: 1080px) {
  .bme-landing .platform-feature-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bme-landing .platform-module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bme-landing .story-grid {
    grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
    gap: 42px;
  }

  .bme-landing .explorer-panel {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bme-landing .roadmap-story {
    gap: 38px;
  }

  .bme-landing .workflow-track {
    flex-wrap: wrap;
  }

  .bme-landing .workflow-track > article {
    flex: 1 1 140px;
  }

  .bme-landing .workflow-track > .bme-icon-host {
    display: none;
  }
}

@media (max-width: 920px) {
  .bme-landing .landing-section {
    padding: 88px 0;
  }

  .bme-landing .story-grid,
  .bme-landing .roadmap-story,
  .bme-landing .scale-security-grid {
    grid-template-columns: 1fr;
  }

  .bme-landing .roadmap-story.reverse .roadmap-visual,
  .bme-landing .roadmap-story.reverse .roadmap-copy {
    order: initial;
  }

  .bme-landing .roadmap-story .roadmap-copy {
    order: 1;
  }

  .bme-landing .roadmap-story .roadmap-visual {
    order: 2;
  }

  .bme-landing .story-visual {
    min-height: 470px;
  }

  .bme-landing .footer-grid-platform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .bme-landing .landing-container {
    width: min(100% - 32px, 1180px);
  }

  .bme-landing .landing-hero {
    padding-top: 58px;
  }

  .bme-landing .hero-copy h1 {
    font-size: clamp(40px, 12vw, 52px);
  }

  .bme-landing .platform-feature-row,
  .bme-landing .platform-module-grid {
    grid-template-columns: 1fr;
  }

  .bme-landing .platform-feature-row {
    gap: 8px;
  }

  .bme-landing .platform-feature-row article {
    min-height: 64px;
  }

  .bme-landing .platform-module {
    min-height: 0;
  }

  .bme-landing .story-grid {
    gap: 32px;
  }

  .bme-landing .story-visual {
    min-height: 540px;
  }

  .bme-landing .asset-map-center {
    width: 154px;
  }

  .bme-landing .asset-map-node {
    width: 118px;
  }

  .bme-landing .node-a { top: 82px; left: 18px; }
  .bme-landing .node-b { top: 82px; right: 18px; }
  .bme-landing .node-c { bottom: 32px; left: 18px; }
  .bme-landing .node-d { right: 18px; bottom: 32px; }

  .bme-landing .asset-map-line { display: none; }

  .bme-landing .explorer-panel {
    min-height: 0;
    padding: 30px 22px;
  }

  .bme-landing .explorer-flow {
    min-height: 0;
    padding: 20px;
    flex-wrap: wrap;
  }

  .bme-landing .explorer-flow i { display: none; }

  .bme-landing .roadmap-story {
    min-height: 0;
    padding: 28px 22px;
  }

  .bme-landing .roadmap-visual {
    min-height: 210px;
    padding: 22px;
  }

  .bme-landing .roadmap-visual i { display: none; }

  .bme-landing .scale-card,
  .bme-landing .security-card {
    min-height: 0;
    padding: 30px 22px;
  }

  .bme-landing .footer-grid-platform {
    grid-template-columns: 1fr;
  }

  .bme-landing .cta-actions {
    display: grid;
  }
}

@media (max-width: 420px) {
  .bme-landing .story-visual {
    min-height: 570px;
  }

  .bme-landing .asset-map-center {
    top: 47%;
  }

  .bme-landing .asset-map-node {
    width: 108px;
    min-height: 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bme-landing .explorer-panel,
  .bme-landing .platform-module,
  .bme-landing .security-list article,
  .bme-landing .landing-button,
  .bme-landing .landing-button .bme-svg-icon {
    transition-duration: 0.01ms !important;
  }
}

/* Hero load sequence: subtle 700–900ms story reveal. */
@keyframes bme-nav-enter {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

.bme-landing .landing-header {
  animation: bme-nav-enter 420ms var(--bme-ease) both;
}

.bme-landing .hero-copy > .landing-eyebrow,
.bme-landing .hero-copy > h1,
.bme-landing .hero-copy > p,
.bme-landing .hero-copy > .hero-actions {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 420ms var(--bme-ease), transform 420ms var(--bme-ease);
}

.bme-landing .hero-copy.in-view > .landing-eyebrow { opacity: 1; transform: none; transition-delay: 40ms; }
.bme-landing .hero-copy.in-view > h1 { opacity: 1; transform: none; transition-delay: 115ms; }
.bme-landing .hero-copy.in-view > p { opacity: 1; transform: none; transition-delay: 190ms; }
.bme-landing .hero-copy.in-view > .hero-actions { opacity: 1; transform: none; transition-delay: 265ms; }
.bme-landing .hero-stage[data-reveal] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .bme-landing .landing-header { animation: none; }
  .bme-landing .hero-copy > .landing-eyebrow,
  .bme-landing .hero-copy > h1,
  .bme-landing .hero-copy > p,
  .bme-landing .hero-copy > .hero-actions {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .bme-landing .hero-stage[data-reveal] { transition-delay: 0ms; }
}

/* =========================================================
   Round 13.1 — Landing closing section refinement
   Scope: Public Landing CTA + Footer only
   ========================================================= */
.bme-landing .landing-cta {
  padding: 78px 0 54px;
  overflow: hidden;
  background:
    radial-gradient(900px 420px at 50% -18%, rgba(45, 210, 221, .10), transparent 68%),
    linear-gradient(180deg, #071b31 0%, #06182c 100%);
}

.bme-landing .landing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 24%, #000 78%, transparent 100%);
}

.bme-landing .landing-cta .cta-glow {
  top: -6%;
  left: 77%;
  width: 720px;
  height: 520px;
  transform: none;
  border-radius: 50%;
  background: rgba(39, 207, 219, .13);
  filter: blur(125px);
}

body.bme-landing .landing-cta > .landing-container {
  position: relative;
  isolation: isolate;
  width: min(100% - 64px, 1180px);
  max-width: 1180px;
  min-height: 330px;
  margin-inline: auto;
  padding: 54px 58px;
  border: 1px solid rgba(139, 211, 230, .16);
  border-radius: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "icon actions"
    "title actions"
    "body actions";
  column-gap: 58px;
  row-gap: 0;
  align-items: end;
  text-align: left;
  overflow: hidden;
  background:
    radial-gradient(460px 300px at 96% 0%, rgba(55, 202, 220, .18), transparent 70%),
    radial-gradient(600px 350px at 28% 110%, rgba(26, 96, 191, .20), transparent 75%),
    linear-gradient(135deg, #0a254d 0%, #0a356a 56%, #0a407a 100%);
  box-shadow:
    0 30px 70px -42px rgba(0, 0, 0, .72),
    inset 0 1px 0 rgba(255,255,255,.035);
}

.bme-landing .landing-cta > .landing-container::before,
.bme-landing .landing-cta > .landing-container::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 999px;
}

.bme-landing .landing-cta > .landing-container::before {
  width: 310px;
  height: 310px;
  right: -105px;
  top: -155px;
  border: 1px solid rgba(106, 225, 234, .13);
  box-shadow: 0 0 0 46px rgba(106, 225, 234, .028), 0 0 0 92px rgba(106, 225, 234, .018);
}

.bme-landing .landing-cta > .landing-container::after {
  width: 170px;
  height: 170px;
  right: 250px;
  bottom: -125px;
  background: rgba(92, 221, 229, .055);
  filter: blur(1px);
}

.bme-landing .landing-cta .cta-icon {
  grid-area: icon;
  width: 52px;
  height: 52px;
  margin: 0 0 22px;
  border-color: rgba(105, 224, 233, .25);
  border-radius: 15px;
  color: #58d9e4;
  background: rgba(47, 204, 218, .095);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  font-size: 23px;
}

.bme-landing .landing-cta h2 {
  grid-area: title;
  max-width: 720px;
  margin: 0;
  font-size: clamp(36px, 3.25vw, 52px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.032em;
  text-wrap: balance;
}

.bme-landing .landing-cta p {
  grid-area: body;
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(226, 237, 249, .72);
  font-size: 15px;
  line-height: 1.72;
}

.bme-landing .landing-cta .cta-actions {
  grid-area: actions;
  min-width: 196px;
  margin: 0;
  display: grid;
  gap: 10px;
  align-self: end;
}

.bme-landing .landing-cta .cta-actions .landing-button {
  width: 100%;
  min-width: 196px;
  margin: 0;
  justify-content: center;
  border-radius: 13px;
}

.bme-landing .landing-cta .landing-button-mint {
  color: #06202d;
  background: linear-gradient(135deg, #64e3e7, #49d1dc);
  box-shadow: 0 16px 35px -20px rgba(76, 216, 225, .88);
}

.bme-landing .landing-cta .landing-button-mint:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px -20px rgba(76, 216, 225, .92);
}

.bme-landing .landing-cta .landing-button-ghost-light {
  border-color: rgba(216, 235, 248, .24);
  color: #eef7fb;
  background: rgba(255,255,255,.035);
}

.bme-landing .landing-cta .landing-button-ghost-light:hover {
  border-color: rgba(216, 235, 248, .42);
  background: rgba(255,255,255,.075);
}

body.bme-landing .landing-footer {
  position: relative;
  color: #9aaabe;
  background: #06182c;
}

.bme-landing .landing-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(calc(100% - 64px), 1180px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(184, 217, 235, .18) 14%, rgba(184, 217, 235, .18) 86%, transparent);
}

.bme-landing .landing-footer .footer-grid-platform {
  padding-top: 54px;
  padding-bottom: 42px;
  grid-template-columns: minmax(300px, 1.55fr) .9fr .9fr 1fr;
  gap: 54px;
  align-items: start;
}

.bme-landing .landing-footer .footer-brand {
  padding-right: 20px;
}

.bme-landing .landing-footer .footer-logo {
  width: fit-content;
  gap: 12px;
}

.bme-landing .landing-footer .footer-logo img {
  width: auto;
  height: 44px;
  object-fit: contain;
}

.bme-landing .landing-footer .footer-logo span {
  gap: 1px;
}

.bme-landing .landing-footer .footer-logo strong {
  font-size: 16px;
  line-height: 1.05;
  letter-spacing: .01em;
}

.bme-landing .landing-footer .footer-logo small {
  color: #4fcbd7;
  font-size: 9.5px;
  line-height: 1.15;
  letter-spacing: .06em;
}

.bme-landing .landing-footer .footer-brand > p {
  max-width: 390px;
  margin-top: 20px;
  color: #8ea0b5;
  font-size: 12.5px;
  line-height: 1.78;
}

.bme-landing .landing-footer .footer-grid h3 {
  position: relative;
  margin: 2px 0 19px;
  color: #f2f7fb;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .015em;
}

.bme-landing .landing-footer .footer-grid > div:not(.footer-brand) > a,
.bme-landing .landing-footer .footer-grid > div:not(.footer-brand) > p {
  width: fit-content;
  margin-bottom: 11px;
  color: #8da1b9;
  font-size: 11.5px;
  line-height: 1.5;
}

.bme-landing .landing-footer .footer-grid > div:not(.footer-brand) > a {
  position: relative;
  transition: color var(--bme-fast) var(--bme-ease), transform var(--bme-fast) var(--bme-ease);
}

.bme-landing .landing-footer .footer-grid > div:not(.footer-brand) > a:hover {
  color: #eff8fc;
  transform: translateX(2px);
}

.bme-landing .landing-footer .footer-disabled {
  margin-top: 0;
  margin-bottom: 11px;
  color: #6f8298;
  font-size: 11.5px;
  line-height: 1.5;
}

.bme-landing .landing-footer .footer-grid p i {
  color: #42cbd7;
}

.bme-landing .landing-footer .footer-bottom {
  min-height: 66px;
  border-top-color: rgba(184, 217, 235, .11);
  color: #71849b;
  font-size: 9.5px;
  letter-spacing: .01em;
}

@media (max-width: 1080px) {
  body.bme-landing .landing-cta > .landing-container {
    padding: 48px 46px;
    column-gap: 36px;
  }

  .bme-landing .landing-footer .footer-grid-platform {
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 42px;
  }

  .bme-landing .landing-footer .footer-grid-platform > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 820px) {
  .bme-landing .landing-cta {
    padding: 60px 0 42px;
  }

  body.bme-landing .landing-cta > .landing-container {
    width: min(100% - 40px, 1180px);
    min-height: 0;
    padding: 42px 34px 36px;
    border-radius: 24px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "title"
      "body"
      "actions";
    text-align: left;
  }

  .bme-landing .landing-cta h2 {
    font-size: clamp(32px, 7vw, 44px);
  }

  .bme-landing .landing-cta .cta-actions {
    width: 100%;
    max-width: 420px;
    margin-top: 28px;
    grid-template-columns: 1fr 1fr;
  }

  .bme-landing .landing-footer::before {
    width: calc(100% - 40px);
  }

  .bme-landing .landing-footer .footer-grid-platform {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 30px;
  }

  .bme-landing .landing-footer .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .bme-landing .landing-footer .footer-grid-platform > div:last-child {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .bme-landing .landing-cta {
    padding-top: 42px;
    padding-bottom: 34px;
  }

  body.bme-landing .landing-cta > .landing-container {
    width: min(100% - 28px, 1180px);
    padding: 34px 24px 26px;
    border-radius: 21px;
  }

  .bme-landing .landing-cta .cta-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
  }

  .bme-landing .landing-cta h2 {
    font-size: clamp(29px, 9.2vw, 38px);
    line-height: 1.22;
  }

  .bme-landing .landing-cta p {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .bme-landing .landing-cta .cta-actions {
    max-width: none;
    margin-top: 24px;
    grid-template-columns: 1fr;
  }

  .bme-landing .landing-footer::before {
    width: calc(100% - 28px);
  }

  .bme-landing .landing-footer .footer-grid-platform {
    padding-top: 42px;
    padding-bottom: 30px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bme-landing .landing-footer .footer-brand,
  .bme-landing .landing-footer .footer-grid-platform > div:last-child {
    grid-column: auto;
  }

  .bme-landing .landing-footer .footer-bottom {
    min-height: 0;
    padding: 20px 0 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

/* =========================================================
   Round 13.2 — Landing interaction reliability + polish
   Scope: navigation/link behavior and subtle micro-interaction only.
   ========================================================= */
.bme-landing main section[id],
.bme-landing footer[id] {
  scroll-margin-top: 84px;
}

.bme-landing :where(a, button, [role="tab"]) {
  cursor: pointer;
}

.bme-landing :where(a, button, [role="tab"]):focus-visible {
  outline: 2px solid rgba(24, 199, 206, .72);
  outline-offset: 3px;
}

.bme-landing .landing-brand {
  transition: opacity var(--bme-fast) var(--bme-ease), transform var(--bme-fast) var(--bme-ease);
}

.bme-landing .landing-language,
.bme-landing .landing-sign-in {
  transition: color var(--bme-fast) var(--bme-ease), opacity var(--bme-fast) var(--bme-ease);
}

.bme-landing .landing-nav-links a[aria-current="location"] {
  color: var(--ink);
}

.bme-landing .landing-button:active {
  transform: translateY(0) scale(.985);
}

.bme-landing .trust-marquee:hover .trust-track {
  animation-play-state: paused;
}

@media (hover: hover) and (pointer: fine) {
  .bme-landing .landing-brand:hover {
    opacity: .96;
    transform: translateY(-1px);
  }

  .bme-landing .landing-button:hover,
  .bme-landing .landing-cta .landing-button:hover {
    transform: translateY(-1px);
  }

  .bme-landing .hero-device:hover {
    --mockup-scale: 1.005;
  }
}

@media (max-width: 920px) {
  .bme-landing main section[id],
  .bme-landing footer[id] {
    scroll-margin-top: 76px;
  }

  .bme-landing .landing-nav-links.open a {
    transition: color var(--bme-fast) var(--bme-ease), background var(--bme-fast) var(--bme-ease);
  }

  .bme-landing .landing-nav-links.open a:active {
    background: rgba(24, 199, 206, .055);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bme-landing .floating-card,
  .bme-landing .phone-device,
  .bme-landing .trust-track {
    animation: none !important;
  }

  .bme-landing .hero-device {
    --mockup-scale: 1 !important;
    transform: none !important;
  }
}

/* ================================================================
   BME Landing v133 — product storytelling polish
   Baseline retained: navbar, hero, brand, typography and architecture.
   ================================================================ */

/* Rhythm / large typography moments */
.bme-landing .connected-story-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 24%, rgba(26, 196, 214, .08), transparent 28%),
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
}

.bme-landing .connected-story-section::before {
  content: "";
  position: absolute;
  width: min(620px, 46vw);
  aspect-ratio: 1;
  right: -180px;
  top: 40px;
  border: 1px solid rgba(9, 39, 73, .055);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(9, 39, 73, .018), 0 0 0 180px rgba(9, 39, 73, .012);
  pointer-events: none;
}

.bme-landing .connected-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
}

.bme-landing .connected-copy h2 {
  margin: 14px 0 20px;
  font-size: clamp(38px, 4.1vw, 62px);
  line-height: 1.08;
  letter-spacing: -.035em;
  color: var(--landing-navy, #0b2442);
}

.bme-landing .connected-copy h2 em {
  color: #0ca8bd;
  font-style: normal;
}

.bme-landing .connected-copy > p {
  margin: 0;
  max-width: 620px;
  color: #637186;
  font-size: 16px;
  line-height: 1.85;
}

.bme-landing .connected-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}

.bme-landing .connected-status-row > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #526177;
  font-size: 12px;
  font-weight: 650;
}

.bme-landing .status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.bme-landing .status-dot.live { background: #1ac4d6; box-shadow: 0 0 0 4px rgba(26,196,214,.11); }
.bme-landing .status-dot.soon { background: #efb24e; box-shadow: 0 0 0 4px rgba(239,178,78,.10); }
.bme-landing .status-dot.planned { background: #9ba7b8; box-shadow: 0 0 0 4px rgba(155,167,184,.10); }

/* Connected platform visual */
.bme-landing .connected-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid rgba(9, 39, 73, .09);
  border-radius: 32px;
  background:
    linear-gradient(rgba(8, 45, 80, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 45, 80, .028) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(26,196,214,.12), transparent 31%),
    #fff;
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow: 0 24px 70px rgba(9, 33, 61, .09);
  overflow: hidden;
}

.bme-landing .connected-core,
.bme-landing .connected-node {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(13, 74, 112, .10);
  background: rgba(255,255,255,.93);
  box-shadow: 0 12px 30px rgba(9, 33, 61, .075);
  transition: transform 180ms var(--bme-ease, cubic-bezier(.16,1,.3,1)), border-color 180ms ease, box-shadow 180ms ease;
}

.bme-landing .connected-core {
  left: 50%;
  top: 50%;
  width: 152px;
  height: 152px;
  transform: translate(-50%, -50%);
  align-items: center;
  border-radius: 34px;
  border-color: rgba(12, 168, 189, .28);
  background: linear-gradient(145deg, #082d52, #0c406f);
  color: #fff;
  box-shadow: 0 20px 44px rgba(5, 42, 75, .21), 0 0 0 8px rgba(26,196,214,.065);
}

.bme-landing .connected-core .bme-icon-host,
.bme-landing .connected-node .bme-icon-host {
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
}

.bme-landing .connected-core .bme-icon-host { color: #4ed7e6; }
.bme-landing .connected-core strong { font-size: 20px; letter-spacing: -.02em; }
.bme-landing .connected-core small { margin-top: 5px; color: #8edbe5; font-size: 9px; letter-spacing: .11em; }

.bme-landing .connected-node {
  width: 156px;
  min-height: 92px;
  padding: 14px 16px;
  border-radius: 20px;
  color: #15324d;
}

.bme-landing .connected-node .bme-icon-host { color: #0ba8bd; }
.bme-landing .connected-node b { font-size: 13px; line-height: 1.25; }
.bme-landing .connected-node small { margin-top: 4px; color: #91a0b2; font-size: 9px; letter-spacing: .08em; }

.bme-landing .connected-node.node-customer { left: 7%; top: 10%; }
.bme-landing .connected-node.node-clinic { right: 6%; top: 13%; }
.bme-landing .connected-node.node-supply { left: 5%; bottom: 12%; }
.bme-landing .connected-node.node-finance { right: 5%; bottom: 10%; }
.bme-landing .connected-node.node-analytics { right: 7%; top: 50%; transform: translateY(-50%); }

.bme-landing .connected-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(12,168,189,.12), rgba(12,168,189,.54), rgba(12,168,189,.12));
  transform-origin: 0 50%;
  opacity: .34;
  transition: opacity 520ms ease, filter 520ms ease;
}
.bme-landing .connected-line::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  right: -2px;
  top: -2.5px;
  border-radius: 50%;
  background: #1ac4d6;
  opacity: .6;
}
.bme-landing .line-customer { width: 38%; left: 24%; top: 31%; transform: rotate(23deg); }
.bme-landing .line-clinic { width: 34%; left: 53%; top: 36%; transform: rotate(-25deg); }
.bme-landing .line-supply { width: 39%; left: 22%; top: 67%; transform: rotate(-22deg); }
.bme-landing .line-finance { width: 35%; left: 52%; top: 64%; transform: rotate(25deg); }
.bme-landing .line-analytics { width: 28%; left: 56%; top: 50%; }

.bme-landing .connected-visual.is-illuminated .connected-line {
  opacity: .88;
  filter: drop-shadow(0 0 4px rgba(26,196,214,.20));
}

@media (hover: hover) and (pointer: fine) {
  .bme-landing .connected-node:hover {
    transform: translateY(-2px);
    border-color: rgba(12,168,189,.26);
    box-shadow: 0 16px 34px rgba(9, 33, 61, .11);
  }
  .bme-landing .connected-node.node-analytics:hover { transform: translateY(calc(-50% - 2px)); }
}

/* Asset story gets a stronger product-first composition without changing its content. */
.bme-landing .asset-story .story-grid {
  grid-template-columns: minmax(360px, .84fr) minmax(560px, 1.16fr);
  gap: clamp(44px, 6vw, 94px);
}
.bme-landing .asset-capability-map {
  min-height: 510px;
  box-shadow: 0 26px 70px rgba(8, 34, 60, .10);
}
.bme-landing .asset-map-node {
  transition: transform 180ms var(--bme-ease), border-color 180ms ease, box-shadow 180ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .bme-landing .asset-map-node:hover {
    transform: translateY(-2px);
    border-color: rgba(26,196,214,.30);
    box-shadow: 0 14px 28px rgba(8,34,60,.10);
  }
}

/* Workflow progression — same real workflow, now tells a story on entry. */
.bme-landing .workflow-track > article {
  position: relative;
  transition: transform 220ms var(--bme-ease), border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}
.bme-landing .workflow-track > article::after {
  content: "";
  position: absolute;
  inset: -1px;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 220ms ease;
}
.bme-landing .workflow-track > article.is-active {
  border-color: rgba(18,174,193,.23);
  background: #fff;
  box-shadow: 0 13px 30px rgba(8,34,60,.065);
  transform: translateY(-2px);
}
.bme-landing .workflow-track > article.is-active::after { border-color: rgba(26,196,214,.12); }
.bme-landing .workflow-track > [data-workflow-connector] {
  opacity: .28;
  transform: translateX(-4px);
  transition: opacity 240ms ease, transform 240ms var(--bme-ease), color 240ms ease;
}
.bme-landing .workflow-track > [data-workflow-connector].is-active {
  opacity: 1;
  transform: translateX(0);
  color: #0ca8bd;
}

/* Security cards get a little product-like response. */
.bme-landing .security-list article .bme-icon-host {
  transition: transform 180ms var(--bme-ease), color 180ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .bme-landing .security-list article:hover .bme-icon-host {
    transform: translateY(-1px);
    color: #0ca8bd;
  }
}

/* Product preview before the final CTA */
.bme-landing .product-preview-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f4f7fa 0%, #fff 72%);
  padding-bottom: clamp(100px, 9vw, 150px);
}
.bme-landing .product-preview-section::after {
  content: "";
  position: absolute;
  width: min(760px, 62vw);
  height: 320px;
  left: 50%;
  bottom: -190px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(17,173,193,.10);
  filter: blur(70px);
  pointer-events: none;
}
.bme-landing .product-preview-heading { max-width: 890px; margin-inline: auto; text-align: center; }
.bme-landing .product-preview-heading h2 { max-width: 820px; margin-inline: auto; }
.bme-landing .product-preview-heading p { max-width: 760px; margin-inline: auto; }

.bme-landing .product-preview-shell {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 46px auto 0;
  border: 1px solid rgba(8, 41, 72, .10);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 35px 90px rgba(8, 35, 61, .12);
  overflow: hidden;
  transition: transform 220ms var(--bme-ease), box-shadow 220ms ease, border-color 220ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .bme-landing .product-preview-shell:hover {
    transform: scale(1.005);
    border-color: rgba(19,163,182,.22);
    box-shadow: 0 40px 100px rgba(8, 35, 61, .145);
  }
}
.bme-landing .preview-browser-bar {
  min-height: 54px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 0 20px;
  border-bottom: 1px solid #e8edf2;
  background: #f8fafc;
}
.bme-landing .preview-dots { display: flex; gap: 6px; }
.bme-landing .preview-dots i { width: 8px; height: 8px; border-radius: 50%; background: #d2dae3; }
.bme-landing .preview-url { color: #8794a5; font-size: 11px; letter-spacing: .02em; }
.bme-landing .preview-live { justify-self: end; display: inline-flex; align-items: center; gap: 7px; color: #447186; font-size: 9px; font-weight: 700; letter-spacing: .10em; }
.bme-landing .preview-live i { width: 6px; height: 6px; border-radius: 50%; background: #1ac4d6; box-shadow: 0 0 0 4px rgba(26,196,214,.10); }

.bme-landing .preview-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px 20px;
  border-bottom: 1px solid #edf1f5;
  overflow-x: auto;
  scrollbar-width: none;
  background: #fff;
}
.bme-landing .preview-tabs::-webkit-scrollbar { display: none; }
.bme-landing .preview-tab {
  position: relative;
  border: 0;
  border-radius: 999px;
  padding: 9px 16px;
  background: transparent;
  color: #667489;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms var(--bme-ease);
}
.bme-landing .preview-tab:hover { color: #0b385d; background: #f5f8fa; }
.bme-landing .preview-tab.active { color: #063f61; background: rgba(26,196,214,.11); }
.bme-landing .preview-tab:active { transform: scale(.985); }

.bme-landing .preview-stage { min-height: 390px; background: linear-gradient(135deg, #fff 0%, #fbfcfd 100%); }
.bme-landing .preview-panel {
  display: grid;
  grid-template-columns: minmax(260px, .66fr) minmax(430px, 1.34fr);
  align-items: center;
  gap: clamp(34px, 5vw, 72px);
  min-height: 390px;
  padding: clamp(34px, 5vw, 64px);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 220ms ease, transform 220ms var(--bme-ease);
}
.bme-landing .preview-panel.active { opacity: 1; transform: translateY(0); }
.bme-landing .preview-panel[hidden] { display: none; }
.bme-landing .preview-copy > span { color: #0ca8bd; font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.bme-landing .preview-copy h3 { margin: 11px 0 12px; color: #0b2e4e; font-size: clamp(28px, 3vw, 42px); letter-spacing: -.03em; }
.bme-landing .preview-copy p { margin: 0; color: #687689; font-size: 14px; line-height: 1.8; }

.bme-landing .preview-ui {
  min-height: 248px;
  border: 1px solid #e6ebf0;
  border-radius: 22px;
  background: #f8fafc;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 16px 34px rgba(8,34,60,.06);
  overflow: hidden;
}
.bme-landing .preview-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; padding: 18px; }
.bme-landing .preview-kpis article { padding: 15px; border: 1px solid #e9eef3; border-radius: 14px; background: #fff; }
.bme-landing .preview-kpis small { display: block; color: #8693a4; font-size: 9px; }
.bme-landing .preview-kpis b { display: block; margin-top: 5px; color: #163956; font-size: 19px; }
.bme-landing .preview-kpis em { color: #12a4b8; font-size: 8px; font-style: normal; }
.bme-landing .preview-chart { height: 128px; margin: 0 18px 18px; padding: 18px 16px 0; display: flex; align-items: end; gap: 10px; border-radius: 14px; background: linear-gradient(180deg,#fff,#f8fafc); border: 1px solid #edf1f4; }
.bme-landing .preview-chart span { flex: 1; height: var(--h); min-width: 8px; border-radius: 5px 5px 2px 2px; background: linear-gradient(180deg,#29c9d9,#2c6fa4); opacity: .82; }

.bme-landing .asset-preview-ui { padding: 18px; }
.bme-landing .preview-search { height: 40px; display: flex; align-items: center; gap: 10px; padding: 0 13px; border-radius: 11px; background: #fff; border: 1px solid #e6ecf2; color: #a0acb9; font-size: 10px; }
.bme-landing .preview-search .bme-icon-host { width: 14px; height: 14px; }
.bme-landing .preview-asset-row { display: grid; grid-template-columns: 100px 1fr auto; gap: 12px; align-items: center; min-height: 48px; margin-top: 8px; padding: 0 12px; border-radius: 11px; background: #fff; border: 1px solid #edf1f4; font-size: 10px; }
.bme-landing .preview-asset-row b { color: #183a56; }
.bme-landing .preview-asset-row span { color: #748195; }
.bme-landing .preview-asset-row em { color: #0f9fb1; font-size: 8px; font-style: normal; font-weight: 700; }

.bme-landing .qr-preview-ui { display: flex; align-items: center; justify-content: center; gap: 30px; padding: 32px; }
.bme-landing .preview-qr-grid { width: 138px; aspect-ratio: 1; border: 10px solid #fff; border-radius: 12px; background:
  repeating-linear-gradient(0deg,#0a2b48 0 6px,transparent 6px 12px),
  repeating-linear-gradient(90deg,#0a2b48 0 6px,#fff 6px 12px);
  background-blend-mode: multiply;
  box-shadow: 0 12px 25px rgba(8,34,60,.12);
}
.bme-landing .qr-preview-ui > div:last-child { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.bme-landing .qr-preview-ui b { color: #153651; font-size: 18px; }
.bme-landing .qr-preview-ui span { color: #11a7ba; font-size: 11px; font-weight: 650; }
.bme-landing .qr-preview-ui small { max-width: 250px; color: #8794a4; font-size: 9px; overflow-wrap: anywhere; }

.bme-landing .report-preview-ui { display: grid; grid-template-columns: 180px 1fr; align-items: center; gap: 30px; padding: 30px; }
.bme-landing .report-ring { width: 140px; aspect-ratio: 1; margin: auto; border-radius: 50%; display: grid; place-content: center; text-align: center; background: radial-gradient(circle at center,#fff 0 46%,transparent 47%), conic-gradient(#18b4c8 0 88%, #e8edf2 88% 100%); }
.bme-landing .report-ring b { color: #153651; font-size: 25px; }
.bme-landing .report-ring span { color: #8793a4; font-size: 9px; }
.bme-landing .report-bars { display: grid; gap: 14px; }
.bme-landing .report-bars i { width: var(--w); height: 12px; border-radius: 999px; background: linear-gradient(90deg,#163f66,#20b9ca); opacity: .78; }

.bme-landing .import-preview-ui { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; padding: 34px; }
.bme-landing .import-preview-ui > div { min-height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; border-radius: 18px; border: 1px solid #e6ebf0; background: #fff; text-align: center; }
.bme-landing .import-preview-ui > div .bme-icon-host { width: 25px; height: 25px; color: #0ca8bd; }
.bme-landing .import-preview-ui b { color: #163a57; font-size: 12px; }
.bme-landing .import-preview-ui small { color: #8a96a6; font-size: 9px; }
.bme-landing .import-preview-ui > .bme-icon-host { width: 20px; color: #9aa6b4; }

/* Final CTA is now part of the scene rather than a navy card on navy. */
body.bme-landing .landing-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(94px, 9vw, 150px) 0 clamp(90px, 8vw, 132px);
  background:
    radial-gradient(circle at 72% 44%, rgba(32,202,219,.16), transparent 26%),
    radial-gradient(circle at 20% 6%, rgba(52,116,176,.16), transparent 32%),
    linear-gradient(180deg, #071f39 0%, #061a31 100%);
}
.bme-landing .landing-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255,255,255,.018), transparent 36%);
  pointer-events: none;
}
.bme-landing .landing-cta .cta-glow {
  position: absolute;
  width: min(700px, 56vw);
  aspect-ratio: 1;
  right: -210px;
  top: -220px;
  border-radius: 50%;
  background: rgba(30,201,218,.12);
  filter: blur(82px);
  pointer-events: none;
}
.bme-landing .cta-grid-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(101,176,210,.035) 1px, transparent 1px), linear-gradient(90deg,rgba(101,176,210,.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 4%, #000 30%, #000 88%, transparent 100%);
  pointer-events: none;
}
.bme-landing .cta-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: clamp(54px, 8vw, 120px);
  align-items: center;
}
.bme-landing .cta-copy-block { text-align: left; }
.bme-landing .cta-kicker { color: #60dce8; }
.bme-landing .cta-copy-block h2 {
  margin: 16px 0 18px;
  color: #fff;
  font-size: clamp(40px, 4.5vw, 20px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.bme-landing .cta-copy-block > p {
  max-width: 610px;
  margin: 0;
  color: #a8bed1;
  font-size: 16px;
  line-height: 1.8;
}
.bme-landing .cta-copy-block .cta-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.bme-landing .cta-product-visual {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(112,205,219,.12);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 30px 75px rgba(0,0,0,.16);
  backdrop-filter: blur(8px);
}
.bme-landing .cta-product-core,
.bme-landing .cta-product-tile {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(148,223,232,.12);
  background: rgba(7,31,57,.82);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0,0,0,.13);
}
.bme-landing .cta-product-core {
  left: 50%; top: 50%;
  width: 150px; height: 150px;
  transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 34px;
  border-color: rgba(58,217,230,.27);
  background: linear-gradient(145deg, #0a4168, #082e51);
  box-shadow: 0 22px 44px rgba(0,0,0,.18), 0 0 0 7px rgba(42,203,218,.055);
}
.bme-landing .cta-product-core .bme-icon-host { width: 27px; height: 27px; margin-bottom: 10px; color: #58dbe7; }
.bme-landing .cta-product-core strong { font-size: 19px; }
.bme-landing .cta-product-core small { margin-top: 5px; color: #69d9e3; font-size: 9px; letter-spacing: .12em; }
.bme-landing .cta-product-tile {
  width: 168px;
  min-height: 84px;
  padding: 15px 16px;
  border-radius: 19px;
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 10px;
  transition: transform 180ms var(--bme-ease), border-color 180ms ease;
}
.bme-landing .cta-product-tile .bme-icon-host { grid-row: 1 / 3; width: 23px; height: 23px; color: #52d9e6; }
.bme-landing .cta-product-tile b { font-size: 12px; }
.bme-landing .cta-product-tile small { color: #89a9be; font-size: 9px; }
.bme-landing .tile-qr { left: 8%; top: 11%; }
.bme-landing .tile-report { right: 7%; top: 13%; }
.bme-landing .tile-branch { right: 10%; bottom: 10%; }
.bme-landing .cta-connector { position: absolute; z-index: 1; height: 1px; background: linear-gradient(90deg,rgba(75,218,231,.10),rgba(75,218,231,.42),rgba(75,218,231,.10)); transform-origin: 0 50%; }
.bme-landing .cta-line-a { width: 40%; left: 24%; top: 35%; transform: rotate(21deg); }
.bme-landing .cta-line-b { width: 35%; left: 52%; top: 37%; transform: rotate(-24deg); }
.bme-landing .cta-line-c { width: 34%; left: 54%; top: 61%; transform: rotate(26deg); }
@media (hover:hover) and (pointer:fine) {
  .bme-landing .cta-product-tile:hover { transform: translateY(-2px); border-color: rgba(86,222,234,.27); }
}

/* Rich footer: 38% brand / 62% links, continuous CTA-to-footer transition. */
body.bme-landing .landing-footer {
  position: relative;
  margin: 0;
  padding: 0;
  background: #05172b;
  color: #a9bacb;
}
.bme-landing .landing-footer::before {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(151,207,221,.10), transparent);
}
.bme-landing .footer-main {
  display: grid;
  grid-template-columns: minmax(330px, 38%) minmax(0, 62%);
  gap: clamp(54px, 8vw, 120px);
  padding-top: clamp(68px, 7vw, 102px);
  padding-bottom: clamp(50px, 6vw, 82px);
}
.bme-landing .footer-brand-rich { max-width: 480px; }
.bme-landing .footer-logo { display: inline-flex; align-items: center; gap: 13px; color: #fff; text-decoration: none; }
.bme-landing .footer-logo img { width: auto; height: 44px; object-fit: contain; }
.bme-landing .footer-logo strong { display: block; color: #fff; font-size: 16px; line-height: 1.05; letter-spacing: .01em; }
.bme-landing .footer-logo small { display: block; margin-top: 3px; color: #58cdd9; font-size: 9.5px; line-height: 1.15; letter-spacing: .06em; }
.bme-landing .footer-brand-rich > p { max-width: 450px; margin: 22px 0 0; color: #8ea5b9; font-size: 13px; line-height: 1.85; }
.bme-landing .footer-mini-actions { display: flex; gap: 22px; margin-top: 26px; }
.bme-landing .footer-mini-actions a { display: inline-flex; align-items: center; gap: 5px; color: #d9e7ef; font-size: 12px; font-weight: 600; text-decoration: none; transition: color 160ms ease; }
.bme-landing .footer-mini-actions a .bme-icon-host { width: 13px; height: 13px; transition: transform 160ms var(--bme-ease); }
.bme-landing .footer-mini-actions a:hover { color: #62d7e2; }
.bme-landing .footer-mini-actions a:hover .bme-icon-host { transform: translateX(2px); }

.bme-landing .footer-link-groups { display: grid; grid-template-columns: 1.22fr .9fr .88fr; gap: clamp(28px,4vw,58px); }
.bme-landing .footer-link-groups > div { min-width: 0; }
.bme-landing .footer-link-groups h3 { margin: 0 0 20px; color: #e8f0f5; font-size: 13px; font-weight: 650; }
.bme-landing .footer-link-groups a,
.bme-landing .footer-link-groups p,
.bme-landing .footer-link-groups .footer-disabled {
  display: flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin: 0 0 12px;
  color: #88a1b7;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;
}
.bme-landing .footer-link-groups a { transition: color 160ms ease, transform 160ms var(--bme-ease); }
.bme-landing .footer-link-groups a:hover { color: #d7e7ef; transform: translateX(2px); }
.bme-landing .footer-link-groups .footer-disabled { color: #657c91; }
.bme-landing .footer-link-groups p .bme-icon-host { width: 14px; height: 14px; color: #3bcad8; }

.bme-landing .footer-bottom-rich {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(157,193,211,.085);
  color: #637d92;
  font-size: 11px;
}
.bme-landing .footer-bottom-rich > div { display: flex; align-items: center; gap: 20px; }
.bme-landing .footer-legal-disabled { color: #637d92; }
.bme-landing .footer-bottom-rich [data-bme-language-toggle] {
  border: 0;
  padding: 0;
  background: transparent;
  color: #8ca7ba;
  font: inherit;
  font-weight: 650;
  cursor: pointer;
  transition: color 160ms ease;
}
.bme-landing .footer-bottom-rich [data-bme-language-toggle]:hover { color: #d6e6ed; }

/* Reveal variants stay subtle and use the existing observer. */
.bme-landing [data-reveal="left"] { transform: translateX(-14px); }
.bme-landing [data-reveal="right"] { transform: translateX(14px); }
.bme-landing [data-reveal="up"] { transform: translateY(14px); }
.bme-landing [data-reveal="left"].in-view,
.bme-landing [data-reveal="right"].in-view,
.bme-landing [data-reveal="up"].in-view { transform: translate(0,0); }

/* Keep back-to-top tied visually to the dark ending rather than floating too loudly. */
.bme-landing .landing-back-top {
  width: 42px;
  height: 42px;
  right: 22px;
  bottom: 22px;
  box-shadow: 0 8px 22px rgba(5,28,51,.16);
  transition: opacity 180ms ease, transform 180ms var(--bme-ease), background-color 180ms ease;
}
.bme-landing .landing-back-top.show:hover { transform: translateY(-2px); }

/* ---------------- Responsive ---------------- */
@media (max-width: 1120px) {
  .bme-landing .connected-story-grid,
  .bme-landing .asset-story .story-grid,
  .bme-landing .cta-experience {
    grid-template-columns: 1fr;
  }
  .bme-landing .connected-copy { max-width: 760px; }
  .bme-landing .connected-visual { min-height: 500px; }
  .bme-landing .asset-story .story-visual { max-width: 780px; width: 100%; margin-inline: auto; }
  .bme-landing .cta-copy-block { max-width: 760px; }
  .bme-landing .cta-product-visual { min-height: 390px; max-width: 760px; width: 100%; }
  .bme-landing .footer-main { grid-template-columns: minmax(270px, .8fr) minmax(0, 1.2fr); gap: 50px; }
  .bme-landing .footer-link-groups { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .bme-landing .connected-visual { min-height: 470px; }
  .bme-landing .connected-node { width: 140px; }
  .bme-landing .connected-node.node-customer { left: 4%; }
  .bme-landing .connected-node.node-clinic { right: 4%; }
  .bme-landing .connected-node.node-supply { left: 4%; }
  .bme-landing .connected-node.node-finance { right: 4%; }
  .bme-landing .connected-node.node-analytics { right: 4%; }
  .bme-landing .preview-panel { grid-template-columns: 1fr; min-height: 0; }
  .bme-landing .preview-ui { min-height: 220px; }
  .bme-landing .footer-main { grid-template-columns: 1fr; }
  .bme-landing .footer-brand-rich { max-width: 600px; }
}

@media (max-width: 620px) {
  .bme-landing .connected-copy h2,
  .bme-landing .cta-copy-block h2 { font-size: clamp(34px, 10.6vw, 48px); }
  .bme-landing .connected-visual { min-height: 560px; border-radius: 24px; }
  .bme-landing .connected-core { width: 126px; height: 126px; border-radius: 28px; }
  .bme-landing .connected-node { width: 132px; min-height: 78px; padding: 11px 12px; border-radius: 16px; }
  .bme-landing .connected-node.node-customer { left: 6%; top: 7%; }
  .bme-landing .connected-node.node-clinic { right: 6%; top: 7%; }
  .bme-landing .connected-node.node-supply { left: 6%; bottom: 7%; }
  .bme-landing .connected-node.node-finance { right: 6%; bottom: 7%; }
  .bme-landing .connected-node.node-analytics { right: 50%; top: auto; bottom: 27%; transform: translateX(50%); }
  .bme-landing .line-analytics { display: none; }
  .bme-landing .preview-browser-bar { grid-template-columns: auto 1fr; }
  .bme-landing .preview-live { display: none; }
  .bme-landing .preview-url { justify-self: end; }
  .bme-landing .preview-tabs { justify-content: flex-start; }
  .bme-landing .preview-panel { padding: 28px 20px; }
  .bme-landing .preview-kpis { grid-template-columns: 1fr; }
  .bme-landing .preview-kpis article { display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .bme-landing .preview-kpis b { grid-column: 2; grid-row: 1 / 3; margin: 0; }
  .bme-landing .preview-chart { display: none; }
  .bme-landing .preview-asset-row { grid-template-columns: 90px 1fr; }
  .bme-landing .preview-asset-row em { grid-column: 2; }
  .bme-landing .qr-preview-ui { flex-direction: column; text-align: center; }
  .bme-landing .report-preview-ui { grid-template-columns: 1fr; }
  .bme-landing .report-ring { width: 120px; }
  .bme-landing .import-preview-ui { grid-template-columns: 1fr; }
  .bme-landing .import-preview-ui > .bme-icon-host { transform: rotate(90deg); margin: auto; }
  .bme-landing .cta-experience { gap: 42px; }
  .bme-landing .cta-copy-block .cta-actions { flex-direction: column; align-items: stretch; }
  .bme-landing .cta-copy-block .cta-actions .landing-button { justify-content: center; width: 100%; }
  .bme-landing .cta-product-visual { min-height: 440px; }
  .bme-landing .cta-product-core { width: 128px; height: 128px; border-radius: 28px; }
  .bme-landing .cta-product-tile { width: 145px; min-height: 76px; }
  .bme-landing .tile-qr { left: 5%; top: 8%; }
  .bme-landing .tile-report { right: 5%; top: 8%; }
  .bme-landing .tile-branch { right: 50%; bottom: 8%; transform: translateX(50%); }
  .bme-landing .cta-line-c { display: none; }
  .bme-landing .footer-link-groups { grid-template-columns: 1fr; gap: 26px; }
  .bme-landing .footer-mini-actions { flex-wrap: wrap; }
  .bme-landing .footer-bottom-rich { align-items: flex-start; flex-direction: column; padding-block: 20px; }
  .bme-landing .footer-bottom-rich > div { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .bme-landing [data-reveal="left"],
  .bme-landing [data-reveal="right"],
  .bme-landing [data-reveal="up"],
  .bme-landing .preview-panel,
  .bme-landing .workflow-track > article,
  .bme-landing .workflow-track > [data-workflow-connector],
  .bme-landing .connected-node,
  .bme-landing .connected-line,
  .bme-landing .cta-product-tile,
  .bme-landing .product-preview-shell {
    transition-duration: .01ms !important;
    transform: none !important;
  }
  .bme-landing .connected-line { opacity: .62; }
  .bme-landing .preview-panel { opacity: 1; }
}

/* v133 reduced-motion positional safeguard: preserve layout transforms that position nodes. */
@media (prefers-reduced-motion: reduce) {
  .bme-landing .connected-node,
  .bme-landing .cta-product-tile {
    transition: none !important;
  }
  .bme-landing .connected-node.node-analytics { transform: translateY(-50%) !important; }
  .bme-landing .cta-product-tile.tile-branch { transform: none !important; }
}
@media (max-width: 620px) and (prefers-reduced-motion: reduce) {
  .bme-landing .connected-node.node-analytics { transform: translateX(50%) !important; }
  .bme-landing .cta-product-tile.tile-branch { transform: translateX(50%) !important; }
}

/* v133 CTA specificity reset: remove the old inner-card layout without touching the section itself. */
body.bme-landing .landing-cta > .landing-container.cta-experience {
  width: min(100% - 64px, 1180px);
  max-width: 1180px;
  min-height: 0;
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  grid-template-areas: none;
  column-gap: clamp(54px, 8vw, 120px);
  row-gap: 0;
  align-items: center;
  text-align: left;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
body.bme-landing .landing-cta > .landing-container.cta-experience::before,
body.bme-landing .landing-cta > .landing-container.cta-experience::after {
  display: none;
}
.bme-landing .cta-copy-block .cta-actions {
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  align-self: auto;
}
.bme-landing .cta-copy-block .cta-actions .landing-button {
  width: auto;
  min-width: 168px;
}
.bme-landing .cta-product-visual {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  overflow: hidden;
}
@media (max-width: 1120px) {
  body.bme-landing .landing-cta > .landing-container.cta-experience {
    grid-template-columns: 1fr;
    gap: 46px;
  }
  .bme-landing .cta-product-visual { justify-self: start; max-width: 760px; }
}
@media (max-width: 620px) {
  body.bme-landing .landing-cta > .landing-container.cta-experience {
    width: min(100% - 36px, 1180px);
  }
  .bme-landing .cta-copy-block .cta-actions { flex-direction: column; align-items: stretch; }
  .bme-landing .cta-copy-block .cta-actions .landing-button { width: 100%; min-width: 0; }
}
