:root {
  --bg: #f4f2ed;
  --text: #181b18;
  --muted: #687068;
  --forest: #173f33;
  --ink: #111413;
  --sage: #e3ebe5;
  --stone: #ede9df;
  --surface: #fffefa;
  --accent: #b86c4a;
  --line: rgba(24, 27, 24, 0.12);
  --shadow: 0 26px 70px rgba(17, 20, 19, 0.12);
  --radius: 4px;
  --container: 1200px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(184, 108, 74, 0.72);
  outline-offset: 4px;
}

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

p,
h3 {
  overflow-wrap: break-word;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 86px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #000;
  color: #fff;
}

.brand {
  position: absolute;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: max-content;
  color: #fff;
  transform: translateX(-50%);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: #fff url("./assets/cyberism-logo-96.webp") center / 104% auto no-repeat;
}

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

.brand strong {
  font-size: 0.92rem;
  line-height: 1.05;
}

.brand span span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-login {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 0 12px;
  color: #fff;
  font-size: 1rem;
  font-weight: 760;
}

.platform-login span {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.platform-login span::before,
.platform-login span::after {
  position: absolute;
  left: 50%;
  background: #000;
  content: "";
  transform: translateX(-50%);
}

.platform-login span::before {
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.platform-login span::after {
  bottom: 9px;
  width: 20px;
  height: 12px;
  border-radius: 10px 10px 4px 4px;
}

.platform-login:hover {
  color: rgba(255, 255, 255, 0.78);
}

.platform-login:hover span {
  background: #fff;
}

.platform-login[aria-expanded="true"] {
  border-color: #0b8be8;
}

.login-overlay {
  position: fixed;
  inset: 86px 0 0;
  z-index: 24;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(28px, 5vw, 64px) clamp(18px, 5vw, 72px);
  background: rgba(0, 0, 0, 0.58);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.login-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.login-modal {
  position: relative;
  width: min(620px, 100%);
  border-radius: 4px;
  padding: clamp(34px, 5vw, 58px);
  background: #fffefa;
  color: var(--text);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.34);
  transform: translateY(-10px);
  transition: transform 180ms ease;
}

.login-overlay.is-open .login-modal {
  transform: translateY(0);
}

.login-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.login-modal-close::before,
.login-modal-close::after {
  position: absolute;
  top: 18px;
  left: 8px;
  width: 22px;
  height: 2px;
  background: var(--text);
  content: "";
}

.login-modal-close::before {
  transform: rotate(45deg);
}

.login-modal-close::after {
  transform: rotate(-45deg);
}

.login-modal h2 {
  max-width: 520px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.login-modal p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 18px;
  color: var(--text);
  font-size: 1.08rem;
}

.login-modal ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.login-modal li {
  position: relative;
  padding-left: 34px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 650;
}

.login-modal li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.login-modal-actions {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.login-modal-actions .button {
  width: 100%;
}

.site-nav {
  position: fixed;
  inset: 86px auto 0 0;
  z-index: 19;
  display: flex;
  width: min(420px, 100vw);
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 32px clamp(22px, 5vw, 44px);
  background: #050505;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.28rem, 2.4vw, 1.8rem);
  font-weight: 620;
  transform: translateX(-100%);
  transition: transform 240ms ease;
}

.site-nav.is-open {
  transform: translateX(0);
}

.site-nav a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
}

.site-nav a:not(.button):hover {
  color: #fff;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  align-self: flex-start;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 38px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  padding: 0 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  background: #fff;
  color: #000;
}

.site-nav .button {
  justify-content: center;
  margin-top: 22px;
  border-color: rgba(255, 255, 255, 0.22);
  background: #fff;
  color: #000;
  font-size: 1rem;
}

.site-nav .button:hover {
  background: rgba(255, 255, 255, 0.86);
  color: #000;
}

.menu-toggle {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.035);
}

.menu-toggle span[aria-hidden="true"],
.menu-toggle span[aria-hidden="true"]::before,
.menu-toggle span[aria-hidden="true"]::after {
  display: block;
  width: 28px;
  height: 2px;
  margin: auto;
  background: #fff;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span[aria-hidden="true"] {
  position: relative;
}

.menu-toggle span[aria-hidden="true"]::before {
  position: absolute;
  left: 0;
  transform: translateY(-8px);
}

.menu-toggle span[aria-hidden="true"]::after {
  position: absolute;
  left: 0;
  transform: translateY(8px);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"] {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span[aria-hidden="true"]::after {
  transform: rotate(-45deg);
}

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

.section {
  padding: clamp(78px, 9vw, 132px) 0;
}

.page-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 4.15rem);
}

.approach-page {
  padding-top: clamp(42px, 5vw, 68px);
  padding-bottom: clamp(52px, 6vw, 78px);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.approach-layout h1 {
  font-size: clamp(2.75rem, 4.7vw, 4.25rem);
}

.approach-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(29, 33, 30, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.approach-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.approach-photo picture,
.image-band picture,
.product-hero-image picture,
.care-photo picture {
  display: block;
}

.approach-content {
  margin-top: clamp(26px, 4vw, 42px);
}

.compact-principles .principle-card {
  min-height: 0;
  padding: 18px;
}

.compact-principles .principle-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  border-width: 7px;
}

.compact-principles .principle-card p {
  margin-top: 10px;
  font-size: 0.95rem;
}

.compact-statement {
  display: block;
  margin-top: 16px;
  overflow: hidden;
  padding: 22px;
}

.compact-statement p {
  max-width: 860px;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
}

.privacy-statement.compact-statement p {
  max-width: none;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.12;
}

.privacy-statement.compact-statement {
  display: block;
}

.approach-belief {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: clamp(34px, 5vw, 58px);
}

.approach-belief h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

.approach-belief p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.philosophy-hero {
  display: flex;
  min-height: calc(82vh - 86px);
  align-items: center;
  background: var(--surface);
}

.philosophy-hero-inner {
  max-width: 980px;
}

.philosophy-hero h1 {
  max-width: 930px;
  font-size: clamp(3.4rem, 7vw, 7.1rem);
}

.philosophy-hero .lead {
  max-width: 780px;
}

.philosophy-statement {
  background: #f0ece3;
}

.philosophy-copy {
  max-width: 940px;
}

.philosophy-copy p {
  color: var(--forest);
  font-size: clamp(1.45rem, 3vw, 2.75rem);
  font-weight: 720;
  line-height: 1.16;
}

.philosophy-copy p + p {
  margin-top: 34px;
  color: var(--text);
}

.philosophy-principles-section {
  background: #f8f7f3;
}

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

.philosophy-principle {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: var(--surface);
}

.philosophy-principle span {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
}

.philosophy-principle p {
  margin-top: 14px;
  color: var(--muted);
}

.philosophy-care {
  background: var(--bg);
}

.philosophy-care-panel {
  border-radius: var(--radius);
  padding: clamp(34px, 7vw, 76px);
  background: var(--ink);
  color: #fff;
}

.philosophy-care-panel .eyebrow,
.philosophy-care-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.philosophy-care-panel h2 {
  color: #fff;
}

.philosophy-care-panel p:not(.eyebrow) {
  max-width: 820px;
  margin-top: 22px;
  font-size: 1.08rem;
}

.page-directory {
  background: #f8f7f3;
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.directory-card {
  display: flex;
  min-height: 236px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.directory-card:hover {
  border-color: rgba(17, 20, 19, 0.28);
  box-shadow: 0 22px 46px rgba(17, 20, 19, 0.1);
  transform: translateY(-2px);
}

.directory-card span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
}

.directory-card h3 {
  margin-top: 38px;
}

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

.image-band {
  padding: clamp(28px, 4vw, 52px) 0 clamp(78px, 9vw, 132px);
}

.image-band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.image-band figure {
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 22px 56px rgba(40, 48, 42, 0.08);
}

.image-band img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.image-band h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.image-band p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: clamp(56px, 7vw, 94px) 0 clamp(66px, 8vw, 104px);
}

.product-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  align-items: flex-end;
  padding: clamp(86px, 9vw, 128px) 0 clamp(54px, 7vw, 88px);
  background: var(--ink);
  color: #fff;
}

.product-hero-image {
  position: absolute;
  inset: 0;
  margin: 0;
}

.product-hero-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 20, 19, 0.86) 0%, rgba(17, 20, 19, 0.64) 32%, rgba(17, 20, 19, 0.18) 66%, rgba(17, 20, 19, 0.48) 100%),
    linear-gradient(180deg, rgba(17, 20, 19, 0.08) 0%, rgba(17, 20, 19, 0.22) 52%, rgba(17, 20, 19, 0.78) 100%);
  content: "";
}

.product-hero-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.product-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.42fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
}

.product-hero .eyebrow,
.product-hero .supporting-line,
.product-hero .trust-line {
  color: rgba(255, 255, 255, 0.84);
}

.product-hero h1 {
  color: #fff;
  text-shadow: 0 18px 56px rgba(0, 0, 0, 0.32);
}

.product-hero .lead {
  color: rgba(255, 255, 255, 0.82);
}

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

.product-hero .button-primary:hover {
  background: #ece8df;
}

.product-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(17, 20, 19, 0.2);
  color: #fff;
}

.product-hero-device {
  width: min(310px, 100%);
  justify-self: end;
  border: 9px solid #111413;
  border-radius: 30px;
  padding: 18px;
  background: #fbfaf6;
  color: var(--text);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.product-hero-device > p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
}

.platform-hero {
  min-height: 0;
  display: flex;
  align-items: center;
  padding-top: clamp(68px, 8vw, 112px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.platform-hero h1 {
  max-width: 660px;
  font-size: clamp(3rem, 5vw, 4.45rem);
  line-height: 1;
}

.hero-grid,
.two-column,
.platform-hero-grid,
.insight-grid,
.solutions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.eyebrow {
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

h1,
h2 {
  max-width: 780px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.2rem, 5.7vw, 5.05rem);
}

.hero-title-line {
  display: inline;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

h3 {
  font-size: 1.06rem;
  line-height: 1.2;
}

.lead {
  max-width: 660px;
  margin-top: 28px;
  color: #424943;
  font-size: clamp(1.04rem, 1.35vw, 1.2rem);
}

.supporting-line {
  margin-top: 18px;
  color: var(--forest);
  font-size: 1.05rem;
  font-weight: 750;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.action-row.centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 0 22px;
  font-size: 0.95rem;
  font-weight: 760;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: var(--forest);
}

.button-secondary {
  border-color: rgba(17, 20, 19, 0.24);
  background: rgba(255, 254, 250, 0.76);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(49, 92, 75, 0.44);
  background: var(--surface);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.trust-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-trust-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(17, 20, 19, 0.34);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.hero-trust-strip.light span {
  border-color: rgba(24, 27, 24, 0.15);
  background: var(--surface);
  color: var(--forest);
}

.hero-media,
.care-visual,
.insight-panel {
  border: 1px solid rgba(24, 27, 24, 0.1);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--surface), #f6f2eb);
  box-shadow: var(--shadow);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #efe9df;
}

.home-hero-media {
  min-height: clamp(440px, 48vw, 620px);
}

.platform-media {
  min-height: clamp(520px, 48vw, 620px);
}

.care-photo {
  position: absolute;
  inset: 0;
  margin: 0;
}

.care-photo::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(244, 242, 237, 0.04), rgba(244, 242, 237, 0.26)),
    linear-gradient(180deg, transparent 48%, rgba(17, 20, 19, 0.28));
  content: "";
}

.care-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
}

.product-hero-image picture,
.care-photo picture {
  width: 100%;
  height: 100%;
}

.phone-shell {
  position: absolute;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  width: min(326px, calc(100% - 36px));
  border: 8px solid #111413;
  border-radius: 34px;
  padding: 18px;
  background: linear-gradient(180deg, #fffefa, #f4f2ed);
  box-shadow: 0 30px 68px rgba(17, 20, 19, 0.32);
}

.platform-media .phone-shell {
  top: clamp(20px, 3vw, 34px);
  right: clamp(20px, 4vw, 44px);
  bottom: auto;
  width: min(306px, calc(100% - 44px));
  transform: scale(0.88);
  transform-origin: top right;
}

.compact-phone {
  width: min(286px, calc(100% - 36px));
}

.phone-shell::before {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 70px;
  height: 5px;
  border-radius: 999px;
  background: #343a35;
  content: "";
  transform: translateX(-50%);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
}

.phone-top strong {
  border-radius: 999px;
  padding: 5px 8px;
  background: #111413;
  color: var(--forest);
  color: #fff;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 850;
}

.phone-brand img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.phone-status {
  margin-top: 18px;
  border-radius: 8px;
  padding: 16px;
  background:
    radial-gradient(circle at 88% 22%, rgba(184, 108, 74, 0.16), transparent 24%),
    linear-gradient(135deg, #e4eee7, #f4f7f1);
  box-shadow: inset 0 0 0 1px rgba(49, 92, 75, 0.08);
}

.phone-status span,
.phone-card span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.phone-status strong {
  display: block;
  margin-top: 6px;
  color: var(--forest);
  font-size: 1.18rem;
  line-height: 1.12;
}

.phone-status small {
  display: block;
  margin-top: 8px;
  color: rgba(23, 63, 51, 0.76);
  font-size: 0.74rem;
  font-weight: 820;
}

.phone-chart {
  display: grid;
  height: 80px;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: end;
  margin-top: 16px;
  border: 1px solid rgba(49, 92, 75, 0.12);
  border-radius: 12px;
  padding: 14px 14px 12px;
  background:
    linear-gradient(180deg, rgba(49, 92, 75, 0.08) 1px, transparent 1px) 0 33% / 100% 33%,
    #fffefa;
}

.phone-chart span {
  display: block;
  height: var(--bar);
  min-height: 14px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, #275d4d, #9eb2a5);
}

.phone-chart span:nth-child(4),
.phone-chart span:nth-child(5) {
  background: linear-gradient(180deg, var(--accent), #dec3b3);
}

.phone-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.phone-metrics div {
  border: 1px solid rgba(49, 92, 75, 0.12);
  border-radius: 12px;
  padding: 12px;
  background: #fffefa;
}

.phone-metrics span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phone-metrics strong {
  display: block;
  margin-top: 5px;
  color: var(--forest);
  font-size: 0.9rem;
}

.phone-timeline {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.phone-timeline li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid rgba(29, 33, 30, 0.08);
  padding-bottom: 9px;
  font-size: 0.82rem;
}

.phone-card {
  margin-top: 14px;
  border: 1px solid rgba(49, 92, 75, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.phone-card strong {
  display: block;
  margin-top: 5px;
  color: var(--forest);
  font-size: 0.9rem;
}

.phone-privacy-card {
  background:
    linear-gradient(90deg, rgba(227, 235, 229, 0.5), transparent),
    #fff;
}

.phone-shell p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 760;
}

.care-visual {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: clamp(22px, 3vw, 30px);
}

.visual-topline,
.panel-header,
.status-row,
.current-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.visual-topline span:last-child,
.panel-header span {
  color: var(--forest);
}

.home-map {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  grid-template-rows: 120px 86px;
  gap: 10px;
  margin: 26px 0;
}

.room {
  display: flex;
  min-width: 0;
  align-items: flex-end;
  justify-content: flex-start;
  border: 1px solid rgba(49, 92, 75, 0.18);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(227, 235, 229, 0.5);
  color: rgba(29, 33, 30, 0.58);
  font-size: 0.78rem;
  font-weight: 750;
}

.living {
  grid-row: span 2;
}

.entry {
  background: rgba(234, 230, 221, 0.72);
}

.sensor {
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 7px rgba(49, 92, 75, 0.12);
}

.sensor-one {
  left: 30%;
  top: 34%;
}

.sensor-two {
  right: 20%;
  top: 20%;
}

.sensor-three {
  right: 17%;
  bottom: 18%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(184, 108, 74, 0.12);
}

.visual-timeline,
.activity-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.visual-timeline li,
.activity-list li {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: baseline;
  color: var(--text);
}

time {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.status-row,
.current-status {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.status-row strong,
.current-status strong {
  color: var(--forest);
}

.privacy-badge {
  display: inline-flex;
  margin-top: 18px;
  border: 1px solid rgba(49, 92, 75, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(220, 230, 223, 0.62);
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.solutions-section .section-heading p {
  max-width: 650px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-heading.narrow {
  max-width: 760px;
  margin-bottom: 38px;
}

.feature-stack,
.solutions-structure {
  display: grid;
  gap: 16px;
}

.feature-item,
.audience-card,
.step-card,
.process-step,
.community-callout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.feature-item p,
.audience-card p,
.step-card p,
.process-step p,
.community-callout p {
  margin-top: 10px;
  color: var(--muted);
}

.principle {
  margin-top: 12px;
  color: var(--forest);
  font-size: 1.18rem;
  font-weight: 780;
}

.privacy-section {
  background: #f0ece3;
}

.principles-grid,
.steps-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.principle-card {
  min-height: 250px;
  border: 1px solid rgba(24, 27, 24, 0.12);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
}

.principle-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.principle-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(from 20deg, var(--forest), var(--sage), var(--forest)) border-box;
  border: 10px solid transparent;
}

.principle-icon.muted {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(from 20deg, #6f786e, var(--sage), #6f786e) border-box;
}

.principle-icon.warm {
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    conic-gradient(from 20deg, var(--accent), #ead4c5, var(--accent)) border-box;
}

.privacy-statement {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(49, 92, 75, 0.15);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  background: #f8f6f0;
}

.privacy-statement p {
  max-width: 680px;
  color: var(--forest);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 760;
  line-height: 1.08;
}

.privacy-house {
  position: relative;
  height: 150px;
  border: 2px solid rgba(49, 92, 75, 0.25);
  border-top: 0;
  background: linear-gradient(90deg, transparent 49%, rgba(49, 92, 75, 0.16) 50%, transparent 51%);
}

.privacy-house::before {
  position: absolute;
  inset: -54px 28px auto;
  height: 108px;
  border-top: 2px solid rgba(49, 92, 75, 0.25);
  border-left: 2px solid rgba(49, 92, 75, 0.25);
  content: "";
  transform: rotate(45deg);
}

.privacy-house span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--forest);
}

.privacy-house span:nth-child(1) {
  left: 34px;
  top: 46px;
}

.privacy-house span:nth-child(2) {
  right: 42px;
  top: 32px;
}

.privacy-house span:nth-child(3) {
  right: 88px;
  bottom: 30px;
  background: var(--accent);
}

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

.step-card span,
.process-step span {
  display: block;
  margin-bottom: 44px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
}

.note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.98rem;
}

.floor-plan-section {
  background: #f8f7f3;
}

.floor-plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.floor-plan-panel {
  border: 1px solid rgba(24, 27, 24, 0.1);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: linear-gradient(180deg, var(--surface), #f6f2eb);
  box-shadow: var(--shadow);
}

.floor-plan-topline,
.floor-plan-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 820;
}

.floor-plan-topline strong,
.floor-plan-topline span {
  color: var(--forest);
}

.floor-plan-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(4, minmax(58px, 1fr));
  gap: 8px;
  margin-top: 18px;
  aspect-ratio: 1.42 / 1;
}

.floor-room {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: flex-end;
  border: 2px solid rgba(24, 27, 24, 0.22);
  border-radius: 3px;
  padding: 10px;
  background: rgba(227, 235, 229, 0.52);
  color: rgba(24, 27, 24, 0.72);
  font-size: clamp(0.62rem, 1.2vw, 0.76rem);
  font-weight: 850;
  line-height: 1.15;
}

.floor-room span {
  overflow-wrap: anywhere;
}

.floor-bedroom-2 {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.floor-bedroom-main {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}

.floor-bath {
  grid-column: 5 / 6;
  grid-row: 1 / 2;
  background: rgba(227, 235, 229, 0.74);
}

.floor-service {
  grid-column: 6 / 7;
  grid-row: 1 / 3;
  background: rgba(237, 233, 223, 0.88);
}

.floor-study {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}

.floor-store {
  grid-column: 1 / 2;
  grid-row: 4 / 5;
  background: rgba(237, 233, 223, 0.64);
}

.floor-living {
  grid-column: 2 / 5;
  grid-row: 2 / 5;
  background: rgba(227, 235, 229, 0.42);
}

.floor-kitchen {
  grid-column: 5 / 7;
  grid-row: 3 / 4;
  background: rgba(237, 233, 223, 0.72);
}

.floor-entry {
  grid-column: 5 / 6;
  grid-row: 4 / 5;
  background: rgba(247, 238, 232, 0.9);
}

.floor-balcony {
  grid-column: 6 / 7;
  grid-row: 4 / 5;
  background: rgba(237, 233, 223, 0.92);
}

.floor-sensor {
  display: inline-block;
  width: 11px;
  height: 11px;
  flex: 0 0 11px;
  border: 2px solid var(--surface);
  border-radius: 50%;
  background: var(--forest);
  box-shadow: 0 0 0 6px rgba(49, 92, 75, 0.13);
}

.floor-room .floor-sensor {
  position: absolute;
  top: 12px;
  right: 12px;
}

.floor-sensor.activity {
  background: #7a6f4f;
  box-shadow: 0 0 0 6px rgba(122, 111, 79, 0.14);
}

.floor-sensor.door,
.floor-sensor.routine {
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(184, 108, 74, 0.14);
}

.floor-plan-legend {
  justify-content: flex-start;
  margin-top: 18px;
  color: var(--text);
}

.floor-plan-legend span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.floor-plan-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.insight-section,
.about-section {
  background: var(--surface);
}

.insight-panel {
  padding: clamp(22px, 3vw, 30px);
}

.mini-app-summary {
  margin-top: 22px;
  border: 1px solid rgba(49, 92, 75, 0.14);
  border-radius: 8px;
  padding: 16px;
  background: rgba(227, 235, 229, 0.5);
}

.mini-app-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-app-summary strong {
  display: block;
  margin-top: 6px;
  color: var(--forest);
  font-size: 1.08rem;
}

.activity-list {
  margin-top: 26px;
}

.activity-list li {
  border-bottom: 1px solid rgba(29, 33, 30, 0.08);
  padding-bottom: 14px;
}

.attention-panel {
  margin-top: 18px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px;
  background: #f7eee8;
}

.attention-panel p {
  color: #4a3f38;
}

.attention-panel p + p {
  margin-top: 8px;
}

.attention-label {
  color: #7a3e25;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.community-callout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  background: var(--stone);
}

.solutions-section {
  background: #e9e4da;
}

.solutions-section .section-heading {
  align-self: start;
}

.process-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  align-items: start;
}

.process-step span {
  grid-row: span 2;
  margin: 0;
}

.process-step p {
  margin-top: 6px;
}

.about-copy p + p {
  margin-top: 20px;
}

.final-cta {
  padding-top: clamp(64px, 8vw, 110px);
}

.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  padding: clamp(34px, 7vw, 76px);
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.cta-panel .eyebrow,
.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-panel h2,
.cta-panel p {
  margin-inline: auto;
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 20px;
  font-size: 1.08rem;
}

.cta-panel .button-primary {
  background: #fff;
  color: var(--forest);
}

.cta-panel .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

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

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

.site-footer p {
  margin-top: 6px;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer a {
  color: var(--forest);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 1;
  transform: translateY(18px);
  transition: transform 620ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    min-height: 76px;
    padding-inline: 18px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .platform-login {
    right: 18px;
    gap: 8px;
  }

  .platform-login span {
    width: 38px;
    height: 38px;
  }

  .platform-login strong {
    display: none;
  }

  .login-overlay {
    inset: 76px 0 0;
    align-items: flex-start;
    padding: 18px;
  }

  .login-modal {
    width: 100%;
    padding: 30px 22px 24px;
  }

  .login-modal-close {
    top: 14px;
    right: 14px;
  }

  .site-nav {
    inset: 76px auto 0 0;
    display: flex;
    width: min(360px, 100vw);
    gap: 0;
    border: 0;
    border-radius: 0;
    padding: 24px 28px;
    background: #050505;
    box-shadow: 22px 0 58px rgba(0, 0, 0, 0.34);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 16px 0;
  }

  .site-nav .button {
    margin-top: 22px;
  }

  .language-switcher {
    justify-content: flex-start;
    margin-top: 22px;
  }

  .menu-toggle {
    left: 18px;
  }

  .hero {
    min-height: 0;
  }

  .product-hero {
    min-height: 0;
  }

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

  .product-hero-device {
    justify-self: start;
    width: min(310px, 100%);
  }

  .platform-hero {
    min-height: 0;
  }

  .page-hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 620px;
  }

  .hero-grid,
  .two-column,
  .approach-layout,
  .image-band-grid,
  .platform-hero-grid,
  .floor-plan-layout,
  .insight-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid,
  .steps-grid,
  .audience-grid,
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-statement,
  .compact-statement,
  .approach-belief,
  .community-callout {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2rem, 8.2vw, 2.58rem);
  }

  h2 {
    font-size: clamp(2rem, 8.5vw, 2.9rem);
  }

  h1,
  h2 {
    text-wrap: initial;
  }

  .hero-title-line {
    display: block;
  }

  .product-hero {
    padding-top: 58px;
  }

  .product-hero-image::after {
    background:
      linear-gradient(180deg, rgba(17, 20, 19, 0.82) 0%, rgba(17, 20, 19, 0.68) 48%, rgba(17, 20, 19, 0.84) 100%);
  }

  .product-hero-device {
    width: 100%;
    border-width: 7px;
    border-radius: 24px;
  }

  .lead {
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .care-visual {
    padding: 20px;
  }

  .hero-media {
    min-height: 560px;
  }

  .care-photo img {
    object-position: 38% center;
  }

  .phone-shell {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .platform-media .phone-shell {
    top: auto;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    transform: none;
  }

  .home-map {
    grid-template-columns: 1fr;
    grid-template-rows: 96px 74px;
  }

  .floor-plan-panel {
    padding: 16px;
  }

  .floor-plan-grid {
    gap: 5px;
    grid-template-rows: repeat(4, minmax(50px, 1fr));
    aspect-ratio: 1.05 / 1;
  }

  .floor-room {
    border-width: 1px;
    padding: 7px;
  }

  .floor-room .floor-sensor {
    top: 8px;
    right: 8px;
  }

  .floor-sensor {
    width: 9px;
    height: 9px;
    flex-basis: 9px;
    box-shadow: 0 0 0 4px rgba(49, 92, 75, 0.13);
  }

  .floor-sensor.activity {
    box-shadow: 0 0 0 4px rgba(122, 111, 79, 0.14);
  }

  .floor-sensor.door,
  .floor-sensor.routine {
    box-shadow: 0 0 0 4px rgba(184, 108, 74, 0.14);
  }

  .visual-topline,
  .status-row,
  .current-status {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .living {
    grid-row: auto;
  }

  .visual-timeline li,
  .activity-list li {
    grid-template-columns: 78px 1fr;
    gap: 10px;
  }

  .principles-grid,
  .steps-grid,
  .audience-grid,
  .directory-grid,
  .philosophy-principles {
    grid-template-columns: 1fr;
  }

  .philosophy-hero {
    min-height: 0;
  }

  .philosophy-copy p {
    font-size: clamp(1.28rem, 6vw, 1.85rem);
  }

  .philosophy-principle {
    min-height: 0;
  }

  .principle-card {
    min-height: 0;
  }

  .privacy-house {
    width: min(100%, 240px);
  }

  .process-step {
    grid-template-columns: 42px 1fr;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready .reveal,
  .reveal {
    opacity: 1;
    transform: none;
  }
}
