:root {
  --void: #050510;
  --ink: #0a1020;
  --navy: #101a2c;
  --slate: #344154;
  --muted: #66758b;
  --line: #d9e0ea;
  --soft-line: #edf1f6;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue: #6b9fd4;
  --blue-light: #8bbae8;
  --teal: #2a9b80;
  --gold: #b98742;
  --shadow: 0 28px 70px rgba(10, 16, 32, 0.12);
  --max: 1180px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 100;
  transform: translateY(-140%);
  border: 1px solid var(--blue);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  transition:
    min-height 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 72px;
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 16, 0.88);
  backdrop-filter: blur(22px);
}

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

.brand__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  filter: drop-shadow(0 0 14px rgba(107, 159, 212, 0.32));
}

.brand__wordmark {
  color: var(--white);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__wordmark span:last-child {
  font-weight: 300;
}

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

.site-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav__contact {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  padding: 10px 14px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.nav-toggle span {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  padding: 164px 24px 96px;
  color: var(--white);
}

.hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__visual::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 16, 0.98) 0%, rgba(5, 5, 16, 0.84) 40%, rgba(5, 5, 16, 0.24) 78%),
    linear-gradient(180deg, rgba(5, 5, 16, 0.2) 0%, rgba(5, 5, 16, 0.82) 100%);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background-image:
    linear-gradient(rgba(139, 186, 232, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 186, 232, 0.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.86), transparent 72%);
}

.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.86) contrast(1.06);
}

.hero__sphere {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: max(24px, calc((100vw - var(--max)) / 2));
  width: 132px;
  opacity: 0.62;
  filter: drop-shadow(0 0 40px rgba(107, 159, 212, 0.36));
  transform: translateY(-50%);
}

.hero__content {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  width: min(720px, 100%);
  max-width: var(--max);
  min-height: calc(94vh - 260px);
  margin: 0 auto;
  margin-inline-start: max(24px, calc((100vw - var(--max)) / 2));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.02;
}

.hero__lead {
  max-width: 690px;
  margin: 0;
  color: rgba(232, 237, 245, 0.9);
  font-size: 1.18rem;
  line-height: 1.78;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

.button--primary {
  border: 1px solid rgba(139, 186, 232, 0.78);
  background: linear-gradient(135deg, rgba(107, 159, 212, 0.44), rgba(42, 155, 128, 0.24));
  color: var(--white);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
}

.hero__notice {
  position: absolute;
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  z-index: 5;
  width: min(430px, calc(100% - 48px));
  border-top: 1px solid rgba(139, 186, 232, 0.55);
  background: rgba(5, 5, 16, 0.58);
  color: rgba(232, 237, 245, 0.78);
  padding: 14px 0 0;
  font-size: 0.82rem;
  line-height: 1.65;
}

.proof-strip {
  position: relative;
  z-index: 6;
  margin-top: -1px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.proof-strip__inner div {
  min-height: 146px;
  border-left: 1px solid var(--soft-line);
  padding: 30px 24px;
}

.proof-strip__inner div:last-child {
  border-right: 1px solid var(--soft-line);
}

.proof-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 350;
  line-height: 1.15;
}

.proof-strip span {
  display: block;
  max-width: 220px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 104px 24px;
}

.section__header {
  width: min(820px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section__header--narrow {
  width: min(660px, 100%);
}

.section__header h2,
.media-panel__copy h2,
.readiness-layout h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 3.25rem;
  font-weight: 300;
  line-height: 1.08;
}

.section__header p:not(.eyebrow),
.media-panel__copy > p,
.readiness-layout > div > p,
.statement p {
  color: var(--slate);
  font-size: 1.04rem;
  line-height: 1.85;
}

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

.pod-grid article,
.intervention-list article,
.tech-matrix article {
  min-height: 222px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 12px 40px rgba(10, 16, 32, 0.055);
}

.pod-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 650;
}

.pod-grid p,
.intervention-list p,
.tech-matrix p,
.readiness-list span,
.access-list dd {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.section--media {
  padding: 0;
  background: var(--white);
}

.media-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  max-width: none;
  margin: 0 auto;
  border-block: 1px solid var(--soft-line);
}

.media-panel__image {
  position: relative;
  min-height: clamp(380px, 34vw, 540px);
  overflow: hidden;
  background: var(--navy);
}

.media-panel__image::before {
  position: absolute;
  inset: -28px;
  content: "";
  background-image: url("assets/senior-home-care.jpg");
  background-position: center;
  background-size: cover;
  filter: blur(22px) saturate(0.86) contrast(1.02);
  opacity: 0.62;
  transform: scale(1.04);
}

.media-panel__image::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 16, 0.02), rgba(5, 5, 16, 0.12)),
    linear-gradient(180deg, rgba(5, 5, 16, 0.06), rgba(5, 5, 16, 0.02) 42%, rgba(5, 5, 16, 0.1));
}

.media-panel__image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(0.9) contrast(1.03);
}

.media-panel__copy {
  align-self: center;
  max-width: 620px;
  padding: 72px 64px;
}

.access-list {
  display: grid;
  gap: 18px;
  margin: 36px 0 0;
}

.access-list div {
  border-top: 1px solid var(--soft-line);
  padding-top: 18px;
}

.access-list dt {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto;
}

.statement {
  border-left: 2px solid var(--blue);
  padding: 8px 0 8px 28px;
}

.statement p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.33rem;
  line-height: 1.72;
}

.intervention-list {
  display: grid;
  gap: 14px;
}

.intervention-list article {
  min-height: auto;
}

.section--technology {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(139, 186, 232, 0.08), transparent 32%),
    var(--void);
  color: var(--white);
}

.section--technology::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(139, 186, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 186, 232, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.55;
}

.section--technology > * {
  position: relative;
}

.section--technology .section__header h2,
.section--technology h3 {
  color: var(--white);
}

.section--technology .section__header p:not(.eyebrow),
.section--technology .tech-matrix p {
  color: rgba(232, 237, 245, 0.76);
}

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

.tech-matrix article {
  min-height: 280px;
  border-color: rgba(139, 186, 232, 0.2);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.section--readiness {
  background: var(--white);
  padding-bottom: 128px;
}

.readiness-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.readiness-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: readiness;
}

.readiness-list li {
  position: relative;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 24px 0 24px 58px;
  counter-increment: readiness;
}

.readiness-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.readiness-list li::before {
  position: absolute;
  top: 26px;
  left: 0;
  color: var(--blue);
  content: "0" counter(readiness);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.readiness-list strong {
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #03040a;
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
}

.site-footer__brand img {
  width: 168px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(184, 200, 224, 0.72);
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--white);
  text-decoration-color: rgba(139, 186, 232, 0.6);
  text-underline-offset: 4px;
}

.site-footer__details {
  display: grid;
  gap: 8px;
}

.site-footer__contact {
  justify-self: end;
  max-width: 520px;
}

.site-footer__contact .eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
}

.site-footer__contact h2 {
  max-width: 440px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.04;
}

.site-footer__contact p:not(.eyebrow) {
  max-width: 460px;
  color: rgba(232, 238, 247, 0.78);
  font-size: 1rem;
  line-height: 1.75;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

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

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(232, 238, 247, 0.74);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(139, 186, 232, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  padding: 13px 14px;
  color: var(--white);
  font: inherit;
  outline: 0;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(139, 186, 232, 0.82);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 3px rgba(139, 186, 232, 0.14);
}

.contact-form__trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 48px;
  border: 1px solid rgba(139, 186, 232, 0.7);
  border-radius: 4px;
  background: rgba(139, 186, 232, 0.16);
  padding: 0 22px;
  color: var(--white);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.site-footer__button:hover,
.site-footer__button:focus-visible {
  border-color: rgba(139, 186, 232, 0.95);
  background: rgba(139, 186, 232, 0.24);
  transform: translateY(-1px);
}

.site-footer__button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.contact-form__status {
  min-height: 1.4em;
  color: rgba(232, 238, 247, 0.78);
  font-size: 0.88rem;
  line-height: 1.5;
}

.contact-form__status[data-state="success"] {
  color: #8bbae8;
}

.contact-form__status[data-state="error"] {
  color: #f7b4b4;
}

.site-footer__notice {
  grid-column: 1 / -1;
  max-width: 780px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}
