:root {
  --ink: #10201f;
  --muted: #5b6f6b;
  --paper: #f7fbf8;
  --soft: #edf5ef;
  --line: rgba(16, 32, 31, 0.12);
  --accent: #1b8a78;
  --teal: #1b8a78;
  --teal-deep: #0f5d55;
  --gold: #d7a33f;
  --coral: #de695c;
  --white: #ffffff;
  --dark: #10201f;
  --shadow: 0 24px 70px rgba(25, 51, 48, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(27, 138, 120, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(215, 163, 63, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  line-height: 1.7;
}

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

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(16, 32, 31, 0.08);
  background: rgba(247, 251, 248, 0.88);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  display: block;
  width: auto;
  max-width: 138px;
  height: auto;
  max-height: 42px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  padding: 8px 6px;
  color: var(--muted);
  border-radius: 999px;
  font-size: 12.5px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: rgba(27, 138, 120, 0.1);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.section,
.page-hero,
.hero {
  padding-inline: clamp(20px, 5vw, 72px);
}

.section {
  padding-top: clamp(72px, 10vw, 118px);
  padding-bottom: clamp(72px, 10vw, 118px);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 245, 239, 0.88)),
    repeating-linear-gradient(90deg, rgba(16, 32, 31, 0.04), rgba(16, 32, 31, 0.04) 1px, transparent 1px, transparent 28px);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(16, 32, 31, 0.96), rgba(15, 93, 85, 0.9) 58%, rgba(143, 88, 63, 0.78)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    var(--dark);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
}

.hero::before,
.page-hero::before,
.trust-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, transparent 0, rgba(255, 255, 255, 0.08) 50%, transparent 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 22px);
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(40px, 6vw, 78px);
  align-items: center;
}

.mobile-break {
  display: none;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #8fe0d0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 86px);
}

.home-hero-title {
  max-width: 760px;
  font-size: clamp(37px, 3.85vw, 54px);
  line-height: 1.14;
}

.home-hero-title span {
  display: block;
}

@media (min-width: 981px) {
  .home-hero-title span {
    white-space: nowrap;
  }
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

.hero-lead {
  max-width: 680px;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.86;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  box-shadow: 0 16px 34px rgba(15, 93, 85, 0.24);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.hero .button {
  min-width: 150px;
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.055);
}

.button.outline {
  color: var(--teal-deep);
  border-color: rgba(15, 93, 85, 0.26);
  background: rgba(255, 255, 255, 0.62);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.button.small {
  min-height: 42px;
  margin-top: 26px;
  padding: 10px 16px;
  font-size: 14px;
}

.hero-visual {
  position: relative;
  min-height: 460px;
  transform: translateY(-84px);
}

.signal-panel {
  position: relative;
  width: min(100%, 470px);
  height: 470px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(143, 224, 208, 0.22), rgba(255, 255, 255, 0.04) 38%, transparent 62%),
    conic-gradient(from 90deg, rgba(215, 163, 63, 0.24), rgba(27, 138, 120, 0.26), rgba(222, 105, 92, 0.2), rgba(215, 163, 63, 0.24));
  box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.06), 0 32px 90px rgba(0, 0, 0, 0.18);
}

.pulse-ring {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.ring-two {
  inset: 25%;
  border-style: dashed;
}

.pulse-core {
  position: absolute;
  inset: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(16, 32, 31, 0.48);
  text-align: center;
}

.data-card span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.pulse-core span {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  white-space: nowrap;
}

.pulse-core strong {
  display: block;
  margin: 0;
  font-size: 20px;
  line-height: 1;
}

.data-card {
  position: absolute;
  min-width: 136px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.data-card strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
}

.card-a {
  top: 16%;
  left: -5%;
}

.card-b {
  right: -4%;
  bottom: 24%;
}

.card-c {
  bottom: 8%;
  left: 12%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.hero-note {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.7;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-dark .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.module-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.feature-card,
.simple-card,
.contact-card,
.text-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 348px;
  padding: clamp(28px, 4vw, 42px);
}

.feature-card::after {
  position: absolute;
  right: -38px;
  bottom: -58px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(16, 32, 31, 0.1);
  border-radius: 50%;
  content: "";
}

.feature-tech {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(232, 246, 242, 0.82)),
    var(--white);
}

.feature-juice {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(252, 242, 224, 0.84)),
    var(--white);
}

.feature-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 42px;
  color: var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-weight: 800;
}

.feature-card p {
  margin-top: 18px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--teal-deep);
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  content: "→";
}

.company-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(247, 251, 248, 0.92));
}

.split-layout {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.large-text {
  margin-top: 22px;
  color: var(--teal-deep);
  font-size: clamp(22px, 3vw, 31px);
  line-height: 1.45;
}

.content-stack {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
}

.content-stack .button {
  justify-self: start;
  margin-top: 8px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 8px 0;
}

.role-grid div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.role-grid strong,
.role-grid span {
  display: block;
}

.role-grid span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.tech-system-section {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.95), rgba(237, 245, 239, 0.82)),
    var(--paper);
}

.system-map-section,
.step-guide-section {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.96), rgba(237, 245, 239, 0.86)),
    var(--paper);
}

.system-map-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.system-layer-card,
.tech-card,
.customer-value-card,
.scenario-entry-grid a {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 18px 46px rgba(25, 51, 48, 0.1);
}

.system-layer-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 24px;
}

.system-layer-card::after,
.tech-card::after,
.customer-value-card::after,
.scenario-entry-grid a::after {
  position: absolute;
  right: -42px;
  bottom: -56px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(15, 93, 85, 0.1);
  border-radius: 50%;
  content: "";
}

.system-layer-card > *,
.tech-card > *,
.customer-value-card > *,
.scenario-entry-grid a > * {
  position: relative;
  z-index: 1;
}

.system-layer-card span,
.tech-card span,
.customer-value-card span,
.scenario-entry-grid span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.system-layer-card h3,
.tech-card h3,
.customer-value-card h3,
.scenario-entry-grid h3 {
  margin-top: 18px;
  font-size: 22px;
}

.system-layer-card p,
.tech-card p,
.customer-value-card p,
.scenario-entry-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.system-layer-card strong {
  display: block;
  min-height: 44px;
  margin-top: 20px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.system-layer-card .text-link {
  margin-top: auto;
}

.tech-label-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.tech-label-grid article {
  padding: 22px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(25, 51, 48, 0.08);
}

.tech-label-grid span,
.tech-label-grid strong {
  display: block;
}

.tech-label-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.tech-label-grid strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 21px;
}

.tech-label-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.compact-heading {
  width: min(1120px, 100%);
  margin: 0 auto 18px;
}

.tech-path-compact article {
  min-height: 204px;
}

.tech-card-grid,
.customer-value-grid,
.scenario-entry-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.tech-card {
  min-height: 390px;
  padding: 28px;
}

.tech-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.7;
}

.customer-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.customer-value-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  padding: 24px;
}

.customer-value-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
}

.customer-value-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.scenario-entry-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 245, 239, 0.88)),
    var(--soft);
}

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

.scenario-entry-grid a {
  display: block;
  min-height: 220px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.scenario-entry-grid a:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 58px rgba(25, 51, 48, 0.14);
}

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

.button-row.center-row {
  justify-content: center;
}

.button-row .button,
.product-copy .button-row .button {
  margin-top: 0;
}

.resource-access-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(229, 246, 241, 0.82)),
    var(--white);
  box-shadow: var(--shadow);
}

.resource-access-panel p:not(.eyebrow),
.home-final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
}

.resource-access-panel .cta-actions {
  min-width: 320px;
}

.home-final-cta .cta-actions {
  min-width: min(430px, 100%);
}

.trust-section {
  position: relative;
  overflow: hidden;
}

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

.trust-grid {
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.trust-grid .number {
  color: #8fe0d0;
  font-weight: 800;
}

.trust-grid h3 {
  margin-top: 38px;
  font-size: 20px;
}

.trust-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.product-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(249, 246, 237, 0.88)),
    var(--paper);
}

.product-layout {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(300px, 0.8fr) 1fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.product-showcase {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.product-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 580px);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 480px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(16, 32, 31, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(27, 138, 120, 0.08), rgba(215, 163, 63, 0.16));
  background-size: 28px 28px, auto;
  box-shadow: var(--shadow);
}

.scene-visual {
  margin: 0;
  aspect-ratio: 4 / 3;
}

.product-scene {
  width: min(100%, 580px);
  height: clamp(320px, 30vw, 380px);
  min-height: 0;
  justify-self: end;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
}

.scene-visual img,
.story-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-visual img {
  position: absolute;
  inset: 0;
}

.scene-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 32, 31, 0.02), rgba(16, 32, 31, 0.26)),
    radial-gradient(circle at 18% 18%, rgba(143, 224, 208, 0.22), transparent 36%);
}

.scene-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 32, 31, 0.44);
  backdrop-filter: blur(14px);
  font-size: 14px;
  font-weight: 800;
}

.bottle-shape {
  position: relative;
  width: 150px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 52px 52px 28px 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 18%, rgba(215, 163, 63, 0.18) 60%, rgba(255, 255, 255, 0.4)),
    linear-gradient(180deg, rgba(255, 244, 214, 0.94), rgba(226, 151, 65, 0.78));
  box-shadow: 0 32px 80px rgba(171, 107, 37, 0.24);
}

.bottle-cap {
  position: absolute;
  top: -42px;
  left: 50%;
  width: 70px;
  height: 52px;
  border-radius: 16px 16px 4px 4px;
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  transform: translateX(-50%);
}

.bottle-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 82px;
  padding: 16px 8px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  text-align: center;
}

.bottle-label strong,
.bottle-label span {
  display: block;
}

.bottle-label span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 700;
}

.product-line {
  position: absolute;
  width: 72%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 32, 31, 0.24), transparent);
}

.line-one {
  top: 28%;
  transform: rotate(-18deg);
}

.line-two {
  bottom: 24%;
  transform: rotate(18deg);
}

.product-copy p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
}

.product-copy .button {
  margin-top: 30px;
}

.product-copy .product-tagline {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-top: 18px;
  padding: 5px 12px;
  border: 1px solid rgba(215, 163, 63, 0.28);
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 800;
}

.spec-section-heading {
  width: min(760px, 100%);
  margin: clamp(54px, 7vw, 76px) auto 24px;
  text-align: center;
}

.spec-section-heading h3 {
  font-size: clamp(26px, 3vw, 36px);
}

.spec-section-heading p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
}

.product-specs {
  display: grid;
  width: min(960px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(260px, 290px));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.product-spec-card {
  display: flex;
  min-height: 392px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(16, 32, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 248, 244, 0.82)),
    var(--white);
  box-shadow: 0 20px 54px rgba(25, 51, 48, 0.11);
}

.product-spec-image {
  position: relative;
  display: grid;
  flex: 0 0 210px;
  height: 210px;
  padding: 24px 24px 18px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 38%, rgba(215, 163, 63, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(236, 246, 241, 0.64));
}

.product-spec-image img {
  display: block;
  width: 100%;
  max-width: 82%;
  height: 100%;
  max-height: 168px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 16px 24px rgba(98, 71, 35, 0.14));
}

.product-spec-copy {
  display: grid;
  flex: 1;
  grid-template-rows: 18px 42px minmax(78px, 1fr);
  row-gap: 9px;
  align-content: start;
  padding: 22px 24px 24px;
  color: var(--ink);
  text-align: left;
}

.product-spec-copy span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 800;
  line-height: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-spec-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.35;
}

.product-spec-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
}

.benefit-list div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.benefit-list strong,
.benefit-list span {
  display: block;
}

.benefit-list span {
  color: var(--muted);
  font-size: 14px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 30px;
}

.spec-grid-wide {
  width: min(1040px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.spec-card {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 12%, rgba(215, 163, 63, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.74);
}

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

.spec-card::after {
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(15, 93, 85, 0.12);
  border-radius: 50%;
  content: "";
}

.spec-image {
  display: grid;
  height: 118px;
  margin: -6px 0 14px;
  place-items: center;
}

.spec-image-large {
  height: 210px;
  margin-top: -4px;
}

.spec-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(98, 71, 35, 0.18));
}

.spec-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(27, 138, 120, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.spec-card h3 {
  margin-top: 18px;
  font-size: 20px;
}

.spec-card p,
.product-copy .spec-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.juice-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(215, 163, 63, 0.26), transparent 28%),
    radial-gradient(circle at 18% 24%, rgba(143, 224, 208, 0.14), transparent 26%),
    linear-gradient(115deg, rgba(16, 32, 31, 0.98), rgba(15, 93, 85, 0.9) 54%, rgba(143, 88, 63, 0.76)),
    var(--dark);
}

.juice-hero > .juice-hero-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.juice-hero-copy p:not(.eyebrow) {
  max-width: 680px;
}

.juice-hero-media,
.juice-wide-image,
.juice-hpp-image,
.juice-media-card,
.juice-eco-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(16, 32, 31, 0.18);
}

.juice-hero-media {
  aspect-ratio: 16 / 9;
}

.juice-hero-media picture,
.juice-wide-image picture,
.juice-hpp-image picture,
.juice-media-card picture,
.juice-eco-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.juice-hero-media img,
.juice-wide-image img,
.juice-hpp-image img,
.juice-media-card img,
.juice-eco-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.juice-value-grid,
.juice-scene-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 16px;
}

.juice-value-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.juice-value-grid article,
.juice-scene-grid article {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 231, 0.74)),
    var(--white);
  box-shadow: 0 18px 46px rgba(25, 51, 48, 0.1);
}

.juice-value-grid article::after,
.juice-scene-grid article::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(215, 163, 63, 0.16);
  border-radius: 50%;
  content: "";
}

.juice-value-grid article > *,
.juice-scene-grid article > * {
  position: relative;
  z-index: 1;
}

.juice-value-grid span,
.juice-scene-grid span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.juice-value-grid h3,
.juice-scene-grid h3 {
  margin-top: 18px;
  font-size: 22px;
}

.juice-value-grid p,
.juice-scene-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.juice-wide-image {
  width: min(1120px, 100%);
  margin: 34px auto 0;
  aspect-ratio: 16 / 9;
  border-color: rgba(15, 93, 85, 0.12);
}

.juice-hpp-panel,
.juice-eco-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 231, 0.78)),
    var(--white);
  box-shadow: var(--shadow);
}

.juice-hpp-copy p,
.juice-eco-panel p {
  margin-top: 16px;
  color: var(--muted);
}

.juice-hpp-image,
.juice-media-card,
.juice-eco-image {
  aspect-ratio: 16 / 9;
  border-color: rgba(15, 93, 85, 0.12);
}

.juice-format-layout {
  align-items: center;
}

.juice-format-layout > div > p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.juice-format-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.juice-format-list article {
  padding: 16px 18px;
  border: 1px solid rgba(15, 93, 85, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.juice-format-list strong,
.juice-format-list span {
  display: block;
}

.juice-format-list strong {
  color: var(--ink);
  font-size: 15px;
}

.juice-format-list span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.juice-eco-panel {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(229, 246, 241, 0.76)),
    var(--white);
}

.juice-scene-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.juice-scene-grid article {
  min-height: 270px;
}

.juice-final-cta .cta-actions {
  min-width: min(520px, 100%);
}

.partner-section {
  padding-top: 0;
}

.partner-panel {
  display: flex;
  width: min(1120px, 100%);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(230, 245, 240, 0.8)),
    var(--white);
  box-shadow: var(--shadow);
}

.partner-panel p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 14px;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-section {
  background: linear-gradient(180deg, rgba(237, 245, 239, 0.72), rgba(247, 251, 248, 1));
}

.contact-hero {
  overflow: hidden;
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
}

.contact-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
}

.contact-hero .hero-actions {
  margin-top: 28px;
}

.hero-note {
  width: min(760px, 100%);
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.inquiry-context {
  width: min(1120px, 100%);
  margin: 0 auto 20px;
  padding: 18px 20px;
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(16, 68, 60, 0.08);
}

.inquiry-context span {
  display: block;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.inquiry-context strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 22px;
}

.inquiry-context p {
  max-width: 760px;
  margin-top: 8px;
  color: var(--muted);
}

.contact-inquiry-context {
  display: grid;
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.72fr);
  gap: 8px 18px;
  align-items: center;
}

.contact-inquiry-context span,
.contact-inquiry-context strong,
.contact-inquiry-context p {
  margin-top: 0;
}

.contact-inquiry-context p {
  grid-column: 2;
}

.contact-layout {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) 188px;
  gap: 18px;
  align-items: stretch;
}

.contact-layout-compact {
  grid-template-columns: minmax(0, 1fr) 170px;
}

.contact-grid {
  display: grid;
  width: 100%;
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.contact-card {
  min-height: 126px;
  padding: 22px;
}

.contact-card-wide {
  min-height: 112px;
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.contact-card strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.45;
}

.contact-card a {
  color: var(--ink);
  transition: color 0.2s ease;
}

.contact-card a:hover {
  color: var(--teal-deep);
}

.qr-card {
  display: grid;
  min-height: 126px;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(236, 247, 243, 0.78)),
    var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.qr-card img {
  display: block;
  width: min(116px, 100%);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card-large img {
  width: min(132px, 100%);
}

.qr-card span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.qr-card strong {
  display: block;
  color: var(--teal-deep);
  font-size: 16px;
}

.consult-type-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.consult-type-card {
  position: relative;
  display: flex;
  min-height: 292px;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 86% 4%, rgba(215, 163, 63, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(238, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 16px 42px rgba(16, 68, 60, 0.08);
}

.consult-type-card > span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: 50%;
  color: var(--teal-deep);
  background: rgba(27, 138, 120, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.consult-type-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.consult-type-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.consult-type-card small {
  display: block;
  margin-top: auto;
  color: rgba(91, 111, 107, 0.9);
  font-size: 13px;
  line-height: 1.6;
}

.consult-type-card .button {
  align-self: flex-start;
  margin-top: 4px;
}

.contact-process-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-process-grid article {
  min-height: 238px;
  padding: 26px 24px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 14px 36px rgba(16, 68, 60, 0.08);
}

.contact-process-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
}

.contact-process-grid h3 {
  margin: 22px 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.contact-process-grid p {
  color: var(--muted);
  font-size: 15px;
}

.contact-process-grid small {
  display: block;
  margin-top: 14px;
  color: rgba(15, 93, 85, 0.78);
  font-size: 13px;
}

.contact-boundary-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  padding: clamp(30px, 4vw, 44px);
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 12%, rgba(27, 138, 120, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: var(--shadow);
}

.contact-boundary-panel h2 {
  margin: 8px 0 0;
}

.contact-boundary-panel p {
  color: var(--muted);
}

.contact-boundary-panel p + p {
  margin-top: 16px;
}

.contact-read-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-read-grid a {
  position: relative;
  min-height: 214px;
  padding: 24px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 244, 0.76)),
    var(--white);
  box-shadow: 0 14px 34px rgba(16, 68, 60, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-read-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 93, 85, 0.28);
}

.contact-read-grid span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.contact-read-grid h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 20px;
}

.contact-read-grid p {
  color: var(--muted);
  font-size: 15px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 720px;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: 118px;
  height: auto;
  max-height: 56px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  object-fit: contain;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin-top: 8px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
}

.blog-hero {
  overflow: hidden;
}

.blog-hero::after,
.article-hero::after {
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(143, 224, 208, 0.16);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(143, 224, 208, 0.16), transparent 62%),
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 52px);
  content: "";
  pointer-events: none;
}

.blog-hero-content,
.article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
}

.blog-hero h1,
.article-hero h1 {
  max-width: 920px;
}

.blog-hero p:not(.eyebrow):not(.hero-note),
.article-hero p {
  max-width: 840px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.7vw, 21px);
}

.blog-hero-tags,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.blog-hero-tags span,
.article-meta span,
.blog-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

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

.blog-category-card,
.blog-card,
.article-sidebar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 54px rgba(25, 51, 48, 0.08);
}

.blog-category-card {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}

.blog-category-card > span,
.blog-category {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-category-card h3,
.blog-card h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.35;
}

.blog-category-card p,
.blog-card p {
  color: var(--muted);
}

.blog-category-card strong {
  margin-top: auto;
  color: var(--teal-deep);
  font-size: 13px;
  line-height: 1.6;
}

.blog-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
}

.blog-card-featured {
  border-color: rgba(27, 138, 120, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 245, 239, 0.82)),
    var(--white);
}

.blog-card h3 {
  font-size: clamp(21px, 2vw, 26px);
}

.blog-card .text-link {
  margin-top: auto;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.blog-tags span {
  min-height: 28px;
  border-color: rgba(27, 138, 120, 0.14);
  color: var(--teal-deep);
  background: rgba(27, 138, 120, 0.07);
}

.article-hero {
  position: relative;
  padding: clamp(82px, 10vw, 132px) clamp(20px, 5vw, 72px);
  overflow: hidden;
}

.article-hero-warm {
  background:
    linear-gradient(135deg, rgba(16, 32, 31, 0.96), rgba(27, 138, 120, 0.86), rgba(215, 163, 63, 0.34)),
    var(--dark);
}

.article-back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.article-hero .blog-category {
  display: inline-flex;
  margin-bottom: 18px;
  color: #8fe0d0;
}

.article-hero h1 {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: 0;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(28px, 5vw, 64px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin: 44px 0 16px;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.24;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li {
  color: var(--muted);
  font-size: 17px;
  line-height: 2;
}

.article-content p + p {
  margin-top: 14px;
}

.article-content ul {
  margin: 14px 0 0;
  padding-left: 1.2em;
}

.article-sidebar {
  position: sticky;
  top: 106px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}

.article-sidebar h2 {
  margin: 0 0 4px;
  font-size: 18px;
}

.article-sidebar a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(16, 32, 31, 0.08);
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 700;
}

.article-sidebar a:last-child {
  border-bottom: 0;
}

.article-bottom-section {
  padding-top: clamp(54px, 7vw, 86px);
  padding-bottom: clamp(54px, 7vw, 86px);
}

.article-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(27, 138, 120, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 245, 239, 0.78)),
    var(--white);
  box-shadow: 0 20px 60px rgba(25, 51, 48, 0.1);
}

.article-final-cta h2 {
  margin: 0 0 12px;
}

.article-final-cta p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
}

.article-final-cta .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-note {
  max-width: 980px;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(78px, 10vw, 124px);
  padding-bottom: clamp(62px, 8vw, 104px);
}

.page-hero > * {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
}

.page-hero p:not(.eyebrow) {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 19px;
}

.page-hero-warm {
  background:
    linear-gradient(115deg, rgba(16, 32, 31, 0.96), rgba(143, 88, 63, 0.84), rgba(215, 163, 63, 0.62)),
    var(--dark);
}

.tech-hero {
  background:
    radial-gradient(circle at 82% 28%, rgba(143, 224, 208, 0.2), transparent 28%),
    radial-gradient(circle at 14% 18%, rgba(27, 138, 120, 0.18), transparent 30%),
    linear-gradient(115deg, rgba(16, 32, 31, 0.98), rgba(15, 93, 85, 0.92) 58%, rgba(16, 32, 31, 0.94)),
    var(--dark);
}

.tech-hero .tech-hero-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.tech-hero-copy p:not(.eyebrow) {
  max-width: 720px;
}

.tech-hero-title {
  max-width: 640px;
  font-size: clamp(54px, 5.6vw, 78px);
  line-height: 1.16;
}

.tech-hero-title span {
  display: block;
  white-space: nowrap;
}

.tech-visual {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 1;
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(143, 224, 208, 0.24), rgba(255, 255, 255, 0.05) 34%, transparent 62%),
    conic-gradient(from 120deg, rgba(143, 224, 208, 0.18), rgba(27, 138, 120, 0.26), rgba(255, 255, 255, 0.08), rgba(143, 224, 208, 0.18));
  box-shadow: inset 0 0 72px rgba(255, 255, 255, 0.06), 0 28px 90px rgba(0, 0, 0, 0.2);
}

.tech-orbit,
.tech-wave,
.tech-node {
  position: absolute;
  pointer-events: none;
}

.tech-orbit {
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.orbit-two {
  inset: 25%;
  border-color: rgba(143, 224, 208, 0.22);
  border-style: dashed;
}

.tech-core {
  position: absolute;
  inset: 34%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(16, 32, 31, 0.58);
  text-align: center;
}

.tech-core span {
  position: absolute;
  top: 28%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.tech-core strong {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  line-height: 1;
}

.tech-wave {
  left: 17%;
  right: 17%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143, 224, 208, 0.74), transparent);
}

.wave-one {
  top: 35%;
  transform: rotate(-18deg);
}

.wave-two {
  bottom: 34%;
  transform: rotate(18deg);
}

.tech-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #8fe0d0;
  box-shadow: 0 0 22px rgba(143, 224, 208, 0.72);
}

.node-one {
  top: 19%;
  left: 26%;
}

.node-two {
  right: 18%;
  top: 44%;
}

.node-three {
  right: 35%;
  bottom: 18%;
}

.simple-page {
  min-height: 48vh;
}

.simple-grid {
  display: grid;
  width: min(1040px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.simple-card {
  padding: 28px;
}

.simple-card h2 {
  font-size: 24px;
}

.simple-card p,
.text-panel p {
  margin-top: 16px;
  color: var(--muted);
}

.text-panel {
  width: min(880px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
}

.text-panel-wide {
  width: min(1040px, 100%);
}

.intro-section {
  padding-bottom: clamp(42px, 6vw, 72px);
}

.tech-intro-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 246, 243, 0.78)),
    var(--white);
  box-shadow: 0 20px 54px rgba(25, 51, 48, 0.11);
}

.tech-intro-panel .content-stack p {
  color: var(--muted);
  font-size: 16px;
}

.resource-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.resource-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(239, 247, 243, 0.78)),
    var(--white);
  box-shadow: 0 18px 48px rgba(25, 51, 48, 0.1);
}

.resource-card::before {
  position: absolute;
  top: -54px;
  right: -54px;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(27, 138, 120, 0.16);
  border-radius: 50%;
  content: "";
}

.resource-card span {
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.resource-card h3 {
  margin-top: 34px;
  font-size: 20px;
}

.resource-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.resource-entry-grid {
  display: grid;
  width: min(960px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.resource-entry-grid-three {
  width: min(1120px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-entry-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(236, 247, 243, 0.78)),
    var(--white);
  box-shadow: 0 18px 48px rgba(25, 51, 48, 0.1);
}

.resource-entry-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(27, 138, 120, 0.12);
  border-radius: 50%;
  content: "";
}

.resource-entry-card > * {
  position: relative;
  z-index: 1;
}

.resource-entry-card span:not(.button) {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(27, 138, 120, 0.1);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-entry-card h3 {
  margin-top: 30px;
  font-size: 22px;
}

.resource-entry-card p {
  min-height: 72px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-grid .resource-entry-card p {
  min-height: 118px;
}

.faq-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(143, 224, 208, 0.2), transparent 28%),
    radial-gradient(circle at 18% 72%, rgba(215, 163, 63, 0.12), transparent 34%),
    linear-gradient(115deg, rgba(16, 32, 31, 0.98), rgba(15, 93, 85, 0.92) 58%, rgba(16, 32, 31, 0.94)),
    var(--dark);
}

.faq-hero .faq-hero-content {
  width: min(960px, 100%);
}

.faq-index-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.faq-category-nav {
  display: flex;
  width: min(1120px, 100%);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-category-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(25, 51, 48, 0.06);
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-category-nav a:hover {
  transform: translateY(-2px);
  background: rgba(229, 246, 241, 0.9);
}

.faq-section {
  scroll-margin-top: 92px;
}

.faq-heading {
  width: min(1120px, 100%);
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 14px 34px rgba(25, 51, 48, 0.08);
}

.faq-item summary {
  position: relative;
  display: grid;
  min-height: 68px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px 54px 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.45;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(15, 93, 85, 0.22);
  border-radius: 50%;
  color: var(--teal-deep);
  content: "+";
  font-size: 18px;
  line-height: 19px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  font-size: 12px;
  font-weight: 900;
}

.faq-item p {
  padding: 0 54px 22px 68px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.faq-routing-panel,
.faq-read-more {
  width: min(1120px, 100%);
  margin: clamp(36px, 6vw, 64px) auto 0;
}

.faq-routing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 52px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 18%, rgba(215, 163, 63, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(229, 246, 241, 0.82)),
    var(--white);
  box-shadow: var(--shadow);
}

.faq-routing-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted);
}

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

.faq-read-grid a {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 18px 46px rgba(25, 51, 48, 0.1);
}

.faq-read-grid a::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(15, 93, 85, 0.1);
  border-radius: 50%;
  content: "";
}

.faq-read-grid a > * {
  position: relative;
  z-index: 1;
}

.faq-read-grid span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.faq-read-grid h3 {
  margin-top: 16px;
  font-size: 21px;
}

.faq-read-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.resource-entry-card .button {
  margin-top: 24px;
}

.resource-tag-grid {
  display: grid;
  width: min(1040px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.resource-tag-grid .button {
  justify-content: flex-start;
  min-height: 58px;
  background: rgba(255, 255, 255, 0.72);
}

.resources-hero .hero-actions {
  width: min(850px, 100%);
}

.permission-grid,
.resource-library-grid,
.resource-process-grid,
.applicant-grid,
.resource-boundary-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 16px;
}

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

.permission-card,
.resource-library-card,
.resource-process-grid article,
.applicant-grid article,
.resource-boundary-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 18px 46px rgba(25, 51, 48, 0.1);
}

.permission-card {
  min-height: 360px;
  padding: 22px;
}

.permission-card::after,
.resource-library-card::after,
.resource-process-grid article::after,
.applicant-grid article::after,
.resource-boundary-grid article::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(15, 93, 85, 0.1);
  border-radius: 50%;
  content: "";
}

.permission-card > *,
.resource-library-card > *,
.resource-process-grid article > *,
.applicant-grid article > *,
.resource-boundary-grid article > * {
  position: relative;
  z-index: 1;
}

.permission-card span,
.resource-library-card span,
.resource-process-grid span,
.applicant-grid span,
.resource-boundary-grid span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.permission-card h3,
.resource-library-card h3,
.resource-process-grid h3,
.applicant-grid h3,
.resource-boundary-grid h3 {
  margin-top: 18px;
  font-size: 22px;
}

.permission-card p,
.resource-library-card p,
.resource-process-grid p,
.applicant-grid p,
.resource-boundary-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.permission-card strong,
.applicant-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 13px;
}

.permission-card em,
.resource-process-grid em {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-top: 18px;
  padding: 5px 10px;
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(27, 138, 120, 0.08);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

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

.resource-library-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 26px;
}

.resource-card-meta {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(15, 93, 85, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.resource-card-meta strong,
.resource-card-meta small {
  display: block;
}

.resource-card-meta strong {
  color: var(--ink);
  font-size: 13px;
}

.resource-card-meta small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.resource-card-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 93, 85, 0.12);
  color: rgba(91, 111, 107, 0.9);
  font-size: 13px;
}

.resource-library-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.resource-device-card {
  display: grid;
  width: min(1120px, 100%);
  margin: 18px auto 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 24px 26px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(143, 224, 208, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(25, 51, 48, 0.08);
}

.resource-device-card span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-device-card h3 {
  margin-top: 10px;
  font-size: 22px;
}

.resource-device-card p {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.resource-process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.resource-process-grid article {
  min-height: 300px;
  padding: 24px;
}

.resource-rationale-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(229, 246, 241, 0.78)),
    var(--white);
  box-shadow: var(--shadow);
}

.resource-rationale-panel .content-stack p {
  color: var(--muted);
  font-size: 16px;
}

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

.applicant-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 24px;
}

.applicant-grid .button {
  align-self: flex-start;
  margin-top: auto;
}

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

.resource-boundary-grid article {
  min-height: 340px;
  padding: 26px;
}

.resource-boundary-grid ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.resource-boundary-grid li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.resource-boundary-grid li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.resources-final-cta .cta-actions {
  min-width: min(520px, 100%);
}

.button.is-disabled {
  cursor: default;
  color: var(--muted);
  border-color: rgba(16, 32, 31, 0.12);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: none;
  pointer-events: none;
}

.tech-concept-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tech-concept-grid .resource-card {
  min-height: 228px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(236, 247, 243, 0.8)),
    var(--white);
}

.tech-path-section {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.96), rgba(238, 247, 244, 0.82)),
    var(--paper);
}

.tech-path {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  counter-reset: tech-path;
}

.tech-path article {
  position: relative;
  min-height: 238px;
  padding: 26px 22px;
  border: 1px solid rgba(16, 32, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 247, 244, 0.74)),
    var(--white);
  box-shadow: 0 16px 42px rgba(25, 51, 48, 0.09);
}

.tech-path article::before {
  position: absolute;
  top: 32px;
  right: -8px;
  width: 16px;
  height: 1px;
  background: rgba(15, 93, 85, 0.28);
  content: "";
}

.tech-path article:last-child::before {
  display: none;
}

.tech-path span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(27, 138, 120, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.tech-path h3 {
  margin-top: 34px;
  font-size: 20px;
}

.tech-path p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.tech-boundary-panel p + p {
  margin-top: 12px;
}

.tech-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(229, 246, 241, 0.82)),
    var(--white);
}

.tech-cta-panel h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.4vw, 42px);
}

.tech-cta-panel .button {
  min-width: 184px;
  min-height: 56px;
  padding-inline: 26px;
  justify-self: end;
  font-size: 16px;
}

.technology-core-grid,
.technology-layer-grid,
.technology-flow-grid,
.technology-audience-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.technology-layer-grid,
.technology-audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.technology-flow-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.technology-core-card,
.technology-layer-card,
.technology-flow-grid article,
.technology-audience-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 18px 46px rgba(25, 51, 48, 0.1);
}

.technology-core-card::after,
.technology-layer-card::after,
.technology-flow-grid article::after,
.technology-audience-grid article::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 148px;
  height: 148px;
  border: 1px solid rgba(15, 93, 85, 0.1);
  border-radius: 50%;
  content: "";
}

.technology-core-card > *,
.technology-layer-card > *,
.technology-flow-grid article > *,
.technology-audience-grid article > * {
  position: relative;
  z-index: 1;
}

.technology-core-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  padding: 28px;
}

.technology-layer-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
}

.technology-flow-grid article,
.technology-audience-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 24px;
}

.technology-core-card span,
.technology-layer-card span,
.technology-flow-grid span,
.technology-audience-grid span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.technology-core-card h3,
.technology-layer-card h3,
.technology-flow-grid h3,
.technology-audience-grid h3 {
  margin-top: 18px;
  font-size: 22px;
}

.technology-core-card p,
.technology-layer-card p,
.technology-flow-grid p,
.technology-audience-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.technology-core-card strong,
.technology-layer-card strong,
.technology-audience-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.technology-core-card em,
.technology-flow-grid em {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: rgba(91, 111, 107, 0.9);
  font-size: 13px;
  font-style: normal;
  line-height: 1.65;
}

.technology-layer-card .text-link {
  margin-top: auto;
}

.technology-flow-grid em {
  border-top: 1px solid rgba(15, 93, 85, 0.12);
}

.technology-service-section .button-row,
.technology-core-section .button-row {
  margin-top: 34px;
}

.technology-device-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 15%, rgba(143, 224, 208, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 248, 244, 0.84));
  box-shadow: 0 22px 54px rgba(25, 51, 48, 0.11);
}

.technology-device-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.technology-device-copy .button-row {
  justify-content: flex-start;
  margin-top: 28px;
}

.technology-device-figure {
  margin: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(15, 93, 85, 0.12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 30%, rgba(215, 163, 63, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(25, 51, 48, 0.12);
}

.technology-device-figure img {
  display: block;
  width: 100%;
  height: clamp(340px, 36vw, 470px);
  object-fit: contain;
  object-position: center;
}

.technology-device-figure figcaption {
  margin-top: 12px;
  color: rgba(91, 111, 107, 0.92);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.technology-compare-table {
  display: grid;
  overflow: hidden;
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 46px rgba(25, 51, 48, 0.1);
}

.compare-row {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1.16fr;
  border-top: 1px solid rgba(15, 93, 85, 0.1);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row > * {
  margin: 0;
  padding: 18px 20px;
  border-left: 1px solid rgba(15, 93, 85, 0.1);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.compare-row > *:first-child {
  border-left: 0;
}

.compare-row strong {
  color: var(--ink);
  font-size: 15px;
}

.compare-head {
  background:
    linear-gradient(135deg, rgba(15, 93, 85, 0.96), rgba(27, 138, 120, 0.86)),
    var(--teal-deep);
}

.compare-head span {
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.technology-audience-grid .button {
  align-self: flex-start;
  margin-top: auto;
}

.technology-boundary-grid article {
  min-height: 360px;
}

.technology-boundary-grid .text-link {
  margin-top: 22px;
}

.notice-panel,
.brand-manifesto,
.process-panel {
  position: relative;
  overflow: hidden;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(229, 246, 241, 0.78)),
    var(--white);
  box-shadow: var(--shadow);
}

.notice-panel::after,
.brand-manifesto::after,
.process-panel::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(27, 138, 120, 0.12);
  border-radius: 50%;
  content: "";
}

.notice-panel p:not(.eyebrow),
.brand-manifesto p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

.about-hero {
  background:
    radial-gradient(circle at 82% 22%, rgba(143, 224, 208, 0.2), transparent 28%),
    radial-gradient(circle at 14% 78%, rgba(215, 163, 63, 0.14), transparent 34%),
    linear-gradient(115deg, rgba(16, 32, 31, 0.98), rgba(15, 93, 85, 0.92) 58%, rgba(16, 32, 31, 0.94)),
    var(--dark);
}

.about-hero .about-hero-content {
  width: min(960px, 100%);
}

.about-role-grid,
.about-service-grid,
.about-principle-grid,
.about-audience-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 18px;
}

.about-role-grid,
.about-principle-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.about-role-card,
.about-service-card,
.about-principle-card,
.about-audience-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 18px 46px rgba(25, 51, 48, 0.1);
}

.about-role-card::after,
.about-service-card::after,
.about-principle-card::after,
.about-audience-card::after {
  position: absolute;
  right: -46px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(15, 93, 85, 0.1);
  border-radius: 50%;
  content: "";
}

.about-role-card > *,
.about-service-card > *,
.about-principle-card > *,
.about-audience-card > * {
  position: relative;
  z-index: 1;
}

.about-role-card,
.about-principle-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
}

.about-service-card,
.about-audience-card {
  display: flex;
  grid-column: span 2;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
}

.about-service-card:nth-last-child(-n + 2),
.about-audience-card:nth-last-child(-n + 2) {
  grid-column: span 3;
}

.about-role-card span,
.about-service-card span,
.about-principle-card span,
.about-audience-card span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-role-card h3,
.about-service-card h3,
.about-principle-card h3,
.about-audience-card h3 {
  margin-top: 18px;
  font-size: 21px;
}

.about-role-card p,
.about-service-card p,
.about-principle-card p,
.about-audience-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.about-service-card strong,
.about-principle-card strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}

.about-role-card .text-link,
.about-service-card .button,
.about-audience-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.about-ecosystem-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 18%, rgba(215, 163, 63, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(229, 246, 241, 0.82)),
    var(--white);
  box-shadow: var(--shadow);
}

.about-ecosystem-panel p:not(.eyebrow) {
  max-width: 780px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
}

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

.about-ecosystem-list span {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.story-layout {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.story-image {
  overflow: hidden;
  margin: 26px 0 0;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(25, 51, 48, 0.1);
}

.process-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: center;
}

.process-panel p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.process-visual {
  position: relative;
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(143, 224, 208, 0.26), transparent 55%),
    conic-gradient(from 180deg, rgba(215, 163, 63, 0.2), rgba(27, 138, 120, 0.28), rgba(215, 163, 63, 0.2));
}

.process-visual span {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.64);
  font-weight: 800;
  font-size: 13px;
}

.process-visual span:nth-child(1) {
  top: 32px;
}

.process-visual span:nth-child(2) {
  right: 18px;
  bottom: 78px;
}

.process-visual span:nth-child(3) {
  bottom: 32px;
  left: 28px;
}

.tag-grid {
  display: grid;
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.tag-grid span {
  display: grid;
  min-height: 78px;
  place-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--teal-deep);
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 34px rgba(25, 51, 48, 0.08);
}

.scenario-hero .hero-actions,
.scenario-hero .hero-points {
  width: min(850px, 100%);
}

.scenario-customer-grid,
.scenario-detail-grid,
.scenario-path-grid,
.scenario-matrix {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.scenario-customer-card,
.scenario-detail-card,
.scenario-path-card,
.scenario-matrix article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 18px 46px rgba(25, 51, 48, 0.1);
}

.scenario-customer-card {
  min-height: 360px;
  padding: 24px;
}

.scenario-customer-card::after,
.scenario-detail-card::after {
  position: absolute;
  right: -36px;
  bottom: -46px;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(15, 93, 85, 0.12);
  border-radius: 50%;
  content: "";
}

.scenario-customer-card > *,
.scenario-detail-card > * {
  position: relative;
  z-index: 1;
}

.scenario-customer-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(27, 138, 120, 0.1);
  font-size: 13px;
  font-weight: 900;
}

.scenario-customer-card h3 {
  margin-top: 20px;
  font-size: 21px;
}

.scenario-customer-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.scenario-customer-card strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 13px;
}

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

.scenario-detail-card {
  display: flex;
  min-height: 640px;
  flex-direction: column;
  padding: clamp(24px, 3.2vw, 34px);
}

.scenario-index {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  font-weight: 900;
}

.scenario-detail-card h3 {
  margin-top: 24px;
  font-size: clamp(24px, 3vw, 32px);
}

.scenario-subtitle {
  margin-top: 12px;
  color: var(--teal-deep);
  font-weight: 800;
  line-height: 1.6;
}

.scenario-detail-card p:not(.scenario-subtitle):not(.scenario-boundary),
.scenario-detail-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.scenario-detail-card p:not(.scenario-subtitle):not(.scenario-boundary) {
  margin-top: 18px;
}

.scenario-detail-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.scenario-detail-card li {
  position: relative;
  padding-left: 18px;
}

.scenario-detail-card li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.scenario-fit {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(15, 93, 85, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.scenario-fit strong,
.scenario-fit span {
  display: block;
}

.scenario-fit strong {
  color: var(--ink);
  font-size: 14px;
}

.scenario-fit span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.scenario-detail-card .button {
  align-self: flex-start;
}

.scenario-boundary {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(91, 111, 107, 0.9);
  font-size: 13px;
  line-height: 1.7;
}

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

.scenario-path-card {
  min-height: 360px;
  padding: 26px;
}

.scenario-path-card span,
.scenario-matrix span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scenario-path-card h3,
.scenario-matrix h3 {
  margin-top: 12px;
  font-size: 22px;
}

.scenario-path-card ol {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 800;
}

.scenario-path-card p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.scenario-matrix {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.scenario-matrix article {
  min-height: 260px;
  padding: 22px;
}

.scenario-matrix p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.scenario-matrix a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-deep);
  font-size: 14px;
  font-weight: 900;
}

.brand-manifesto {
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(16, 32, 31, 0.97), rgba(15, 93, 85, 0.9), rgba(143, 88, 63, 0.76)),
    var(--dark);
}

.brand-manifesto .eyebrow {
  color: #8fe0d0;
}

.brand-manifesto p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.wellness-hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 24, 22, 0.9) 0%, rgba(11, 50, 45, 0.72) 46%, rgba(38, 72, 44, 0.42) 72%, rgba(16, 32, 31, 0.52) 100%),
    linear-gradient(180deg, rgba(16, 32, 31, 0.2), rgba(16, 32, 31, 0.5)),
    url("../assets/images/wellness-tourism/optimized/wellness-hero-baoshan-mountain.jpg"),
    var(--dark);
  background-position: center center;
  background-size: cover;
}

.wellness-hero-visual {
  overflow: hidden;
}

.wellness-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.76fr);
  gap: 0;
  align-items: center;
  justify-content: start;
}

.wellness-hero-inner {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.wellness-hero-title {
  max-width: 920px;
  font-size: clamp(46px, 5.35vw, 78px);
  line-height: 1.1;
}

.wellness-hero-title span {
  display: block;
}

.scenario-hero-title span {
  display: block;
}

.wellness-hero .wellness-hero-kicker {
  max-width: 720px;
  margin-top: 18px;
  color: #8fe0d0;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  line-height: 1.35;
}

@media (min-width: 641px) {
  .wellness-hero-title span {
    white-space: nowrap;
  }
}

.wellness-hero-inner > p:not(.eyebrow):not(.hero-note):not(.wellness-hero-kicker) {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.78;
}

.wellness-hero .hero-points {
  max-width: 840px;
}

.wellness-hero-figure,
.wellness-gallery-grid figure,
.wellness-home-feature figure,
.wellness-scenario-feature figure,
.wellness-device-panel figure {
  margin: 0;
}

.wellness-hero-figure {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(4, 18, 16, 0.28);
}

.wellness-hero-figure::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 32, 31, 0.02), rgba(16, 32, 31, 0.28)),
    radial-gradient(circle at 20% 15%, rgba(143, 224, 208, 0.2), transparent 32%);
}

.wellness-hero-figure img,
.wellness-gallery-grid img,
.wellness-practice-images img,
.wellness-device-panel img,
.wellness-home-feature img,
.wellness-scenario-feature img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wellness-intro-panel,
.wellness-entry-panel,
.wellness-practice-panel,
.wellness-cooperation-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.wellness-intro-panel,
.wellness-entry-panel {
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid rgba(15, 93, 85, 0.15);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 10%, rgba(215, 163, 63, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(238, 248, 244, 0.8)),
    var(--white);
  box-shadow: var(--shadow);
}

.wellness-intro-panel {
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
}

.wellness-entry-panel {
  grid-template-columns: minmax(0, 1fr) auto;
}

.wellness-entry-section {
  background:
    linear-gradient(180deg, rgba(247, 251, 248, 0.94), rgba(242, 247, 240, 0.84)),
    var(--paper);
}

.wellness-home-feature,
.wellness-scenario-feature,
.wellness-device-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(15, 93, 85, 0.15);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(215, 163, 63, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 244, 0.82)),
    var(--white);
  box-shadow: var(--shadow);
}

.wellness-scenario-feature,
.wellness-device-panel {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
}

.wellness-home-feature figure,
.wellness-scenario-feature figure,
.wellness-device-panel figure {
  overflow: hidden;
  height: clamp(300px, 30vw, 420px);
  border-radius: 18px;
  background: var(--soft);
  box-shadow: 0 18px 48px rgba(25, 51, 48, 0.12);
}

.wellness-home-feature h2,
.wellness-scenario-feature h2,
.wellness-device-panel h2 {
  font-size: clamp(32px, 4vw, 50px);
}

.wellness-device-title span {
  display: block;
}

.wellness-hero .eyebrow,
.wellness-home-feature .eyebrow,
.wellness-scenario-feature .eyebrow,
.wellness-entry-panel .eyebrow {
  text-transform: none;
}

.wellness-home-feature p:not(.eyebrow),
.wellness-scenario-feature p:not(.eyebrow),
.wellness-device-panel p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.wellness-home-feature .wellness-entry-subtitle,
.wellness-scenario-feature .wellness-entry-subtitle,
.wellness-entry-panel .wellness-entry-subtitle {
  margin-top: 12px;
  color: var(--teal-deep);
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 800;
  line-height: 1.35;
}

.wellness-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.wellness-feature-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.wellness-home-value-grid {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wellness-home-value-grid article {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(15, 93, 85, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 248, 244, 0.72)),
    var(--white);
  box-shadow: 0 14px 36px rgba(16, 68, 60, 0.07);
}

.wellness-home-value-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-deep);
  font-size: 13px;
  font-weight: 800;
}

.wellness-home-value-grid h3 {
  margin-top: 14px;
  font-size: 21px;
}

.wellness-home-value-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.wellness-entry-panel h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.wellness-entry-panel p,
.wellness-intro-panel p {
  color: var(--muted);
}

.wellness-practice-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.wellness-gallery-grid,
.wellness-intro-card-grid,
.wellness-practice-layout,
.wellness-model-visual {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.wellness-gallery-grid article {
  overflow: hidden;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(16, 68, 60, 0.08);
}

.wellness-gallery-grid img {
  height: 210px;
}

.wellness-gallery-grid div {
  padding: 20px;
}

.wellness-gallery-grid span,
.wellness-intro-card-grid span,
.wellness-timeline span,
.wellness-model-center span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wellness-gallery-grid h3,
.wellness-intro-card-grid h3,
.wellness-timeline h3,
.wellness-model-visual h3 {
  margin-top: 10px;
  font-size: 21px;
}

.wellness-gallery-grid p,
.wellness-intro-card-grid p,
.wellness-timeline p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.wellness-intro-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wellness-intro-card-grid article,
.wellness-timeline article,
.wellness-model-visual article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 16px 42px rgba(16, 68, 60, 0.08);
}

.wellness-practice-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.wellness-practice-images {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 104px;
}

.wellness-practice-images img {
  height: 260px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(25, 51, 48, 0.14);
}

.wellness-timeline {
  display: grid;
  gap: 12px;
}

.wellness-timeline article {
  min-height: 132px;
  padding-left: 72px;
}

.wellness-timeline article span {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal-deep);
}

.wellness-model-grid,
.wellness-step-grid,
.wellness-scene-grid,
.wellness-cooperation-grid {
  display: grid;
  gap: 16px;
}

.wellness-model-grid,
.wellness-scene-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
}

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

.wellness-model-visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.wellness-balanced-title {
  width: min(1040px, 100%);
  margin-inline: auto;
  font-size: clamp(34px, 3.3vw, 44px);
  line-height: 1.18;
  text-wrap: balance;
}

.title-stack {
  display: flex;
  flex-direction: column;
  gap: 0.08em;
}

.title-stack span {
  display: block;
}

.wellness-balanced-title.title-stack {
  align-items: center;
}

.wellness-balanced-title.title-stack span,
.space-wellness-title span {
  white-space: nowrap;
}

.brand-nowrap {
  white-space: nowrap;
}

.wellness-model-center {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 28px 32px;
  border: 1px solid rgba(143, 224, 208, 0.26);
  border-radius: var(--radius);
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(143, 224, 208, 0.18), transparent 36%),
    linear-gradient(135deg, rgba(16, 32, 31, 0.96), rgba(15, 93, 85, 0.92));
  box-shadow: 0 18px 48px rgba(16, 68, 60, 0.18);
}

.wellness-model-center strong {
  display: block;
  max-width: 100%;
  margin-top: 0;
  font-size: clamp(28px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.wellness-model-center span {
  color: #8fe0d0;
}

.wellness-model-center .model-label {
  display: block;
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: #8fe0d0;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wellness-model-center strong span {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
  text-transform: none;
  white-space: nowrap;
}

.wellness-model-visual article {
  min-height: 210px;
}

.wellness-model-visual article p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.space-wellness-panel {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 44px);
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 0.62fr);
  gap: 28px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(143, 224, 208, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 244, 0.82));
  box-shadow: 0 20px 56px rgba(16, 68, 60, 0.08);
}

.space-wellness-panel h2,
.space-wellness-shift-panel h2,
.space-wellness-relation-grid h2 {
  margin-top: 10px;
}

.space-wellness-title {
  font-size: clamp(48px, 4.4vw, 72px);
  line-height: 1.08;
}

.space-wellness-panel p:not(.eyebrow),
.space-wellness-shift-panel p:not(.eyebrow),
.space-wellness-relation-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.space-wellness-dimension-grid {
  display: grid;
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.space-wellness-dimension-grid article,
.space-wellness-relation-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 248, 244, 0.72)),
    var(--white);
  box-shadow: 0 16px 40px rgba(16, 68, 60, 0.07);
}

.space-wellness-dimension-grid article::after,
.space-wellness-relation-grid article::after {
  position: absolute;
  right: -46px;
  bottom: -62px;
  width: 142px;
  height: 142px;
  border: 1px solid rgba(143, 224, 208, 0.22);
  border-radius: 50%;
  content: "";
}

.space-wellness-dimension-grid article > *,
.space-wellness-relation-grid article > * {
  position: relative;
  z-index: 1;
}

.space-wellness-dimension-grid h3 {
  font-size: 19px;
}

.space-wellness-dimension-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.space-wellness-dimension-grid div {
  display: flex;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 8px;
}

.space-wellness-dimension-grid span {
  display: inline-flex;
  padding: 6px 10px;
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: 999px;
  color: var(--teal-deep);
  background: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 800;
}

.space-wellness-shift-panel {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(15, 93, 85, 0.16);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 224, 208, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(16, 32, 31, 0.96), rgba(15, 93, 85, 0.92));
  box-shadow: 0 22px 64px rgba(16, 68, 60, 0.18);
}

.space-wellness-shift-panel .eyebrow,
.space-wellness-shift-panel h2,
.space-wellness-shift-panel p {
  color: var(--white);
}

.space-wellness-shift-panel p:not(.eyebrow) {
  width: min(780px, 100%);
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
}

.space-wellness-relation-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.space-wellness-relation-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.space-wellness-relation-grid .button {
  align-self: flex-start;
  margin-top: auto;
}

.wellness-step-grid {
  width: min(980px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wellness-scene-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wellness-cooperation-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wellness-practice-panel article,
.wellness-model-grid article,
.wellness-step-grid article,
.wellness-scene-grid article,
.wellness-cooperation-grid article {
  position: relative;
  overflow: hidden;
  min-height: 236px;
  padding: 24px;
  border: 1px solid rgba(15, 93, 85, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 244, 0.78)),
    var(--white);
  box-shadow: 0 16px 42px rgba(16, 68, 60, 0.08);
}

.wellness-model-grid article {
  min-height: 250px;
}

.wellness-scene-grid article {
  min-height: 224px;
}

.wellness-cooperation-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.wellness-practice-panel article::after,
.wellness-model-grid article::after,
.wellness-step-grid article::after,
.wellness-scene-grid article::after,
.wellness-cooperation-grid article::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(215, 163, 63, 0.16);
  border-radius: 50%;
  content: "";
}

.wellness-practice-panel article > *,
.wellness-model-grid article > *,
.wellness-step-grid article > *,
.wellness-scene-grid article > *,
.wellness-cooperation-grid article > * {
  position: relative;
  z-index: 1;
}

.wellness-practice-panel span,
.wellness-model-grid span,
.wellness-step-grid span,
.wellness-scene-grid span,
.wellness-cooperation-grid span {
  color: var(--teal-deep);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wellness-practice-panel h3,
.wellness-model-grid h3,
.wellness-step-grid h3,
.wellness-scene-grid h3,
.wellness-cooperation-grid h3 {
  margin-top: 18px;
  font-size: 22px;
}

.wellness-practice-panel p,
.wellness-model-grid p,
.wellness-step-grid p,
.wellness-scene-grid p,
.wellness-cooperation-grid p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.wellness-cooperation-grid strong {
  color: var(--ink);
}

.wellness-cooperation-grid .button {
  align-self: flex-start;
  margin-top: auto;
}

.wellness-boundary-panel {
  background:
    radial-gradient(circle at 92% 12%, rgba(215, 163, 63, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 244, 0.78)),
    var(--white);
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 24;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 72px;
  }

  .hero-grid,
  .split-layout,
  .product-layout,
  .product-top,
  .wellness-hero-layout,
  .wellness-home-feature,
  .wellness-scenario-feature,
  .wellness-device-panel,
  .wellness-practice-layout,
  .juice-hero > .juice-hero-grid,
  .juice-hpp-panel,
  .juice-eco-panel,
  .tech-hero .tech-hero-grid,
  .tech-intro-panel,
  .story-layout,
  .process-panel,
  .resource-rationale-panel,
  .resource-access-panel,
  .technology-device-panel,
  .resource-device-card,
  .wellness-intro-panel,
  .wellness-entry-panel,
  .wellness-entry-panel-grid {
    grid-template-columns: 1fr;
  }

  .tech-visual {
    width: min(360px, 100%);
    justify-self: start;
  }

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

  .tech-path article::before {
    display: none;
  }

  .product-scene {
    width: min(100%, 580px);
    height: clamp(300px, 54vw, 360px);
    justify-self: start;
  }

  .product-specs {
    width: min(620px, 100%);
    grid-template-columns: repeat(2, minmax(260px, 290px));
  }

  .hero-visual {
    min-height: 380px;
    transform: none;
  }

  .signal-panel {
    height: min(380px, 82vw);
    width: min(380px, 82vw);
    margin: 0 auto;
  }

  .module-grid,
  .module-grid-three,
  .trust-grid,
  .contact-grid,
  .consult-type-grid,
  .contact-process-grid,
  .contact-read-grid,
  .simple-grid,
  .resource-grid,
  .about-role-grid,
  .about-service-grid,
  .about-principle-grid,
  .about-audience-grid,
  .juice-value-grid,
  .juice-scene-grid,
  .technology-core-grid,
  .technology-layer-grid,
  .technology-flow-grid,
  .technology-audience-grid,
  .permission-grid,
  .resource-library-grid,
  .resource-process-grid,
  .applicant-grid,
  .resource-boundary-grid,
  .faq-read-grid,
  .system-map-grid,
  .tech-card-grid,
  .customer-value-grid,
  .scenario-entry-grid,
  .scenario-customer-grid,
  .scenario-detail-grid,
  .scenario-path-grid,
  .wellness-gallery-grid,
  .wellness-intro-card-grid,
  .wellness-home-value-grid,
  .wellness-model-visual,
  .wellness-practice-panel,
  .wellness-model-grid,
  .wellness-step-grid,
  .wellness-scene-grid,
  .wellness-cooperation-grid,
  .space-wellness-dimension-grid,
  .space-wellness-relation-grid,
  .spec-grid,
  .tag-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-service-card,
  .about-service-card:nth-last-child(-n + 2),
  .about-audience-card,
  .about-audience-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .contact-layout,
  .contact-layout-compact {
    grid-template-columns: 1fr;
  }

  .contact-inquiry-context,
  .contact-boundary-panel {
    grid-template-columns: 1fr;
  }

  .space-wellness-panel {
    grid-template-columns: 1fr;
  }

  .contact-inquiry-context p {
    grid-column: auto;
  }

  .about-ecosystem-panel {
    grid-template-columns: 1fr;
  }

  .faq-routing-panel {
    grid-template-columns: 1fr;
  }

  .qr-card {
    width: min(240px, 100%);
    justify-self: center;
  }

  .process-visual {
    width: min(320px, 100%);
    margin: 0 auto;
  }

  .partner-panel,
  .site-footer,
  .footer-main,
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-category-grid,
  .blog-card-grid,
  .article-layout,
  .article-final-cta {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .article-final-cta .cta-actions {
    justify-content: flex-start;
  }

  .tech-cta-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tech-cta-panel .button {
    justify-self: start;
  }

  .resource-access-panel .cta-actions,
  .home-final-cta .cta-actions,
  .resources-final-cta .cta-actions,
  .juice-final-cta .cta-actions,
  .wellness-entry-panel .cta-actions,
  .wellness-home-feature .cta-actions,
  .wellness-scenario-feature .cta-actions {
    min-width: 0;
    justify-content: flex-start;
  }

  .wellness-hero-figure {
    min-height: 340px;
  }

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

  .wellness-practice-images img {
    height: 260px;
  }

  .compare-row {
    grid-template-columns: 0.72fr 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 70px;
    padding: 14px 18px;
  }

  .nav-toggle {
    top: 14px;
    right: 18px;
  }

  .brand-logo {
    max-width: 104px;
    max-height: 36px;
  }

  .site-nav {
    top: 70px;
    right: 14px;
    left: 14px;
  }

  h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(26px, 7.2vw, 30px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .wellness-balanced-title.title-stack {
    font-size: clamp(28px, 8vw, 34px);
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .space-wellness-title {
    font-size: clamp(42px, 13vw, 56px);
    overflow-wrap: normal;
    word-break: keep-all;
  }

  .page-hero h1 {
    max-width: calc(100vw - 40px);
    font-size: clamp(28px, 7.2vw, 32px);
    line-height: 1.18;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .wellness-hero-title {
    font-size: clamp(34px, 9.4vw, 40px);
    word-break: keep-all;
  }

  .wellness-hero-inner,
  .wellness-hero .wellness-hero-kicker,
  .wellness-hero-inner > p:not(.eyebrow):not(.hero-note):not(.wellness-hero-kicker),
  .wellness-hero .hero-actions,
  .wellness-hero .hero-points,
  .wellness-hero .hero-note {
    width: min(100%, 326px) !important;
    max-width: min(100%, 326px) !important;
  }

  .scenario-hero h1,
  .scenario-hero p:not(.eyebrow),
  .scenario-hero .hero-actions,
  .scenario-hero .hero-points {
    width: min(100%, 326px) !important;
    max-width: min(100%, 326px) !important;
  }

  .tech-hero-title {
    font-size: clamp(36px, 10.2vw, 44px);
    line-height: 1.18;
  }

  .tech-hero-title span {
    white-space: nowrap;
  }

  .page-hero p:not(.eyebrow),
  .tech-hero .tech-hero-copy p:not(.eyebrow) {
    width: 100%;
    max-width: calc(100vw - 64px);
    font-size: 16px;
    line-height: 1.78;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .page-hero > *,
  .tech-hero .tech-hero-grid,
  .tech-hero-copy,
  .hero-actions,
  .hero-points {
    min-width: 0;
    max-width: 100%;
  }

  .page-hero > *,
  .tech-hero .tech-hero-grid {
    width: 100%;
    max-width: 100%;
  }

  .tech-hero-copy {
    width: 100%;
  }

  .mobile-break {
    display: block;
  }

  .home-hero-title {
    max-width: 100%;
    font-size: clamp(30px, 8.2vw, 36px);
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .home-hero-title span {
    white-space: normal;
  }

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

  .hero-lead {
    max-width: 100%;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.78;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .hero-actions,
  .footer-links {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero .button {
    min-width: 0;
  }

  .blog-category-grid,
  .blog-card-grid {
    gap: 14px;
  }

  .blog-category-card,
  .blog-card {
    min-height: auto;
    padding: 22px;
  }

  .blog-hero-tags span,
  .article-meta span,
  .blog-tags span {
    min-height: 28px;
    font-size: 12px;
  }

  .article-hero {
    padding: 72px 20px 68px;
  }

  .article-hero-inner {
    width: calc(100vw - 40px);
    max-width: 100%;
    min-width: 0;
  }

  .article-hero h1 {
    max-width: 100%;
    font-size: clamp(28px, 7.6vw, 34px);
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-hero p {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.78;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-meta {
    width: 100%;
  }

  .article-meta span {
    display: block;
    flex: 1 1 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-layout {
    padding: 52px 20px;
  }

  .article-content p,
  .article-content li {
    font-size: 16px;
    line-height: 1.9;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .article-content h2 {
    margin-top: 36px;
  }

  .article-final-cta {
    padding: 24px;
  }

  .article-final-cta .cta-actions,
  .article-final-cta .button {
    width: 100%;
  }

  .tech-cta-panel h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .tech-cta-panel .button {
    min-width: 0;
  }

  .cta-actions {
    width: 100%;
    justify-content: stretch;
  }

  .module-grid,
  .module-grid-three,
  .trust-grid,
  .contact-grid,
  .consult-type-grid,
  .contact-process-grid,
  .contact-read-grid,
  .simple-grid,
  .resource-grid,
  .about-role-grid,
  .about-service-grid,
  .about-principle-grid,
  .about-audience-grid,
  .resource-entry-grid,
  .resource-tag-grid,
  .juice-value-grid,
  .juice-scene-grid,
  .technology-core-grid,
  .technology-layer-grid,
  .technology-flow-grid,
  .technology-audience-grid,
  .permission-grid,
  .resource-library-grid,
  .resource-process-grid,
  .applicant-grid,
  .resource-boundary-grid,
  .faq-read-grid,
  .system-map-grid,
  .tech-card-grid,
  .customer-value-grid,
  .scenario-entry-grid,
    .scenario-customer-grid,
    .scenario-detail-grid,
    .scenario-path-grid,
    .scenario-matrix,
    .wellness-gallery-grid,
    .wellness-intro-card-grid,
    .wellness-home-value-grid,
    .wellness-model-visual,
    .wellness-practice-panel,
    .wellness-model-grid,
    .wellness-step-grid,
  .wellness-scene-grid,
  .wellness-cooperation-grid,
  .space-wellness-dimension-grid,
  .space-wellness-relation-grid,
  .blog-category-grid,
  .blog-card-grid,
  .article-layout,
  .article-final-cta,
  .tech-label-grid,
  .tech-path,
  .spec-grid,
  .tag-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .about-service-card,
  .about-service-card:nth-last-child(-n + 2),
  .about-audience-card,
  .about-audience-card:nth-last-child(-n + 2) {
    grid-column: auto;
  }

  .hero-points span,
  .tag-grid span,
  .faq-category-nav a {
    width: 100%;
  }

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

  .system-layer-card,
  .tech-card,
  .customer-value-card,
  .scenario-entry-grid a,
  .juice-value-grid article,
  .juice-scene-grid article,
  .wellness-practice-panel article,
  .wellness-model-grid article,
  .wellness-step-grid article,
  .wellness-scene-grid article,
  .wellness-cooperation-grid article,
  .about-role-card,
  .about-service-card,
  .about-principle-card,
  .about-audience-card,
  .technology-core-card,
    .technology-layer-card,
    .technology-flow-grid article,
    .technology-audience-grid article,
    .permission-card,
    .resource-library-card,
    .resource-process-grid article,
    .applicant-grid article,
    .resource-boundary-grid article,
    .wellness-gallery-grid article,
    .wellness-intro-card-grid article,
    .wellness-model-visual article {
    min-height: auto;
  }

  .article-sidebar {
    position: static;
  }

  .system-layer-card,
  .tech-card,
  .customer-value-card,
  .scenario-entry-grid a,
  .juice-value-grid article,
  .juice-scene-grid article,
  .about-role-card,
  .about-service-card,
  .about-principle-card,
  .about-audience-card,
  .technology-core-card,
  .technology-layer-card,
  .technology-flow-grid article,
  .technology-audience-grid article,
  .permission-card,
  .resource-library-card,
  .resource-process-grid article,
  .applicant-grid article,
  .resource-boundary-grid article,
  .faq-routing-panel,
  .resource-rationale-panel,
  .resource-access-panel,
    .wellness-intro-panel,
    .wellness-entry-panel,
    .wellness-home-feature,
    .wellness-scenario-feature,
    .wellness-device-panel,
    .about-ecosystem-panel,
    .juice-hpp-panel,
  .juice-eco-panel,
  .technology-device-panel,
  .resource-device-card,
  .blog-category-card,
  .blog-card,
  .article-sidebar {
    padding: 24px 20px;
  }

  .wellness-hero-layout {
    gap: 30px;
  }

  .wellness-hero-figure,
  .wellness-home-feature figure,
  .wellness-scenario-feature figure,
  .wellness-device-panel figure {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .wellness-gallery-grid img {
    height: 220px;
  }

  .wellness-practice-images {
    grid-template-columns: 1fr;
  }

  .wellness-practice-images img {
    height: 230px;
  }

  .wellness-timeline article {
    padding-left: 62px;
  }

  .wellness-model-center {
    min-height: 220px;
    border-radius: var(--radius);
    padding: 28px 24px;
  }

  .wellness-model-center strong {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(24px, 6.6vw, 30px);
    white-space: nowrap;
  }

  .wellness-balanced-title {
    font-size: clamp(28px, 7vw, 32px);
    text-wrap: auto;
  }

  .brand-nowrap {
    white-space: normal;
  }

  .technology-device-figure img {
    height: min(420px, 92vw);
  }

  .system-layer-card .text-link {
    margin-top: 24px;
  }

  .button-row {
    width: 100%;
  }

  .faq-item summary {
    min-height: 62px;
    grid-template-columns: auto minmax(0, 1fr);
    padding: 16px 48px 16px 16px;
    font-size: 16px;
  }

  .faq-item summary span {
    width: 30px;
    height: 30px;
  }

  .faq-item p {
    padding: 0 20px 20px 58px;
    font-size: 14px;
  }

  .resource-library-card .button,
  .applicant-grid .button,
  .technology-audience-grid .button,
  .consult-type-card .button {
    align-self: stretch;
  }

  .technology-compare-table {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .compare-row,
  .compare-row.compare-head {
    display: block;
    overflow: hidden;
    margin-top: 12px;
    border: 1px solid rgba(15, 93, 85, 0.14);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 248, 244, 0.78)),
      var(--white);
    box-shadow: 0 14px 34px rgba(25, 51, 48, 0.08);
  }

  .compare-row.compare-head {
    display: none;
  }

  .compare-row > * {
    display: block;
    border-left: 0;
    border-top: 1px solid rgba(15, 93, 85, 0.1);
    padding: 14px 18px;
  }

  .compare-row > *:first-child {
    border-top: 0;
  }

  .compare-row strong {
    color: var(--teal-deep);
    font-size: 16px;
  }

  .scenario-customer-card,
  .scenario-detail-card,
  .scenario-path-card,
  .scenario-matrix article,
  .wellness-practice-panel article,
  .wellness-model-grid article,
  .wellness-step-grid article,
  .wellness-scene-grid article,
  .wellness-cooperation-grid article {
    min-height: auto;
  }

  .scenario-detail-card {
    padding: 24px 20px;
  }

  .scenario-detail-card .button,
  .scenario-path-card .button,
  .wellness-cooperation-grid .button {
    align-self: stretch;
  }

  .feature-icon {
    margin-bottom: 28px;
  }

  .data-card {
    min-width: 104px;
    padding: 10px 11px;
  }

  .data-card span {
    font-size: 11px;
  }

  .data-card strong {
    font-size: 15px;
  }

  .card-a {
    top: 13%;
    left: 0;
  }

  .card-b {
    right: 0;
    bottom: 22%;
  }

  .card-c {
    bottom: 5%;
    left: 8%;
  }

  .hero-visual {
    min-height: 330px;
    transform: none;
  }

  .signal-panel {
    height: min(320px, 78vw);
    width: min(320px, 78vw);
  }

  .hero-points {
    margin-top: 24px;
  }

  .hero-note {
    margin-top: 16px;
    overflow-wrap: anywhere;
    word-break: break-all;
  }

  .wellness-hero-inner,
  .wellness-hero p:not(.eyebrow),
  .wellness-hero .hero-note {
    max-width: calc(100vw - 64px);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .tech-hero {
    padding-top: 74px;
    padding-bottom: 64px;
  }

  .tech-visual {
    width: min(300px, 84vw);
    margin: 6px auto 0;
    justify-self: center;
  }

  .tech-core {
    inset: 32%;
  }

  .tech-core strong {
    font-size: 15px;
  }

  .tech-intro-panel {
    padding: 26px 22px;
  }

  .tech-path {
    position: relative;
    gap: 14px;
  }

  .tech-path::before {
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 17px;
    width: 1px;
    background: rgba(15, 93, 85, 0.16);
    content: "";
  }

  .tech-path article {
    min-height: auto;
    padding: 22px 20px 22px 42px;
  }

  .tech-path article::after {
    position: absolute;
    top: 28px;
    left: 13px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 5px rgba(27, 138, 120, 0.1);
    content: "";
  }

  .tech-path h3 {
    margin-top: 22px;
  }

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

  .scene-visual {
    min-height: 300px;
  }

  .product-scene {
    height: 300px;
    min-height: 0;
  }

  .product-specs {
    width: min(320px, 100%);
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-spec-card {
    height: auto;
    min-height: 380px;
  }

  .product-spec-image {
    flex-basis: 200px;
    height: 200px;
    min-height: 0;
    padding: 20px 20px 16px;
  }

  .product-spec-image img {
    max-height: 154px;
  }

  .product-spec-copy h3 {
    font-size: 21px;
  }

  .product-spec-copy {
    height: auto;
    grid-template-rows: 18px 40px minmax(74px, 1fr);
    padding: 20px 22px 22px;
  }

  .scene-visual figcaption {
    right: 12px;
    bottom: 12px;
    font-size: 13px;
  }

  .spec-image,
  .spec-image-large {
    height: 170px;
  }

  .contact-card {
    min-height: 106px;
  }

  .contact-inquiry-context,
  .consult-type-card,
  .contact-process-grid article,
  .contact-boundary-panel,
  .contact-read-grid a {
    padding: 22px 20px;
  }

  .contact-hero-tags span {
    width: 100%;
    justify-content: center;
  }

  .footer-logo {
    max-width: 108px;
  }
}
