:root {
  --bg: #fbfbfd;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --text: #1d1d1f;
  --muted: #86868b;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  --shadow-strong: 0 12px 48px rgba(0, 0, 0, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --brand: #2f6b45;
  --brand-soft: rgba(47, 107, 69, 0.1);
  --dark: #1d1d1f;
  --dark-soft: #424245;
  --success: #34c759;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI Variable Text",
    "PingFang SC", "Helvetica Neue", "Microsoft YaHei UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  background-image: 
    linear-gradient(to right, rgba(0,0,0,0.01) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.01) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-bar {
  height: 74px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-width: 0;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  display: block;
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-logo {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.brand-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  display: block;
  margin-top: -2px;
}

.brand-logo-mobile {
  width: min(216px, 100%);
  height: 36px;
}

.brand-logo-footer {
  width: min(244px, 100%);
  height: 38px;
  margin-bottom: 8px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 26px;
  color: #1d1d1f;
  white-space: nowrap;
}

.header-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 12px;
  white-space: nowrap;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  display: none;
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  width: 16px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  display: block;
  content: "";
  position: relative;
}

.menu-toggle span::before {
  top: -5px;
  position: absolute;
}

.menu-toggle span::after {
  top: 5px;
  position: absolute;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12, 12, 16, 0.32);
  backdrop-filter: blur(14px);
  z-index: 60;
  padding: 18px;
}

.mobile-panel.open {
  display: block;
}

.mobile-sheet {
  margin-left: auto;
  width: min(380px, 100%);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 22px;
  box-shadow: var(--shadow-strong);
}

.mobile-sheet nav {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.mobile-sheet nav a {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.03);
}

.hero {
  position: relative;
  padding: 92px 0 38px;
  overflow: clip;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.hero-copy,
.hero .section-header,
.home-hero-copy {
  padding-top: 8px !important;
  margin-top: 0 !important;
}

.hero-shell {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 12px 12px 8px;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.hero-shell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(47, 107, 69, 0.05) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-header,
.page-top-header {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI Variable Text",
    "PingFang SC", "Helvetica Neue", "Microsoft YaHei UI", sans-serif;
}

.hero-title,
.section-title,
.display-title {
  margin: 12px 0 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI Variable Display",
    "PingFang SC", "Helvetica Neue", "Microsoft YaHei UI", sans-serif;
  font-feature-settings: "kern" 1, "liga" 1;
}

.hero-title {
  font-size: clamp(50px, 7vw, 84px);
}

.section-title {
  font-size: clamp(34px, 4.3vw, 56px);
}

.display-title {
  font-size: clamp(34px, 5.2vw, 68px);
}

.hero-copy p,
.section-copy,
.section-intro,
.muted {
  color: var(--muted);
  font-weight: 400;
  line-height: 1.6;
}

.hero-header .section-title,
.page-top-header .section-title {
  max-width: 820px;
  margin: 14px auto 0;
  text-wrap: balance;
}

.hero-header .section-intro,
.page-top-header .section-intro {
  max-width: 700px;
  margin: 18px auto 0;
  font-size: 16px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-shell .hero-actions,
.page-top-header + .hero-actions {
  justify-content: center;
}

.device-hero-visual-frame {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-shell + .contact-grid,
.hero-shell + .purchase-grid,
.hero-shell + .legal-list {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn:hover {
  transform: translateY(-1px) scale(1.01);
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #387b51 0%, #2f6b45 100%);
  box-shadow: 0 4px 12px rgba(47, 107, 69, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.2);
  border: 1px solid #2a613e;
}

.btn-primary:hover {
  background: linear-gradient(180deg, #3d8658 0%, #32754c 100%);
  box-shadow: 0 8px 20px rgba(47, 107, 69, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.btn-dark {
  color: #fff;
  background: #1d1d1f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-visual,
.panel,
.card,
.glass-panel,
.stats-card,
.form-shell,
.table-shell {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.hero-visual {
  padding: 28px;
}



.device-sound-field {
  position: absolute;
  left: 50%;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.02), transparent 72%);
  transform: translateX(-50%);
}

.device-sound-field.field-a {
  bottom: 19%;
  width: min(460px, 76%);
  height: 180px;
  animation: ringPulseSlow 8.2s ease-in-out infinite;
}

.device-sound-field.field-b {
  bottom: 23%;
  width: min(320px, 54%);
  height: 128px;
  animation: ringPulseFast 6s ease-in-out infinite;
}

.device-silhouette {
  position: absolute;
  left: 50%;
  bottom: 19%;
  width: 250px;
  height: 292px;
  transform: translateX(-50%);
  animation: coreFloat 6.8s ease-in-out infinite;
}

.device-silhouette-top {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 8px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 2;
}

.device-silhouette-body {
  position: absolute;
  inset: 24px 0 0;
  border-radius: 56px;
  background: #f5f5f7;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -10px 30px rgba(0, 0, 0, 0.05),
    0 16px 40px rgba(0, 0, 0, 0.1);
}

.device-silhouette-core {
  position: absolute;
  inset: 86px 44px 38px;
  border-radius: 40px;
  background: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(0, 0, 0, 0.02),
    0 10px 24px rgba(0, 0, 0, 0.06);
}

.app-stage-card {
  position: relative;
  overflow: hidden;
  width: min(320px, 92%);
  color: rgba(255, 255, 255, 0.95);
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-strong);
  animation: appCardFloat 6.8s ease-in-out infinite;
}

.app-stage-card h3,
.app-stage-card p {
  position: relative;
  z-index: 1;
  color: inherit;
}

.app-stage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(90deg, transparent 24%, rgba(255, 255, 255, 0.06) 50%, transparent 76%);
  transform: translateX(-28%);
  animation: appCardSheen 7.6s ease-in-out infinite;
  pointer-events: none;
}

[data-scroll-stage] .stage-glow-a {
  animation: lightDrift 13s ease-in-out infinite alternate;
}

[data-scroll-stage] .stage-glow-b {
  animation: lightDrift 11s ease-in-out infinite alternate-reverse;
}

.status-pill {
  animation: statusGlow 4.2s ease-in-out infinite;
  color: var(--brand);
}

.home-hero {
  position: relative;
  padding: 92px 0 24px;
  overflow: clip;
}

.home-hero::before {
  display: none;
}

.home-hero .container {
  position: relative;
  z-index: 1;
}

.home-hero-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  will-change: transform, opacity;
}

.hero-shell-home {
  padding: 14px 12px 4px;
  background: transparent;
}

.home-kicker {
  margin: 14px 0 0;
  font-size: clamp(46px, 7.5vw, 100px);
  font-weight: 620;
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: #1b2c1d;
  text-shadow: 0 10px 22px rgba(255, 255, 255, 0.34);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI Variable Display",
    "PingFang SC", "Helvetica Neue", "Microsoft YaHei UI", sans-serif;
  text-wrap: balance;
}

.home-title {
  max-width: 860px;
  margin: 10px auto 0;
}

.home-subtitle {
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.82;
}

.home-actions {
  justify-content: center;
}

.home-orbit {
  margin-top: 42px;
  will-change: transform, opacity;
}



.home-metrics[data-hero-focus] {
  filter: saturate(calc(1 + var(--hero-focus-progress) * 0.04));
}

.home-metrics[data-hero-focus] .home-metric-card {
  box-shadow:
    0 calc(20px + var(--hero-focus-progress) * 8px)
      calc(60px + var(--hero-focus-progress) * 18px)
      rgba(46, 72, 52, calc(0.08 + var(--hero-focus-progress) * 0.05));
}

.home-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  align-items: stretch;
}

.home-metric-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 308px;
  padding: 26px 24px 24px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home-metric-card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
}

.freq-card {
  background: var(--surface);
}

.loud-card {
  background: var(--surface);
}

.sync-card {
  background: var(--surface);
}

.metric-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.metric-no,
.metric-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31, 41, 55, 0.52);
}

.metric-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  margin: 20px 0 18px;
}

.metric-visual-shell {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-dot {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 8px var(--brand-soft);
}

.metric-arc {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border-top: 1.5px solid var(--line);
  border-left: 1.5px solid transparent;
  border-right: 1.5px solid transparent;
  border-bottom: 1.5px solid transparent;
}

.arc-a {
  transform: rotate(14deg);
}

.arc-b {
  inset: 14px;
  transform: rotate(-18deg);
}

.metric-bars {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 96px;
}

.metric-bars span {
  width: 12px;
  border-radius: 999px;
  background: var(--brand);
}

.metric-bars span:nth-child(1) {
  height: 28px;
}

.metric-bars span:nth-child(2) {
  height: 56px;
}

.metric-bars span:nth-child(3) {
  height: 84px;
}

.metric-bars span:nth-child(4) {
  height: 62px;
}

.metric-bars span:nth-child(5) {
  height: 38px;
}

.metric-link {
  position: relative;
  width: 132px;
  height: 78px;
}

.link-line {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 50%;
  height: 1.5px;
  background: var(--line);
  transform: translateY(-50%);
}

.link-node {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 8px var(--brand-soft);
}

.link-node.left {
  left: 0;
}

.link-node.right {
  right: 0;
}

.freq-card::after,
.loud-card::after,
.sync-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  height: 1px;
  background: var(--line);
}

.home-metric-card strong {
  display: block;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #1f2937;
  margin-bottom: 10px;
}

.home-metric-card p {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.storyboard-section {
  padding-top: 12px;
}

.storyboard-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.storyboard-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.storyboard-card.large {
  min-height: 300px;
}

.storyboard-card.accent {
  background: #1d1d1f;
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.storyboard-card small {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #e3eee6;
  color: #355345;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.storyboard-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.storyboard-card p {
  margin: 12px 0 0;
}

.storyboard-card.accent small,
.storyboard-card.accent strong,
.storyboard-card.accent p {
  color: inherit;
}

.home-section-tight {
  padding-top: 18px;
}

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

.home-feature-card {
  padding: 30px;
  border-radius: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-feature-card h3 {
  margin: 18px 0 12px;
  font-size: 32px;
  letter-spacing: -0.05em;
}

.home-feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.home-feature-card.dark {
  background: #1d1d1f;
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
}

.home-feature-card.dark .eyebrow,
.home-clinical-band .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.home-feature-card.dark p,
.home-feature-card.dark h3 {
  color: inherit;
}

.home-marquee-section {
  padding-top: 6px;
  padding-bottom: 14px;
}

.home-marquee {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.home-marquee-track {
  display: flex;
  gap: 26px;
  white-space: nowrap;
  padding: 18px 24px;
  min-width: max-content;
  animation: marquee-scroll 28s linear infinite;
}

.home-marquee-track span {
  color: #334155;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-cinema {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 42px;
  border-radius: 42px;
  background: #1d1d1f;
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-strong);
}

.home-cinema-copy .eyebrow,
.home-product-card.hardware .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
}

.home-cinema-copy .display-title {
  color: #fff;
}

.home-cinema-copy .section-copy {
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
}

.home-cinema-panels {
  display: grid;
  gap: 16px;
  align-self: center;
}

.home-cinema-panel {
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-cinema-panel small,
.home-cinema-panel strong,
.home-cinema-panel span {
  display: block;
}

.home-cinema-panel small {
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.home-cinema-panel strong {
  margin-top: 8px;
  font-size: 26px;
  letter-spacing: -0.04em;
  color: #fff;
}

.home-cinema-panel span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

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

.home-product-card {
  padding: 34px;
  border-radius: 38px;
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.home-product-card.software {
  background:
    radial-gradient(circle at top left, rgba(68, 108, 78, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(244, 247, 241, 0.94) 0%, rgba(229, 236, 227, 0.98) 100%);
  border: 1px solid rgba(209, 220, 208, 0.94);
  box-shadow: var(--shadow-strong);
}

.home-product-card.hardware {
  background:
    radial-gradient(circle at top right, rgba(68, 108, 78, 0.22), transparent 24%),
    radial-gradient(circle at bottom left, rgba(122, 151, 114, 0.14), transparent 18%),
    linear-gradient(180deg, #58745d 0%, #3c5942 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
  color: rgba(255, 255, 255, 0.82);
}

.home-product-card.hardware .display-title,
.home-product-card.hardware .section-copy {
  color: inherit;
}

.home-product-top {
  position: relative;
  z-index: 2;
}

.home-product-visual {
  min-height: 420px;
  margin-top: 28px;
  display: grid;
  place-items: center;
}

.phone-shell {
  width: 280px;
  height: 540px;
  padding: 16px;
  border-radius: 42px;
  background: linear-gradient(180deg, #9cb49d, #6f8c72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 28px 62px rgba(149, 171, 150, 0.18);
}

.phone-screen {
  height: 100%;
  border-radius: 30px;
  padding: 28px 20px;
  background:
    radial-gradient(circle at top left, rgba(68, 108, 78, 0.18), transparent 30%),
    linear-gradient(180deg, #f1f5ee 0%, #dde8dc 100%);
  display: grid;
  grid-template-rows: 0.7fr 1fr 0.7fr;
  gap: 14px;
}

.phone-block {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.phone-block.large {
  display: grid;
  place-items: center;
  font-size: 28px;
  text-align: center;
}

.phone-block.small {
  color: #334155;
}

.speaker-shell {
  width: 360px;
  height: 360px;
  position: relative;
  display: grid;
  place-items: center;
}

.speaker-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.speaker-ring.outer {
  width: 360px;
  height: 360px;
}

.speaker-ring.inner {
  width: 250px;
  height: 250px;
}

.speaker-core {
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 40% 35%, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #1c2028 0%, #090a0f 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 30px 90px rgba(2, 6, 23, 0.4);
}

.home-clinical-band {
  padding: 50px 42px;
}

.home-band-header {
  margin-bottom: 28px;
}

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

.home-clinical-band .feature-item {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.home-clinical-band {
  margin-top: 40px;
}

.home-clinical-band[data-scroll-stage]::after {
  inset: auto -10% -6%;
  height: 28%;
  opacity: calc(0.14 + var(--stage-progress) * 0.32);
}

.home-band-actions {
  justify-content: center;
  margin-top: 26px;
}

.home-band-gap {
  margin-top: 34px;
  margin-bottom: 28px;
}

.home-band-gap[data-scroll-stage]::after {
  inset: auto -12% -9%;
  height: 34%;
}

.home-ending {
  padding-top: 8px;
}

.home-rhythm-grid,
.home-rhythm-pair,
.home-ending-shell {
  --stage-progress: 0;
}

.home-rhythm-grid {
  position: relative;
  padding: 10px 0 0;
}

.home-rhythm-grid::before,
.home-rhythm-pair::before {
  content: none;
}

.home-rhythm-grid .card,
.home-rhythm-pair .panel {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 100%;
  padding: 24px 0 0;
  overflow: visible;
  background: transparent;
  border: none;
  border-top: 1px solid rgba(23, 33, 24, 0.12);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-rhythm-grid .card::before,
.home-rhythm-pair .panel::before,
.home-ending-shell::before {
  content: none;
}

.home-rhythm-pair {
  position: relative;
  padding: 10px 0 8px;
}

.home-rhythm-pair .panel:nth-child(2) {
  margin-top: 0;
}

.dark-band[data-scroll-stage] {
  position: relative;
  overflow: visible;
}

.dark-band[data-scroll-stage]::after {
  content: none;
}

.dark-band[data-scroll-stage] .feature-item {
  background: rgba(255, 255, 255, calc(0.12 + var(--stage-progress) * 0.05));
  border-color: rgba(255, 255, 255, calc(0.16 + var(--stage-progress) * 0.08));
}

.home-ending-shell {
  position: relative;
  padding: 46px 42px;
  border-radius: 38px;
  background:
    radial-gradient(circle at top center, rgba(244, 247, 241, 0.74), transparent 26%),
    radial-gradient(circle at 18% 28%, rgba(74, 118, 84, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(240, 244, 237, 0.9) 0%, rgba(223, 231, 221, 0.96) 100%);
  border: 1px solid rgba(206, 218, 205, 0.9);
  box-shadow:
    0 calc(22px + var(--stage-progress) * 14px)
      calc(64px + var(--stage-progress) * 24px)
      rgba(46, 72, 52, calc(0.1 + var(--stage-progress) * 0.07));
  overflow: hidden;
}

.home-rhythm-grid .card h3 {
  font-size: 22px;
  font-weight: 620;
  color: #1d2a1f;
}

.home-rhythm-grid .card .section-copy,
.home-rhythm-pair .panel .section-copy,
.home-rhythm-pair .panel .feature-item {
  color: #68736a;
}

.home-brand-pair .panel {
  gap: 14px;
  padding-top: 28px;
}

.home-brand-pair .panel .eyebrow {
  color: #748477;
}

.home-brand-pair .display-title {
  font-size: clamp(30px, 4.3vw, 46px);
}

.home-clinical-band,
.home-system-band {
  color: #172118;
}

.home-story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: start;
}

.home-story-lead,
.home-system-head {
  max-width: 560px;
}

.home-story-lead .section-copy,
.home-system-head .section-copy {
  margin-top: 18px;
  max-width: 520px;
  color: #334238;
  font-weight: 500;
}

.home-story-stack {
  display: grid;
  gap: 14px;
}

.home-story-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(244, 247, 241, 0.94) 0%, rgba(229, 236, 227, 0.98) 100%);
  border: 1px solid rgba(209, 220, 208, 0.92);
  box-shadow: 0 20px 44px rgba(46, 72, 52, 0.06);
}

.home-story-index,
.home-system-step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(95, 143, 103, 0.08);
  color: #5f7d65;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-story-item strong,
.home-system-step strong {
  display: block;
  margin-bottom: 8px;
  color: #1c2a1f;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.03em;
}

.home-story-item p,
.home-system-step p {
  margin: 0;
  color: #647066;
  line-height: 1.78;
}

.home-system-band {
  margin-top: 42px;
  padding: 38px 38px 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(74, 118, 84, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(242, 246, 240, 0.92) 0%, rgba(226, 234, 224, 0.98) 100%);
  border: 1px solid rgba(209, 220, 208, 0.92);
  box-shadow: 0 26px 60px rgba(46, 72, 52, 0.08);
}

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

.home-system-step {
  position: relative;
  padding: 22px 22px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(209, 220, 208, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.home-system-step::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(95, 143, 103, 0), rgba(95, 143, 103, 0.58), rgba(95, 143, 103, 0));
}

.home-system-step-no {
  margin-bottom: 18px;
}

.home-system-band .home-band-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.home-immersive-section {
  padding-top: 4px;
}

.home-fullscreen-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.home-story-panel {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 52px 48px;
  border-radius: 44px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.home-story-panel.dark {
  background:
    radial-gradient(circle at 14% 20%, rgba(68, 108, 78, 0.2), transparent 24%),
    radial-gradient(circle at 86% 24%, rgba(159, 182, 145, 0.2), transparent 26%),
    radial-gradient(circle at 40% 90%, rgba(122, 151, 114, 0.1), transparent 20%),
    linear-gradient(180deg, #56725a 0%, #36523d 100%);
  color: rgba(255, 255, 255, 0.82);
}

.home-story-panel.light {
  background:
    radial-gradient(circle at top right, rgba(68, 108, 78, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(245, 248, 243, 0.95) 0%, rgba(228, 235, 226, 0.98) 100%);
  border: 1px solid rgba(209, 220, 208, 0.94);
}

.home-story-panel.dark .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.home-story-panel.dark .section-title,
.home-story-panel.dark .section-copy {
  color: inherit;
}

.story-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.story-stage,
.story-grid-stage {
  position: relative;
  min-height: 560px;
}

.story-stage.aurora {
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.story-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.82;
}

.story-orb.orb-a {
  inset: 12% auto auto 12%;
  width: 220px;
  height: 220px;
  background: rgba(68, 108, 78, 0.34);
}

.story-orb.orb-b {
  inset: 18% 10% auto auto;
  width: 250px;
  height: 250px;
  background: rgba(122, 151, 114, 0.28);
}

.story-orb.orb-c {
  inset: auto auto 10% 28%;
  width: 260px;
  height: 260px;
  background: rgba(173, 201, 156, 0.24);
}

.story-center-line {
  position: absolute;
  left: 50%;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.story-grid-stage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}

.story-grid-card {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

.story-grid-card.large {
  grid-row: 1 / span 2;
  min-height: 460px;
  background:
    radial-gradient(circle at top left, rgba(68, 108, 78, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(243, 247, 241, 0.94) 0%, rgba(226, 233, 224, 0.98) 100%);
}

.story-grid-card small,
.story-grid-card strong {
  display: block;
}

.story-grid-card small {
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.story-grid-card strong {
  margin-top: 10px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.home-immersive {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 52px 46px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 12% 20%, rgba(88, 132, 93, 0.2), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(152, 173, 118, 0.2), transparent 26%),
    radial-gradient(circle at 50% 78%, rgba(74, 118, 84, 0.1), transparent 20%),
    linear-gradient(180deg, #1a2a1e 0%, #0f1712 100%);
  box-shadow: var(--shadow-strong);
}

.home-immersive::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent);
  pointer-events: none;
}

.home-immersive-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.home-immersive-copy .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.home-immersive-copy .section-title {
  color: #fff;
}

.home-immersive-copy .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.home-immersive-stack {
  position: relative;
  z-index: 2;
  margin-top: 120px;
  min-height: 360px;
}

.immersive-card {
  position: absolute;
  width: min(390px, 100%);
  padding: 24px 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(24px);
}

.immersive-card small,
.immersive-card strong,
.immersive-card span {
  display: block;
}

.immersive-card small {
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.immersive-card strong {
  margin-top: 10px;
  color: #fff;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.immersive-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.immersive-card.top {
  top: 0;
  left: 2%;
}

.immersive-card.middle {
  top: 72px;
  left: 36%;
}

.immersive-card.bottom {
  top: 194px;
  left: 16%;
}

[data-parallax] {
  will-change: transform;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.device-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.device-ring.one {
  width: 440px;
  height: 440px;
}

.device-ring.two {
  width: 300px;
  height: 300px;
}

.device-core {
  width: 250px;
  height: 250px;
  border-radius: 999px;
  position: relative;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.2), transparent 18%),
    radial-gradient(circle at 62% 72%, rgba(74, 118, 84, 0.16), transparent 22%),
    linear-gradient(180deg, #213828, #0f1b14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -20px 45px rgba(6, 12, 8, 0.22),
    0 35px 100px rgba(25, 42, 29, 0.24);
}

.device-core::before {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: inherit;
  border: 1px solid rgba(216, 234, 194, 0.12);
  background: radial-gradient(circle, rgba(74, 118, 84, 0.16), transparent 64%);
  filter: blur(10px);
  opacity: 0.75;
  animation: coreHaloRotate 9s linear infinite;
}

.device-core::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.14);
  opacity: 0.5;
}

.floating-chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(242, 246, 239, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: var(--shadow);
}

.floating-chip {
  position: absolute;
}

.floating-chip.a {
  top: 14%;
  left: 8%;
}

.floating-chip.b {
  bottom: 14%;
  right: 6%;
}

@keyframes ambientGlowDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(12px, -10px, 0) scale(1.04);
  }
}

@keyframes visualHaloDrift {
  0% {
    transform: translate3d(-2%, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(3%, 5%, 0) scale(1.08);
  }
}

@keyframes ambientSweep {
  0%,
  100% {
    transform: translateX(-44%) rotate(-8deg);
    opacity: 0.25;
  }

  50% {
    transform: translateX(18%) rotate(-8deg);
    opacity: 0.82;
  }
}

@keyframes ringPulseSlow {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.96;
  }
}

@keyframes ringPulseFast {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.62;
  }

  50% {
    transform: scale(1.08);
    opacity: 0.88;
  }
}

@keyframes naturalHeroGlow {
  0% {
    transform: translate3d(-1%, 0, 0) scale(1);
    opacity: 0.86;
  }

  100% {
    transform: translate3d(2%, 4%, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes lightDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  100% {
    transform: translate3d(18px, -14px, 0) scale(1.08);
  }
}

@keyframes orbitGridFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(0, -10px, 0);
    opacity: 0.56;
  }
}

@keyframes coreFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes coreHaloRotate {
  0% {
    transform: rotate(0deg) scale(0.98);
    opacity: 0.56;
  }

  50% {
    transform: rotate(180deg) scale(1.04);
    opacity: 0.82;
  }

  100% {
    transform: rotate(360deg) scale(0.98);
    opacity: 0.56;
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes appCardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    box-shadow: 0 28px 68px rgba(16, 20, 15, 0.2);
  }

  50% {
    transform: translate3d(0, -10px, 0);
    box-shadow: 0 38px 90px rgba(16, 20, 15, 0.28);
  }
}

@keyframes appCardSheen {
  0%,
  100% {
    transform: translateX(-34%);
    opacity: 0.18;
  }

  50% {
    transform: translateX(28%);
    opacity: 0.62;
  }
}

@keyframes statusGlow {
  0%,
  100% {
    box-shadow: 0 14px 32px rgba(47, 107, 69, 0.08);
  }

  50% {
    box-shadow: 0 18px 44px rgba(47, 107, 69, 0.2);
  }
}

.section {
  padding: 36px 0 96px;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px;
}

.grid-2,
.grid-3,
.stats-grid,
.contact-grid,
.purchase-grid,
.admin-grid {
  display: grid;
  gap: 22px;
}

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

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

.card,
.panel {
  padding: 28px;
}

.card h3,
.panel h3,
.panel h2 {
  margin-top: 0;
  letter-spacing: -0.03em;
  line-height: 1.12;
  text-wrap: balance;
}

.metric {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.metric-label {
  color: var(--muted);
  margin-top: 10px;
}

.feature-list,
.timeline,
.legal-list {
  display: grid;
  gap: 16px;
}

.feature-item,
.timeline-item {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(17, 17, 17, 0.05);
  line-height: 1.72;
}

.feature-item strong,
.timeline-item strong {
  display: block;
  margin-bottom: 8px;
}

.dark-band {
  padding: 44px 42px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(135, 163, 128, 0.22), transparent 26%),
    radial-gradient(circle at 86% 16%, rgba(174, 194, 166, 0.16), transparent 20%),
    linear-gradient(180deg, #527259 0%, #375540 100%);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-strong);
}

.dark-band h2,
.dark-band h3,
.dark-band strong {
  color: #fff;
}

.home-rhythm-grid .card h3,
.home-rhythm-pair .display-title,
.home-clinical-band .section-title,
.home-system-band .section-title,
.home-ending-shell .section-title {
  line-height: 1.08;
  text-wrap: balance;
}

.home-clinical-band .eyebrow,
.home-system-band .eyebrow {
  background: transparent;
  border: none;
  color: #627066;
}

.home-clinical-band .section-title,
.home-system-band .section-title,
.home-clinical-band strong,
.home-system-band strong {
  color: #19251c;
}

.home-clinical-band .section-copy,
.home-system-band .section-copy,
.home-clinical-band p,
.home-system-band p {
  color: #5b685e;
}

.partners-hero {
  padding-bottom: 12px;
}

.partners-minimal-hero {
  padding-bottom: 28px;
}

.partners-minimal-head {
  max-width: 980px;
  margin-bottom: 42px;
}

.partners-stage-shell {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.partners-note-row {
  margin: 26px auto 0;
  width: min(900px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.partners-note-row span {
  display: block;
  padding-top: 18px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  color: #45524b;
  text-align: center;
  letter-spacing: -0.02em;
}

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

.partners-inline-card {
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(209, 220, 208, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.partners-inline-card strong,
.partners-inline-card span {
  display: block;
}

.partners-inline-card strong {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.partners-inline-card span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.partners-stage {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 16%, rgba(244, 247, 241, 0.82), transparent 24%),
    radial-gradient(circle at 18% 40%, rgba(122, 151, 114, 0.24), transparent 28%),
    radial-gradient(circle at 82% 32%, rgba(68, 108, 78, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(243, 247, 241, 0.94) 0%, rgba(226, 234, 224, 0.98) 100%);
}

.partners-stage-grid {
  position: absolute;
  inset: 54px;
  border-radius: 34px;
  border: 1px solid rgba(183, 200, 181, 0.72);
  background-image:
    linear-gradient(rgba(47, 107, 69, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 107, 69, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), transparent 92%);
  opacity: 0.75;
}

.partners-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(39, 68, 44, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 18px 50px rgba(52, 80, 58, 0.12);
}

.partners-orbit.orbit-a {
  width: 430px;
  height: 430px;
  animation: ringPulseSlow 8.6s ease-in-out infinite;
}

.partners-orbit.orbit-b {
  width: 290px;
  height: 290px;
  animation: ringPulseFast 6.2s ease-in-out infinite;
}

.partners-stage-panel {
  position: relative;
  z-index: 1;
  width: min(340px, 82%);
  padding: 28px 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(122, 151, 114, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(138, 160, 139, 0.94) 0%, rgba(113, 133, 114, 0.97) 100%);
  border: 1px solid rgba(243, 248, 236, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 24px 54px rgba(123, 145, 124, 0.2);
  color: rgba(245, 250, 241, 0.9);
}

.partners-stage-panel h3,
.partners-stage-panel p,
.partners-stage-panel .status-pill {
  position: relative;
  z-index: 1;
}

.partners-stage-panel h3 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: inherit;
}

.partners-stage-panel p {
  margin: 0;
  line-height: 1.8;
  color: inherit;
}

.partners-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(241, 245, 238, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.06);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  font-size: 14px;
  color: #1f2937;
}

.partners-chip.chip-a {
  top: 14%;
  left: 8%;
  animation: chipFloat 5.8s ease-in-out infinite;
}

.partners-chip.chip-b {
  top: 18%;
  right: 8%;
  animation: chipFloat 6.4s ease-in-out infinite -1.8s;
}

.partners-chip.chip-c {
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  animation: chipFloat 6.8s ease-in-out infinite -3s;
}

.partners-story-section {
  padding-top: 0;
}

.partners-minimal-section {
  padding-top: 20px;
}

.partners-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 40px;
}

.partners-split .section-title {
  margin-bottom: 0;
}

.partners-split .section-copy {
  max-width: 620px;
  margin: 0;
}

.partners-lines {
  display: grid;
}

.partners-line-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.partners-line-item:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.partners-line-item span {
  display: block;
  color: #5f8f67;
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partners-line-item h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.05em;
}

.partners-line-item p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

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

.partners-track-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(68, 108, 78, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(243, 247, 241, 0.94) 0%, rgba(227, 235, 225, 0.98) 100%);
  border: 1px solid rgba(209, 220, 208, 0.94);
  box-shadow: var(--shadow);
}

.partners-track-card::before,
.partners-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(90deg, transparent 22%, rgba(255, 255, 255, 0.08) 52%, transparent 80%);
  pointer-events: none;
}

.partners-track-index {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(47, 107, 69, 0.1);
  color: #355235;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.partners-track-card h3 {
  margin: 18px 0 12px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.partners-track-card .feature-list {
  margin-top: 18px;
}

.partners-track-card .feature-item {
  background: rgba(255, 255, 255, 0.62);
}

.partners-process-band {
  padding: 48px 42px;
}

.partners-process-minimal {
  padding: 56px 48px;
}

.partners-embedded-process {
  margin-top: 52px;
}

.partners-process-band .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
}

.partners-process-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.partners-process-head .section-title,
.partners-process-head .section-copy {
  color: inherit;
}

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

.partners-process-list {
  display: grid;
  margin-top: 12px;
}

.partners-process-line {
  display: grid;
  grid-template-columns: 80px 220px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.partners-process-line:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.partners-process-line span,
.partners-process-line strong,
.partners-process-line p {
  display: block;
}

.partners-process-line span {
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partners-process-line strong {
  font-size: 24px;
  letter-spacing: -0.04em;
  color: #fff;
}

.partners-process-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.partners-step {
  min-height: 210px;
  padding: 24px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.partners-step span,
.partners-step strong,
.partners-step p {
  display: block;
}

.partners-step span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.partners-step strong {
  margin-top: 18px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.partners-step p {
  margin: 12px 0 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.partners-cta {
  --stage-progress: 0;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  padding: 42px 40px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top center, rgba(244, 247, 241, 0.76), transparent 24%),
    radial-gradient(circle at 18% 28%, rgba(74, 118, 84, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(241, 245, 238, 0.92) 0%, rgba(224, 232, 222, 0.98) 100%);
  border: 1px solid rgba(209, 220, 208, 0.92);
  box-shadow:
    0 calc(22px + var(--stage-progress) * 14px)
      calc(64px + var(--stage-progress) * 24px)
      rgba(46, 72, 52, calc(0.1 + var(--stage-progress) * 0.07));
}

.partners-cta-copy {
  max-width: 640px;
}

.partners-minimal-cta-section {
  padding-top: 12px;
}

.partners-cta-simple {
  --stage-progress: 0;
  position: relative;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 30px 10px 10px;
}

.partners-cta-simple .section-title {
  margin-left: auto;
  margin-right: auto;
}

.partners-cta-simple .section-copy {
  max-width: 720px;
  margin: 0 auto;
}

.partners-cta-list {
  align-content: start;
}

.partners-cta .feature-item {
  background: rgba(255, 255, 255, 0.68);
}

.footer {
  padding: 8px 0 18px;
}

.footer-shell {
  padding: 14px 18px;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(245, 248, 242, 0.82);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-shell > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-meta {
  display: grid;
  gap: 5px;
  max-width: 420px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.footer-meta div {
  position: relative;
  padding-left: 12px;
}

.footer-meta div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(47, 107, 69, 0.5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 14px;
  color: #374151;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(241, 245, 238, 0.84);
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(239, 244, 236, 0.82);
}

.summary-box {
  padding: 20px;
  border-radius: 24px;
  background: rgba(17, 17, 17, 0.04);
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
}

.summary-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.summary-table tr:last-child td {
  border-bottom: 0;
}

.summary-table .total td {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.center-card,
.login-shell,
.success-shell {
  min-height: calc(100vh - 140px);
  display: grid;
  place-items: center;
}

.center-card .panel,
.login-shell .panel,
.success-shell .panel {
  width: min(720px, 100%);
  text-align: center;
}

.success-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.12);
  color: var(--success);
  font-size: 32px;
}

.admin-shell {
  padding: 36px 0 80px;
}

.admin-grid {
  grid-template-columns: 320px minmax(0, 1fr);
}

.admin-side,
.admin-main {
  padding: 24px;
}

.admin-nav {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.admin-nav a,
.admin-nav button {
  text-align: left;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.7);
}

.admin-nav .active {
  background: rgba(68, 108, 78, 0.12);
  border-color: rgba(155, 191, 154, 0.26);
}

.table-shell {
  padding: 18px;
  overflow: hidden;
}

.table-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.search-input {
  min-height: 48px;
  width: min(320px, 100%);
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(242, 246, 239, 0.88);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 15px 12px;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
  vertical-align: top;
}

.data-table th {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  font-size: 13px;
}

.tag.paid {
  background: rgba(34, 197, 94, 0.14);
  color: #166534;
}

.tag.pending {
  background: rgba(245, 158, 11, 0.14);
  color: #92400e;
}

.tag.failed,
.tag.cancelled {
  background: rgba(239, 68, 68, 0.14);
  color: #991b1b;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-btn {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(241, 245, 238, 0.84);
}

.hidden {
  display: none !important;
}

[data-parallax],
[data-hero-shift],
[data-hero-scale] {
  transform: translate3d(0, calc(var(--parallax-y, 0px) + var(--hero-y, 0px)), 0)
    scale(var(--hero-scale, 1));
}

.reveal {
  --reveal-y: 24px;
  opacity: 0;
  transform: translate3d(
      0,
      calc(var(--reveal-y) + var(--parallax-y, 0px) + var(--hero-y, 0px)),
      0
    )
    scale(var(--hero-scale, 1));
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  --reveal-y: 0px;
  opacity: 1;
}

@media (max-width: 980px) {
  .nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .storyboard-shell,
  .contact-grid,
  .purchase-grid,
  .admin-grid,
  .stats-grid,
  .field-grid,
  .home-metrics,
  .home-feature-grid,
  .home-cinema,
  .home-product-grid,
  .home-band-grid,
  .partners-inline-metrics,
  .partners-track,
  .partners-process-grid,
  .partners-cta,
  .partners-note-row,
  .partners-split,
  .home-story-panel,
  .story-grid-stage {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-shell,
  .hero-shell-home {
    padding: 12px 10px 6px;
    border-radius: 0;
  }

  .hero-header .section-intro,
  .page-top-header .section-intro,
  .home-subtitle {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .section-title {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  .home-kicker {
    font-size: clamp(40px, 12vw, 64px);
  }

  .device-hero-visual-frame {
    padding: 28px 0 8px;
  }

  

  

  

  .home-sound-device-core {
    inset: 52px 34px 28px;
  }

  .home-float-chip.chip-a,
  .home-float-chip.chip-b,
  .home-float-chip.chip-c {
    transform: none;
    left: 20px;
    right: auto;
  }

  .home-float-chip.chip-a {
    top: 16px;
  }

  .home-float-chip.chip-b {
    top: 72px;
  }

  .home-float-chip.chip-c {
    bottom: 16px;
  }

  

  .device-sound-field.field-a {
    height: 126px;
  }

  .device-sound-field.field-b {
    height: 94px;
  }

  .device-silhouette {
    width: 180px;
    height: 214px;
  }

  .device-silhouette-top {
    left: 22px;
    right: 22px;
    height: 30px;
  }

  .device-silhouette-core {
    inset: 64px 28px 26px;
    border-radius: 28px;
  }

  .home-story-panel,
  .home-immersive {
    padding: 26px 22px;
    border-radius: 30px;
  }

  .home-metric-card,
  .home-rhythm-grid .card,
  .home-rhythm-pair .panel,
  .dark-band,
  .home-ending-shell {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 28px;
  }

  .home-rhythm-pair .panel:nth-child(2) {
    margin-top: 0;
  }

  .home-story-split,
  .home-system-grid {
    grid-template-columns: 1fr;
  }

  .home-story-item {
    grid-template-columns: 40px minmax(0, 1fr);
    padding: 20px 18px;
    gap: 14px;
    border-radius: 22px;
  }

  .home-system-band {
    margin-top: 34px;
    padding: 30px 24px 26px;
    border-radius: 28px;
  }

  .home-system-step {
    padding: 20px 18px 22px;
    border-radius: 22px;
  }

  .home-metric-card strong,
  .home-rhythm-grid .card h3,
  .home-rhythm-pair .display-title,
  .dark-band .section-title,
  .home-ending-shell .section-title {
    line-height: 1.14;
  }

  .storyboard-card {
    padding: 24px 22px;
    border-radius: 26px;
  }

  .partners-track-card,
  .partners-inline-card,
  .partners-step {
    padding: 22px;
    border-radius: 26px;
  }

  .partners-line-item h3 {
    font-size: 24px;
  }

  .partners-stage {
    min-height: 420px;
    border-radius: 28px;
  }

  .partners-stage-grid {
    inset: 24px;
    border-radius: 24px;
  }

  .partners-orbit.orbit-a {
    width: 300px;
    height: 300px;
  }

  .partners-orbit.orbit-b {
    width: 210px;
    height: 210px;
  }

  .partners-stage-panel {
    width: min(100%, 300px);
    padding: 26px 22px;
    border-radius: 26px;
  }

  .partners-process-minimal {
    padding: 30px 22px;
  }

  .partners-embedded-process {
    margin-top: 34px;
  }

  .home-ending-shell {
    padding: 26px 20px;
    border-radius: 26px;
  }

  .home-band-gap {
    margin-bottom: 8px;
  }

  .story-stage.aurora {
    min-height: 360px;
    border-radius: 24px;
  }

  .story-grid-card strong {
    font-size: 24px;
  }

  .home-marquee-track {
    gap: 18px;
    padding: 14px 18px;
  }
}


/* === Home Frequency Field Visual (Precision Science / Frequency Matching) === */
.home-freq-field {
  position: relative;
  width: 100%;
  max-width: 560px;
  height: 380px;
  margin: 0 auto;
  border-radius: 32px;
  background: radial-gradient(ellipse at 50% 45%, rgba(232, 244, 226, 0.9) 0%, rgba(248, 252, 246, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.freq-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.freq-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(47, 107, 69, 0.22);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ring-1 {
  width: 100px;
  height: 100px;
  border-color: rgba(47, 107, 69, 0.5);
  animation: ringRotate1 12s linear infinite;
}

.ring-2 {
  width: 180px;
  height: 180px;
  border-color: rgba(47, 107, 69, 0.35);
  animation: ringRotate2 18s linear infinite reverse;
}

.ring-3 {
  width: 270px;
  height: 270px;
  border-color: rgba(47, 107, 69, 0.22);
  animation: ringRotate1 24s linear infinite;
}

.ring-4 {
  width: 370px;
  height: 370px;
  border-color: rgba(47, 107, 69, 0.14);
  animation: ringRotate2 30s linear infinite reverse;
}

.freq-ring::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(122, 151, 114, 0.92);
  box-shadow: 0 0 8px rgba(122, 151, 114, 0.48);
  transform: translateX(-50%);
}

.freq-core {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #86a486, #2f6b45);
  box-shadow:
    0 0 0 4px rgba(126, 173, 132, 0.12),
    0 0 24px rgba(122, 151, 114, 0.42),
    0 0 48px rgba(126, 173, 132, 0.18);
  animation: coreGlow 4s ease-in-out infinite alternate;
  z-index: 5;
}

.freq-core::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  opacity: 0.9;
}

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

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(47, 107, 69, 0.7);
}

.p1 { top: 15%; left: 12%; animation: particleFloat1 7s ease-in-out infinite; }
.p2 { top: 22%; right: 16%; animation: particleFloat2 9s ease-in-out infinite -3s; }
.p3 { bottom: 20%; left: 18%; animation: particleFloat3 8s ease-in-out infinite -1s; }
.p4 { bottom: 28%; right: 12%; animation: particleFloat4 11s ease-in-out infinite -5s; }

@keyframes ringRotate1 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ringRotate2 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes coreGlow {
  0%   { box-shadow: 0 0 0 4px rgba(47, 107, 69, 0.15), 0 0 24px rgba(74, 118, 84, 0.5), 0 0 48px rgba(47, 107, 69, 0.2); }
  100% { box-shadow: 0 0 0 6px rgba(47, 107, 69, 0.08), 0 0 40px rgba(74, 118, 84, 0.7), 0 0 80px rgba(47, 107, 69, 0.3); }
}

@keyframes particleFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%       { transform: translate(8px, -14px) scale(1.3); opacity: 1; }
}
@keyframes particleFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%       { transform: translate(-10px, -12px) scale(1.4); opacity: 1; }
}
@keyframes particleFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%       { transform: translate(6px, -10px) scale(1.2); opacity: 0.9; }
}
@keyframes particleFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  50%       { transform: translate(-8px, -16px) scale(1.5); opacity: 1; }
}
/* === Device Spatial Visual (Crisp, Concentric, Hardware Playback) === */
.device-hero-visual-section {
  padding-top: 0;
  padding-bottom: 72px;
}

.device-spatial-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 440px;
  margin: 0 auto;
  border-radius: 40px;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hardware-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hardware-device {
  position: relative;
  z-index: 10;
  width: 220px;
  height: 220px;
  border-radius: 54px;
  background: linear-gradient(145deg, #2f4336, #1c2a21);
  box-shadow: 
    -8px -8px 24px rgba(255, 255, 255, 0.4),
    16px 16px 40px rgba(22, 32, 25, 0.2),
    inset 1px 1px 2px rgba(255, 255, 255, 0.15),
    inset -1px -1px 4px rgba(0, 0, 0, 0.4);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hardware-sheen {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.08) 55%,
    transparent 60%
  );
  animation: sheenSweep 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes sheenSweep {
  0% { transform: translateX(-100%) translateY(-100%); }
  30%, 100% { transform: translateX(100%) translateY(100%); }
}

.hardware-grille {
  height: 90px;
  border-radius: 28px;
  background-image: radial-gradient(rgba(12, 18, 14, 0.6) 35%, transparent 40%);
  background-size: 10px 10px;
  background-position: center;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hardware-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 8px;
}

.hardware-dial {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #26382c, #1a251e);
  box-shadow: 
    4px 4px 10px rgba(0, 0, 0, 0.3),
    -2px -2px 8px rgba(255, 255, 255, 0.06),
    inset 1px 1px 2px rgba(255, 255, 255, 0.12),
    inset -1px -1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  animation: dialTurn 12s ease-in-out infinite alternate;
}

.dial-indicator {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 2px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
}

@keyframes dialTurn {
  0% { transform: rotate(-30deg); }
  100% { transform: rotate(120deg); }
}

.hardware-brand {
  width: 32px;
  height: 6px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
}

.acoustic-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(47, 107, 69, 0.15);
  box-shadow: 0 4px 12px rgba(47, 107, 69, 0.03);
  pointer-events: none;
  animation: mechanicalRipple 6s linear infinite;
  opacity: 0;
}

.ripple-1 { animation-delay: 0s; }
.ripple-2 { animation-delay: 2s; }
.ripple-3 { animation-delay: 4s; }

@keyframes mechanicalRipple {
  0% { width: 200px; height: 200px; opacity: 1; border-width: 2px; }
  100% { width: 600px; height: 600px; opacity: 0; border-width: 1px; }
}


@media (max-width: 768px) {
  .device-spatial-visual {
    border-radius: 30px;
  }
  .hardware-device {
    width: 160px;
    height: 160px;
    border-radius: 36px;
    padding: 16px;
  }
  .hardware-grille {
    height: 60px;
    border-radius: 20px;
  }
  .hardware-dial {
    width: 36px;
    height: 36px;
  }
  .hardware-brand {
    width: 24px;
    margin-bottom: 15px;
  }
}


@media (max-width: 768px) {
  .home-freq-field {
    height: 300px;
    border-radius: 24px;
  }
  .freq-ring { display: none; }
  .freq-ring.ring-1,
  .freq-ring.ring-2 { display: block; }
  .ring-1 { width: 80px; height: 80px; }
  .ring-2 { width: 140px; height: 140px; }
  .freq-core {
    width: 48px;
    height: 48px;
  }
  .particle { display: none; }
  .particle.p1,
  .particle.p2 { display: block; }
}

.aura-tag {
  position: absolute;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(244, 247, 241, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 500;
  color: #1f2937;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 1);
  letter-spacing: 0.5px;
  z-index: 20;
  white-space: nowrap;
}

.tag-freq {
  top: 18%;
  left: 8%;
  animation: floatTag 5s ease-in-out infinite;
}

.tag-loud {
  bottom: 22%;
  right: 8%;
  animation: floatTag 6s ease-in-out infinite -2s;
}

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* === Editorial Site Redesign === */
:root {
  --bg: #f5f2ed;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #17221c;
  --muted: #5e6a63;
  --line: rgba(23, 34, 28, 0.1);
  --brand: #184d39;
  --brand-deep: #123d2e;
  --brand-soft: rgba(24, 77, 57, 0.1);
  --shadow: 0 24px 70px rgba(20, 34, 27, 0.08);
  --shadow-strong: 0 36px 92px rgba(20, 34, 27, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

body {
  background:
    radial-gradient(circle at top right, rgba(24, 77, 57, 0.08), transparent 18%),
    radial-gradient(circle at 10% 20%, rgba(117, 144, 127, 0.08), transparent 22%),
    linear-gradient(180deg, #f7f4ef 0%, #f1ede7 100%);
  color: var(--text);
}

.container {
  width: min(1220px, calc(100% - 44px));
}

.site-header {
  background: rgba(248, 245, 240, 0.88);
  border-bottom: 1px solid rgba(23, 34, 28, 0.06);
  backdrop-filter: blur(18px);
}

.nav {
  gap: 26px;
}

.btn {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(180deg, #1d5a43 0%, #123d2e 100%);
  box-shadow: 0 14px 30px rgba(18, 61, 46, 0.18);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(23, 34, 28, 0.1);
}

.hero {
  padding: 88px 0 24px;
}

.section {
  padding: 52px 0;
}

.section-title,
.display-title,
.hero-title {
  color: #1a2820;
  letter-spacing: -0.055em;
}

.section-copy,
.section-intro,
.muted {
  color: var(--muted);
}

.page-section {
  padding: 42px 0 54px;
}

.eyebrow-pill,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(227, 236, 229, 0.88);
  color: #5f7b69;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-hero {
  padding-top: 74px;
}

.editorial-grid,
.split-spotlight,
.purchase-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 44px;
  align-items: center;
}

.editorial-copy {
  max-width: 560px;
}

.editorial-copy .section-title,
.editorial-copy .hero-title,
.section-header.section-header-left .section-title {
  margin-top: 18px;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.02;
}

.editorial-copy .section-intro,
.editorial-copy .section-copy {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.86;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.editorial-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  color: #617169;
  font-size: 13px;
}

.editorial-micro span {
  position: relative;
  padding-left: 14px;
}

.editorial-micro span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7ca48a;
  transform: translateY(-50%);
}

.editorial-visual {
  position: relative;
}

.visual-card {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(244, 245, 241, 0.94), rgba(225, 231, 225, 0.92));
  border: 1px solid rgba(23, 34, 28, 0.06);
  box-shadow: var(--shadow-strong);
}

.visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.44), transparent 44%);
  pointer-events: none;
}

.portrait-visual {
  background:
    radial-gradient(circle at 82% 18%, rgba(18, 61, 46, 0.22), transparent 18%),
    linear-gradient(180deg, #ebece6 0%, #d8ddd5 100%);
}

.portrait-visual .portrait-bust {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 56%;
  height: 88%;
  transform: translateX(-50%);
  border-radius: 180px 180px 24px 24px;
  background:
    radial-gradient(circle at 50% 18%, #2a251f 0%, #18130f 18%, transparent 19%),
    radial-gradient(circle at 50% 28%, #ddbeaa 0%, #cfa993 24%, transparent 25%),
    linear-gradient(180deg, #ddc4b5 0%, #b48972 44%, #d9b99f 45%, #ebd3c2 100%);
  filter: drop-shadow(0 28px 44px rgba(70, 55, 46, 0.2));
}

.portrait-visual .portrait-mask {
  position: absolute;
  top: 24%;
  left: 50%;
  width: 26%;
  height: 34%;
  transform: translateX(-50%);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(205, 177, 155, 0.96), rgba(184, 151, 128, 0.96));
  box-shadow: 0 24px 38px rgba(112, 83, 63, 0.18);
}

.portrait-visual .visual-glow {
  position: absolute;
  inset: 12% 12% auto auto;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0));
  filter: blur(14px);
}

.phone-visual {
  background:
    radial-gradient(circle at 24% 12%, rgba(149, 193, 175, 0.26), transparent 22%),
    linear-gradient(135deg, #dfe5e0 0%, #bdcec3 100%);
}

.phone-frame {
  position: absolute;
  right: 14%;
  top: 9%;
  width: 42%;
  height: 78%;
  border-radius: 34px;
  background: linear-gradient(145deg, #1b201d, #0d120f);
  transform: rotate(18deg);
  box-shadow: 0 32px 50px rgba(16, 25, 20, 0.28);
}

.phone-frame::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.22), transparent 16%),
    linear-gradient(180deg, #2da57e 0%, #164f3a 100%);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 24%),
    radial-gradient(circle at 50% 60%, rgba(94, 243, 195, 0.28), transparent 30%);
  opacity: 0.9;
}

.phone-wave {
  position: absolute;
  inset: 22% 26%;
  border-radius: 999px;
  border: 1px solid rgba(214, 255, 240, 0.62);
  box-shadow: inset 0 0 0 1px rgba(214, 255, 240, 0.14);
}

.phone-wave::before,
.phone-wave::after {
  content: "";
  position: absolute;
  inset: 16% 12%;
  border-radius: inherit;
  border: 1px solid rgba(214, 255, 240, 0.42);
}

.phone-wave::after {
  inset: 32% 20%;
}

.device-visual-card {
  background:
    radial-gradient(circle at 20% 20%, rgba(112, 156, 133, 0.18), transparent 18%),
    linear-gradient(180deg, #e6ece7 0%, #ced8d0 100%);
}

.device-object {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%);
  border-radius: 58px;
  background: linear-gradient(145deg, #324539, #1a281f);
  box-shadow:
    -10px -10px 30px rgba(255, 255, 255, 0.42),
    24px 26px 50px rgba(24, 35, 29, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -8px 22px rgba(0, 0, 0, 0.28);
}

.device-object::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 38px;
  background-image: radial-gradient(rgba(7, 12, 10, 0.58) 32%, transparent 34%);
  background-size: 10px 10px;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.device-object::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: 34px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #31453a, #18231c);
  box-shadow:
    6px 8px 16px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.device-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(24, 77, 57, 0.16);
  transform: translate(-50%, -50%);
}

.device-ripple.r1 {
  width: 320px;
  height: 320px;
}

.device-ripple.r2 {
  width: 430px;
  height: 430px;
}

.device-ripple.r3 {
  width: 540px;
  height: 540px;
}

.clinic-visual {
  background:
    radial-gradient(circle at 70% 22%, rgba(24, 77, 57, 0.16), transparent 24%),
    linear-gradient(180deg, #dce5df 0%, #c8d4cc 100%);
}

.clinic-screen {
  position: absolute;
  inset: 14% 16% 18%;
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 40%, rgba(109, 225, 192, 0.18), transparent 20%),
    linear-gradient(180deg, #6e8f80 0%, #3f6152 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.clinic-screen::before {
  content: "";
  position: absolute;
  inset: 16% 10%;
  border-radius: 18px;
  border: 1px solid rgba(210, 240, 228, 0.3);
}

.clinic-doctor {
  position: absolute;
  left: 44%;
  bottom: 12%;
  width: 13%;
  height: 40%;
  border-radius: 40px 40px 10px 10px;
  background:
    radial-gradient(circle at 50% 13%, #f0dbc9 0%, #e5c8b0 18%, transparent 19%),
    linear-gradient(180deg, #fbfbfb 22%, #dfe4df 23%, #eef2ef 100%);
  box-shadow: 0 18px 30px rgba(65, 78, 72, 0.12);
}

.team-visual {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, 0.44), transparent 24%),
    linear-gradient(180deg, #dce4de 0%, #c5d1c8 100%);
}

.team-visual .table-shape {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 16%;
  height: 26%;
  border-radius: 26px;
  background: linear-gradient(180deg, #9c825e, #7b6244);
  box-shadow: 0 16px 28px rgba(67, 54, 39, 0.18);
}

.team-visual .person {
  position: absolute;
  bottom: 25%;
  width: 18%;
  height: 36%;
  border-radius: 40px 40px 12px 12px;
  background: linear-gradient(180deg, #3f7d64 0%, #2c5d48 100%);
}

.team-visual .person.p1 { left: 14%; }
.team-visual .person.p2 { left: 34%; height: 34%; background: linear-gradient(180deg, #4b6e5d, #335344); }
.team-visual .person.p3 { right: 14%; }

.support-visual {
  background:
    radial-gradient(circle at 76% 20%, rgba(24, 77, 57, 0.18), transparent 18%),
    linear-gradient(180deg, #edf0ea 0%, #dce3da 100%);
}

.support-card-stack {
  position: absolute;
  inset: 16%;
  display: grid;
  gap: 16px;
}

.support-card-stack span {
  display: block;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 34, 28, 0.06);
  box-shadow: 0 16px 28px rgba(20, 34, 27, 0.08);
}

.support-card-stack span:nth-child(1) { height: 32%; }
.support-card-stack span:nth-child(2) { height: 22%; width: 72%; margin-left: auto; }
.support-card-stack span:nth-child(3) { height: 26%; width: 84%; }

.product-visual {
  background:
    radial-gradient(circle at 68% 22%, rgba(24, 77, 57, 0.18), transparent 20%),
    linear-gradient(180deg, #e7ece8 0%, #ced8d1 100%);
}

.product-stand {
  position: absolute;
  inset: auto 14% 12%;
  height: 24px;
  border-radius: 999px;
  background: rgba(30, 44, 36, 0.12);
  filter: blur(6px);
}

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

.feature-shelf.compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-block,
.detail-card,
.contact-card,
.quote-panel,
.deep-band,
.process-card,
.order-shell,
.info-shell {
  border-radius: 28px;
  border: 1px solid rgba(23, 34, 28, 0.06);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.feature-block {
  min-height: 220px;
  padding: 28px;
}

.feature-block.featured {
  background: linear-gradient(180deg, #184d39 0%, #123d2e 100%);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 54px rgba(18, 61, 46, 0.22);
}

.feature-block.featured p,
.feature-block.featured h3,
.feature-block.featured small {
  color: inherit;
}

.feature-block small,
.process-card small {
  display: inline-block;
  margin-bottom: 20px;
  color: #7a897f;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature-block h3,
.detail-card h3,
.contact-card h3,
.process-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.feature-block p,
.detail-card p,
.contact-card p,
.process-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.84;
}

.section-header-left {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-header-left .section-intro {
  margin-top: 18px;
  max-width: 660px;
}

.split-spotlight .detail-card,
.split-spotlight .story-points,
.split-spotlight .deep-band {
  height: 100%;
}

.detail-card,
.contact-card,
.process-card,
.order-shell,
.info-shell {
  padding: 32px;
}

.story-points {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.story-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 34, 28, 0.08);
}

.story-point:first-child {
  padding-top: 0;
  border-top: none;
}

.story-point-no {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(24, 77, 57, 0.08);
  color: #1a5c43;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.story-point strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.story-point p {
  margin: 8px 0 0;
}

.deep-band {
  padding: 40px;
  background:
    radial-gradient(circle at 0% 50%, rgba(72, 127, 102, 0.18), transparent 26%),
    linear-gradient(135deg, #184d39 0%, #123d2e 100%);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 30px 70px rgba(18, 61, 46, 0.24);
}

.deep-band .section-title,
.deep-band .section-copy,
.deep-band .section-intro,
.deep-band .eyebrow,
.deep-band .eyebrow-pill,
.deep-band p,
.deep-band h2,
.deep-band h3,
.deep-band strong,
.deep-band small {
  color: inherit;
}

.deep-band .eyebrow,
.deep-band .eyebrow-pill {
  background: rgba(255, 255, 255, 0.1);
}

.quote-panel {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 54px;
  text-align: center;
  background: rgba(255, 255, 255, 0.54);
}

.quote-mark {
  color: rgba(24, 77, 57, 0.34);
  font-size: 42px;
  font-weight: 700;
}

.quote-text {
  margin: 18px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #223028;
}

.quote-meta {
  margin-top: 18px;
  color: #748078;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-banner {
  padding: 54px 58px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 50%, rgba(104, 156, 131, 0.2), transparent 20%),
    linear-gradient(120deg, #184d39 0%, #123d2e 100%);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 34px 80px rgba(18, 61, 46, 0.22);
}

.cta-banner .section-title,
.cta-banner .section-intro,
.cta-banner .eyebrow,
.cta-banner .eyebrow-pill {
  color: inherit;
}

.cta-banner .eyebrow,
.cta-banner .eyebrow-pill {
  background: rgba(255, 255, 255, 0.1);
}

.cta-banner .button-row {
  margin-top: 26px;
}

.metrics-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.metric-chip {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: 14px;
}

.contact-grid-cards,
.process-grid,
.info-grid,
.purchase-grid-refined {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list strong,
.spec-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #233229;
}

.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.support-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24, 77, 57, 0.08);
  color: #255a44;
  font-size: 13px;
}

.form-shell,
.order-shell {
  background: rgba(255, 255, 255, 0.82);
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #2b3931;
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(23, 34, 28, 0.1);
  background: rgba(249, 247, 243, 0.94);
  color: var(--text);
}

.field textarea {
  min-height: 122px;
  resize: vertical;
}

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

.summary-box {
  padding: 24px;
  border-radius: 24px;
  background: rgba(247, 245, 240, 0.92);
  border: 1px solid rgba(23, 34, 28, 0.06);
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
}

.summary-table td {
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 34, 28, 0.08);
  color: #57655c;
}

.summary-table tr:last-child td,
.summary-table tr.total td {
  border-bottom: none;
}

.summary-table tr.total td {
  padding-top: 18px;
  font-size: 18px;
  font-weight: 700;
  color: #17221c;
}

.metric {
  color: #123d2e;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.metric-label {
  margin-top: 8px;
  color: #5d6a62;
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(247, 245, 240, 0.9);
  border: 1px solid rgba(23, 34, 28, 0.08);
}

.footer {
  margin-top: 34px;
  padding: 42px 0 28px;
  border-top: 1px solid rgba(23, 34, 28, 0.06);
  background: rgba(245, 241, 235, 0.72);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 26px;
  align-items: end;
}

.footer-meta {
  display: grid;
  gap: 6px;
  color: #6a756f;
  font-size: 13px;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  color: #506057;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 1024px) {
  .editorial-grid,
  .split-spotlight,
  .purchase-layout,
  .contact-layout,
  .contact-grid-cards,
  .purchase-grid-refined,
  .process-grid.three,
  .info-grid.three,
  .feature-shelf.compact {
    grid-template-columns: 1fr;
  }

  .feature-shelf,
  .info-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-copy {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 28px, 1220px);
  }

  .hero,
  .section,
  .page-section {
    padding: 34px 0;
  }

  .header-bar {
    height: 72px;
  }

  .editorial-copy .section-title,
  .editorial-copy .hero-title,
  .section-header-left .section-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .feature-shelf,
  .info-grid,
  .process-grid,
  .feature-shelf.compact,
  .field-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 360px;
  }

  .phone-frame {
    width: 48%;
    height: 74%;
    right: 18%;
  }

  .device-object {
    width: 176px;
    height: 176px;
    border-radius: 42px;
  }

  .device-ripple.r1 { width: 240px; height: 240px; }
  .device-ripple.r2 { width: 310px; height: 310px; }
  .device-ripple.r3 { width: 380px; height: 380px; }

  .cta-banner,
  .deep-band,
  .quote-panel,
  .detail-card,
  .contact-card,
  .process-card,
  .order-shell,
  .info-shell,
  .feature-block {
    padding: 24px;
    border-radius: 24px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* === Clean Reference Redesign === */
:root {
  --site-bg: #f7f5f1;
  --site-surface: #ffffff;
  --site-surface-soft: #f2f0eb;
  --site-surface-mint: #eaf4ed;
  --site-text: #1d2721;
  --site-muted: #667067;
  --site-line: rgba(29, 39, 33, 0.1);
  --site-brand: #184b36;
  --site-brand-strong: #123828;
  --site-shadow: 0 20px 52px rgba(29, 39, 33, 0.08);
  --site-radius-xl: 28px;
  --site-radius-lg: 22px;
  --site-radius-md: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--site-bg);
  color: var(--site-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    "PingFang SC", "Microsoft YaHei UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

.container {
  width: min(1160px, calc(100% - 40px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  min-height: 54px;
  background: rgba(247, 245, 241, 0.85);
  border-bottom: 1px solid rgba(29, 39, 33, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.nav-shell {
  min-height: 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 32px;
  color: #16211b;
  text-decoration: none;
  justify-self: start;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-brand-icon {
  display: block;
  width: auto;
  height: 32px;
  object-fit: contain;
  flex: 0 0 auto;
}

.site-brand-copy {
  display: grid;
  gap: 1px;
}

.site-brand-name {
  font-size: 16px;
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1;
  color: #16211b;
}

.site-brand-sub {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: #7d857f;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 32px;
  white-space: nowrap;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 510;
  letter-spacing: -0.02em;
  line-height: 1;
  color: rgba(29, 39, 33, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-nav a.active {
  color: #16211b;
  font-weight: 560;
}

.site-nav a:hover {
  color: #16211b;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
}

/* 创建一个透明的伪元素，作为下拉菜单的“悬停桥梁”，防止鼠标离开文字往下移动时菜单消失 */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px; /* 填补文字到下拉菜单之间的空隙 */
  display: none;
}

.nav-dropdown:hover::after {
  display: block;
}

.nav-dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 4px); /* 距离稍微拉近一点 */
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7); /* 更高级的半透明磨砂质感 */
  min-width: 276px;
  box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.06), 0px 0px 1px rgba(0, 0, 0, 0.1) inset; /* 多层柔和阴影与内发光 */
  border-radius: 12px; /* 更圆润的设计 */
  padding: 6px; /* 整体留白 */
  z-index: 100;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6); /* 玻璃边缘高光效果 */
}

.nav-dropdown-content a {
  display: flex !important;
  padding: 8px 16px;
  color: rgba(29, 39, 33, 0.8) !important;
  font-size: 12px !important;
  font-weight: 510 !important;
  justify-content: flex-start;
  border-radius: 8px; /* 按键自身的圆角 */
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  white-space: nowrap;
}

.nav-dropdown-content a:hover {
  background-color: rgba(0, 0, 0, 0.05); /* 更优雅的悬浮底色 */
  color: #16211b !important;
}

.nav-dropdown:hover .nav-dropdown-content {
  display: block;
}

.site-header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 16px;
  min-width: 0;
}

.site-header-cta .btn {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 0 14px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

.site-header-cta .btn-primary {
  background: #1d1d1f;
  color: #fff;
  box-shadow: none;
}

.site-header-cta .btn-primary:hover {
  background: #000;
}

.site-header-cta .btn-secondary {
  border: none;
  background: transparent;
  padding: 0;
  min-height: auto;
  color: rgba(29, 39, 33, 0.6);
}

.site-header-cta .btn-secondary:hover {
  background: transparent;
  color: #1d1d1f;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  color: #fff;
  background: #16211b;
  box-shadow: 0 4px 12px rgba(22, 33, 27, 0.15);
}

.btn-primary:hover {
  background: #000;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  color: #16211b;
  background: transparent;
  border-color: rgba(22, 33, 27, 0.12);
}

.btn-secondary:hover {
  background: rgba(22, 33, 27, 0.04);
}

.mobile-panel {
  background: rgba(17, 24, 20, 0.18);
}

.menu-toggle {
  border-color: var(--site-line);
  background: transparent;
}

.site-mobile-sheet {
  width: min(420px, 100%);
  max-height: calc(100vh - 36px);
  max-height: calc(100dvh - 36px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: #fbfaf7;
  border: 1px solid rgba(29, 39, 33, 0.08);
  border-radius: 30px;
  padding: 20px;
  box-shadow: var(--site-shadow);
}

.site-mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-brand-mobile .site-brand-sub {
  display: none;
}

.site-mobile-nav {
  display: grid;
  gap: 10px;
  margin: 22px 0 16px;
}

.site-mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 18px;
  background: #f1efea;
  color: var(--site-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "PingFang SC",
    "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 520;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-mobile-nav a.active {
  background: #163c2d;
  color: #fff;
}

.site-mobile-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.site-mobile-actions .btn {
  width: 100%;
}

.hero,
.section {
  padding: 72px 0;
}

.hero-home {
  padding: 76px 0 56px;
}

.hero-home-grid,
.page-hero-grid,
.content-split,
.contact-layout,
.purchase-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 48px;
  align-items: center;
}

.hero-copy,
.page-copy {
  max-width: 560px;
}

.hero-tag,
.section-kicker,
.info-kicker,
.eyebrow,
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(227, 238, 230, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title,
.section-title,
.display-title {
  margin: 18px 0 0;
  color: #1a241f;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.02;
  background: linear-gradient(135deg, #1d1d1f 0%, #434345 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title {
  font-size: clamp(42px, 6vw, 72px);
}

.section-title {
  font-size: clamp(34px, 4.5vw, 58px);
}

.display-title {
  font-size: clamp(28px, 3vw, 42px);
}

.section-copy,
.section-intro,
.muted,
.hero-note {
  color: var(--muted);
  font-weight: 400;
}

.hero-copy .section-copy,
.page-copy .section-intro {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.85;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats,
.micro-list,
.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 24px;
}

.hero-stats span,
.micro-list span,
.support-tags span,
.metric-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.section-head,
.section-header,
.section-header-left {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head .section-intro,
.section-header .section-intro,
.section-header-left .section-intro {
  max-width: 660px;
  margin-top: 16px;
}

.service-card,
.detail-panel,
.audience-card,
.quote-card,
.plan-band,
.cta-card,
.contact-card,
.order-shell,
.info-shell,
.panel,
.legal-card,
.success-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02), inset 0 1px 2px rgba(255, 255, 255, 1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.detail-panel:hover,
.audience-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04), inset 0 1px 2px rgba(255, 255, 255, 1);
}

.visual-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.section img[style*="border-radius"] {
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.visual-panel::before,
.visual-panel::after {
  display: none !important;
}

/* Homepage Clinical Visualization */
.visual-agent.agent-photo-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 0;
}

.visual-agent .agent-photo {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
}

.visual-agent.app-hero-panel {
  padding: 6px 0 0;
}

.app-hero-shot-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 760px;
  padding: 0;
}

.app-hero-shot-frame {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: 34px;
  background: transparent;
  box-shadow: 0 6px 14px rgba(18, 24, 28, 0.03);
}

.app-hero-shot {
  max-height: 760px !important;
  width: auto;
  height: auto;
  display: block;
  border-radius: 34px;
  mix-blend-mode: normal !important;
  box-shadow: none !important;
  filter: none;
}

.about-hero-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.about-hero-visual {
  min-height: 440px;
  padding: 10px 0 10px 20px;
}

.about-hero-art {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 32px;
  background: #e8e8e8;
  box-shadow: 0 24px 72px rgba(28, 42, 31, 0.12);
}

.about-hero-art-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transform-origin: center;
}

.motion-ui .about-hero-art .about-hero-art-image.ui-media,
.motion-ui .about-hero-art .about-hero-art-image.ui-media.ui-visible {
  clip-path: none;
  opacity: 1;
  transform: scale(1.08) !important;
}

.about-signal-card {
  border-radius: 32px;
  box-shadow: 0 24px 72px rgba(28, 42, 31, 0.12);
}

.about-signal-card-primary {
  position: relative;
  min-height: 340px;
  padding: 24px 26px 22px;
  background:
    radial-gradient(circle at top right, rgba(112, 142, 114, 0.3), transparent 30%),
    linear-gradient(180deg, #3a5040 0%, #26332b 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-signal-top,
.about-signal-footer {
  position: relative;
  z-index: 1;
}

.about-signal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.about-signal-top span {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-signal-top strong {
  color: #fff;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.about-signal-graph {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 12px;
  height: 180px;
  margin-top: 26px;
  padding: 16px 14px 12px;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 100% 44px, 44px 100%, auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-signal-graph .bar {
  flex: 1 1 0;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.about-signal-graph .bar.active {
  background: linear-gradient(180deg, #dfe8d5 0%, #8ba489 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 0 0 6px rgba(151, 175, 146, 0.16);
}

.about-signal-graph .b1 { height: 34%; }
.about-signal-graph .b2 { height: 50%; }
.about-signal-graph .b3 { height: 88%; }
.about-signal-graph .b4 { height: 44%; }
.about-signal-graph .b5 { height: 28%; }
.about-signal-graph .b6 { height: 20%; }
.about-signal-graph .b7 { height: 14%; }

.about-signal-footer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.about-signal-footer div {
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-signal-footer small {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-signal-footer strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

/* Home Customization Illustration */
.visual-custom.patient-photo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 24px;
  align-items: center;
  padding: 36px;
}

.visual-custom .patient-photo {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.06);
}

.visual-custom .patient-symptom-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 0 20px;
}

.visual-custom .patient-symptom-label {
  display: inline-flex;
  align-self: flex-start;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.visual-custom .patient-symptom-card strong {
  color: #1d1d1f;
  font-size: 32px;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.visual-custom .patient-symptom-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
}

.visual-custom .patient-symptom-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #86868b;
  font-size: 16px;
  font-weight: 500;
}

.visual-custom .patient-symptom-list span::before {
  content: "";
  display: block;
  width: 16px;
  height: 1px;
  background: var(--brand);
  opacity: 0.6;
}



/* Masking Field - Photo */
.visual-masking.masking-photo-panel {
  padding: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.visual-masking.masking-photo-panel::before {
  display: none;
}

.visual-masking .masking-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  background: #111;
  z-index: 0;
  filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.1));
}

.visual-masking .masking-photo-content {
  position: relative;
  z-index: 1;
  padding: 80px 40px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
}

.visual-masking .masking-photo-content .section-title {
  margin-top: 18px;
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}

.visual-masking .masking-photo-content .section-intro {
  margin-top: 14px;
  margin-bottom: 28px;
  max-width: 540px;
}

/* Device Visual - Industrial */
.visual-device {
  background: var(--bg);
}

.visual-device .device-ripple {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--brand-soft);
}

.visual-device .device-ripple.r1 { width: 300px; height: 300px; }
.visual-device .device-ripple.r2 { width: 410px; height: 410px; }
.visual-device .device-ripple.r3 { width: 520px; height: 520px; }

.visual-device .device-body {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 44px;
  background: linear-gradient(145deg, #ffffff, #f5f5f7);
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 
    -10px -10px 24px rgba(255, 255, 255, 1),
    14px 14px 34px rgba(0, 0, 0, 0.06);
}

.visual-device .device-body::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 28px;
  background: var(--dark);
  box-shadow: inset 0 6px 18px rgba(0, 0, 0, 0.3);
}

.visual-device .device-body::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--success);
}

.device-artwork-panel {
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px 28px;
}

.device-artwork {
  position: relative;
  z-index: 1;
  width: min(100%, 780px);
  height: auto;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 20px 48px rgba(0, 0, 0, 0.08));
}

.device-artwork-large {
  width: min(100%, 860px);
}

.service-grid,
.audience-grid,
.card-grid-2,
.contact-grid,
.purchase-grid {
  display: grid;
  gap: 20px;
}

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

.audience-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

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

.service-card,
.detail-panel,
.audience-card,
.contact-card,
.order-shell,
.info-shell,
.legal-card,
.success-card,
.panel {
  padding: 30px;
}

.service-card.featured,
.plan-band,
.cta-card {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.92);
}

.service-card.featured p,
.service-card.featured h3,
.service-card.featured .info-kicker,
.plan-band p,
.plan-band h2,
.plan-band .section-title,
.plan-band .section-kicker,
.cta-card p,
.cta-card h2,
.cta-card .section-title,
.cta-card .section-kicker,
.storyboard-card.accent .section-title,
.app-stage-card .section-title {
  color: inherit;
  background: none;
  -webkit-text-fill-color: currentcolor;
}

.service-card.featured .info-kicker,
.plan-band .section-kicker,
.cta-card .section-kicker,
.storyboard-card.accent small {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.96);
}

.service-card h3,
.detail-panel h3,
.audience-card h3,
.contact-card h3,
.info-shell h3,
.order-shell h3,
.legal-card h3,
.success-card h1 {
  margin: 16px 0 0;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.service-card p,
.detail-panel p,
.audience-card p,
.contact-card p,
.info-shell p,
.order-shell p,
.legal-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.84);
}

.check-list,
.info-list,
.contact-list,
.legal-list,
.story-list {
  display: grid;
  gap: 14px;
}

.check-list div,
.info-list div,
.story-list div {
  padding-left: 16px;
  position: relative;
}

.check-list div::before,
.info-list div::before,
.story-list div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.audience-card {
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.audience-side {
  display: grid;
  gap: 18px;
}

.quote-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 54px 48px;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.quote-no {
  color: var(--brand-soft);
  font-size: 38px;
  font-weight: 700;
}

.quote-text {
  margin: 14px 0 0;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.quote-meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.plan-band,
.cta-card {
  padding: 40px;
  box-shadow: var(--shadow-strong);
}

.plan-band .metric-row,
.cta-card .metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.plan-band .metric-chip,
.cta-card .metric-chip {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.qr-hover-card {
  position: relative;
  display: inline-flex;
}

.qr-trigger {
  cursor: pointer;
}

.qr-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  z-index: 24;
  width: 220px;
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(24, 33, 28, 0.08);
  box-shadow: 0 22px 50px rgba(16, 24, 20, 0.2);
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.qr-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.98);
  border-right: 1px solid rgba(24, 33, 28, 0.08);
  border-bottom: 1px solid rgba(24, 33, 28, 0.08);
  transform: translateX(-50%) rotate(45deg);
}

.qr-popover-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.qr-popover-copy {
  margin-top: 10px;
  text-align: center;
  color: #506056;
  font-size: 13px;
  font-weight: 600;
}

.qr-hover-card:hover .qr-popover,
.qr-hover-card:focus-within .qr-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.footer {
  margin-top: 20px;
  padding: 34px 0 28px;
  border-top: 1px solid rgba(29, 39, 33, 0.08);
  background: transparent;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
}

.footer-compliance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 10px;
  color: rgba(29, 39, 33, 0.56);
  font-size: 12px;
  line-height: 1.5;
}

.footer-compliance a,
.footer-compliance span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.footer-compliance a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-compliance a:hover {
  color: #16211b;
  opacity: 1;
}

.footer-compliance-divider {
  width: 1px;
  height: 12px;
  background: rgba(29, 39, 33, 0.14);
}

.footer-compliance-icon {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border-radius: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 13px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

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

.summary-box {
  margin-top: 20px;
  padding: 22px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.summary-table {
  width: 100%;
  border-collapse: collapse;
}

.summary-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.summary-table tr:last-child td,
.summary-table tr.total td {
  border-bottom: none;
}

.summary-table tr.total td {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.metric {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: var(--brand);
}

.metric-label {
  margin-top: 6px;
  color: var(--muted);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.center-card,
.success-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 0;
}

.success-card,
.legal-card {
  max-width: 760px;
  margin: 0 auto;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 18px auto 0;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 28px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-nav,
  .site-header-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .site-nav {
    gap: 4px;
    padding: 5px;
  }

  .site-nav a {
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-home-grid,
  .page-hero-grid,
  .content-split,
  .audience-grid,
  .contact-layout,
  .purchase-layout,
  .card-grid-2,
  .contact-grid,
  .purchase-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-grid[style],
  .storyboard-shell[style] {
    grid-template-columns: 1fr !important;
  }

  .page-hero-grid,
  .page-hero-grid[style],
  .contact-layout,
  .purchase-layout,
  .contact-grid,
  .purchase-grid,
  .storyboard-shell,
  .storyboard-shell[style] {
    gap: 24px;
  }

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

  .visual-panel {
    min-height: 420px;
  }

  .about-hero-visual {
    min-height: 480px;
    padding: 10px 0 0;
  }

  .about-signal-card-primary {
    min-height: 380px;
  }


  .storyboard-card.large {
    min-height: 320px;
  }

  .visual-agent .agent-clinic-frame {
    inset: 34px;
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100%, calc(100% - 28px));
  }

  .site-header {
    min-height: 68px;
  }

  .hero,
  .section {
    padding: 28px 0;
  }

  .site-nav {
    display: none;
  }

  .site-header-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-shell {
    min-height: 68px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-header-cta {
    gap: 8px;
  }

  .site-brand-name {
    font-size: 18px;
  }

  .site-brand-sub {
    display: none;
  }

  .site-brand-icon {
    height: 42px;
  }

  .site-mobile-actions {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.06;
  }

  .section-title {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.08;
  }

  .hero-copy .section-copy,
  .page-copy .section-intro,
  .section-intro,
  .section-copy {
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions,
  .button-row,
  .hero-stats,
  .micro-list,
  .support-tags,
  .contact-layout,
  .purchase-layout,
  .contact-grid,
  .purchase-grid,
  .content-split,
  .audience-grid {
    gap: 10px;
  }

  .page-hero-grid,
  .page-hero-grid[style],
  .storyboard-shell,
  .storyboard-shell[style] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .about-hero-visual {
    min-height: auto;
    padding: 0;
  }

  .about-signal-card-primary {
    min-height: 340px;
    padding: 24px 22px 22px;
  }

  .about-signal-graph {
    height: 180px;
    gap: 10px;
    padding: 16px 12px 12px;
  }

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

  .page-hero-grid,
  .page-hero-grid[style],
  .contact-layout,
  .purchase-layout,
  .contact-grid,
  .purchase-grid,
  .content-split,
  .audience-grid {
    gap: 20px;
  }

  .service-grid,
  .field-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .footer-compliance {
    gap: 8px 12px;
  }

  .footer-compliance-divider {
    display: none;
  }

  .visual-panel {
    min-height: 220px;
    padding: 18px;
    border-radius: 22px;
  }

  .visual-masking.masking-photo-panel {
    padding: 0;
  }

  .visual-masking .masking-photo {
    min-height: 360px;
  }

  .visual-masking .masking-photo-content {
    padding: 40px 20px 28px;
  }

  .visual-agent .agent-clinic-frame {
    inset: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
  }

  .visual-agent.agent-photo-panel {
    padding: 12px;
  }

  .visual-agent .agent-photo {
    max-height: 280px !important;
    border-radius: 14px;
  }

  .app-hero-shot-shell {
    min-height: 560px;
    padding: 0;
  }

  .app-hero-shot-frame {
    border-radius: 24px;
    box-shadow: 0 4px 10px rgba(18, 24, 28, 0.028);
  }

  .app-hero-shot {
    max-height: 560px !important;
    border-radius: 24px;
  }

  .visual-custom.patient-photo-panel {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 16px;
  }

  .visual-custom .patient-photo {
    max-height: 320px;
    border-radius: 14px;
  }

  .visual-custom .patient-symptom-card {
    padding: 0 10px;
    gap: 12px;
  }

  .visual-custom .patient-symptom-card strong {
    font-size: 24px;
  }

  .visual-custom .patient-symptom-list {
    gap: 12px;
  }

  .visual-custom .patient-symptom-list span {
    font-size: 15px;
  }

  

  .visual-phone .phone-mock {
    width: 48%;
    height: 74%;
    right: 18%;
  }

  .visual-device .device-body {
    width: 170px;
    height: 170px;
    border-radius: 40px;
  }

  .visual-device .device-ripple.r1 { width: 230px; height: 230px; }
  .visual-device .device-ripple.r2 { width: 300px; height: 300px; }
  .visual-device .device-ripple.r3 { width: 370px; height: 370px; }

  .device-artwork-panel {
    min-height: 0;
    padding: 10px 6px;
  }

  .device-artwork,
  .device-artwork-large {
    width: min(100%, 320px);
  }

  .home-cinema,
  .home-product-card,
  .home-clinical-band,
  .home-system-band,
  .home-ending-shell,
  .home-story-panel,
  .home-immersive {
    min-height: auto;
    padding: 28px 22px;
    border-radius: 28px;
  }

  .home-feature-grid,
  .home-product-grid,
  .home-band-grid,
  .home-system-grid,
  .story-grid-stage {
    grid-template-columns: 1fr;
  }

  .home-product-card {
    gap: 18px;
  }

  .home-product-visual {
    min-height: 240px;
    margin-top: 18px;
  }

  .phone-shell {
    width: 220px;
    height: 430px;
    padding: 12px;
    border-radius: 34px;
  }

  .phone-screen {
    border-radius: 24px;
    padding: 18px 14px;
    gap: 10px;
  }

  .phone-block {
    padding: 14px;
    border-radius: 18px;
  }

  .phone-block.large {
    font-size: 22px;
  }

  .speaker-shell {
    width: 260px;
    height: 260px;
  }

  .speaker-ring.outer {
    width: 260px;
    height: 260px;
  }

  .speaker-ring.inner {
    width: 184px;
    height: 184px;
  }

  .speaker-core {
    width: 136px;
    height: 136px;
  }

  .home-cinema {
    gap: 18px;
  }

  .home-cinema-panels {
    gap: 12px;
  }

  .home-cinema-panel {
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .home-cinema-panel strong {
    font-size: 22px;
  }

  .home-clinical-band {
    margin-top: 24px;
  }

  .home-band-header {
    margin-bottom: 18px;
  }

  .home-story-panel {
    min-height: auto;
    gap: 18px;
  }

  .story-stage,
  .story-grid-stage {
    min-height: 260px;
  }

  .story-grid-stage {
    grid-template-rows: auto;
    gap: 14px;
  }

  .story-grid-card,
  .story-grid-card.large {
    min-height: auto;
  }

  .story-grid-card.large {
    grid-row: auto;
  }

  .home-immersive-stack {
    margin-top: 24px;
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .immersive-card {
    position: static;
    width: 100%;
    padding: 18px 18px 20px;
    border-radius: 22px;
  }

  .immersive-card.top,
  .immersive-card.middle,
  .immersive-card.bottom {
    top: auto;
    left: auto;
  }

  .immersive-card strong {
    font-size: 22px;
  }

  .storyboard-card,
  .storyboard-card.large {
    min-height: auto;
    padding: 22px !important;
    border-radius: 24px;
  }

  .storyboard-card strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .hero-actions .btn,
  .button-row .btn,
  .qr-hover-card {
    width: 100%;
  }

  .qr-hover-card .btn {
    width: 100%;
    justify-content: center;
  }

  .field input,
  .field select,
  .field textarea {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .contact-list,
  .legal-list {
    gap: 12px;
  }

  .summary-box {
    padding: 18px;
    border-radius: 18px;
  }

  .summary-box .metric {
    font-size: 34px !important;
  }

  .summary-table {
    table-layout: fixed;
  }

  .summary-table td {
    padding: 10px 0;
    font-size: 14px;
    word-break: break-word;
  }

  .footer-links {
    gap: 10px;
  }

  .footer-compliance {
    font-size: 11px;
  }

  .footer-compliance a,
  .footer-compliance span {
    white-space: normal;
  }

  .qr-popover {
    left: 0;
    right: 0;
    bottom: calc(100% + 10px);
    width: min(100%, 240px);
    margin: 0 auto;
    transform: translateY(10px);
  }

  .qr-hover-card:hover .qr-popover,
  .qr-hover-card:focus-within .qr-popover {
    transform: translateY(0);
  }

  .center-card,
  .login-shell,
  .success-shell {
    min-height: auto;
    padding: 8px 0 28px;
  }

  .service-card,
  .detail-panel,
  .audience-card,
  .contact-card,
  .order-shell,
  .info-shell,
  .legal-card,
  .success-card,
  .panel,
  .plan-band,
  .cta-card {
    padding: 24px;
  }
}

/* =========================================
   DARK BACKGROUND CONTRAST FIXES
   ========================================= */
.service-card.featured,
.plan-band,
.cta-card,
.storyboard-card.accent,
.visual-masking .masking-photo-content,
.home-feature-card.dark,
.home-cinema,
.home-product-card.hardware,
.home-story-panel.dark,
.home-immersive,
.app-stage-card {
  color: rgba(255, 255, 255, 0.95);
}

/* Force headings and paragraphs to be light */
.service-card.featured .section-title,
.service-card.featured .hero-title,
.service-card.featured .display-title,
.service-card.featured .section-intro,
.service-card.featured .section-copy,
.service-card.featured h2,
.service-card.featured h3,
.service-card.featured p,
.plan-band .section-title,
.plan-band .hero-title,
.plan-band .display-title,
.plan-band .section-intro,
.plan-band .section-copy,
.plan-band h2,
.plan-band h3,
.plan-band p,
.cta-card .section-title,
.cta-card .hero-title,
.cta-card .display-title,
.cta-card .section-intro,
.cta-card .section-copy,
.cta-card h2,
.cta-card h3,
.cta-card p,
.storyboard-card.accent .section-title,
.storyboard-card.accent .hero-title,
.storyboard-card.accent .display-title,
.storyboard-card.accent .section-intro,
.storyboard-card.accent .section-copy,
.storyboard-card.accent h2,
.storyboard-card.accent h3,
.storyboard-card.accent strong,
.storyboard-card.accent p,
.visual-masking .masking-photo-content .section-title,
.visual-masking .masking-photo-content .hero-title,
.visual-masking .masking-photo-content .display-title,
.visual-masking .masking-photo-content .section-intro,
.visual-masking .masking-photo-content .section-copy,
.visual-masking .masking-photo-content h2,
.visual-masking .masking-photo-content h3,
.visual-masking .masking-photo-content p,
.home-feature-card.dark .section-title,
.home-feature-card.dark .hero-title,
.home-feature-card.dark .display-title,
.home-feature-card.dark .section-intro,
.home-feature-card.dark .section-copy,
.home-feature-card.dark h2,
.home-feature-card.dark h3,
.home-feature-card.dark p,
.home-cinema .section-title,
.home-cinema .hero-title,
.home-cinema .display-title,
.home-cinema .section-intro,
.home-cinema .section-copy,
.home-cinema h2,
.home-cinema h3,
.home-cinema p,
.home-product-card.hardware .section-title,
.home-product-card.hardware .hero-title,
.home-product-card.hardware .display-title,
.home-product-card.hardware .section-intro,
.home-product-card.hardware .section-copy,
.home-product-card.hardware h2,
.home-product-card.hardware h3,
.home-product-card.hardware p,
.home-story-panel.dark .section-title,
.home-story-panel.dark .hero-title,
.home-story-panel.dark .display-title,
.home-story-panel.dark .section-intro,
.home-story-panel.dark .section-copy,
.home-story-panel.dark h2,
.home-story-panel.dark h3,
.home-story-panel.dark p,
.home-immersive .section-title,
.home-immersive .hero-title,
.home-immersive .display-title,
.home-immersive .section-intro,
.home-immersive .section-copy,
.home-immersive h2,
.home-immersive h3,
.home-immersive p,
.home-immersive strong,
.home-immersive span,
.app-stage-card .section-title,
.app-stage-card .hero-title,
.app-stage-card .display-title,
.app-stage-card .section-intro,
.app-stage-card .section-copy,
.app-stage-card h2,
.app-stage-card h3,
.app-stage-card p {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Keep labels and support text readable without stripping their chip backgrounds */
.service-card.featured .section-kicker,
.service-card.featured .info-kicker,
.plan-band .section-kicker,
.plan-band .metric-chip,
.cta-card .section-kicker,
.storyboard-card.accent small,
.visual-masking .masking-photo-content .section-kicker,
.home-feature-card.dark .eyebrow,
.home-feature-card.dark .section-kicker,
.home-cinema .eyebrow,
.home-product-card.hardware .eyebrow,
.home-product-card.hardware .section-kicker,
.home-story-panel.dark .eyebrow,
.home-story-panel.dark .section-kicker,
.home-immersive .eyebrow,
.home-immersive .section-kicker,
.home-immersive small,
.app-stage-card .section-kicker,
.app-stage-card small {
  color: rgba(255, 255, 255, 0.78) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.78) !important;
}

/* Fix buttons inside dark backgrounds */
.service-card.featured .btn-primary,
.plan-band .btn-primary,
.cta-card .btn-primary,
.storyboard-card.accent .btn-primary,
.visual-masking .masking-photo-content .btn-primary {
  background: #ffffff !important;
  color: #16211b !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2) !important;
}

.service-card.featured .btn-primary:hover,
.plan-band .btn-primary:hover,
.cta-card .btn-primary:hover,
.storyboard-card.accent .btn-primary:hover,
.visual-masking .masking-photo-content .btn-primary:hover {
  background: #f0f0f0 !important;
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3) !important;
}

.service-card.featured .btn-secondary,
.plan-band .btn-secondary,
.cta-card .btn-secondary,
.storyboard-card.accent .btn-secondary,
.visual-masking .masking-photo-content .btn-secondary {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.service-card.featured .btn-secondary:hover,
.plan-band .btn-secondary:hover,
.cta-card .btn-secondary:hover,
.storyboard-card.accent .btn-secondary:hover,
.visual-masking .masking-photo-content .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
}

/* Responsible product communication and accessibility */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  border-radius: 999px;
  background: #16211b;
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(47, 107, 69, 0.42);
  outline-offset: 3px;
}

.nav-dropdown:focus-within .nav-dropdown-content {
  display: block;
}

.qr-hover-card.is-open .qr-popover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(24, 75, 54, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(47, 107, 69, 0.1), transparent 45%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.trust-panel .section-title {
  margin-bottom: 16px;
}

.trust-points {
  display: grid;
  gap: 14px;
}

.trust-point {
  padding: 20px;
  border: 1px solid rgba(24, 75, 54, 0.09);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.trust-point h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.trust-point p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.safety-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 4px 18px 18px 4px;
  background: rgba(47, 107, 69, 0.08);
  color: #425047;
  font-size: 14px;
}

.footer-disclaimer {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(29, 39, 33, 0.58);
  font-size: 12px;
  line-height: 1.65;
}

html:not(.reveal-ready) .reveal {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 768px) {
  .trust-panel {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 24px;
  }

  .qr-hover-card.is-open .qr-popover {
    transform: translateY(0);
  }
}

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

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

  .reveal,
  [data-hero-shift],
  [data-hero-scale],
  [data-parallax],
  [data-scroll-stage],
  [data-stage-layer] {
    opacity: 1 !important;
    transform: none !important;
  }
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.consent-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--brand);
}

.consent-row a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.field small {
  display: block;
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.5;
}

button:disabled,
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.table-shell {
  overflow-x: auto;
}

.data-table {
  min-width: 780px;
}

#adminMessage {
  min-height: 24px;
  margin: 0 0 12px;
}

.contact-hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.home-audiogram-panel {
  overflow: hidden;
}

.home-audiogram-crop {
  width: 100%;
  aspect-ratio: 1.16 / 1;
  overflow: hidden;
  border-radius: 20px;
}

.home-acoustic-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #000;
}

.visual-agent .home-audiogram-image,
.motion-ui .home-audiogram-image.ui-media,
.motion-ui .home-audiogram-image.ui-media.ui-visible {
  width: 100%;
  max-width: none;
  max-height: none !important;
  height: auto;
  clip-path: none;
  opacity: 1;
  transform: translateY(-6.5%);
}

/* =========================================
   GLOBAL MOTION UI
   Transform-only enhancements; no layout shift.
   ========================================= */
:root {
  --motion-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-soft: cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ui .site-header {
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.motion-ui .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: rgba(24, 75, 54, 0.1);
  box-shadow: 0 10px 32px rgba(30, 55, 39, 0.07);
}

.motion-ui :is(.site-nav, .nav) > a,
.motion-ui :is(.site-nav, .nav) > .nav-dropdown > a {
  position: relative;
}

.motion-ui :is(.site-nav, .nav) > a::after,
.motion-ui :is(.site-nav, .nav) > .nav-dropdown > a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -7px;
  height: 1px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0;
  transition:
    left 0.3s var(--motion-spring),
    right 0.3s var(--motion-spring),
    opacity 0.2s ease;
}

.motion-ui :is(.site-nav, .nav) > a:hover::after,
.motion-ui :is(.site-nav, .nav) > a:focus-visible::after,
.motion-ui :is(.site-nav, .nav) > a[aria-current="page"]::after,
.motion-ui :is(.site-nav, .nav) > .nav-dropdown > a:hover::after,
.motion-ui :is(.site-nav, .nav) > .nav-dropdown > a:focus-visible::after,
.motion-ui :is(.site-nav, .nav) > .nav-dropdown > a[aria-current="page"]::after {
  left: 18%;
  right: 18%;
  opacity: 1;
}

.motion-ui .ui-enter {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 22px, 0) scale(0.985);
  transition:
    opacity 0.72s ease var(--ui-delay, 0ms),
    filter 0.72s ease var(--ui-delay, 0ms),
    transform 0.82s var(--motion-spring) var(--ui-delay, 0ms),
    box-shadow 0.35s ease;
  will-change: opacity, filter, transform;
}

.motion-ui .ui-enter.ui-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
  will-change: auto;
}

.motion-ui .ui-media {
  clip-path: inset(5% 4% 5% 4% round 22px);
  opacity: 0.72;
  transform: scale(1.025);
  transition:
    clip-path 1s var(--motion-soft),
    opacity 0.75s ease,
    transform 1.05s var(--motion-spring);
}

.motion-ui .ui-media.ui-visible {
  clip-path: inset(0 0 0 0 round 0);
  opacity: 1;
  transform: scale(1);
}

.motion-ui .ui-hover-lift {
  transition:
    transform 0.38s var(--motion-spring),
    box-shadow 0.38s ease,
    border-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .motion-ui .ui-hover-lift:hover {
    transform: translate3d(0, -5px, 0);
    border-color: rgba(47, 107, 69, 0.16);
    box-shadow: 0 20px 54px rgba(35, 66, 45, 0.11);
  }

  .motion-ui .ui-hover-lift.ui-enter:not(.ui-visible):hover {
    transform: translate3d(0, 22px, 0) scale(0.985);
  }
}

.motion-ui .btn,
.motion-ui .menu-toggle {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.motion-ui .btn::after,
.motion-ui .menu-toggle::after {
  content: "";
  position: absolute;
  top: -80%;
  bottom: -80%;
  left: -52%;
  width: 34%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  transform: translateX(-220%) rotate(16deg);
  transition: transform 0.7s var(--motion-soft);
}

.motion-ui .btn:hover::after,
.motion-ui .btn:focus-visible::after,
.motion-ui .menu-toggle:hover::after,
.motion-ui .menu-toggle:focus-visible::after {
  transform: translateX(520%) rotate(16deg);
}

.motion-ui .ui-pressed {
  animation: uiControlPulse 0.42s var(--motion-spring);
}

.motion-ui .mobile-panel {
  display: block;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.28s ease,
    visibility 0s linear 0.28s;
}

.motion-ui .mobile-panel.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.motion-ui .mobile-sheet {
  opacity: 0;
  transform: translate3d(22px, -10px, 0) scale(0.97);
  transition:
    opacity 0.3s ease,
    transform 0.42s var(--motion-spring);
}

.motion-ui .mobile-panel.open .mobile-sheet {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-ui .mobile-sheet nav a {
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 0.3s ease,
    transform 0.4s var(--motion-spring),
    background-color 0.25s ease;
}

.motion-ui .mobile-panel.open .mobile-sheet nav a {
  opacity: 1;
  transform: translateX(0);
}

.motion-ui .mobile-panel.open .mobile-sheet nav a:nth-child(1) { transition-delay: 40ms; }
.motion-ui .mobile-panel.open .mobile-sheet nav a:nth-child(2) { transition-delay: 75ms; }
.motion-ui .mobile-panel.open .mobile-sheet nav a:nth-child(3) { transition-delay: 110ms; }
.motion-ui .mobile-panel.open .mobile-sheet nav a:nth-child(4) { transition-delay: 145ms; }
.motion-ui .mobile-panel.open .mobile-sheet nav a:nth-child(5) { transition-delay: 180ms; }
.motion-ui .mobile-panel.open .mobile-sheet nav a:nth-child(6) { transition-delay: 215ms; }

.motion-ui .success-icon {
  animation: uiSuccessPop 0.72s var(--motion-spring) both;
}

.motion-ui :is(.metric-dot, .link-node, .pulse-dot) {
  animation: uiSignalBreath 3.2s ease-in-out infinite;
}

@keyframes uiControlPulse {
  0% { transform: scale(1); }
  45% { transform: scale(0.965); }
  100% { transform: scale(1); }
}

@keyframes uiSuccessPop {
  0% { opacity: 0; transform: scale(0.58) rotate(-8deg); }
  70% { opacity: 1; transform: scale(1.08) rotate(2deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes uiSignalBreath {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.14); }
}

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal,
  .motion-ui .ui-enter,
  .motion-ui .ui-media {
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }

  .motion-ui .ui-enter {
    filter: none;
    transform: none;
  }

  .motion-ui .ui-enter.ui-visible {
    filter: none;
    transform: none;
  }

  .motion-ui .ui-media {
    clip-path: none;
  }

  .motion-ui .ui-media.ui-visible {
    clip-path: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ui .ui-enter,
  .motion-ui .ui-media,
  .motion-ui .mobile-sheet,
  .motion-ui .mobile-sheet nav a {
    opacity: 1 !important;
    filter: none !important;
    clip-path: none !important;
    transform: none !important;
  }
}

/* =========================================
   V4 HOME / EARTUNE FREQUENCY FIELD
   Homepage-only visual system inspired by
   scroll-led audio interfaces.
   ========================================= */
body.home-page {
  --home-ink: #080a09;
  --home-paper: #f0efe8;
  --home-lime: #cfff4a;
  --home-mint: #70f0bf;
  --home-violet: #9073ff;
  --home-line-light: rgba(255, 255, 255, 0.18);
  --home-line-dark: rgba(8, 10, 9, 0.18);
  color: var(--home-ink);
  background: var(--home-ink);
  background-image: none;
}

body.home-page .page-shell {
  overflow: clip;
}

body.home-page .container {
  width: min(1440px, calc(100% - clamp(40px, 6vw, 104px)));
}

body.home-page .site-header,
html.motion-ui body.home-page .site-header.is-scrolled {
  background: rgba(8, 10, 9, 0.82);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
  color: #fff;
}

body.home-page .site-brand-icon {
  filter: brightness(0) invert(1);
}

body.home-page .site-brand-name,
body.home-page .site-nav a.active,
body.home-page .site-nav a:hover,
body.home-page .site-header-cta .btn-secondary:hover {
  color: #fff;
}

body.home-page .site-brand-sub,
body.home-page .site-nav a,
body.home-page .site-header-cta .btn-secondary {
  color: rgba(255, 255, 255, 0.6);
}

body.home-page .site-header-cta .btn-primary {
  color: var(--home-ink);
  background: var(--home-lime);
}

body.home-page .site-header-cta .btn-primary:hover {
  color: var(--home-ink);
  background: #dcff75;
}

body.home-page .menu-toggle {
  border-color: rgba(255, 255, 255, 0.22);
}

body.home-page .menu-toggle span,
body.home-page .menu-toggle span::before,
body.home-page .menu-toggle span::after {
  background: #fff;
}

body.home-page .nav-dropdown-content {
  background: rgba(17, 20, 18, 0.94);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

body.home-page .nav-dropdown-content a {
  color: rgba(255, 255, 255, 0.72) !important;
}

body.home-page .nav-dropdown-content a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
}

body.home-page .home-wave-hero {
  --wave-progress: 0;
  position: relative;
  min-height: 300vh;
  min-height: 300svh;
  padding: 0;
  overflow: visible;
  isolation: isolate;
  background: var(--home-ink);
  color: #fff;
}

body.home-page .home-wave-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 16%, rgba(112, 240, 191, 0.055), transparent 29%),
    radial-gradient(circle at 88% 18%, rgba(207, 255, 74, 0.035), transparent 24%);
}

body.home-page .hero-home-grid {
  position: sticky;
  top: 54px;
  z-index: 1;
  display: block;
  height: calc(100svh - 54px);
}

body.home-page .hero-home .hero-copy {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto auto;
  column-gap: clamp(18px, 2vw, 34px);
  row-gap: 0;
  width: 100%;
  max-width: none;
  color: #fff;
  transform: translate3d(0, calc(-50% - var(--wave-progress) * 7vh), 0);
  opacity: calc(1 - var(--wave-progress) * 0.72);
  will-change: transform, opacity;
}

@media (min-width: 769px) {
  html:not(.reveal-ready) body.home-page .hero-home .hero-copy {
    transform: translate3d(0, -50%, 0) !important;
  }
}

body.home-page .hero-home .hero-tag,
body.home-page .hero-home .section-kicker {
  color: var(--home-mint);
  background: transparent;
  border: 1px solid rgba(112, 240, 191, 0.42);
  box-shadow: none;
}

body.home-page .hero-home .hero-tag {
  grid-column: 1 / 5;
  grid-row: 1;
  justify-self: start;
}

body.home-page .hero-home .hero-title {
  grid-column: 1 / 8;
  grid-row: 2 / 6;
  max-width: 760px;
  margin-top: 24px;
  color: #f7f7f2;
  background: none;
  -webkit-text-fill-color: currentcolor;
  font-size: clamp(56px, 5.2vw, 82px);
  font-weight: 430;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

body.home-page .hero-home .section-copy {
  grid-column: 9 / 13;
  grid-row: 2;
  max-width: 470px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.72;
}

body.home-page .hero-home .hero-note {
  grid-column: 9 / 13;
  grid-row: 3;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
}

body.home-page .hero-home .hero-actions {
  grid-column: 9 / 13;
  grid-row: 4;
  align-self: start;
  margin-top: 22px;
}

body.home-page .hero-home .hero-stats {
  grid-column: 9 / 13;
  grid-row: 5;
  align-self: start;
  margin-top: 18px;
}

body.home-page .hero-home .btn-primary {
  color: var(--home-ink);
  background: var(--home-lime);
  border-color: var(--home-lime);
  box-shadow: 0 0 38px rgba(207, 255, 74, 0.14);
}

body.home-page .hero-home .btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.24);
}

body.home-page .hero-home .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

body.home-page .hero-home .hero-stats span {
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

body.home-page .home-wave-visual {
  position: absolute;
  inset: 0 calc(clamp(40px, 6vw, 104px) * -0.5);
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  background: #000 url("../img/home-acoustic-wave-poster.jpg") center / cover no-repeat;
}

body.home-page .wave-ready .home-wave-visual {
  background-image: none;
}

body.home-page .home-wave-video {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  opacity: 0;
  mix-blend-mode: screen;
  filter: saturate(1.12) brightness(1.18);
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
}

body.home-page .wave-ready .home-wave-video {
  opacity: 1;
}

body.home-page .home-wave-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(8, 10, 9, 0.82) 0%, rgba(8, 10, 9, 0.42) 34%, transparent 58%),
    radial-gradient(ellipse at 82% 28%, rgba(8, 10, 9, 0.8) 0%, rgba(8, 10, 9, 0.38) 32%, transparent 56%),
    linear-gradient(180deg, rgba(8, 10, 9, 0.94) 0%, rgba(8, 10, 9, 0.58) 34%, rgba(8, 10, 9, 0.08) 58%, rgba(8, 10, 9, 0.01) 79%, rgba(8, 10, 9, 0.62) 100%);
}

body.home-page main > .section {
  position: relative;
  z-index: 2;
  padding: clamp(96px, 11vw, 176px) 0;
  border-top: 1px solid var(--home-line-dark);
}

body.home-page main > .home-system-section {
  padding-top: clamp(72px, 6vw, 96px);
}

body.home-page main > .section .section-title,
body.home-page main > .section .display-title {
  background: none;
  -webkit-text-fill-color: currentcolor;
  font-weight: 470;
  line-height: 1;
  letter-spacing: -0.058em;
}

body.home-page main > .section .section-title {
  font-size: clamp(46px, 6.4vw, 92px);
}

body.home-page main > .section .section-kicker,
body.home-page main > .section .info-kicker {
  padding: 0;
  color: currentcolor;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  letter-spacing: 0.14em;
  opacity: 0.68;
}

body.home-page .home-system-section {
  color: #fff;
  background: #0d100e;
  border-top-color: rgba(255, 255, 255, 0.14);
}

body.home-page .home-system-section .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: end;
  max-width: none;
  margin-bottom: clamp(56px, 8vw, 104px);
}

body.home-page .home-system-section .section-kicker {
  grid-column: 1 / -1;
  color: var(--home-mint);
}

body.home-page .home-system-section .section-title {
  color: #fff;
}

body.home-page .home-system-section .section-intro {
  color: rgba(255, 255, 255, 0.58);
  font-size: 17px;
  line-height: 1.8;
}

body.home-page .home-system-section .service-grid {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

body.home-page .home-system-section .service-card,
body.home-page .home-system-section .service-card.featured {
  min-height: 330px;
  padding: 34px clamp(24px, 3.3vw, 50px) 42px;
  color: #fff;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.home-page .home-system-section .service-card:last-child {
  border-right: 0;
}

body.home-page .home-system-section .service-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: none;
}

body.home-page .home-system-section .service-card:nth-child(1) .info-kicker {
  color: var(--home-mint);
}

body.home-page .home-system-section .service-card:nth-child(2) .info-kicker {
  color: var(--home-violet);
}

body.home-page .home-system-section .service-card:nth-child(3) .info-kicker {
  color: var(--home-lime);
}

body.home-page .home-system-section .service-card h3 {
  margin-top: 110px;
  color: #fff;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 480;
  letter-spacing: -0.04em;
}

body.home-page .home-system-section .service-card p {
  color: rgba(255, 255, 255, 0.55);
}

body.home-page .home-custom-section {
  color: var(--home-ink);
  background: var(--home-paper);
}

body.home-page .home-custom-section .content-split {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: stretch;
}

body.home-page .home-custom-section .visual-custom.patient-photo-panel {
  min-height: 680px;
  padding: clamp(24px, 4vw, 54px);
  border-radius: 40px;
  background: #141715 !important;
}

body.home-page .home-custom-section .patient-photo {
  width: 100%;
  max-height: 560px;
  border-radius: 28px;
  object-fit: cover;
  mix-blend-mode: normal;
  box-shadow: none;
}

body.home-page .home-custom-section .patient-symptom-card strong {
  color: #fff;
}

body.home-page .home-custom-section .patient-symptom-label {
  color: var(--home-mint);
}

body.home-page .home-custom-section .patient-symptom-list span {
  color: rgba(255, 255, 255, 0.55);
}

body.home-page .home-custom-section .detail-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.home-page .home-custom-section .detail-panel:hover {
  transform: none;
  box-shadow: none;
}

body.home-page .home-custom-section .detail-panel h3 {
  margin-top: 28px;
  color: var(--home-ink);
  font-size: clamp(46px, 5vw, 76px);
  font-weight: 470;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

body.home-page .home-custom-section .detail-panel > p,
body.home-page .home-custom-section .check-list {
  color: rgba(8, 10, 9, 0.62);
}

body.home-page .home-custom-section .check-list > div {
  padding: 18px 0;
  border-top: 1px solid var(--home-line-dark);
}

body.home-page .home-audience-section {
  color: var(--home-ink);
  background: var(--home-lime);
}

body.home-page .home-audience-section .audience-grid {
  gap: clamp(54px, 10vw, 160px);
}

body.home-page .home-audience-section .section-head {
  position: sticky;
  top: 110px;
  max-width: 720px;
}

body.home-page .home-audience-section .section-title,
body.home-page .home-audience-section .section-intro {
  color: var(--home-ink);
}

body.home-page .home-audience-section .section-intro {
  max-width: 570px;
  opacity: 0.62;
}

body.home-page .home-audience-section .audience-side {
  gap: 0;
  border-bottom: 1px solid rgba(8, 10, 9, 0.25);
}

body.home-page .home-audience-section .audience-card {
  padding: 34px 0 44px;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(8, 10, 9, 0.25);
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.home-page .home-audience-section .audience-card:hover {
  transform: translateX(8px);
  box-shadow: none;
}

body.home-page .home-audience-section .audience-card h3 {
  color: var(--home-ink);
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

body.home-page .home-audience-section .audience-card p {
  color: rgba(8, 10, 9, 0.62);
}

body.home-page .home-plan-section {
  color: var(--home-ink);
  background: var(--home-violet);
}

body.home-page .home-plan-section .plan-band {
  padding: 0;
  color: var(--home-ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.home-page .home-plan-section .plan-band .section-title,
body.home-page .home-plan-section .plan-band .section-intro,
body.home-page .home-plan-section .plan-band .section-kicker {
  color: var(--home-ink) !important;
  -webkit-text-fill-color: var(--home-ink) !important;
}

body.home-page .home-plan-section .plan-band .section-intro {
  max-width: 720px;
  font-size: 18px;
  opacity: 1;
}

body.home-page .home-plan-section .plan-band .section-kicker {
  opacity: 1;
}

body.home-page .home-plan-section .metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid rgba(8, 10, 9, 0.3);
  border-bottom: 1px solid rgba(8, 10, 9, 0.3);
}

body.home-page .home-plan-section .plan-band .metric-chip {
  min-height: 126px;
  padding: 26px;
  color: var(--home-ink) !important;
  -webkit-text-fill-color: var(--home-ink) !important;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(8, 10, 9, 0.3);
  border-radius: 0;
  font-size: 15px;
}

body.home-page .home-plan-section .metric-chip:last-child {
  border-right: 0;
}

body.home-page .home-trust-section {
  color: #fff;
  background: #101311;
  border-top-color: rgba(255, 255, 255, 0.14);
}

body.home-page .home-trust-section .trust-panel {
  gap: clamp(64px, 10vw, 160px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body.home-page .home-trust-section .section-kicker {
  color: var(--home-mint);
}

body.home-page .home-trust-section .section-title {
  color: #fff;
}

body.home-page .home-trust-section .section-intro {
  color: rgba(255, 255, 255, 0.56);
}

body.home-page .home-trust-section .trust-points {
  gap: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

body.home-page .home-trust-section .trust-point {
  padding: 30px 0 34px;
  color: #fff;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
}

body.home-page .home-trust-section .trust-point h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

body.home-page .home-trust-section .trust-point p {
  color: rgba(255, 255, 255, 0.52);
}

body.home-page .home-cta-section {
  padding-top: 0;
  color: #fff;
  background: var(--home-ink);
  border-top-color: rgba(255, 255, 255, 0.14);
}

body.home-page .home-cta-section .container {
  width: min(1560px, calc(100% - clamp(24px, 3vw, 52px)));
}

body.home-page .home-cta-section .masking-photo-panel {
  min-height: min(82svh, 880px);
  border-radius: 38px;
}

body.home-page .home-cta-section .masking-photo {
  min-height: 100%;
  filter: saturate(0.5) contrast(1.12) brightness(0.72);
  transform: scale(1.02);
}

body.home-page .home-cta-section .masking-photo-content {
  align-items: flex-start;
  min-height: min(82svh, 880px);
  padding: clamp(44px, 7vw, 100px);
  text-align: left;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.86) 0%, rgba(8, 10, 9, 0.25) 64%, transparent),
    linear-gradient(0deg, rgba(8, 10, 9, 0.55), transparent 62%);
}

body.home-page .home-cta-section .section-kicker {
  color: var(--home-lime) !important;
  background: transparent !important;
}

body.home-page .home-cta-section .section-title {
  max-width: 800px;
  color: #fff !important;
  font-size: clamp(58px, 7vw, 108px);
}

body.home-page .home-cta-section .section-intro {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 18px;
}

body.home-page .home-cta-section .btn-secondary {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

body.home-page .home-cta-section .qr-trigger {
  color: var(--home-ink) !important;
  background: var(--home-lime) !important;
  border-color: var(--home-lime) !important;
}

body.home-page .footer {
  margin: 0;
  padding: 64px 0 42px;
  color: #fff;
  background: var(--home-ink);
  border-top-color: rgba(255, 255, 255, 0.14);
}

body.home-page .footer .brand-name {
  color: #fff;
}

body.home-page .footer .brand-sub,
body.home-page .footer-copy,
body.home-page .footer-disclaimer,
body.home-page .footer-compliance,
body.home-page .footer-links {
  color: rgba(255, 255, 255, 0.62);
}

body.home-page .footer-shell {
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.14);
}

body.home-page :is(.footer-compliance a, .footer-links a):hover {
  color: #fff;
}

body.home-page .qr-popover {
  color: #16211b;
}

body.home-page :where(a, button, input, select, textarea):focus-visible {
  outline-color: var(--home-violet);
}

body.home-page .footer-compliance-divider {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1024px) {
  body.home-page .site-mobile-sheet {
    color: #fff;
    background: #111412;
    border-color: rgba(255, 255, 255, 0.14);
  }

  body.home-page .site-mobile-nav a {
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.06);
  }

  body.home-page .site-mobile-nav a.active {
    color: var(--home-ink);
    background: var(--home-lime);
  }

  body.home-page .site-mobile-sheet .btn-secondary {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  body.home-page .hero-home .hero-copy {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    width: 100%;
  }

  body.home-page .hero-home .hero-tag {
    grid-column: 1 / 4;
  }

  body.home-page .hero-home .hero-title {
    grid-column: 1 / 6;
  }

  body.home-page .hero-home .section-copy,
  body.home-page .hero-home .hero-note,
  body.home-page .hero-home .hero-actions,
  body.home-page .hero-home .hero-stats {
    grid-column: 6 / 9;
  }

  body.home-page .home-system-section .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.home-page .home-system-section .section-kicker {
    grid-column: auto;
  }

  body.home-page .home-custom-section .content-split {
    grid-template-columns: 1fr;
  }

  body.home-page .home-audience-section .section-head {
    position: static;
  }

  body.home-page .home-plan-section .metric-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.home-page .home-plan-section .metric-chip:nth-child(2) {
    border-right: 0;
  }

  body.home-page .home-plan-section .metric-chip:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 10, 9, 0.3);
  }
}

@media (max-width: 768px) {
  body.home-page .container {
    width: min(100%, calc(100% - 28px));
  }

  body.home-page .site-mobile-sheet {
    color: #fff;
    background: #111412;
    border-color: rgba(255, 255, 255, 0.14);
  }

  body.home-page .site-mobile-nav a {
    color: rgba(255, 255, 255, 0.76);
    background: rgba(255, 255, 255, 0.06);
  }

  body.home-page .site-mobile-nav a.active {
    color: var(--home-ink);
    background: var(--home-lime);
  }

  body.home-page .site-mobile-sheet .btn-secondary {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.24) !important;
  }

  body.home-page .home-wave-hero {
    min-height: 280vh;
    min-height: 280svh;
  }

  body.home-page .hero-home-grid {
    top: 68px;
    height: calc(100svh - 68px);
  }

  body.home-page .hero-home .hero-copy {
    display: block;
    top: 70px;
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
  }

  body.home-page .hero-home .hero-title {
    max-width: 560px;
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  body.home-page .hero-home .section-copy {
    max-width: 92%;
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.62;
  }

  body.home-page .hero-home .hero-note {
    margin-top: 10px;
    font-size: 12px;
  }

  body.home-page .hero-home .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  body.home-page .hero-home .btn {
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
  }

  body.home-page .hero-home .hero-stats {
    display: none;
  }

  body.home-page .home-wave-visual {
    inset: 0 -14px;
  }

  body.home-page .home-wave-video {
    top: 66%;
    width: 180%;
  }

  body.home-page .home-wave-vignette {
    background:
      linear-gradient(180deg, rgba(8, 10, 9, 0.97) 0%, rgba(8, 10, 9, 0.65) 47%, rgba(8, 10, 9, 0.18) 67%, rgba(8, 10, 9, 0.03) 84%, rgba(8, 10, 9, 0.58) 100%);
  }

  body.home-page main > .section {
    padding: 78px 0;
  }

  body.home-page main > .home-system-section {
    padding-top: 64px;
  }

  body.home-page main > .section .section-title {
    font-size: clamp(42px, 12vw, 58px);
  }

  body.home-page .home-system-section .service-grid {
    grid-template-columns: 1fr;
  }

  body.home-page .home-system-section .service-card,
  body.home-page .home-system-section .service-card.featured {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  body.home-page .home-system-section .service-card:last-child {
    border-bottom: 0;
  }

  body.home-page .home-system-section .service-card h3 {
    margin-top: 64px;
  }

  body.home-page .home-custom-section .visual-custom.patient-photo-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 18px;
    border-radius: 28px;
  }

  body.home-page .home-custom-section .patient-photo {
    width: 100%;
    max-height: 360px;
  }

  body.home-page .home-custom-section .patient-symptom-card {
    padding: 20px 8px 12px;
  }

  body.home-page .home-custom-section .patient-symptom-card strong {
    font-size: 27px;
  }

  body.home-page .home-custom-section .detail-panel {
    margin-top: 18px;
  }

  body.home-page .home-custom-section .detail-panel h3 {
    font-size: clamp(44px, 12vw, 58px);
  }

  body.home-page .home-audience-section .audience-grid,
  body.home-page .home-trust-section .trust-panel {
    gap: 54px;
  }

  body.home-page .home-audience-section .audience-card:hover {
    transform: none;
  }

  body.home-page .home-plan-section .metric-row {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  body.home-page .home-plan-section .plan-band .metric-chip {
    min-height: 82px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 10, 9, 0.3);
  }

  body.home-page .home-plan-section .metric-chip:last-child {
    border-bottom: 0;
  }

  body.home-page .home-cta-section .container {
    width: min(100%, calc(100% - 16px));
  }

  body.home-page .home-cta-section .masking-photo-panel,
  body.home-page .home-cta-section .masking-photo-content {
    min-height: 700px;
  }

  body.home-page .home-cta-section .masking-photo-panel {
    border-radius: 26px;
  }

  body.home-page .home-cta-section .masking-photo-content {
    justify-content: flex-end;
    padding: 30px 24px;
  }

  body.home-page .home-cta-section .section-title {
    font-size: clamp(49px, 14vw, 68px);
  }

  body.home-page .footer-shell {
    align-items: start;
  }
}

@media (max-width: 768px) and (max-height: 640px) {
  body.home-page .hero-home .hero-copy {
    top: clamp(22px, 6svh, 36px);
  }

  body.home-page .hero-home .hero-title {
    margin-top: 14px;
    font-size: clamp(32px, 8vw, 38px);
  }

  body.home-page .hero-home .section-copy {
    margin-top: 12px;
    line-height: 1.45;
  }

  body.home-page .hero-home .hero-note {
    margin-top: 6px;
  }

  body.home-page .hero-home .hero-actions {
    margin-top: 10px;
  }
}

@media (min-width: 769px) and (prefers-reduced-motion: reduce) {
  body.home-page .hero-home .hero-copy {
    opacity: 1 !important;
    transform: translate3d(0, -50%, 0) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page .home-wave-hero {
    min-height: 100vh;
    min-height: 100svh;
  }

  body.home-page .home-wave-video {
    transition: none;
  }
}
