:root {
  color-scheme: light;
  --bg: #f7fbff;
  --paper: #ffffff;
  --paper-soft: rgba(255, 255, 255, 0.76);
  --ink: #102033;
  --ink-soft: #2f3f55;
  --muted: #647287;
  --faint: #9aa9bb;
  --line: rgba(121, 147, 180, 0.18);
  --line-strong: rgba(98, 126, 160, 0.28);
  --blue: #2f6bff;
  --blue-deep: #174fe6;
  --cyan: #69ddf7;
  --aqua: #19d7c1;
  --green: #55d9ae;
  --amber: #d8a84f;
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 40px;
  --radius-xl: 56px;
  --shadow: 0 28px 90px rgba(38, 68, 110, 0.12);
  --shadow-soft: 0 16px 48px rgba(38, 68, 110, 0.09);
  --shadow-safe: clamp(28px, 4.8vw, 78px);
  --glow-bleed: clamp(18px, 3vw, 44px);
  --glow-bleed-neg: clamp(-44px, -3vw, -18px);
  --ease: cubic-bezier(.2, .9, .2, 1);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,251,255,0.98) 42%, rgba(238,246,255,0.96)),
    var(--bg);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    linear-gradient(rgba(126,150,183,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(126,150,183,0.07) 1px, transparent 1px),
    linear-gradient(116deg, transparent 0 23%, rgba(47,107,255,0.045) 23.1% 23.22%, transparent 23.34%),
    linear-gradient(64deg, transparent 0 72%, rgba(105,221,247,0.052) 72.1% 72.22%, transparent 72.34%);
  background-size: 56px 56px, 56px 56px, auto, auto;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.58), rgba(0,0,0,0.22) 72%, transparent);
  animation: matrixDrift 32s linear infinite;
}

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

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

button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.skyCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.78;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.wideShell {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.siteHeader {
  position: sticky;
  top: 14px;
  z-index: 30;
  margin-top: 14px;
  animation: glassSettle .9s var(--ease) both;
}

.topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.62));
  box-shadow: 0 18px 58px rgba(38, 68, 110, 0.12);
  backdrop-filter: blur(26px) saturate(1.2);
  -webkit-backdrop-filter: blur(26px) saturate(1.2);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brandMark {
  position: relative;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 999px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 900;
  background: rgba(255,255,255,0.62);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.64), 0 18px 38px rgba(47,107,255,0.2);
  clip-path: circle(50% at 50% 50%);
  transform: translateZ(0);
  contain: paint;
}

.brandMark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: url("assets/brand/baiheng-logo-circle.png") center / cover no-repeat;
}

.brandMark::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.2), transparent 42%),
    radial-gradient(circle at 82% 20%, rgba(255,255,255,0.18), transparent 26%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.52);
}

.brandText {
  min-width: 0;
}

.brandMark span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.brandText strong,
.brandText small {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brandText strong {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 860;
}

.brandText small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 660;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.nav a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  white-space: nowrap;
  transition: color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease);
}

.nav a:hover,
.nav a.isActive {
  color: var(--ink);
  background: rgba(255,255,255,0.72);
  transform: translateY(-1px);
}

.topActions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.languageBadge,
.navCta,
.primaryBtn,
.secondaryBtn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 840;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}

.navCta::after,
.languageBadge::after,
.primaryBtn::after,
.secondaryBtn::after {
  content: "";
  position: absolute;
  inset: -40% -120%;
  z-index: 0;
  background: linear-gradient(110deg, transparent 34%, rgba(255,255,255,0.56) 48%, transparent 62%);
  transform: translateX(-36%) rotate(8deg);
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
}

.languageSwitch {
  position: relative;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.languageBadge {
  gap: 8px;
  min-width: 112px;
  padding: 0 12px 0 10px;
  border: 0;
  color: var(--muted);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.58)),
    radial-gradient(circle at 18% 42%, rgba(105,221,247,0.22), transparent 42%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.86), 0 10px 24px rgba(38,68,110,0.08);
  cursor: pointer;
}

.languageBadge:hover,
.languageSwitch.isOpen .languageBadge {
  color: var(--blue-deep);
  background: rgba(255,255,255,0.84);
  box-shadow: inset 0 0 0 1px rgba(47,107,255,0.1), 0 14px 32px rgba(47,107,255,0.12);
}

.languageWave {
  position: relative;
  z-index: 1;
  width: 27px;
  height: 27px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(47,107,255,0.95), rgba(105,221,247,0.9));
  box-shadow: 0 10px 20px rgba(47,107,255,0.24);
}

.languageWave::before,
.languageWave::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 38px;
  height: 38px;
  border-radius: 40%;
  background: rgba(255,255,255,0.72);
  transform: translateX(-50%);
  animation: languageLiquid 5.8s ease-in-out infinite;
}

.languageWave::before {
  top: -26px;
}

.languageWave::after {
  top: -21px;
  opacity: .52;
  animation-duration: 4.4s;
  animation-direction: reverse;
}

.languageCurrent {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
}

.languageCurrent b {
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 940;
}

.languageCurrent span {
  max-width: 76px;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 860;
  text-overflow: ellipsis;
}

.languageChevron {
  position: relative;
  z-index: 1;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-right: 2px solid rgba(47,63,85,0.54);
  border-bottom: 2px solid rgba(47,63,85,0.54);
  transform: translateY(-2px) rotate(45deg);
  transition: transform .24s var(--ease);
}

.languageSwitch.isOpen .languageChevron {
  transform: translateY(2px) rotate(225deg);
}

.languageMenu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 100;
  display: grid;
  gap: 6px;
  width: min(260px, calc(100vw - 34px));
  max-height: min(520px, calc(100vh - 128px));
  padding: 10px;
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.94), rgba(244,249,255,0.78)),
    radial-gradient(circle at 18% 0%, rgba(105,221,247,0.18), transparent 42%);
  box-shadow: 0 26px 78px rgba(38,68,110,0.18), inset 0 1px 0 rgba(255,255,255,0.86);
  backdrop-filter: blur(24px) saturate(1.22);
  -webkit-backdrop-filter: blur(24px) saturate(1.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(.97);
  transform-origin: top right;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
}

[dir="rtl"] .languageMenu {
  right: auto;
  left: 0;
  text-align: right;
  transform-origin: top left;
}

.languageSwitch.isOpen .languageMenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.languageOption {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 7px 10px 7px 8px;
  overflow: hidden;
  border-radius: 18px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.36);
  text-align: left;
  transition: transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease);
}

.languageOption:hover,
.languageOption.isActive {
  color: var(--ink);
  background: rgba(255,255,255,0.82);
  box-shadow: 0 12px 28px rgba(47,107,255,0.1), inset 0 0 0 1px rgba(47,107,255,0.08);
  transform: translateY(-1px);
}

.languageOption.isActive::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 0 0 6px rgba(47,107,255,0.08), 0 0 18px rgba(105,221,247,0.34);
  transform: translateY(-50%);
}

.optionCode {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-deep);
  background: rgba(47,107,255,0.1);
  font-size: 11px;
  font-weight: 950;
}

.languageOption.isActive .optionCode {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 18px rgba(47,107,255,0.18);
}

.languageOption b,
.languageOption small {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.languageOption b {
  font-size: 13px;
  font-weight: 900;
}

.languageOption small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 720;
}

.languageBadge:focus-visible {
  outline: 2px solid rgba(47,107,255,0.38);
  outline-offset: 3px;
}

.navCta,
.primaryBtn {
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--blue), #6ba6ff);
  box-shadow: 0 14px 34px rgba(47,107,255,0.24);
}

.secondaryBtn {
  padding: 0 18px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.88), 0 12px 28px rgba(38,68,110,0.08);
}

.primaryBtn:hover,
.secondaryBtn:hover,
.languageBadge:hover,
.navCta:hover {
  transform: translateY(-2px) scale(1.02);
}

.primaryBtn:hover::after,
.secondaryBtn:hover::after,
.languageBadge:hover::after,
.navCta:hover::after {
  opacity: .86;
  animation: surfaceSweep .72s var(--ease) both;
}

.primaryBtn:active,
.secondaryBtn:active,
.languageBadge:active,
.navCta:active {
  transform: translateY(1px) scale(.97);
}

.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  display: grid;
  align-items: center;
  overflow: visible;
  margin-bottom: clamp(18px, 2vw, 34px);
  padding: 78px 0 calc(52px + min(var(--shadow-safe), 42px));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 32px -24px -76px;
  z-index: -1;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse at 18% 62%, rgba(105,221,247,0.18), transparent 54%),
    radial-gradient(ellipse at 68% 92%, rgba(47,107,255,0.12), transparent 62%),
    linear-gradient(145deg, rgba(255,255,255,0.82), rgba(240,248,255,0.34));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.92), 0 36px 96px rgba(38,68,110,0.08);
  mask-image: linear-gradient(to bottom, #000 0 74%, rgba(0,0,0,0.72) 87%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 74%, rgba(0,0,0,0.72) 87%, transparent 100%);
}

.heroMedia {
  position: absolute;
  inset: 32px 0 0;
  z-index: 0;
  overflow: visible;
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.heroMedia::before {
  content: "";
  position: absolute;
  inset: 0 -20px -86px;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 18% 66%, rgba(105,221,247,0.1), transparent 58%),
    radial-gradient(ellipse at 62% 90%, rgba(47,107,255,0.08), transparent 62%),
    linear-gradient(90deg, rgba(247,251,255,0.96) 0%, rgba(247,251,255,0.72) 36%, rgba(247,251,255,0.2) 66%, rgba(247,251,255,0.52) 100%);
  mask-image: linear-gradient(to bottom, #000 0 70%, rgba(0,0,0,0.66) 86%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 70%, rgba(0,0,0,0.66) 86%, transparent 100%);
}

.heroShot,
.posterShot {
  position: absolute;
  right: 92px;
  bottom: 56px;
  width: 278px;
  border-radius: 42px;
  box-shadow: 0 36px 90px rgba(32, 58, 92, 0.22);
  transform: rotate(4deg);
  animation: floatDevice 8s var(--ease) infinite;
}

.heroShot.secondary {
  right: 344px;
  bottom: 96px;
  width: 226px;
  opacity: .72;
  transform: rotate(-6deg);
  animation-delay: -2.8s;
}

.bilingualShotStack {
  position: absolute;
  right: clamp(128px, 9vw, 188px);
  bottom: 44px;
  width: min(560px, 42vw);
  height: 690px;
  pointer-events: auto;
}

.interfaceShot {
  position: absolute;
  margin: 0;
  width: clamp(238px, 20vw, 278px);
  cursor: pointer;
  outline: none;
  transform-origin: 50% 78%;
  transition:
    transform .7s var(--ease),
    opacity .55s var(--ease),
    filter .55s var(--ease),
    z-index .01s linear;
}

.interfaceShot img {
  width: 100%;
  border-radius: 42px;
  box-shadow: 0 36px 90px rgba(32,58,92,0.2);
  transition: box-shadow .55s var(--ease);
}

.interfaceShot figcaption {
  position: absolute;
  left: 50%;
  bottom: -18px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.86), 0 12px 28px rgba(38,68,110,0.08);
  font-size: 12px;
  font-weight: 840;
  white-space: nowrap;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .34s var(--ease), transform .34s var(--ease);
}

.interfaceShot:hover figcaption,
.interfaceShot:focus figcaption {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

.shotDark {
  left: 38px;
  top: 58px;
}

.shotLight {
  right: 16px;
  top: 0;
}

.bilingualShotStack[data-active="light"] .shotLight {
  z-index: 5;
  opacity: 1;
  filter: saturate(1.04);
  transform: translate3d(-34px, 0, 0) rotate(4deg) scale(.98);
}

.bilingualShotStack[data-active="light"] .shotDark {
  z-index: 4;
  opacity: .66;
  filter: saturate(.82) blur(.45px);
  transform: translate3d(-2px, 54px, 0) rotate(-5deg) scale(.88);
}

.bilingualShotStack[data-active="dark"] .shotDark {
  z-index: 5;
  opacity: 1;
  filter: saturate(1.05);
  transform: translate3d(0, 0, 0) rotate(-5deg) scale(1);
}

.bilingualShotStack[data-active="dark"] .shotLight {
  z-index: 4;
  opacity: .62;
  filter: saturate(.86) blur(.45px);
  transform: translate3d(36px, 38px, 0) rotate(5deg) scale(.84);
}

.bilingualShotStack[data-active="dark"] .shotDark img {
  box-shadow: 0 40px 110px rgba(7,14,26,0.32);
}

.posterShot {
  right: 88px;
  bottom: 46px;
  width: 430px;
  border-radius: 46px;
  transform: rotate(0);
  opacity: .92;
}

.heroCopy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 760px;
  padding: 0 0 0 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.88), 0 12px 26px rgba(38,68,110,0.07);
  font-size: 13px;
  font-weight: 780;
}

.eyebrow b {
  display: grid;
  min-width: 24px;
  width: auto;
  height: 24px;
  place-items: center;
  padding: 0 8px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(47,107,255,0.1);
  font-size: 11px;
  white-space: nowrap;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 72px;
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}

h2 {
  font-size: 44px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.18;
  font-weight: 880;
  letter-spacing: 0;
}

.softText {
  display: block;
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(110deg, var(--ink), var(--blue), var(--aqua));
  -webkit-background-clip: text;
  background-clip: text;
}

.lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 560;
}

.enText {
  display: block;
  margin-top: 8px;
  color: var(--faint);
  font-size: .92em;
  line-height: 1.62;
}

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

.coBrandLockup {
  position: relative;
  overflow: visible;
  isolation: isolate;
  width: min(440px, 100%);
  margin: 26px 0 0;
  padding: 5px;
  border-radius: 999px;
  background:
    radial-gradient(circle at var(--mx, 84%) var(--my, 30%), rgba(105,221,247,0.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.68), rgba(255,255,255,0.34));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.72), 0 18px 48px rgba(38,68,110,0.12);
  transform-origin: left center;
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), background .34s var(--ease), opacity .34s var(--ease);
}

.coBrandLockup::after {
  content: "";
  position: absolute;
  inset: -12px -16px;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 74% 48%, rgba(105,221,247,0.26), transparent 58%),
    radial-gradient(ellipse at 28% 52%, rgba(47,107,255,0.14), transparent 64%);
  opacity: .58;
  filter: blur(10px) saturate(1.06);
  transform: none;
  transition: opacity .34s var(--ease), filter .34s var(--ease);
}

.coBrandLockup img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 999px;
  filter: drop-shadow(0 14px 28px rgba(22,48,84,0.16));
}

.coBrandLockup:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.86), 0 24px 66px rgba(38,68,110,0.16);
}

.coBrandLockup:hover::after {
  opacity: .88;
  filter: blur(8px) saturate(1.12);
}

.coBrandHero {
  width: min(460px, 100%);
  margin-bottom: 10px;
}

.coBrandMini {
  width: min(340px, 88%);
  margin-top: 22px;
}

.locatorPanel .coBrandMini {
  margin-top: 24px;
}

.section {
  padding: 96px 0;
}

.section,
.band {
  scroll-margin-top: 110px;
}

.band {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.54), rgba(238,246,255,0.5));
}

.sectionHead {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 36px;
}

.sectionHead.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

.sectionHead p,
.productCard p,
.principleCard p,
.textBlock p,
.guideStep p,
.roleCard p,
.footer p,
.miniCopy {
  color: var(--muted);
  line-height: 1.72;
  font-weight: 560;
}

.sectionLabel {
  margin: 0;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
}

.editorialHead {
  max-width: 860px;
}

.productGrid,
.channelGrid,
.principleGrid,
.guideGrid,
.roleGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.productCard,
.channelCard,
.principleCard,
.guideCard,
.roleCard,
.contactPanel,
.textPanel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.58));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.productCard,
.channelCard,
.principleCard,
.guideCard,
.roleCard {
  min-height: 300px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}

.productCard:hover,
.channelCard:hover,
.guideCard:hover,
.roleCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 78px rgba(38,68,110,0.14);
}

.principleGrid {
  gap: 20px;
}

.principleCard {
  isolation: isolate;
  min-height: 280px;
  padding: 30px;
  justify-content: flex-end;
  border-radius: 38px;
  background:
    radial-gradient(circle at 84% 18%, rgba(105,221,247,0.16), transparent 28%),
    radial-gradient(circle at 18% 86%, rgba(47,107,255,0.09), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(246,251,255,0.64));
  box-shadow: 0 24px 72px rgba(38,68,110,0.1);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), background .34s var(--ease);
}

.principleCard::before {
  position: absolute;
  top: 24px;
  right: 26px;
  z-index: -1;
  color: rgba(47,107,255,0.055);
  font-size: 112px;
  line-height: .8;
  font-weight: 920;
  letter-spacing: 0;
}

.principleCard:nth-child(1)::before { content: "01"; }
.principleCard:nth-child(2)::before { content: "02"; }
.principleCard:nth-child(3)::before { content: "03"; }

.principleCard::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 88px;
  height: 92px;
  pointer-events: none;
  background:
    radial-gradient(circle at 0 58%, rgba(47,107,255,0.42) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 24%, rgba(105,221,247,0.45) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 48%, rgba(25,215,193,0.38) 0 2px, transparent 3px),
    linear-gradient(110deg, transparent 0 6%, rgba(47,107,255,0.16) 6.2% 6.6%, transparent 6.8% 38%, rgba(105,221,247,0.18) 38.2% 38.6%, transparent 38.8% 72%, rgba(25,215,193,0.16) 72.2% 72.6%, transparent 72.8%);
  opacity: .78;
  transition: opacity .34s var(--ease), transform .34s var(--ease);
}

.principleCard .cardNumber {
  position: absolute;
  left: 28px;
  top: 26px;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(47,107,255,0.08), 0 10px 24px rgba(38,68,110,0.06);
}

.principleCard > div {
  position: relative;
  z-index: 1;
  padding-top: 122px;
}

.principleCard h3 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.05;
}

.principleCard p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.72;
}

.principleCard:hover {
  transform: translateY(-8px) scale(1.012);
  background:
    radial-gradient(circle at var(--mx, 84%) var(--my, 18%), rgba(105,221,247,0.24), transparent 30%),
    radial-gradient(circle at 18% 86%, rgba(47,107,255,0.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(246,251,255,0.7));
  box-shadow: 0 34px 92px rgba(38,68,110,0.16);
}

.principleCard:hover::after {
  opacity: 1;
  transform: translateY(-4px);
}

.cardNumber {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.cardLink {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 820;
}

.imageBand {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
}

.homeLocator {
  padding-top: 64px;
}

.homeLocator .sectionHead {
  margin-bottom: 18px;
}

.locatorFeature {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.locatorPanel {
  position: relative;
  overflow: visible;
  min-height: 560px;
  display: grid;
  align-content: center;
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 92% 18%, rgba(105,221,247,0.16), transparent 30%),
    radial-gradient(circle at 14% 84%, rgba(47,107,255,0.1), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(242,248,255,0.6));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
}

.locatorPanel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--radius-xl) - 18px);
  border: 1px solid rgba(47,107,255,0.08);
  pointer-events: none;
}

.locatorPanel::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -80px;
  bottom: -86px;
  border-radius: 42% 58% 54% 46%;
  background: radial-gradient(circle, rgba(25,215,193,0.18), transparent 66%);
  filter: blur(8px);
  animation: watchRipple 8.6s var(--ease) infinite;
  pointer-events: none;
}

.locatorPanel > * {
  position: relative;
  z-index: 1;
}

.locatorPanel h3 {
  margin: 18px 0 14px;
  font-size: 58px;
  line-height: .95;
  font-weight: 920;
  letter-spacing: 0;
}

.locatorPanel p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 560;
}

.locatorPanel .metrics {
  margin-top: 26px;
}

.homeRouteBand {
  padding: 92px 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(47,107,255,0.08), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(105,221,247,0.1), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(238,246,255,0.54));
}

.locatorGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.locatorCard {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.56));
  box-shadow: var(--shadow-soft);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), background .32s var(--ease);
}

.locatorCard::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 24px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  opacity: .56;
  transform-origin: left center;
  transition: opacity .32s var(--ease), transform .32s var(--ease);
}

.locatorCard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(105,221,247,0.22), transparent 42%);
  opacity: 0;
  transition: opacity .28s var(--ease);
}

.locatorCard:hover {
  transform: translateY(-7px) scale(1.01);
  background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,255,255,0.64));
  box-shadow: 0 30px 82px rgba(38,68,110,0.14);
}

.locatorCard:hover::before {
  opacity: .9;
  transform: scaleX(1.06);
}

.locatorCard:hover::after {
  opacity: 1;
}

.locatorCard span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.locatorCard h3 {
  margin: 30px 0 10px;
  font-size: 28px;
}

.locatorCard p {
  margin: 0 0 26px;
  color: var(--muted);
  line-height: 1.68;
  font-weight: 560;
}

.locatorCardLarge {
  grid-row: span 2;
  min-height: 458px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 18%, rgba(105,221,247,0.18), transparent 30%),
    radial-gradient(circle at 18% 80%, rgba(47,107,255,0.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(239,248,255,0.6));
}

.locatorCardLarge h3 {
  font-size: 42px;
  line-height: 1.02;
}

.watchLocator .watchExperience {
  padding: 34px;
}

.watchLocator .watchStage {
  min-height: 560px;
}

.visualPanel {
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(238,249,250,0.6)),
    linear-gradient(90deg, rgba(47,107,255,0.08), rgba(25,215,193,0.08));
  box-shadow: var(--shadow);
}

.visualPanel img {
  max-height: 560px;
  border-radius: 42px;
  box-shadow: 0 28px 78px rgba(32,58,92,0.18);
}

.productDevicePanel,
.guideDevicePanel {
  position: relative;
  min-height: 560px;
  overflow: visible;
  isolation: isolate;
  border-radius: 0;
  background:
    transparent;
  box-shadow: none;
}

.productDevicePanel::before,
.guideDevicePanel::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 340px;
  height: 140px;
  left: 50%;
  bottom: 54px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(29,65,105,0.18), transparent 68%);
  filter: blur(18px);
  transform: translateX(-50%);
  pointer-events: none;
}

.productDevicePanel::after,
.guideDevicePanel::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  width: min(92%, 620px);
  height: min(70%, 430px);
  border-radius: 44% 56% 58% 42%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 54% 34%, rgba(255,255,255,0.74), transparent 34%),
    radial-gradient(ellipse at 44% 68%, rgba(25,215,193,0.14), transparent 54%),
    radial-gradient(ellipse at 68% 52%, rgba(47,107,255,0.1), transparent 58%);
  filter: blur(22px) saturate(1.05);
  opacity: .76;
  transform: translate(-50%, -48%) rotate(-7deg);
  transition: opacity .42s var(--ease), filter .42s var(--ease), transform .42s var(--ease);
}

.productDevicePanel:hover::after,
.guideDevicePanel:hover::after {
  opacity: .9;
  filter: blur(20px) saturate(1.12);
  transform: translate(-50%, -50%) rotate(-4deg) scale(1.03);
}

.guideDevicePanel::before {
  bottom: 70px;
  width: 310px;
  height: 126px;
  background: radial-gradient(ellipse, rgba(26,56,92,0.16), transparent 70%);
}

.guideDevicePanel::after {
  width: min(88%, 560px);
  height: min(66%, 400px);
  background:
    radial-gradient(ellipse at 54% 28%, rgba(255,255,255,0.72), transparent 36%),
    radial-gradient(ellipse at 58% 62%, rgba(25,215,193,0.13), transparent 56%),
    radial-gradient(ellipse at 38% 52%, rgba(47,107,255,0.1), transparent 60%);
  opacity: .74;
}

.iphoneScene {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.deviceGlow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(78%, 520px);
  aspect-ratio: 1;
  border-radius: 42% 58% 54% 46%;
  background:
    radial-gradient(circle at 34% 28%, rgba(105,221,247,0.2), transparent 28%),
    radial-gradient(circle at 68% 64%, rgba(47,107,255,0.16), transparent 38%);
  filter: blur(8px);
  animation: watchRipple 8.8s var(--ease) infinite;
  transition: opacity .42s var(--ease), filter .42s var(--ease);
}

.iphoneScene:hover .deviceGlow {
  opacity: .95;
  filter: blur(6px) saturate(1.14);
}

.iphoneMock {
  position: relative;
  width: min(270px, 58vw);
  aspect-ratio: 644 / 1400;
  transform: rotateX(4deg) rotateY(-10deg) rotateZ(2deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 34px 70px rgba(28,52,84,0.22));
  animation: phoneFloat 7s var(--ease) infinite;
}

.productPhoneScene {
  z-index: 1;
  min-height: 560px;
  overflow: visible;
}

.guidePhoneScene {
  z-index: 1;
  min-height: 700px;
  overflow: visible;
}

.productPhoneMock {
  width: min(288px, 52vw);
  transform: rotateX(5deg) rotateY(8deg) rotateZ(-1.5deg) translateY(-18px);
  filter: drop-shadow(0 42px 78px rgba(27,54,88,0.24));
  animation: productPhoneFloat 7.6s var(--ease) infinite;
}

.guidePhoneMock {
  width: min(270px, 46vw);
  transform: rotateX(5deg) rotateY(-8deg) rotateZ(1.6deg) translateY(-2px);
  filter: drop-shadow(0 40px 74px rgba(27,54,88,0.22));
  animation: guidePhoneFloat 7.4s var(--ease) infinite;
}

.iphoneSide {
  position: absolute;
  top: 7.2%;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #eef3f7, #9aa8b5 48%, #edf2f8);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45);
}

.leftSide {
  left: -5px;
  height: 15%;
}

.rightSide {
  right: -6px;
  top: 17%;
  height: 20%;
}

.iphoneFrame {
  position: absolute;
  inset: 0;
  padding: 10px;
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(168,182,195,0.76) 46%, rgba(245,249,252,0.92)),
    linear-gradient(90deg, #f6f8fa, #8c9aa8 50%, #ffffff);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.85),
    inset 0 -18px 36px rgba(28,42,61,0.18),
    0 22px 52px rgba(38,68,110,0.16);
  transition: box-shadow .42s var(--ease), filter .42s var(--ease);
}

.iphoneFrame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,0.76);
  pointer-events: none;
}

.iphoneGlass {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #0c1218;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.42),
    inset 0 0 28px rgba(255,255,255,0.1);
}

.iphoneGlass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.42),
    inset 0 18px 26px rgba(255,255,255,0.42),
    inset 0 -24px 34px rgba(20,34,52,0.1);
}

.iphoneGlass img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  box-shadow: none;
}

.visualPanel .iphoneGlass img {
  max-height: none;
  border-radius: 0;
  box-shadow: none;
}

.dynamicIsland {
  position: absolute;
  left: 50%;
  top: 14px;
  z-index: 3;
  width: 98px;
  height: 30px;
  border-radius: 999px;
  background: #050608;
  box-shadow: inset 0 1px 4px rgba(255,255,255,0.14), 0 8px 20px rgba(2,10,20,0.16);
  transform: translateX(-50%);
}

.iphoneScene .dynamicIsland {
  display: none;
}

.screenReflection {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(112deg, rgba(255,255,255,0.38), transparent 22% 56%, rgba(255,255,255,0.12) 72%, transparent 86%),
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.3), transparent 18%);
  mix-blend-mode: screen;
  opacity: .42;
  transition: opacity .42s var(--ease), transform .42s var(--ease);
}

.iphoneScene:hover .iphoneFrame {
  box-shadow:
    inset 0 2px 5px rgba(255,255,255,0.92),
    inset 0 -20px 42px rgba(28,42,61,0.16),
    0 30px 72px rgba(38,68,110,0.2);
}

.iphoneScene:hover .screenReflection {
  opacity: .62;
  transform: translate3d(2%, -2%, 0);
}

.deviceCaption {
  position: absolute;
  left: 50%;
  bottom: 32px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 760;
  transform: translateX(-50%);
}

.textBlock {
  display: grid;
  gap: 18px;
}

.textPanel {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 42px;
}

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

.metric {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.82);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.metric::after,
.buddyCard::after,
.flowCard::after,
.trustList div::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(105,221,247,0.24), transparent 42%);
  opacity: 0;
  transition: opacity .28s var(--ease);
}

.metric:hover {
  transform: translateY(-5px) scale(1.018);
  background: rgba(255,255,255,0.82);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.94), 0 18px 44px rgba(38,68,110,0.1);
}

.metric:hover::after,
.buddyCard:hover::after,
.flowCard:hover::after,
.trustList div:hover::after {
  opacity: 1;
}

.metric b,
.metric span {
  display: block;
}

.metric b {
  font-size: 24px;
  font-weight: 900;
}

.metric span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 680;
}

.interactiveSurface {
  position: relative;
  isolation: isolate;
  transition:
    transform .34s var(--ease),
    box-shadow .34s var(--ease),
    border-color .34s var(--ease),
    background .34s var(--ease),
    filter .34s var(--ease);
  will-change: transform;
}

.interactiveSurface > :not(.surfaceGlow) {
  position: relative;
  z-index: 1;
}

.interactiveSurface > .deviceGlow {
  position: absolute;
  z-index: 0;
}

.surfaceGlow {
  position: absolute;
  left: var(--mx, 50%);
  top: var(--my, 50%);
  width: clamp(140px, 58%, 440px);
  height: clamp(110px, 46%, 340px);
  z-index: 0;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(105,221,247,0.2), rgba(105,221,247,0.1) 34%, rgba(47,107,255,0.06) 52%, transparent 74%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(.76);
  filter: blur(22px) saturate(1.08);
  clip-path: ellipse(50% 50% at 50% 50%);
  mask-image: radial-gradient(ellipse at center, #000 0 36%, rgba(0,0,0,0.7) 54%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0 36%, rgba(0,0,0,0.7) 54%, transparent 76%);
  transition: opacity .28s var(--ease), transform .36s var(--ease), filter .36s var(--ease);
}

.interactiveSurface:hover,
.interactiveSurface.isSurfaceHot {
  transform: translateY(-5px) scale(1.006);
  border-color: rgba(255,255,255,0.96);
  box-shadow: 0 28px 80px rgba(38,68,110,0.14);
}

.interactiveSurface:hover > .surfaceGlow,
.interactiveSurface.isSurfaceHot > .surfaceGlow,
.interactiveSurface:focus-within > .surfaceGlow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.interactiveSurface.noSurfaceGlow:hover,
.interactiveSurface.noSurfaceGlow.isSurfaceHot,
.interactiveSurface.noSurfaceGlow.isSurfacePressed {
  transform: none;
  border-color: inherit;
  box-shadow: inherit;
  filter: none;
}

.interactiveSurface.noSurfaceGlow > .surfaceGlow {
  display: none;
}

.interactiveSurface.isSurfacePressed {
  transform: translateY(1px) scale(.992);
  transition-duration: .12s;
}

.interactiveSurface.isSurfaceTapped > .surfaceGlow {
  animation: surfaceTap .46s var(--ease) both;
}

.textPanel.interactiveSurface,
.contactPanel.interactiveSurface,
.guideStep.interactiveSurface,
.footerGrid > div.interactiveSurface {
  overflow: hidden;
}

.visualPanel.interactiveSurface,
.productDevicePanel.interactiveSurface,
.guideDevicePanel.interactiveSurface,
.iphoneScene.interactiveSurface,
.watchStage.interactiveSurface,
.renderStage.interactiveSurface,
.coBrandLockup.interactiveSurface,
.locatorPanel.interactiveSurface {
  overflow: visible;
}

.guideStep.interactiveSurface:not(.noSurfaceGlow):hover,
.textPanel.interactiveSurface:not(.noSurfaceGlow):hover,
.contactPanel.interactiveSurface:not(.noSurfaceGlow):hover {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(105,221,247,0.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(244,250,255,0.64));
}

.guideNav a,
.footerGrid > div,
.contactForm label {
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease), color .28s var(--ease);
}

.contactForm label {
  position: relative;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255,255,255,0.32);
}

.contactForm label:hover,
.contactForm label:focus-within {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.68);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.86), 0 14px 34px rgba(38,68,110,0.08);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(47,107,255,0.26);
  background: rgba(255,255,255,0.92);
}

select,
.guideNav a,
.agentSelector span {
  cursor: pointer;
}

@keyframes surfaceTap {
  0% { opacity: .84; transform: translate(-50%, -50%) scale(.86); }
  58% { opacity: .34; transform: translate(-50%, -50%) scale(1.08); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.16); }
}

.agentSection {
  padding-top: 78px;
}

.agentPanel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 20%, rgba(47,107,255,0.08), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(105,221,247,0.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(239,248,255,0.56));
  box-shadow: var(--shadow-soft);
}

.agentPanel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--radius-xl) - 16px);
  border: 1px solid rgba(47,107,255,0.08);
  pointer-events: none;
}

.agentPanel > * {
  position: relative;
  z-index: 1;
}

.agentCopy {
  display: grid;
  align-content: center;
  gap: 18px;
  min-height: 560px;
}

.agentCopy h2 {
  max-width: 680px;
}

.agentCopy p:not(.sectionLabel) {
  max-width: 690px;
  color: var(--muted);
  line-height: 1.74;
  font-weight: 620;
}

.agentChips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 4px;
}

.agentChips span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 820;
}

.agentConsole {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(10,22,36,0.96), rgba(15,44,58,0.9)),
    radial-gradient(circle at 72% 18%, rgba(105,221,247,0.16), transparent 34%);
  box-shadow: 0 32px 90px rgba(7,18,31,0.22);
  color: rgba(243,249,255,0.94);
}

.agentConsole::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 60% 30%, rgba(0,0,0,0.7), transparent 72%);
}

.agentConsole > * {
  position: relative;
  z-index: 1;
}

.statusHeroConsole {
  width: min(560px, 100%);
  margin: 64px auto 0;
  transform: rotate(-2deg);
}

.statusHeroConsole::before {
  content: "";
  position: absolute;
  inset: auto 32px 24px auto;
  width: 82px;
  aspect-ratio: 1;
  background: url("assets/agentos/agentos-robot-icon.png") center / contain no-repeat;
  opacity: .82;
  filter: drop-shadow(0 18px 28px rgba(47,107,255,.18));
  pointer-events: none;
  z-index: 1;
}

.statusLightHero {
  min-height: auto;
  grid-template-columns: minmax(360px, .78fr) minmax(520px, 1fr);
  gap: clamp(30px, 4.2vw, 68px);
  align-items: center;
  padding: clamp(68px, 8vw, 96px) 0 86px;
  overflow: visible;
}

.statusLightHero::before {
  inset: 28px -20px -36px;
  border-radius: 48px;
  background:
    radial-gradient(ellipse at 14% 30%, rgba(105,221,247,0.18), transparent 52%),
    radial-gradient(ellipse at 86% 64%, rgba(47,107,255,0.1), transparent 58%),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(241,248,255,0.64));
  mask-image: none;
  -webkit-mask-image: none;
}

.statusLightHeroMedia {
  position: relative;
  inset: auto;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  overflow: visible;
  border-radius: 0;
  pointer-events: auto;
}

.statusLightHeroMedia::before {
  content: none;
}

.statusLightHeroCopy {
  grid-column: 1;
  grid-row: 1;
  max-width: 610px;
  padding: 0 0 0 clamp(24px, 3.2vw, 52px);
}

.statusLightHeroCopy h1 {
  max-width: 620px;
  font-size: 64px;
  line-height: 1;
}

.statusLightHeroCopy .lead {
  max-width: 580px;
}

.statusLightHero .statusHeroConsole {
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: 26px;
  border-radius: 34px;
  transform: none;
  box-shadow: 0 34px 86px rgba(7,18,31,0.18);
}

.statusLightHero .statusHeroConsole::before {
  inset: auto 24px 20px auto;
  width: 72px;
  opacity: .2;
}

.statusLightHero .agentTimeline {
  margin-top: 2px;
}

.statusHeroVisual {
  position: relative;
  overflow: hidden;
  margin: 0;
  max-width: 760px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: 38px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255,179,126,0.18), transparent 30%),
    radial-gradient(circle at 18% 84%, rgba(105,221,247,0.16), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(242,248,255,0.62));
  box-shadow: 0 34px 96px rgba(38,68,110,0.15);
}

.statusHeroVisual::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

.statusHeroVisual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(38,68,110,0.12);
}

.statusHeroVisual figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 740;
}

.statusHeroVisual figcaption b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.statusSignalSection {
  padding-top: 72px;
}

.statusShowcaseGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.statusShowcaseCard {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.9), rgba(245,250,255,0.62));
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.statusShowcaseCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 78px rgba(38,68,110,0.14);
}

.statusShowcaseCard img {
  display: block;
  width: 100%;
  height: clamp(230px, 20vw, 300px);
  aspect-ratio: 1.26 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(38,68,110,0.1);
}

.statusShowcaseCard figcaption {
  display: grid;
  gap: 8px;
  padding: 18px 8px 6px;
}

.statusShowcaseCard strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.26;
  font-weight: 900;
}

.statusShowcaseCard span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 650;
}

.statusAssetNote {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.agentConsoleTop {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.agentOrb {
  width: 58px;
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 58%, rgba(105,221,247,0.22), transparent 68%),
    url("assets/agentos/agentos-robot-icon.png") center / 92% auto no-repeat;
  box-shadow: 0 18px 38px rgba(47,107,255,0.25), inset 0 0 0 1px rgba(255,255,255,0.2);
}

.agentConsoleTop strong,
.agentConsoleTop small {
  display: block;
}

.agentConsoleTop strong {
  font-size: 19px;
  font-weight: 900;
}

.agentConsoleTop small {
  margin-top: 4px;
  color: rgba(220,235,246,0.68);
  font-size: 13px;
  font-weight: 700;
}

.agentConsoleTop b {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  color: #8df0c6;
  background: rgba(75,213,151,0.12);
  font-size: 12px;
  font-weight: 900;
}

.agentSelector,
.agentStats {
  display: grid;
  gap: 8px;
}

.agentSelector {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}

.agentSelector span,
.agentStats div,
.agentTimeline article {
  border-radius: 22px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

.agentSelector span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(232,244,252,0.7);
  font-size: 12px;
  font-weight: 840;
}

.agentSelector .isActive {
  color: white;
  background: linear-gradient(135deg, rgba(47,107,255,0.96), rgba(105,221,247,0.7));
  box-shadow: 0 14px 32px rgba(47,107,255,0.2);
}

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

.agentStats div {
  padding: 16px;
}

.agentStats b,
.agentStats span {
  display: block;
}

.agentStats b {
  font-size: 24px;
  font-weight: 920;
}

.agentStats span {
  margin-top: 6px;
  color: rgba(220,235,246,0.68);
  font-size: 12px;
  font-weight: 740;
}

.agentTimeline {
  display: grid;
  gap: 10px;
}

.agentTimeline article {
  padding: 16px 18px;
}

.agentTimeline b,
.agentTimeline span {
  display: block;
}

.agentTimeline b {
  font-size: 14px;
  font-weight: 900;
}

.agentTimeline span {
  margin-top: 6px;
  color: rgba(220,235,246,0.7);
  font-size: 12px;
  line-height: 1.55;
  font-weight: 680;
}

.buddyPanel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 22%, rgba(105,221,247,0.18), transparent 28%),
    radial-gradient(circle at 18% 78%, rgba(47,107,255,0.12), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(239,248,255,0.62));
  box-shadow: var(--shadow);
}

.buddyPanel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: calc(var(--radius-xl) - 18px);
  border: 1px solid rgba(47,107,255,0.08);
  pointer-events: none;
}

.buddyCopy {
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  gap: 18px;
}

.buddyCards {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.buddyCard {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.82);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(255,255,255,0.48));
  box-shadow: 0 18px 48px rgba(38,68,110,0.08);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), background .32s var(--ease);
}

.buddyCard:hover {
  transform: translateX(8px);
  background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(255,255,255,0.58));
  box-shadow: 0 24px 68px rgba(38,68,110,0.12);
}

.buddyCard span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.buddyCard h3 {
  margin-top: 10px;
  font-size: 24px;
}

.buddyCard p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
  font-weight: 560;
}

.flowBand {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.62), rgba(237,247,255,0.52)),
    radial-gradient(circle at 78% 18%, rgba(105,221,247,0.12), transparent 28%);
}

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

.flowCard {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(255,255,255,0.56));
  box-shadow: var(--shadow-soft);
  transition: transform .34s var(--ease), box-shadow .34s var(--ease), background .34s var(--ease);
}

.flowCard::before {
  content: "";
  position: absolute;
  inset: auto 22px 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
  opacity: .72;
  transition: opacity .34s var(--ease), transform .34s var(--ease);
}

.flowCard:hover {
  transform: translateY(-7px);
  background: linear-gradient(145deg, rgba(255,255,255,0.94), rgba(255,255,255,0.64));
  box-shadow: 0 30px 82px rgba(38,68,110,0.14);
}

.flowCard:hover::before {
  opacity: 1;
  transform: scaleX(1.05);
}

.flowIndex {
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue-deep);
  background: rgba(255,255,255,0.76);
  box-shadow: inset 0 0 0 1px rgba(47,107,255,0.08);
  font-size: 13px;
  font-weight: 900;
}

.flowCard h3 {
  font-size: 30px;
}

.flowCard p {
  color: var(--muted);
  line-height: 1.72;
  font-weight: 560;
}

.trustPanel {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.9), rgba(240,247,255,0.62)),
    radial-gradient(circle at 82% 24%, rgba(47,107,255,0.1), transparent 32%);
  box-shadow: var(--shadow-soft);
}

.trustCopy {
  display: grid;
  gap: 18px;
}

.trustCopy p:not(.sectionLabel) {
  color: var(--muted);
  line-height: 1.72;
  font-weight: 560;
}

.trustList {
  display: grid;
  gap: 12px;
}

.trustList div {
  position: relative;
  overflow: hidden;
  padding: 20px 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.82), 0 14px 36px rgba(38,68,110,0.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.trustList div:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.84);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.92), 0 22px 54px rgba(38,68,110,0.1);
}

.trustList b,
.trustList span {
  display: block;
}

.trustList b {
  font-size: 18px;
  font-weight: 900;
}

.trustList span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.58;
  font-size: 14px;
  font-weight: 620;
}

.guideLayout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.guideNav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
}

.guideNav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.64);
  font-size: 13px;
  font-weight: 800;
}

.guideNav a:hover {
  color: var(--ink);
  background: white;
}

.guideContent {
  display: grid;
  gap: 22px;
}

.guideStep {
  padding: 34px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.72);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.82), var(--shadow-soft);
}

.guideStep h3 {
  margin-bottom: 10px;
}

.steps {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  line-height: 1.65;
}

.steps b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(47,107,255,0.1);
  font-size: 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.contactPanel {
  padding: 38px;
}

.contactForm {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(126,150,183,0.22);
  border-radius: 20px;
  outline: none;
  color: var(--ink);
  background: rgba(255,255,255,0.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

input,
select {
  height: 52px;
  padding: 0 16px;
}

textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px 16px;
  line-height: 1.6;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47,107,255,0.48);
  box-shadow: 0 0 0 4px rgba(47,107,255,0.08);
}

.formStatus {
  min-height: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
}

.footer {
  padding: 54px 0 42px;
  color: var(--muted);
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 22px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.footer strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 860;
  margin-bottom: 10px;
}

.footerWordmark {
  width: min(168px, 72%);
  margin: 0 0 16px;
  filter: drop-shadow(0 12px 22px rgba(47,107,255,0.12));
}

.footer a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.footer a:hover {
  color: var(--ink);
}

.beianBar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer .beianBar a {
  margin-top: 0;
  font-size: 13px;
  font-weight: 720;
}

.motionLine,
.copyLine {
  display: block;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition: opacity .72s var(--ease), transform .72s var(--ease), filter .72s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].isVisible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.watchExperience {
  --watch-bg: linear-gradient(145deg, rgba(248,252,255,0.96), rgba(226,248,246,0.78));
  --watch-ink: #102033;
  --watch-muted: #6d7a8e;
  --watch-card: rgba(255,255,255,0.78);
  --watch-chip: rgba(255,255,255,0.74);
  --watch-green: #63ddb0;
  --watch-shadow: rgba(38,68,110,0.16);
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255,255,255,0.76), rgba(239,248,255,0.52));
  box-shadow: var(--shadow-soft);
  transition: background .7s var(--ease), box-shadow .7s var(--ease), border-color .7s var(--ease);
}

.watchCopy {
  align-self: center;
}

.watchExperience .metrics {
  grid-template-columns: 1fr;
  gap: 10px;
}

.watchExperience .metric {
  padding: 16px 18px;
  border-radius: 24px;
}

.watchExperience .metric b {
  font-size: 17px;
}

.watchExperience .metric span {
  margin-top: 4px;
  font-size: 13px;
}

.watchStage {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.88);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 26% 30%, rgba(105,221,247,0.16), transparent 32%),
    radial-gradient(circle at 76% 68%, rgba(47,107,255,0.14), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(241,247,255,0.52));
  box-shadow: var(--shadow);
  transition: background .7s var(--ease), box-shadow .7s var(--ease);
}

.watchStage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.28), transparent 34%);
  opacity: 0;
  transition: opacity .34s var(--ease);
}

.watchStage:hover {
  box-shadow: 0 36px 110px rgba(38,68,110,0.16);
}

.watchStage:hover::after {
  opacity: 1;
}

.renderStage {
  display: grid;
  place-items: center;
  align-self: center;
  height: clamp(540px, 42vw, 650px);
  min-height: 540px;
  overflow: hidden;
}

.watchStage.renderStage,
.watchStage.renderStage.interactiveSurface {
  overflow: hidden;
}

.watchProductRender {
  position: absolute;
  inset: -1px;
  z-index: 1;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  max-width: none;
  object-fit: cover;
  object-position: 76% 43%;
  border-radius: inherit;
  filter: saturate(1.02) contrast(1.01);
  transform: translateZ(0);
  transform-origin: center center;
  transition: transform .52s var(--ease), filter .52s var(--ease);
}

.watchStage .watchProductRender {
  position: absolute;
}

.renderStage:hover .watchProductRender {
  transform: translateY(-4px) scale(1.035);
  filter: saturate(1.05) contrast(1.02);
}

.watchBreathField {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.watchBreathField span {
  position: absolute;
  left: 48%;
  top: 52%;
  width: 280px;
  aspect-ratio: 1;
  border: 1px solid rgba(47,107,255,0.16);
  border-radius: 42% 58% 48% 52%;
  transform: translate(-50%, -50%);
  animation: watchRipple 7.4s var(--ease) infinite;
}

.watchBreathField span:nth-child(2) {
  width: 410px;
  animation-delay: -2s;
  border-color: rgba(25,215,193,0.14);
}

.watchBreathField span:nth-child(3) {
  width: 540px;
  animation-delay: -4s;
  border-color: rgba(47,107,255,0.1);
}

.watchRender {
  position: absolute;
  width: 270px;
  margin: 0;
  display: grid;
  justify-items: center;
  transition:
    transform .86s var(--ease),
    opacity .62s var(--ease),
    filter .62s var(--ease),
    z-index .01s linear;
}

.watchRender figcaption {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 860;
  text-align: center;
}

.watchStandard {
  left: 8%;
  top: 18%;
  z-index: 4;
  transform: translate3d(0, 0, 0) rotate(-7deg) scale(1);
  opacity: 1;
  filter: saturate(1.04);
}

.watchUltra {
  right: 8%;
  top: 12%;
  width: 318px;
  z-index: 3;
  transform: translate3d(-42px, 24px, 0) rotate(6deg) scale(.88);
  opacity: .62;
  filter: saturate(.86) blur(.2px);
}

.watchBand {
  position: absolute;
  top: -98px;
  bottom: -98px;
  left: 50%;
  width: 92px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.45), transparent 24% 76%, rgba(0,0,0,0.08)),
    linear-gradient(180deg, #dbe9f3, #f7fbff 42%, #bfd4e6);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.58), 0 22px 58px rgba(38,68,110,0.14);
  transform: translateX(-50%);
}

.watchCase {
  position: relative;
  width: 100%;
  aspect-ratio: .78;
  display: grid;
  padding: 14px;
  border-radius: 34% / 28%;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(197,212,226,0.78)),
    linear-gradient(90deg, #edf4fa, #9eabb8);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.74),
    inset 0 -18px 32px rgba(20,34,52,0.18),
    0 34px 88px var(--watch-shadow);
}

.watchUltra .watchCase {
  padding: 16px;
  border-radius: 28% / 23%;
  background:
    linear-gradient(145deg, #f3ddbd, #b9894d 45%, #6f5233),
    linear-gradient(90deg, #f1d09c, #8c653a);
}

.watchScreen {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 28% / 22%;
  color: var(--watch-ink);
  background: var(--watch-bg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), inset 0 -20px 52px rgba(47,107,255,0.08);
  transition: color .7s var(--ease), background .7s var(--ease);
}

.watchScreen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 28%, rgba(99,221,176,0.3), transparent 23%),
    linear-gradient(135deg, rgba(255,255,255,0.28), transparent 42%);
  pointer-events: none;
}

.watchTop,
.watchScore,
.watchPills,
.watchBreath,
.watchBrand {
  position: relative;
  z-index: 1;
}

.watchTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--watch-muted);
  font-size: 12px;
  font-weight: 820;
}

.watchTop b {
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--watch-chip);
  color: var(--watch-ink);
  font-size: 10px;
}

.watchBrand {
  margin-top: 18px;
  color: var(--watch-muted);
  font-size: 12px;
  font-weight: 860;
}

.watchScore {
  margin-top: 8px;
}

.watchScore strong,
.watchScore span {
  display: block;
}

.watchScore strong {
  font-size: 54px;
  line-height: .92;
  font-weight: 900;
}

.watchScore span {
  margin-top: 6px;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 900;
}

.watchOrb {
  position: absolute;
  right: 18px;
  top: 96px;
  z-index: 1;
  display: grid;
  width: 72px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255,255,255,0.9), transparent 22%),
    linear-gradient(145deg, #a8ffd8, #4ecf91);
  box-shadow: 0 16px 32px rgba(35,178,112,0.28);
  animation: watchOrbBreath 4.8s var(--ease) infinite;
}

.watchOrb i {
  width: 34px;
  height: 16px;
  border-radius: 999px;
  border-bottom: 4px solid rgba(10,66,46,0.36);
}

.watchPills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.watchPills span {
  padding: 7px 9px;
  border-radius: 999px;
  color: var(--watch-muted);
  background: var(--watch-chip);
  font-size: 10px;
  font-weight: 780;
}

.watchBreath {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: 12px;
  padding: 0 12px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, #2e8c6e, #49d29a);
  box-shadow: 0 14px 28px rgba(29,146,102,0.24);
}

.watchBreath b,
.watchBreath span {
  font-size: 12px;
  font-weight: 900;
}

.watchCrown,
.watchButtonSide,
.watchActionButton {
  position: absolute;
  z-index: 0;
}

.watchCrown {
  right: -12px;
  top: 34%;
  width: 14px;
  height: 46px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f6f8fb, #9daaba);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.watchButtonSide {
  right: -8px;
  top: 52%;
  width: 8px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d5dee8, #7b8797);
}

.watchActionButton {
  left: -10px;
  top: 36%;
  width: 9px;
  height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9c40, #d97821);
}

@keyframes watchRipple {
  0%, 100% { transform: translate(-50%, -50%) scale(.92) rotate(0deg); opacity: .44; border-radius: 42% 58% 48% 52%; }
  50% { transform: translate(-50%, -50%) scale(1.08) rotate(12deg); opacity: .76; border-radius: 58% 42% 54% 46%; }
}

@keyframes watchOrbBreath {
  0%, 100% { transform: scale(.94); filter: saturate(.96); }
  50% { transform: scale(1.08); filter: saturate(1.18); }
}

@keyframes phoneFloat {
  0%, 100% { transform: rotateX(4deg) rotateY(-10deg) rotateZ(2deg) translateY(0); }
  50% { transform: rotateX(3deg) rotateY(-7deg) rotateZ(1deg) translateY(-14px); }
}

@keyframes productPhoneFloat {
  0%, 100% { transform: rotateX(5deg) rotateY(8deg) rotateZ(-1.5deg) translateY(-18px); }
  50% { transform: rotateX(4deg) rotateY(5deg) rotateZ(-.6deg) translateY(-32px); }
}

@keyframes guidePhoneFloat {
  0%, 100% { transform: rotateX(5deg) rotateY(-8deg) rotateZ(1.6deg) translateY(-2px); }
  50% { transform: rotateX(4deg) rotateY(-5deg) rotateZ(.6deg) translateY(-17px); }
}

@keyframes surfaceSweep {
  from { transform: translateX(-44%) rotate(8deg); }
  to { transform: translateX(44%) rotate(8deg); }
}

@keyframes languageLiquid {
  0%, 100% {
    transform: translateX(-50%) rotate(0deg);
    border-radius: 42% 48% 45% 54%;
  }
  50% {
    transform: translateX(-50%) rotate(18deg);
    border-radius: 54% 44% 52% 40%;
  }
}

@keyframes matrixDrift {
  from { background-position: 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 56px 56px, 56px 56px, 160px 0, -160px 0; }
}

@keyframes glassSettle {
  from { opacity: 0; transform: translateY(-14px) scale(.98); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes floatDevice {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}

.productCard.interactiveSurface,
.channelCard.interactiveSurface,
.principleCard.interactiveSurface,
.guideCard.interactiveSurface,
.roleCard.interactiveSurface,
.locatorCard.interactiveSurface,
.locatorPanel.interactiveSurface,
.textPanel.interactiveSurface,
.contactPanel.interactiveSurface,
.guideStep.interactiveSurface,
.visualPanel.interactiveSurface,
.productDevicePanel.interactiveSurface,
.guideDevicePanel.interactiveSurface,
.iphoneScene.interactiveSurface,
.coBrandLockup.interactiveSurface,
.agentPanel.interactiveSurface,
.agentConsole.interactiveSurface,
.agentSelector span.interactiveSurface,
.agentStats div.interactiveSurface,
.agentTimeline article.interactiveSurface,
.buddyPanel.interactiveSurface,
.buddyCard.interactiveSurface,
.flowCard.interactiveSurface,
.trustPanel.interactiveSurface,
.trustList div.interactiveSurface,
.guideNav a.interactiveSurface,
.watchExperience.interactiveSurface,
.footerGrid > div.interactiveSurface {
  overflow: visible;
}

.brandMark,
.languageBadge,
.primaryBtn,
.secondaryBtn,
.iphoneFrame,
.iphoneGlass,
.watchScreen,
.watchStage.renderStage,
.watchStage.renderStage.interactiveSurface {
  overflow: hidden;
}

.performanceCareful body::before {
  opacity: .62;
  animation-duration: 58s;
}

.performanceCareful .skyCanvas {
  opacity: .48;
}

.performanceCareful .topbar,
.performanceCareful .languageMenu,
.performanceCareful .productCard,
.performanceCareful .channelCard,
.performanceCareful .principleCard,
.performanceCareful .guideCard,
.performanceCareful .roleCard,
.performanceCareful .contactPanel,
.performanceCareful .textPanel,
.performanceCareful .locatorPanel {
  backdrop-filter: blur(12px) saturate(1.08);
  -webkit-backdrop-filter: blur(12px) saturate(1.08);
}

.performanceCareful .surfaceGlow,
.performanceCareful .productDevicePanel::before,
.performanceCareful .guideDevicePanel::before,
.performanceCareful .productDevicePanel::after,
.performanceCareful .guideDevicePanel::after,
.performanceCareful .deviceGlow,
.performanceCareful .watchBreathField span {
  filter: blur(6px) saturate(1.02);
}

.performanceCareful .interfaceShot,
.performanceCareful .iphoneMock,
.performanceCareful .watchProductRender,
.performanceCareful .heroShot,
.performanceCareful .posterShot {
  animation-duration: 12s;
}

.performanceCareful [data-reveal] {
  filter: none;
}

@media (max-width: 1180px) {
  .shell,
  .wideShell {
    width: min(100% - 36px, 1180px);
    max-width: calc(100% - 36px);
  }

  .siteHeader {
    top: 12px;
    margin-top: 12px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 12px;
    min-height: auto;
    padding: 12px;
    border-radius: 36px;
    align-items: center;
  }

  .brand {
    max-width: 100%;
    min-width: 0;
  }

  .brandMark {
    width: 48px;
    height: 48px;
  }

  .brandText {
    max-width: 220px;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 2px 0;
    gap: 6px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    min-height: 36px;
    padding: 0 11px;
    font-size: 12.5px;
  }

  .topActions {
    justify-self: end;
    min-width: 0;
  }

  .languageBadge,
  .navCta {
    min-height: 42px;
  }

  .languageBadge {
    min-width: 104px;
  }

  .navCta {
    padding: 0 16px;
  }
}

@media (max-width: 1040px) {
  .topbar {
    border-radius: 34px;
  }

  .heroCopy {
    max-width: 590px;
    padding-left: 28px;
  }

  h1 {
    font-size: 54px;
    line-height: 1.02;
  }

  h2 {
    font-size: 38px;
  }

  h1,
  h2,
  h3,
  p,
  .lead,
  .motionLine,
  .copyLine,
  .textBlock,
  .sectionHead,
  .locatorPanel,
  .buddyCopy,
  .trustPanel {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
    padding: 70px 0 64px;
  }

  .hero::before {
    inset: 18px 0 -54px;
    border-radius: 46px;
  }

  .heroMedia {
    inset: 18px 0 0;
    overflow: hidden;
    border-radius: 46px;
  }

  .heroMedia::before {
    inset: 0 0 -66px;
    background:
      radial-gradient(ellipse at 24% 64%, rgba(105,221,247,0.1), transparent 56%),
      radial-gradient(ellipse at 64% 92%, rgba(47,107,255,0.08), transparent 62%),
      linear-gradient(90deg, rgba(247,251,255,0.94) 0%, rgba(247,251,255,0.82) 48%, rgba(247,251,255,0.58) 100%);
  }

  .lead {
    max-width: 540px;
    font-size: 16px;
    line-height: 1.68;
  }

  .heroShot {
    right: 44px;
    width: 230px;
    opacity: .28;
    pointer-events: none;
  }

  .bilingualShotStack {
    top: 88px;
    right: 16px;
    bottom: auto;
    width: 320px;
    height: 470px;
    opacity: .24;
    pointer-events: none;
  }

  .interfaceShot {
    width: 178px;
  }

  .shotDark {
    left: 0;
    top: 72px;
  }

  .shotLight {
    right: 0;
  }

  .bilingualShotStack[data-active="light"] .shotLight {
    transform: translate3d(-24px, 0, 0) rotate(4deg) scale(.9);
  }

  .bilingualShotStack[data-active="light"] .shotDark {
    transform: translate3d(-2px, 42px, 0) rotate(-5deg) scale(.8);
  }

  .bilingualShotStack[data-active="dark"] .shotDark {
    transform: translate3d(0, 0, 0) rotate(-5deg) scale(.92);
  }

  .bilingualShotStack[data-active="dark"] .shotLight {
    transform: translate3d(28px, 30px, 0) rotate(5deg) scale(.78);
  }

  .coBrandHero {
    width: min(340px, 54vw);
    margin-top: 20px;
  }

  .coBrandLockup::after {
    inset: -8px -10px;
    opacity: .44;
  }

  .heroShot.secondary {
    display: none;
  }

  .posterShot {
    width: 350px;
    right: 36px;
    opacity: .34;
  }

  .productGrid,
  .channelGrid,
  .principleGrid,
  .flowGrid,
  .guideGrid,
  .roleGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .imageBand,
  .locatorFeature,
  .agentPanel,
  .watchExperience,
  .buddyPanel,
  .trustPanel,
  .guideLayout,
  .split {
    grid-template-columns: 1fr;
  }

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

  .locatorCardLarge {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .watchStage {
    min-height: 600px;
  }

  .watchStandard {
    left: 14%;
  }

  .watchUltra {
    right: 14%;
  }

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

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

@media (max-width: 900px) {
  .shell,
  .wideShell {
    width: min(100% - 28px, 900px);
    max-width: calc(100% - 28px);
  }

  .topbar {
    gap: 9px;
    padding: 11px;
    border-radius: 30px;
  }

  .brand {
    gap: 10px;
  }

  .brandMark {
    width: 44px;
    height: 44px;
  }

  .brandText {
    max-width: 190px;
  }

  .brandText strong {
    font-size: 14px;
  }

  .brandText small {
    margin-top: 3px;
    font-size: 11px;
  }

  .navCta {
    display: none;
  }

  .languageBadge {
    min-width: 78px;
    min-height: 40px;
    padding: 0 10px 0 8px;
  }

  .languageWave {
    width: 24px;
    height: 24px;
  }

  .languageCurrent span {
    display: none;
  }

  .nav {
    gap: 5px;
    padding-top: 5px;
  }

  .nav a {
    min-height: 34px;
    padding: 0 10px;
    font-size: 12px;
  }

  .hero {
    padding: 112px 0 58px;
  }

  .heroCopy {
    max-width: 100%;
    padding: 0 22px 4px;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    max-width: 650px;
  }

  .bilingualShotStack {
    top: 48px;
    right: -8px;
    width: 260px;
    height: 330px;
    opacity: .16;
  }

  .interfaceShot {
    width: 140px;
  }

  .shotDark {
    top: 54px;
  }

  .coBrandHero {
    width: min(300px, 72vw);
    margin-top: 18px;
  }

  .coBrandLockup::after {
    opacity: .3;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  .shell,
  .wideShell {
    width: min(100% - 24px, 1180px);
    max-width: calc(100% - 24px);
  }

  .siteHeader {
    top: 10px;
    margin-top: 10px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 28px;
    gap: 8px;
    min-height: auto;
    padding: 10px;
    background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brandMark {
    width: 46px;
    height: 46px;
    border-radius: 999px;
  }

  .brandText strong {
    font-size: 14px;
  }

  .brandText {
    min-width: 0;
  }

  .brandText strong,
  .brandText small {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brandText small {
    margin-top: 3px;
    font-size: 11px;
  }

  .brandText small {
    white-space: normal;
  }

  .topActions {
    gap: 6px;
    justify-self: end;
    min-width: 0;
  }

  .languageBadge {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
    min-width: 72px;
    min-height: 40px;
    padding: 0 9px 0 7px;
    font-size: 12px;
    white-space: nowrap;
  }

  .languageWave {
    width: 23px;
    height: 23px;
  }

  .languageCurrent {
    gap: 4px;
  }

  .languageCurrent span {
    display: none;
  }

  .languageChevron {
    width: 7px;
    height: 7px;
  }

  .languageMenu {
    right: 0;
    width: min(246px, calc(100vw - 24px));
    border-radius: 24px;
  }

  .languageBadge::before {
    content: none;
  }

  .navCta {
    display: none;
  }

  .nav {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 5px;
    overflow: visible;
  }

  .nav a {
    justify-content: center;
    min-width: 0;
    min-height: 31px;
    padding: 0 4px;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 720px;
    align-items: center;
    padding: 210px 0 calc(42px + var(--shadow-safe));
  }

  .hero::before,
  .heroMedia {
    border-radius: 38px;
  }

  .hero::before {
    inset: 16px 0 -64px;
    mask-image: linear-gradient(to bottom, #000 0 72%, rgba(0,0,0,0.68) 86%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0 72%, rgba(0,0,0,0.68) 86%, transparent 100%);
  }

  .heroMedia {
    inset: 16px 0 0;
  }

  .heroMedia::before {
    inset: 0 0 -72px;
    background:
      radial-gradient(ellipse at 24% 64%, rgba(105,221,247,0.1), transparent 56%),
      radial-gradient(ellipse at 60% 92%, rgba(47,107,255,0.08), transparent 62%),
      linear-gradient(180deg, rgba(247,251,255,0.78), rgba(247,251,255,0.86) 42%, rgba(247,251,255,0.92) 100%);
    mask-image: linear-gradient(to bottom, #000 0 68%, rgba(0,0,0,0.64) 86%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 0 68%, rgba(0,0,0,0.64) 86%, transparent 100%);
  }

  .heroCopy {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 0 14px 8px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  h3 {
    font-size: 22px;
  }

  .lead {
    max-width: 100%;
    margin-top: 20px;
    font-size: 14.5px;
    line-height: 1.68;
  }

  .enText {
    font-size: .86em;
    overflow-wrap: anywhere;
  }

  h1,
  h2,
  h3,
  p,
  .lead,
  .motionLine,
  .copyLine,
  .textBlock,
  .sectionHead,
  .locatorPanel,
  .buddyCopy,
  .trustPanel {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .heroShot {
    top: 70px;
    right: 10px;
    bottom: auto;
    width: 184px;
    opacity: .18;
    filter: saturate(.96);
  }

  .bilingualShotStack {
    top: 46px;
    right: 12px;
    bottom: auto;
    width: 250px;
    height: 300px;
    opacity: .22;
    pointer-events: none;
  }

  .interfaceShot {
    width: 132px;
  }

  .shotDark {
    left: 10px;
    top: 58px;
  }

  .shotLight {
    right: 2px;
    top: 0;
  }

  .bilingualShotStack[data-active="light"] .shotLight {
    transform: translate3d(-24px, 0, 0) rotate(4deg) scale(.88);
  }

  .bilingualShotStack[data-active="light"] .shotDark {
    transform: translate3d(-2px, 34px, 0) rotate(-5deg) scale(.78);
  }

  .bilingualShotStack[data-active="dark"] .shotDark {
    transform: translate3d(0, 0, 0) rotate(-5deg) scale(.9);
  }

  .bilingualShotStack[data-active="dark"] .shotLight {
    transform: translate3d(28px, 26px, 0) rotate(5deg) scale(.76);
  }

  .interfaceShot figcaption {
    display: none;
  }

  .posterShot {
    top: 64px;
    right: 14px;
    bottom: auto;
    width: min(266px, calc(100vw - 88px));
    opacity: .18;
    filter: saturate(.95);
  }

  .ctaRow {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: start;
    gap: 10px;
    margin-top: 24px;
  }

  .primaryBtn,
  .secondaryBtn {
    max-width: 100%;
    min-height: 42px;
    padding: 0 15px;
    white-space: normal;
    text-align: center;
  }

  .coBrandLockup {
    width: min(288px, 86vw);
    margin-top: 20px;
    padding: 4px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.76), 0 14px 34px rgba(38,68,110,0.1);
  }

  .coBrandMini {
    width: min(262px, 82vw);
    margin-top: 18px;
  }

  .section,
  .band {
    padding: 70px 0;
    scroll-margin-top: 190px;
  }

  [id] {
    scroll-margin-top: 190px;
  }

  .productGrid,
  .channelGrid,
  .principleGrid,
  .flowGrid,
  .guideGrid,
  .roleGrid,
  .locatorGrid,
  .agentPanel,
  .fieldGrid,
  .metrics,
  .guideNav {
    grid-template-columns: 1fr;
  }

  .productCard,
  .channelCard,
  .principleCard,
  .flowCard,
  .guideCard,
  .roleCard {
    min-height: 250px;
    padding: 24px;
    border-radius: 32px;
  }

  .buddyPanel,
  .trustPanel {
    padding: 24px;
    border-radius: 38px;
  }

  .buddyCards {
    gap: 10px;
  }

  .buddyCard {
    padding: 20px;
    border-radius: 26px;
  }

  .visualPanel {
    min-height: 520px;
    border-radius: 38px;
  }

  .homeLocator {
    padding-top: 78px;
  }

  .locatorFeature {
    gap: 18px;
  }

  .locatorPanel {
    order: -1;
    min-height: auto;
    padding: 28px;
    border-radius: 38px;
  }

  .locatorPanel h3 {
    font-size: 42px;
  }

  .locatorCard,
  .locatorCardLarge {
    min-height: 240px;
    padding: 24px;
    border-radius: 32px;
  }

  .locatorCard h3 {
    margin-top: 24px;
    font-size: 25px;
  }

  .visualPanel img {
    max-height: 480px;
    border-radius: 36px;
  }

  .imageBand > .textBlock {
    order: -1;
  }

  .productDevicePanel,
  .guideDevicePanel {
    min-height: 540px;
    overflow: visible;
    border-radius: 0;
  }

  .productDevicePanel::before,
  .guideDevicePanel::before {
    width: 260px;
    height: 110px;
    bottom: 44px;
  }

  .productDevicePanel::after,
  .guideDevicePanel::after {
    inset: auto;
    left: 50%;
    top: 50%;
    width: min(96%, 430px);
    height: min(68%, 330px);
    border-radius: 44% 56% 58% 42%;
  }

  .iphoneScene {
    min-height: 520px;
  }

  .deviceGlow {
    width: min(62vw, 260px);
  }

  .iphoneMock {
    width: min(220px, 66vw);
  }

  .productPhoneScene,
  .guidePhoneScene {
    min-height: 540px;
  }

  .productPhoneMock {
    width: min(238px, 72vw);
  }

  .guidePhoneMock {
    width: min(226px, 68vw);
  }

  .deviceCaption {
    bottom: 20px;
    max-width: calc(100% - 32px);
    text-align: center;
  }

  .watchStage {
    min-height: 560px;
    border-radius: 38px;
  }

  .renderStage {
    height: 420px;
    min-height: 420px;
  }

  .watchBreathField span {
    width: min(58vw, 226px);
  }

  .watchBreathField span:nth-child(2) {
    width: min(72vw, 280px);
  }

  .watchBreathField span:nth-child(3) {
    width: min(84vw, 328px);
  }

  .watchLocator .watchStage.renderStage,
  .watchSection .watchStage.renderStage {
    min-height: 420px;
  }

  .watchExperience {
    padding: 18px;
    border-radius: 38px;
  }

  .watchRender {
    width: 206px;
  }

  .watchUltra {
    width: 236px;
    right: 4%;
    top: 15%;
  }

  .watchStandard {
    left: 3%;
    top: 26%;
  }

  .watchScore strong {
    font-size: 42px;
  }

  .watchScore span {
    font-size: 15px;
  }

  .watchOrb {
    width: 54px;
    top: 82px;
  }

  .watchScreen {
    padding: 14px;
  }

  .agentSection {
    padding-top: 58px;
  }

  .agentPanel {
    gap: 18px;
    padding: 22px;
    border-radius: 38px;
  }

  .agentPanel::before {
    inset: 12px;
    border-radius: 28px;
  }

  .agentCopy {
    min-height: auto;
    gap: 14px;
  }

  .agentChips {
    gap: 7px;
  }

  .agentChips span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .agentConsole {
    padding: 18px;
    border-radius: 30px;
  }

  .agentSelector,
  .agentStats {
    grid-template-columns: 1fr;
  }

  .agentStats b {
    font-size: 22px;
  }

  .agentTimeline article {
    padding: 14px;
  }

  .textPanel,
  .contactPanel,
  .guideStep {
    padding: 26px;
    border-radius: 32px;
  }

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

  .footerWordmark {
    width: min(146px, 70%);
  }
}

@media (max-width: 1180px) {
  .statusLightHero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 62px 0 72px;
  }

  .statusLightHeroCopy,
  .statusLightHeroMedia {
    grid-column: 1;
  }

  .statusLightHeroCopy {
    grid-row: 1;
    max-width: 780px;
    padding: 0 28px;
  }

  .statusLightHeroMedia {
    grid-row: 2;
    padding: 0 28px;
  }

  .statusLightHeroCopy h1 {
    max-width: 680px;
    font-size: 54px;
  }

  .statusLightHero .statusHeroConsole {
    max-width: 820px;
  }

  .statusHeroVisual {
    max-width: 820px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .statusLightHero {
    min-height: auto;
    gap: 22px;
    padding: 42px 0 58px;
  }

  .statusLightHero::before {
    inset: 8px 0 -32px;
    border-radius: 34px;
  }

  .statusLightHeroCopy {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
  }

  .statusLightHeroCopy h1 {
    font-size: 40px;
    line-height: 1.04;
  }

  .statusLightHeroCopy .lead {
    max-width: 100%;
    font-size: 14.5px;
  }

  .statusLightHeroMedia {
    padding: 0;
  }

  .statusHeroVisual {
    padding: 8px;
    border-radius: 28px;
  }

  .statusHeroVisual::after {
    inset: 8px;
    border-radius: 22px;
  }

  .statusHeroVisual img {
    border-radius: 22px;
  }

  .statusHeroVisual figcaption {
    display: grid;
    justify-content: start;
    gap: 4px;
    padding: 10px 8px 2px;
  }

  .statusLightHero .statusHeroConsole {
    padding: 16px;
    border-radius: 26px;
    gap: 12px;
  }

  .statusLightHero .statusHeroConsole::before {
    width: 54px;
    opacity: .16;
  }

  .statusLightHero .agentConsoleTop {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .statusLightHero .agentOrb {
    width: 42px;
  }

  .statusLightHero .agentConsoleTop strong {
    font-size: 16px;
  }

  .statusLightHero .agentConsoleTop small {
    font-size: 11px;
  }

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

  .statusLightHero .agentStats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .statusLightHero .agentStats div {
    padding: 12px 10px;
  }

  .statusLightHero .agentStats b {
    font-size: 19px;
  }

  .statusLightHero .agentStats span,
  .statusLightHero .agentSelector span,
  .statusLightHero .agentTimeline span {
    font-size: 11px;
  }

  .statusLightHero .agentTimeline article {
    padding: 13px 14px;
    border-radius: 18px;
  }

  .statusSignalSection {
    padding-top: 46px;
  }

  .statusShowcaseGrid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .statusShowcaseCard {
    padding: 9px;
    border-radius: 28px;
  }

  .statusShowcaseCard img {
    height: clamp(220px, 62vw, 300px);
    border-radius: 21px;
  }

  .statusShowcaseCard figcaption {
    padding: 15px 8px 6px;
  }

  .statusShowcaseCard strong {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .statusLightHeroCopy h1 {
    font-size: 36px;
  }

  .statusLightHero .agentStats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .statusLightHero .agentStats div {
    padding: 10px 8px;
  }

  .statusLightHero .agentStats b {
    font-size: 18px;
  }
}

@media (max-width: 900px) and (min-width: 721px) {
  .statusShowcaseGrid {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    transition-delay: 0ms !important;
  }
}
