:root {
  --ink: #11181d;
  --ink-2: #24323a;
  --paper: #f6f7f4;
  --white: #ffffff;
  --mist: #e8f4f2;
  --aqua: #17a6b5;
  --mint: #7ddacb;
  --leaf: #6d8f64;
  --coral: #ff6f57;
  --amber: #efbd5d;
  --line: rgba(17, 24, 29, 0.12);
  --line-strong: rgba(17, 24, 29, 0.2);
  --shadow: 0 26px 80px rgba(14, 24, 29, 0.18);
  --max: 1240px;
  color: var(--ink);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  letter-spacing: 0;
  margin: 0;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
select {
  font: inherit;
}

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

p,
span,
strong,
a,
b,
label {
  overflow-wrap: anywhere;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px) saturate(1.12);
  background: rgba(12, 13, 16, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(150px, 0.72fr) auto minmax(220px, 0.72fr);
  height: 66px;
  left: 0;
  min-height: 66px;
  padding: 10px clamp(28px, 4vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 100;
}

.site-header.is-scrolled {
  background: rgba(11, 12, 15, 0.94);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

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

.brand img {
  filter: brightness(0) invert(1);
  height: 32px;
  object-fit: contain;
  opacity: 0.86;
  width: 118px;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(12px, 1.9vw, 26px);
  justify-content: center;
}

.main-nav a {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  font-size: 12px;
  font-weight: 620;
  justify-content: center;
  min-height: 40px;
  padding: 10px 2px;
  position: relative;
  transform-origin: center;
  transition:
    color 360ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.main-nav a::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), rgba(125, 218, 203, 0.86), transparent);
  border-radius: 999px;
  bottom: 2px;
  content: "";
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1) 80ms,
    opacity 300ms ease 80ms;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px) scale(1.04);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: end;
}

.language-select {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  display: flex;
  gap: 8px;
  min-height: 40px;
  padding: 0 30px 0 14px;
  position: relative;
}

.language-select::after {
  border-bottom: 2px solid rgba(255, 255, 255, 0.72);
  border-right: 2px solid rgba(255, 255, 255, 0.72);
  content: "";
  height: 7px;
  pointer-events: none;
  position: absolute;
  right: 14px;
  top: 14px;
  transform: rotate(45deg);
  width: 7px;
}

.language-select span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 620;
}

.language-select select {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  font-size: 12px;
  font-weight: 620;
  outline: none;
}

.language-select select option {
  background: #111214;
  color: #f5f7f7;
}

.language-select select option:checked {
  background: #243238;
  color: #ffffff;
}

.shop-link,
.support-link {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  display: inline-flex;
  font-size: 12px;
  font-weight: 620;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  transition:
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.support-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  padding: 0;
  width: 40px;
}

.shop-link:hover,
.support-link:hover,
.shop-link:focus-visible,
.support-link:focus-visible {
  box-shadow: 0 12px 28px rgba(23, 166, 181, 0.18);
  transform: translateY(-1px) scale(1.025);
}

.bag-icon,
.headset-icon {
  display: inline-block;
  position: relative;
}

.bag-icon {
  border: 2px solid currentColor;
  border-radius: 4px;
  height: 14px;
  width: 14px;
}

.bag-icon::before {
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  content: "";
  height: 6px;
  left: 3px;
  position: absolute;
  top: -7px;
  width: 6px;
}

.headset-icon {
  border: 2px solid currentColor;
  border-bottom-color: transparent;
  border-radius: 18px 18px 8px 8px;
  height: 18px;
  width: 20px;
}

.headset-icon::before,
.headset-icon::after {
  background: currentColor;
  border-radius: 4px;
  bottom: 1px;
  content: "";
  height: 9px;
  position: absolute;
  width: 5px;
}

.headset-icon::before {
  left: -4px;
}

.headset-icon::after {
  right: -4px;
}

.scroll-progress {
  background: rgba(255, 255, 255, 0.08);
  bottom: 0;
  height: 2px;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
}

.scroll-progress span {
  background: linear-gradient(90deg, var(--aqua), var(--mint), var(--coral));
  display: block;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  width: 100%;
}

.hero-section {
  align-items: end;
  background: #071116;
  color: #fff;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 138px 48px 54px;
  position: relative;
}

.hero-media {
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0.76;
  pointer-events: none;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 13, 18, 0.94), rgba(5, 13, 18, 0.62) 44%, rgba(5, 13, 18, 0.2)),
    linear-gradient(0deg, rgba(5, 13, 18, 0.9), rgba(5, 13, 18, 0.08) 54%);
  inset: 0;
  position: absolute;
}

.tech-grid {
  background:
    linear-gradient(rgba(125, 218, 203, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 218, 203, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  inset: 0;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  position: absolute;
}

.hero-content {
  max-width: 920px;
  position: relative;
  z-index: 2;
}

.hero-logo-preview {
  height: auto;
  margin-bottom: 26px;
  opacity: 0.94;
  width: min(260px, 48vw);
}

.eyebrow {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.hero-content h1,
.section-copy h2,
.section-head h2 {
  font-size: 68px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-statement-only {
  max-width: 920px;
}

.hero-title {
  display: grid;
  gap: 16px;
}

.hero-title-main,
.hero-title-sub {
  display: block;
}

.hero-title-sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(42px, 4.8vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  max-width: 820px;
}

.hero-care-elements {
  aspect-ratio: 1;
  position: absolute;
  right: clamp(36px, 8vw, 118px);
  top: 19vh;
  width: min(36vw, 440px);
  z-index: 2;
}

.orbit-device {
  height: 100%;
  position: relative;
  width: 100%;
}

.orbit-ring {
  border: 1px solid rgba(125, 218, 203, 0.34);
  border-radius: 50%;
  inset: 12%;
  position: absolute;
}

.ring-one {
  box-shadow:
    0 0 34px rgba(23, 166, 181, 0.22),
    inset 0 0 34px rgba(23, 166, 181, 0.08);
}

.ring-two {
  border-color: rgba(255, 255, 255, 0.22);
  inset: 27%;
}

.device-core {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.04)),
    rgba(6, 17, 20, 0.68);
  border: 1px solid rgba(125, 218, 203, 0.36);
  border-radius: 22px;
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.34);
  height: 118px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-10deg);
  width: 74px;
}

.device-core::before {
  background: var(--mint);
  border-radius: 999px;
  content: "";
  height: 34px;
  left: 50%;
  position: absolute;
  top: 18px;
  transform: translateX(-50%);
  width: 8px;
}

.device-core::after {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  bottom: 20px;
  content: "";
  height: 9px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 34px;
}

.signal-dot {
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(125, 218, 203, 0.68);
  height: 10px;
  position: absolute;
  width: 10px;
}

.dot-a {
  left: 22%;
  top: 26%;
}

.dot-b {
  right: 18%;
  top: 38%;
}

.dot-c {
  bottom: 22%;
  left: 46%;
}

.care-chip {
  backdrop-filter: blur(16px);
  background: rgba(8, 20, 26, 0.58);
  border: 1px solid rgba(125, 218, 203, 0.24);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
  display: grid;
  gap: 6px;
  min-width: 138px;
  padding: 14px 16px;
  position: absolute;
}

.care-chip span {
  color: rgba(234, 255, 251, 0.68);
  font-size: 12px;
  font-weight: 850;
}

.care-chip strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
}

.chip-voice {
  left: 0;
  top: 14%;
}

.chip-health {
  right: 0;
  top: 50%;
}

.chip-guard {
  bottom: 9%;
  left: 17%;
}

.hero-statement {
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.52;
  margin-top: 26px;
  max-width: 720px;
}

.hero-actions,
.button-row,
.section-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.primary-button,
.ghost-button,
.line-button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 880;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
}

.primary-button {
  background: var(--aqua);
  border: 1px solid var(--aqua);
  color: #061114;
}

.primary-button.light {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #fff;
}

.line-button {
  background: #fff;
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.line-button.dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.signal-console {
  background: rgba(9, 22, 28, 0.66);
  border: 1px solid rgba(125, 218, 203, 0.28);
  border-radius: 8px;
  bottom: 58px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
  color: #eafffb;
  display: grid;
  gap: 12px;
  padding: 18px;
  position: absolute;
  right: 48px;
  width: 312px;
  z-index: 2;
}

.console-header,
.console-row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.console-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 12px;
}

.console-header span,
.console-row span {
  color: rgba(234, 255, 251, 0.72);
  font-size: 13px;
  font-weight: 780;
}

.console-header strong {
  color: var(--mint);
  font-size: 14px;
  text-transform: uppercase;
}

.console-row b {
  color: #fff;
  font-size: 15px;
}

.page-band {
  overflow: hidden;
  padding: 112px 48px;
  position: relative;
  scroll-margin-top: 76px;
}

.company-section,
.app-section {
  align-items: center;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
}

.company-section {
  background: #f5f6f2;
}

.section-copy {
  max-width: 610px;
}

.section-copy p:not(.eyebrow),
.section-head p:not(.eyebrow) {
  color: #536166;
  font-size: 19px;
  font-weight: 560;
  line-height: 1.78;
  margin-top: 24px;
}

.button-row {
  margin-top: 32px;
}

.company-visual {
  background:
    linear-gradient(135deg, rgba(23, 166, 181, 0.14), transparent 44%),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 520px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.company-carousel {
  display: grid;
  gap: 18px;
}

.company-carousel-viewport {
  border-radius: 8px;
  overflow: hidden;
}

.company-carousel-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.company-slide {
  display: grid;
  flex: 0 0 100%;
  gap: 18px;
}

.company-slide img {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(23, 166, 181, 0.18);
  border-radius: 8px;
  object-fit: cover;
  width: 100%;
}

.company-carousel-controls {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.company-carousel-controls button {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(17, 24, 29, 0.08);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    color 240ms ease,
    transform 240ms ease;
  width: 38px;
}

.company-carousel-controls svg {
  fill: none;
  height: 20px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 20px;
}

.company-carousel-dots {
  display: flex;
  gap: 8px;
}

.company-carousel-dots button {
  background: rgba(17, 24, 29, 0.18);
  border: 0;
  border-radius: 999px;
  height: 8px;
  padding: 0;
  transition:
    background 180ms ease,
    width 180ms ease;
  width: 8px;
}

.company-carousel-dots button[aria-current] {
  background: var(--aqua);
  width: 26px;
}

.company-map {
  background:
    linear-gradient(rgba(17, 24, 29, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 29, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #edf7f6, #f9fbf7);
  background-size: 46px 46px, 46px 46px, auto;
  border: 1px solid rgba(23, 166, 181, 0.18);
  border-radius: 8px;
  height: 340px;
  position: relative;
}

.map-line {
  background: rgba(23, 166, 181, 0.58);
  height: 2px;
  left: 24%;
  position: absolute;
  top: 52%;
  transform-origin: left center;
  width: 48%;
}

.line-a {
  transform: rotate(-18deg);
}

.line-b {
  transform: rotate(24deg);
}

.line-c {
  left: 44%;
  top: 44%;
  transform: rotate(82deg);
  width: 24%;
}

.map-pin {
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(23, 166, 181, 0.26);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(23, 166, 181, 0.18);
  color: #0d6670;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  position: absolute;
}

.pin-core {
  left: 20%;
  top: 44%;
}

.pin-ai {
  left: 64%;
  top: 28%;
}

.pin-cloud {
  left: 58%;
  top: 66%;
}

.pin-care {
  left: 36%;
  top: 18%;
}

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

.company-notes span {
  background: rgba(17, 24, 29, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #334148;
  font-size: 15px;
  font-weight: 820;
  min-height: 86px;
  padding: 18px;
}

.company-lite-section {
  align-items: stretch;
  display: grid;
  gap: 52px;
  grid-template-columns: 1fr;
}

.company-lite-head {
  display: block;
  margin: 0 auto;
  max-width: var(--max);
  width: 100%;
}

.company-lite-head p:not(.eyebrow) {
  max-width: 900px;
}

.company-lite-carousel {
  background: transparent;
  border: 0;
  box-shadow: none;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 0;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.company-module-label {
  margin-bottom: 24px;
}

.company-module-label span {
  color: var(--aqua);
  display: block;
  font-size: 13px;
  font-weight: 920;
  line-height: 1.2;
  margin-bottom: 10px;
}

.company-module-label strong {
  color: var(--ink);
  display: block;
  font-size: 22px;
  font-weight: 920;
  line-height: 1.32;
}

.company-feature-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(17, 24, 29, 0.08);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 126px;
  padding: 28px;
}

.company-lite-carousel .company-carousel-viewport {
  border-radius: 8px;
  min-width: 0;
}

.company-lite-carousel .company-slide {
  flex: 0 0 100%;
}

.company-feature-slide {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 0.62fr);
  min-height: 340px;
}

.company-feature-stack {
  display: grid;
  gap: 20px;
  grid-template-rows: 1fr 1fr;
}

.company-feature-card {
  background: #e9eeeb;
  border: 1px solid rgba(17, 24, 29, 0.1);
  border-radius: 8px;
  color: #fff;
  display: block;
  min-height: 160px;
  overflow: hidden;
  position: relative;
}

.company-feature-card::after {
  background:
    linear-gradient(0deg, rgba(5, 10, 13, 0.68), rgba(5, 10, 13, 0) 62%),
    linear-gradient(90deg, rgba(5, 10, 13, 0.32), rgba(5, 10, 13, 0));
  content: "";
  inset: 0;
  position: absolute;
}

.company-feature-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 100%;
}

.company-feature-card:hover img,
.company-feature-card:focus-visible img {
  transform: scale(1.035);
}

.company-feature-card > div {
  bottom: 24px;
  display: grid;
  gap: 8px;
  left: 28px;
  max-width: calc(100% - 56px);
  position: absolute;
  right: 28px;
  z-index: 1;
}

.company-feature-card time {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 850;
}

.company-feature-card h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 920;
  line-height: 1.18;
}

.company-feature-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 620;
  line-height: 1.55;
}

.company-feature-card-main {
  min-height: 340px;
}

.company-feature-card-main h3 {
  font-size: 31px;
  max-width: 620px;
}

.company-feature-card-main p {
  max-width: 570px;
}

.company-feature-card.is-placeholder {
  align-content: end;
  background:
    linear-gradient(145deg, rgba(125, 218, 203, 0.2), transparent 52%),
    #11181d;
  display: grid;
  padding: 24px;
}

.company-feature-card.is-placeholder::after {
  display: none;
}

.company-feature-card.is-placeholder > div {
  inset: auto;
  max-width: none;
  position: relative;
  right: auto;
}

.company-feature-controls {
  align-content: center;
  align-items: center;
  display: grid;
  gap: 14px;
  justify-items: center;
}

.company-feature-controls span {
  color: #6f7d82;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.4;
  text-align: center;
}

.company-feature-controls .company-carousel-dots {
  margin-top: 2px;
}

.company-daily-block {
  margin-top: 56px;
}

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

.company-update-card {
  background: #fff;
  border: 1px solid rgba(17, 24, 29, 0.1);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(17, 24, 29, 0.06);
  color: var(--ink);
  display: grid;
  gap: 16px;
  overflow: hidden;
  padding: 14px;
}

.company-update-card img {
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
}

.company-update-card > div {
  display: grid;
  gap: 9px;
  padding: 0 4px 8px;
}

.company-update-card time {
  color: var(--aqua);
  font-size: 12px;
  font-weight: 860;
}

.company-update-card h3 {
  color: var(--ink);
  font-size: 21px;
  font-weight: 920;
  line-height: 1.2;
}

.company-update-card p {
  color: #5d6a70;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.58;
}

.company-daily-block {
  margin: 74px auto 0;
  max-width: min(1280px, calc(100vw - 120px));
  min-width: 0;
  position: relative;
  width: 100%;
}

.company-focus-shell {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: 0 24px 58px rgba(17, 24, 29, 0.14);
  box-sizing: border-box;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: none;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100vw;
}

.company-focus-viewport {
  border-radius: 0;
  height: clamp(390px, 43vw, 520px);
  min-height: 0;
}

.company-focus-shell .company-carousel-track {
  height: 100%;
}

.company-focus-slide {
  border-radius: 0;
  display: block;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.company-focus-slide::after {
  background:
    linear-gradient(0deg, rgba(5, 10, 13, 0.78), rgba(5, 10, 13, 0.1) 62%),
    linear-gradient(90deg, rgba(5, 10, 13, 0.36), rgba(5, 10, 13, 0));
  content: "";
  inset: 0;
  position: absolute;
}

.company-focus-slide img {
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.company-focus-copy {
  bottom: 70px;
  display: grid;
  gap: 12px;
  left: max(54px, calc((100vw - var(--max)) / 2 + 54px));
  max-width: 650px;
  position: absolute;
  right: max(220px, calc((100vw - var(--max)) / 2 + 220px));
  z-index: 1;
}

.company-focus-copy time {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 860;
}

.company-focus-copy h3 {
  color: #fff;
  font-size: 44px;
  font-weight: 940;
  line-height: 1.08;
}

.company-focus-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.58;
}

.company-focus-link {
  align-items: center;
  background: #fff;
  border-radius: 999px;
  color: #10181d;
  display: inline-flex;
  font-size: 14px;
  font-weight: 880;
  justify-content: center;
  justify-self: start;
  line-height: 1;
  min-height: 40px;
  padding: 0 20px;
  text-decoration: none;
  transition:
    background 220ms ease,
    transform 220ms ease;
}

.company-focus-link:hover,
.company-focus-link:focus-visible {
  background: #dff6f4;
  transform: translateY(-1px);
}

.company-focus-arrows {
  align-items: center;
  background: transparent;
  display: flex;
  height: 58px;
  justify-content: space-between;
  left: 26px;
  padding: 0;
  pointer-events: none;
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.company-focus-arrows button {
  align-items: center;
  background: rgba(5, 10, 13, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  box-shadow:
    0 12px 26px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 44px;
  justify-content: center;
  pointer-events: auto;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
  width: 44px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.company-focus-arrows button:hover,
.company-focus-arrows button:focus-visible {
  background: rgba(5, 10, 13, 0.66);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  outline: 0;
  transform: scale(1.04);
}

.company-focus-arrows svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
  width: 22px;
}

.company-focus-dots {
  align-items: center;
  background: rgba(5, 10, 13, 0.62);
  border-radius: 999px;
  bottom: 26px;
  display: flex;
  gap: 6px;
  left: 50%;
  padding: 7px 10px;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.company-focus-dots button {
  background: rgba(255, 255, 255, 0.5);
  border: 0;
  border-radius: 999px;
  height: 5px;
  padding: 0;
  transition:
    background 180ms ease,
    width 180ms ease;
  width: 5px;
}

.company-focus-dots button[aria-current] {
  background: #fff;
  width: 18px;
}

.company-rail-head {
  align-items: start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 0;
  max-width: none;
  min-width: 0;
  padding: 0;
}

.company-rail-head .company-module-label {
  margin-bottom: 32px;
}

.company-rail-head .company-module-label span {
  margin-bottom: 12px;
}

.company-rail-head .company-module-label strong {
  font-size: clamp(38px, 4.2vw, 58px);
  letter-spacing: 0;
  line-height: 1.05;
}

.company-rail-controls {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
  padding: 0;
  pointer-events: auto;
  position: static;
  transform: none;
}

.company-rail-viewport {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.company-rail-viewport::before,
.company-rail-viewport::after {
  content: "";
  inset-block: 0;
  pointer-events: none;
  position: absolute;
  width: min(8vw, 82px);
  z-index: 2;
}

.company-rail-viewport::before {
  background: linear-gradient(90deg, rgba(245, 247, 243, 0.58) 0%, rgba(245, 247, 243, 0.22) 46%, rgba(245, 247, 243, 0) 100%);
  left: 0;
}

.company-rail-viewport::after {
  background: linear-gradient(270deg, rgba(245, 247, 243, 0.72) 0%, rgba(245, 247, 243, 0.28) 46%, rgba(245, 247, 243, 0) 100%);
  right: 0;
}

.company-daily-grid.company-rail-track {
  box-sizing: border-box;
  display: flex;
  gap: 20px;
  grid-template-columns: none;
  max-width: 100%;
  min-width: 0;
  overscroll-behavior-x: contain;
  overflow-x: auto;
  padding: 0 0 4px;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-width: none;
  width: 100%;
}

.company-daily-grid.company-rail-track::-webkit-scrollbar {
  display: none;
}

.company-rail-track .company-update-card {
  background: #050707;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  display: block;
  flex: 0 0 clamp(330px, 29vw, 374px);
  flex-shrink: 0;
  min-height: 560px;
  overflow: hidden;
  padding: 0;
  position: relative;
  scroll-snap-align: none;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.company-rail-track .company-update-card:hover,
.company-rail-track .company-update-card:focus-visible {
  box-shadow: 0 22px 52px rgba(5, 7, 7, 0.16);
  outline: 0;
  transform: translateY(-4px);
}

.company-rail-track .company-update-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(11, 177, 198, 0.36), 0 22px 52px rgba(5, 7, 7, 0.16);
}

.company-rail-track .company-update-card::after {
  background:
    linear-gradient(180deg, rgba(5, 7, 7, 0.78) 0%, rgba(5, 7, 7, 0.2) 42%, rgba(5, 7, 7, 0.72) 100%),
    linear-gradient(90deg, rgba(5, 7, 7, 0.46), rgba(5, 7, 7, 0));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.company-rail-track .company-update-card > div {
  display: grid;
  gap: 12px;
  left: 30px;
  padding: 0;
  position: absolute;
  right: 30px;
  top: 32px;
  z-index: 2;
}

.company-rail-track .company-update-card img {
  aspect-ratio: auto;
  border-radius: 0;
  height: 100%;
  inset: 0;
  margin: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.02);
  width: 100%;
}

.company-rail-track .company-update-card:nth-child(2) img,
.company-rail-track .company-update-card:nth-child(5) img {
  filter: grayscale(1) contrast(1.05);
}

.company-rail-track .company-update-card:nth-child(3) img {
  object-fit: contain;
  padding: 96px 42px 76px;
}

.company-rail-track .company-update-card:nth-child(4) img {
  object-position: center bottom;
}

.company-rail-track .company-update-card time {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 860;
}

.company-rail-track .company-update-card h3 {
  color: #fff;
  font-size: 27px;
  font-weight: 920;
  line-height: 1.22;
  max-width: 270px;
}

.company-rail-track .company-update-card p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
  max-width: 270px;
}

.company-rail-controls button {
  background: rgba(236, 240, 242, 0.9);
  border: 1px solid rgba(17, 24, 29, 0.08);
  box-shadow: 0 10px 24px rgba(17, 24, 29, 0.1);
  color: #39434a;
  height: 44px;
  pointer-events: auto;
  width: 44px;
}

.company-rail-controls button:hover,
.company-rail-controls button:focus-visible {
  background: rgba(255, 255, 255, 0.98);
  border-color: rgba(17, 24, 29, 0.14);
  box-shadow: 0 14px 30px rgba(17, 24, 29, 0.14);
  color: #11181d;
  outline: 0;
  transform: translateY(-1px) scale(1.02);
}

body.has-company-detail {
  overflow: hidden;
}

.company-detail-overlay {
  align-items: center;
  background: rgba(4, 8, 10, 0.58);
  display: grid;
  inset: 0;
  justify-items: center;
  opacity: 0;
  padding: 42px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  visibility: hidden;
  z-index: 120;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.company-detail-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.company-detail-panel {
  background: #f5f7f3;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 28px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.35);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  max-height: calc(100svh - 84px);
  max-width: 1120px;
  overflow: hidden;
  position: relative;
  transform: translateY(18px) scale(0.98);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  width: min(1120px, calc(100vw - 84px));
}

.company-detail-overlay.is-open .company-detail-panel {
  transform: translateY(0) scale(1);
}

.company-detail-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 0;
  border-radius: 999px;
  color: #10171b;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  position: absolute;
  right: 18px;
  top: 18px;
  transition: transform 0.24s ease, background 0.24s ease;
  width: 42px;
  z-index: 4;
}

.company-detail-close:hover,
.company-detail-close:focus-visible {
  background: #fff;
  outline: 0;
  transform: scale(1.05);
}

.company-detail-close svg {
  height: 20px;
  width: 20px;
}

.company-detail-close path {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
}

.company-detail-media {
  background: #071012;
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.company-detail-media::after {
  background: linear-gradient(90deg, rgba(7, 16, 18, 0) 62%, rgba(7, 16, 18, 0.08));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.company-detail-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.company-detail-copy {
  align-content: center;
  display: grid;
  gap: 18px;
  min-width: 0;
  overflow-y: auto;
  padding: 72px 56px 54px;
}

.company-detail-copy time {
  color: var(--brand);
  font-size: 13px;
  font-weight: 860;
  letter-spacing: 0;
}

.company-detail-copy span {
  color: rgba(17, 24, 29, 0.5);
  font-size: 13px;
  font-weight: 820;
}

.company-detail-copy h3 {
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 930;
  letter-spacing: 0;
  line-height: 1.08;
}

.company-detail-copy p {
  color: rgba(17, 24, 29, 0.72);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.75;
}

.company-detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.company-detail-points span {
  background: rgba(11, 177, 198, 0.1);
  border: 1px solid rgba(11, 177, 198, 0.2);
  border-radius: 999px;
  color: #08768b;
  font-size: 13px;
  font-weight: 820;
  padding: 9px 13px;
}

body.immersive-page {
  background: #071116;
  color: #fff;
}

.immersive-carousel-page {
  min-height: 100svh;
}

.immersive-carousel {
  background: #071116;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.immersive-carousel-track {
  display: flex;
  min-height: 100svh;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.immersive-slide {
  flex: 0 0 100%;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.immersive-slide::after {
  background:
    linear-gradient(90deg, rgba(5, 13, 18, 0.88), rgba(5, 13, 18, 0.34) 56%, rgba(5, 13, 18, 0.08)),
    linear-gradient(0deg, rgba(5, 13, 18, 0.82), rgba(5, 13, 18, 0.04) 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.immersive-slide img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.immersive-copy {
  bottom: clamp(70px, 10vh, 118px);
  left: clamp(28px, 6vw, 96px);
  max-width: 760px;
  position: absolute;
  z-index: 2;
}

.immersive-copy h1 {
  font-size: clamp(46px, 6.4vw, 92px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.96;
  max-width: 860px;
}

.immersive-copy p:not(.eyebrow) {
  color: rgba(234, 255, 251, 0.84);
  font-size: 19px;
  font-weight: 620;
  line-height: 1.72;
  margin-top: 24px;
  max-width: 690px;
}

.immersive-copy .line-button {
  margin-top: 32px;
}

.immersive-carousel-controls {
  bottom: clamp(34px, 5vw, 58px);
  display: flex;
  gap: 12px;
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  z-index: 3;
}

.immersive-carousel-controls button {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  transition:
    background 260ms ease,
    transform 260ms ease;
  width: 48px;
}

.immersive-carousel-controls button:hover,
.immersive-carousel-controls button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.immersive-carousel-controls svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 22px;
}

.immersive-carousel-dots {
  display: grid;
  gap: 12px;
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.immersive-carousel-dots button {
  background: rgba(255, 255, 255, 0.34);
  border: 0;
  border-radius: 999px;
  height: 9px;
  padding: 0;
  transition:
    background 240ms ease,
    height 240ms ease;
  width: 9px;
}

.immersive-carousel-dots button[aria-current] {
  background: var(--mint);
  height: 32px;
}

.hardware-section {
  background: #10181f;
  color: #fff;
}

.section-head {
  margin: 0 auto 48px;
  max-width: var(--max);
}

.hardware-stage {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 360px;
  margin: 0 auto;
  max-width: var(--max);
}

.hardware-stage video,
.trend-video video {
  background: #000;
  border-radius: 8px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hardware-stage video {
  min-height: 560px;
}

.hardware-overlay {
  display: grid;
  gap: 12px;
}

.hardware-overlay article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  min-height: 174px;
  padding: 22px;
}

.hardware-overlay span {
  color: var(--mint);
  font-size: 13px;
  font-weight: 950;
}

.hardware-overlay strong {
  color: #fff;
  font-size: 25px;
  line-height: 1.15;
}

.hardware-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.62;
}

.swatches {
  display: flex;
  gap: 10px;
}

.swatch {
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  display: inline-block;
  height: 28px;
  width: 28px;
}

.swatch.mint {
  background: #79decf;
}

.swatch.graphite {
  background: #22292e;
}

.swatch.coral {
  background: #ff6f57;
}

.swatch.sand {
  background: #c7b89b;
}

.section-actions {
  margin: 28px auto 0;
  max-width: var(--max);
}

.app-section {
  background: #ffffff;
}

.app-shell {
  min-height: 610px;
  position: relative;
}

.phone {
  background: #f9fbf7;
  border: 10px solid var(--ink);
  border-radius: 34px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: 24px 18px;
  position: absolute;
}

.phone-main {
  left: 10%;
  min-height: 560px;
  top: 0;
  width: 310px;
  z-index: 2;
}

.phone-side {
  background: #eef7f5;
  min-height: 420px;
  right: 8%;
  top: 86px;
  width: 250px;
}

.phone-top {
  background: var(--ink);
  border-radius: 999px;
  height: 20px;
  justify-self: center;
  width: 82px;
}

.phone strong {
  font-size: 28px;
  line-height: 1.1;
}

.app-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  padding: 18px;
}

.app-card.calm {
  background: var(--mist);
}

.app-card span,
.app-feature-card span,
.trend-cards span {
  color: #5d7077;
  font-size: 13px;
  font-weight: 880;
}

.app-card b {
  font-size: 22px;
}

.app-chart {
  align-items: end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 10px;
  height: 140px;
  padding: 18px;
}

.app-chart i {
  background: var(--aqua);
  border-radius: 999px 999px 0 0;
  flex: 1;
}

.app-chart i:nth-child(1) {
  height: 40%;
}

.app-chart i:nth-child(2) {
  background: var(--mint);
  height: 62%;
}

.app-chart i:nth-child(3) {
  background: var(--leaf);
  height: 54%;
}

.app-chart i:nth-child(4) {
  background: var(--coral);
  height: 72%;
}

.app-chart i:nth-child(5) {
  background: var(--amber);
  height: 48%;
}

.scenario-list {
  display: grid;
  gap: 12px;
}

.scenario-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 820;
  padding: 14px;
}

.app-feature-board {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.app-feature-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 22px;
}

.app-feature-card.status {
  background: #eaf7f3;
}

.app-feature-card.growth {
  background: #fff0df;
}

.app-feature-card.emotion {
  background: #f2f0fb;
}

.app-feature-card strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.1;
}

.app-feature-card p {
  color: #556267;
  font-size: 15px;
  line-height: 1.65;
}

.app-copy .primary-button {
  margin-top: 28px;
}

.health-section {
  background: #edf4f1;
}

.centered {
  text-align: center;
}

.centered h2,
.centered p {
  margin-left: auto;
  margin-right: auto;
  max-width: 880px;
}

.health-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  margin: 0 auto;
  max-width: var(--max);
}

.trend-video {
  border-radius: 8px;
  box-shadow: var(--shadow);
  min-height: 570px;
  overflow: hidden;
}

.trend-cards {
  display: grid;
  gap: 12px;
}

.trend-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  min-height: 176px;
  padding: 22px;
}

.trend-cards strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1.05;
}

.trend-cards p {
  color: #5b686d;
  font-size: 15px;
  line-height: 1.55;
}

.mini-line {
  background:
    linear-gradient(90deg, transparent 0 9%, var(--aqua) 9% 13%, transparent 13% 31%, var(--aqua) 31% 35%, transparent 35% 55%, var(--aqua) 55% 59%, transparent 59%),
    linear-gradient(180deg, transparent 0 47%, rgba(17, 24, 29, 0.14) 47% 50%, transparent 50%);
  border-radius: 999px;
  height: 42px;
}

.mini-line.wave {
  background:
    linear-gradient(90deg, transparent 0 16%, var(--leaf) 16% 20%, transparent 20% 42%, var(--leaf) 42% 46%, transparent 46% 70%, var(--leaf) 70% 74%, transparent 74%),
    linear-gradient(180deg, transparent 0 52%, rgba(17, 24, 29, 0.14) 52% 55%, transparent 55%);
}

.mini-line.flat {
  background:
    linear-gradient(90deg, transparent 0 20%, var(--coral) 20% 24%, transparent 24% 50%, var(--coral) 50% 54%, transparent 54% 80%, var(--coral) 80% 84%, transparent 84%),
    linear-gradient(180deg, transparent 0 50%, rgba(17, 24, 29, 0.14) 50% 53%, transparent 53%);
}

.service-section {
  background: #fff;
  border-top: 1px solid rgba(17, 24, 29, 0.08);
  padding: 44px 48px 26px;
}

.breadcrumb-row {
  align-items: center;
  border-bottom: 1px solid rgba(17, 24, 29, 0.08);
  color: #657278;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 36px;
  max-width: var(--max);
  min-height: 54px;
  padding-bottom: 18px;
}

.breadcrumb-row img {
  height: 26px;
  object-fit: contain;
  width: 94px;
}

.breadcrumb-row a {
  color: #334148;
  font-size: 14px;
  font-weight: 780;
}

.service-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: var(--max);
}

.service-grid article {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.service-grid h3 {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.service-grid a,
.service-grid p {
  color: #68757b;
  font-size: 14px;
  line-height: 1.45;
}

.contact-card {
  border-left: 1px solid rgba(17, 24, 29, 0.1);
  padding-left: 28px;
}

.site-footer {
  align-items: center;
  border-top: 1px solid rgba(17, 24, 29, 0.08);
  color: #8a9498;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 42px auto 0;
  max-width: var(--max);
  padding-top: 20px;
}

.site-footer p {
  font-size: 13px;
  line-height: 1.6;
}

.site-footer a {
  align-items: center;
  background: #b9c0c3;
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  height: 46px;
  justify-content: center;
  min-width: 54px;
  padding: 0 12px;
}

.paw-top {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 44%),
    rgba(16, 23, 28, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  bottom: 28px;
  box-shadow:
    0 18px 46px rgba(17, 24, 29, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #d7dddf;
  display: grid;
  gap: 4px;
  height: 62px;
  justify-items: center;
  padding: 8px;
  position: fixed;
  right: 28px;
  width: 58px;
  z-index: 90;
}

.paw-top:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 44%),
    rgba(10, 86, 94, 0.88);
  color: #f2f6f7;
}

.paw-top b {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.paw-print {
  height: 38px;
  position: relative;
  width: 42px;
}

.paw-print::before {
  background:
    radial-gradient(circle at 28% 26%, rgba(255, 255, 255, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle at 66% 34%, rgba(255, 255, 255, 0.5) 0 1.5px, transparent 2.5px),
    currentColor;
  border-radius: 54% 54% 44% 44%;
  bottom: 0;
  content: "";
  height: 22px;
  left: 9px;
  position: absolute;
  width: 24px;
}

.paw-print i {
  background:
    radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.64) 0 1.5px, transparent 2.5px),
    currentColor;
  border-radius: 48% 52% 50% 50%;
  display: block;
  height: 13px;
  position: absolute;
  width: 11px;
}

.paw-print i:nth-child(1) {
  left: 2px;
  top: 14px;
  transform: rotate(-24deg);
}

.paw-print i:nth-child(2) {
  left: 10px;
  top: 2px;
  transform: rotate(-8deg);
}

.paw-print i:nth-child(3) {
  right: 10px;
  top: 2px;
  transform: rotate(8deg);
}

.paw-print i:nth-child(4) {
  right: 2px;
  top: 14px;
  transform: rotate(24deg);
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    left: 0;
    padding: 6px 22px;
    right: 0;
    top: 0;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

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

  .header-actions {
    justify-content: end;
  }

  .hero-section {
    padding-top: 72px;
  }

  .signal-console {
    bottom: 34px;
    left: 48px;
    right: auto;
  }

  .hero-care-elements {
    opacity: 0.9;
    right: 34px;
    top: 22vh;
    width: min(42vw, 360px);
  }

  .company-section,
  .app-section,
  .hardware-stage,
  .health-layout,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .company-visual {
    min-height: 460px;
  }

  .company-lite-carousel {
    min-height: 0;
  }

  .company-feature-shell {
    grid-template-columns: 1fr;
  }

  .company-feature-slide {
    grid-template-columns: 1fr;
  }

  .company-feature-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .company-feature-card-main {
    min-height: 360px;
  }

  .company-feature-card {
    min-height: 210px;
  }

  .company-feature-controls {
    display: flex;
    justify-content: center;
  }

  .company-focus-viewport,
  .company-focus-slide {
    height: clamp(360px, 42vw, 470px);
    min-height: 0;
  }

  .company-focus-copy {
    left: 34px;
    right: 150px;
  }

  .company-focus-copy h3 {
    font-size: 34px;
  }

  .company-daily-block {
    max-width: calc(100vw - 68px);
  }

  .company-rail-track .company-update-card {
    flex-basis: min(350px, 78vw);
    min-height: 520px;
  }

  .company-detail-panel {
    grid-template-columns: 1fr;
    max-width: 720px;
    overflow-y: auto;
  }

  .company-detail-media {
    max-height: 44svh;
    min-height: 340px;
  }

  .company-detail-copy {
    overflow: visible;
    padding: 42px 42px 46px;
  }

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

  .hardware-stage video,
  .trend-video {
    min-height: 440px;
  }

  .app-shell {
    min-height: 640px;
  }

  .app-feature-board {
    grid-template-columns: 1fr;
  }

  .app-feature-card {
    min-height: 220px;
  }

  .contact-card {
    border-left: 0;
    border-top: 1px solid rgba(17, 24, 29, 0.1);
    padding-left: 0;
    padding-top: 24px;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 6px 14px;
    grid-template-columns: auto 1fr;
    padding: 8px 16px 6px;
  }

  .brand img {
    height: 26px;
    width: 96px;
  }

  .main-nav {
    grid-column: 1 / -1;
    margin: 0 -16px;
    order: 3;
    padding: 0 16px 4px;
  }

  .header-actions {
    align-items: center;
    display: flex;
    gap: 8px;
    justify-content: end;
  }

  .language-select {
    min-width: 0;
  }

  .hero-section,
  .page-band,
  .service-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-section {
    min-height: 780px;
    padding-bottom: 92px;
  }

  .hero-content h1,
  .section-copy h2,
  .section-head h2 {
    font-size: 42px;
    line-height: 1.02;
  }

  .hero-title {
    gap: 10px;
  }

  .hero-title-sub {
    font-size: 30px;
    line-height: 1.12;
  }

  .hero-logo-preview {
    margin-bottom: 20px;
    width: min(210px, 62vw);
  }

  .hero-statement,
  .section-copy p:not(.eyebrow),
  .section-head p:not(.eyebrow) {
    font-size: 17px;
  }

  .signal-console {
    bottom: 28px;
    left: 20px;
    right: 20px;
    width: auto;
  }

  .hero-care-elements {
    right: 50%;
    top: 118px;
    transform: translateX(50%);
    width: min(72vw, 280px);
  }

  .care-chip {
    min-width: 104px;
    padding: 10px 12px;
  }

  .care-chip span {
    font-size: 11px;
  }

  .care-chip strong {
    font-size: 15px;
  }

  .company-notes {
    grid-template-columns: 1fr;
  }

  .company-module-label {
    margin-bottom: 18px;
  }

  .company-module-label strong {
    font-size: 19px;
  }

  .company-feature-shell {
    gap: 18px;
    padding: 16px;
  }

  .company-feature-slide,
  .company-feature-stack,
  .company-daily-grid {
    grid-template-columns: 1fr;
  }

  .company-feature-slide,
  .company-feature-stack {
    gap: 16px;
  }

  .company-feature-card-main {
    min-height: 310px;
  }

  .company-feature-card {
    min-height: 190px;
  }

  .company-feature-card > div {
    bottom: 18px;
    left: 18px;
    max-width: calc(100% - 36px);
    right: 18px;
  }

  .company-feature-card h3,
  .company-update-card h3 {
    font-size: 19px;
  }

  .company-feature-card-main h3 {
    font-size: 26px;
  }

  .company-feature-card p,
  .company-update-card p {
    font-size: 14px;
  }

  .company-feature-controls {
    justify-content: start;
  }

  .company-focus-shell {
    padding: 0;
  }

  .company-focus-viewport,
  .company-focus-slide {
    height: 340px;
    min-height: 0;
  }

  .company-focus-copy {
    bottom: 66px;
    gap: 7px;
    left: 20px;
    max-width: none;
    right: 20px;
  }

  .company-focus-copy h3 {
    font-size: 27px;
  }

  .company-focus-copy p {
    font-size: 14px;
  }

  .company-focus-link {
    font-size: 13px;
    min-height: 36px;
    padding: 0 16px;
  }

  .company-focus-arrows {
    height: 48px;
    left: 10px;
    padding: 0 8px;
    right: 10px;
  }

  .company-focus-arrows button {
    height: 42px;
    width: 42px;
  }

  .company-focus-arrows svg {
    height: 20px;
    width: 20px;
  }

  .company-focus-dots {
    bottom: 18px;
  }

  .company-rail-head {
    display: grid;
    gap: 8px;
    padding: 0;
  }

  .company-rail-head .company-module-label strong {
    font-size: 34px;
  }

  .company-daily-block {
    margin-top: 44px;
    max-width: calc(100vw - 40px);
  }

  .company-rail-controls {
    gap: 12px;
    justify-content: center;
    padding: 0;
  }

  .company-daily-grid.company-rail-track {
    gap: 14px;
    padding: 2px 20px 10px;
  }

  .company-rail-track .company-update-card {
    flex-basis: min(82vw, 310px);
    min-height: 470px;
    padding: 0;
  }

  .company-rail-track .company-update-card > div {
    left: 22px;
    right: 22px;
    top: 24px;
  }

  .company-rail-track .company-update-card h3 {
    font-size: 23px;
  }

  .company-rail-track .company-update-card p {
    font-size: 13px;
  }

  .company-rail-controls button {
    height: 44px;
    width: 44px;
  }

  .company-detail-overlay {
    align-items: end;
    padding: 18px;
  }

  .company-detail-panel {
    border-radius: 24px;
    max-height: calc(100svh - 36px);
    width: 100%;
  }

  .company-detail-close {
    height: 40px;
    right: 14px;
    top: 14px;
    width: 40px;
  }

  .company-detail-media {
    max-height: 42svh;
    min-height: 270px;
  }

  .company-detail-copy {
    gap: 14px;
    padding: 28px 24px 30px;
  }

  .company-detail-copy h3 {
    font-size: 30px;
  }

  .company-detail-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .company-update-card {
    min-height: 0;
  }

  .company-map {
    height: 300px;
  }

  .immersive-copy {
    bottom: 142px;
    left: 20px;
    right: 20px;
  }

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

  .immersive-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.62;
  }

  .immersive-carousel-controls {
    bottom: 72px;
    left: 20px;
    right: auto;
  }

  .immersive-carousel-dots {
    bottom: 32px;
    display: flex;
    left: 20px;
    right: auto;
    top: auto;
    transform: none;
  }

  .immersive-carousel-dots button[aria-current] {
    height: 9px;
    width: 32px;
  }

  .hardware-overlay article,
  .trend-cards article {
    min-height: 150px;
  }

  .phone-main {
    left: 0;
    width: 280px;
  }

  .phone-side {
    right: 0;
    top: 170px;
    width: 220px;
  }

  .app-shell {
    min-height: 680px;
  }

  .service-grid {
    gap: 26px;
  }

  .site-footer {
    align-items: start;
    display: grid;
  }
}
