:root {
  --ink: #101821;
  --navy: #172538;
  --navy-2: #213449;
  --navy-3: #2e455e;
  --paper: #f7f5f1;
  --white: #ffffff;
  --mist: #eaf2f8;
  --line: rgba(16, 24, 33, 0.13);
  --muted: #6c737b;
  --muted-light: rgba(255, 255, 255, 0.68);
  --blue: #5da9e9;
  --blue-soft: #dfeef9;
  --coral: #f39a6b;
  --green: #70bd8c;
  --shadow: 0 30px 80px rgba(16, 24, 33, 0.12);
  --shell: 1280px;
}

.nerivaport-engine-page [hidden] {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

h1,
h2 {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.35rem, 7.4vw, 7.75rem);
}

h2 {
  font-size: clamp(2.5rem, 5.2vw, 5.5rem);
}

h3,
strong {
  font-weight: 600;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.button,
.language-button,
.signal-toggle,
.period-switch button,
.timeline-event button,
.assistant-note button,
.user-menu button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--ink);
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.signal-toggle:hover,
.period-switch button:hover,
.timeline-event button:hover,
.assistant-note button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.language-button:focus-visible,
.signal-toggle:focus-visible,
.profile-option:focus-visible,
.period-switch button:focus-visible,
.timeline-event button:focus-visible,
.assistant-note button:focus-visible,
.user-menu button:focus-visible,
.mobile-menu summary:focus-visible {
  outline: 3px solid rgba(93, 169, 233, 0.52);
  outline-offset: 3px;
}

.button-compact {
  min-height: 40px;
  padding-inline: 17px;
  color: var(--ink);
  background: var(--white);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: #eaf2f8;
}

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
}

.button-ghost-light:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 3px;
  border-bottom: 1px solid currentColor;
}

.text-link-light {
  color: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: var(--navy);
  box-shadow: 0 0 0 7px rgba(93, 169, 233, 0.09);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 3px;
  border-radius: 999px;
  background: var(--coral);
  transform: rotate(-42deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
  transform: translate(7px, -7px) rotate(-42deg);
  box-shadow: 0 0 12px var(--blue);
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.05rem;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.035em;
}

.brand-inverse {
  color: var(--white);
}

.brand-inverse .brand-mark {
  background: var(--white);
}

.brand-inverse .brand-copy small {
  color: var(--muted-light);
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  min-height: 84px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(22px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
}

.site-header-inverse {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(19, 34, 51, 0.7);
  backdrop-filter: blur(18px);
}

.home-site-header {
  position: absolute;
  inset: 0 0 auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: var(--muted);
  font-size: 0.8rem;
}

.site-header-inverse .desktop-nav {
  color: rgba(255, 255, 255, 0.65);
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: currentColor;
  opacity: 0.74;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-button {
  min-height: 40px;
  padding-inline: 13px;
  color: var(--muted);
  border-color: transparent;
  background: transparent;
  font-size: 0.76rem;
}

.site-header-inverse .language-button {
  color: rgba(255, 255, 255, 0.68);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu summary {
  min-height: 40px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(280px, 80vw);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--blue-soft);
}

.eyebrow {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.73rem;
  letter-spacing: 0.03em;
}

.eyebrow > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow:
    0 0 0 6px rgba(243, 154, 107, 0.14),
    0 0 18px var(--coral);
}

.eyebrow-dark {
  color: var(--ink);
}

.section-index {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Home */

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-photo {
  background: url("/nerivaport-human-care.jpg") 62% center / cover no-repeat;
  filter: saturate(0.88) contrast(1.04);
  transform: scale(1.01);
}

.hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(20, 35, 52, 1) 0%,
      rgba(20, 35, 52, 0.96) 31%,
      rgba(20, 35, 52, 0.55) 57%,
      rgba(20, 35, 52, 0.1) 82%
    ),
    linear-gradient(0deg, rgba(20, 35, 52, 0.8), transparent 46%);
}

.hero-inner {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 48px;
  align-items: center;
  padding-block: 132px 42px;
}

.hero-copy {
  max-width: 690px;
}

.hero-copy h1 {
  max-width: 10ch;
  margin-bottom: 28px;
}

.hero-copy > p {
  max-width: 52ch;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.3vw, 1.16rem);
}

.hero-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  gap: 26px;
  margin: 38px 0 0;
  padding: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  list-style: none;
  flex-wrap: wrap;
}

.hero-proof li {
  position: relative;
  padding-left: 14px;
}

.hero-proof li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.care-signal-wrap {
  position: relative;
  min-height: 470px;
}

.care-signal-wrap::before {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 11%;
  width: 64%;
  height: 43%;
  border: 1px dashed rgba(93, 169, 233, 0.72);
  border-radius: 50%;
  transform: rotate(-16deg);
  animation: care-orbit 13s linear infinite;
}

.care-signal-wrap::after {
  content: "";
  position: absolute;
  right: 32%;
  bottom: 24%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 22px var(--coral);
}

.care-signal {
  position: absolute;
  top: 10%;
  right: 0;
  width: min(290px, 70%);
  padding: 19px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(20, 35, 52, 0.72);
  box-shadow: 0 25px 70px rgba(8, 15, 24, 0.38);
  backdrop-filter: blur(18px);
  transition: transform 320ms ease;
}

.care-signal-expanded {
  transform: translate(-16px, 22px) scale(1.04);
}

.care-signal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  margin-bottom: 16px;
}

.care-signal-head div {
  display: grid;
}

.care-signal-head span,
.care-signal dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.care-signal-head i,
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(112, 189, 140, 0.13);
}

.care-signal dl {
  margin: 0;
}

.care-signal dl div,
.living-data dl div,
.next-action dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.care-signal dl div:last-child,
.living-data dl div:last-child,
.next-action dl div:last-child {
  border-bottom: 0;
}

.care-signal dd,
.living-data dd,
.next-action dd {
  margin: 0;
  font-weight: 600;
}

.care-signal-link {
  display: inline-flex;
  margin-top: 14px;
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.76rem;
}

.signal-toggle {
  position: absolute;
  right: 0;
  bottom: 11%;
  min-height: 40px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(20, 35, 52, 0.65);
  backdrop-filter: blur(12px);
}

.hero-index {
  position: relative;
  z-index: 5;
  display: grid;
  min-height: 96px;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 0;
  padding-inline: clamp(22px, 4vw, 58px);
  color: var(--muted);
  background: var(--white);
}

.hero-index span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-index small {
  color: var(--blue);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.42fr 1fr 0.72fr;
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
  padding-block: clamp(95px, 12vw, 170px);
}

.manifesto h2 {
  max-width: 12ch;
  margin-bottom: 30px;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.manifesto-copy > p {
  max-width: 58ch;
  color: var(--muted);
}

.manifesto-quote {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.manifesto-quote > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.75;
}

.manifesto-quote p {
  margin: 20px 0 0;
  font-family: Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.living-system {
  position: relative;
  min-height: 830px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.living-image,
.living-overlay {
  position: absolute;
  inset: 0;
}

.living-image {
  background: url("/nerivaport-living-system.jpg") 64% center / cover no-repeat;
  filter: saturate(0.9) contrast(1.04);
}

.living-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(19, 34, 51, 1) 0%,
      rgba(19, 34, 51, 0.94) 32%,
      rgba(19, 34, 51, 0.32) 72%
    ),
    linear-gradient(0deg, rgba(19, 34, 51, 0.8), transparent 45%);
}

.living-inner {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 740px;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
  padding-block: 70px;
}

.living-copy {
  max-width: 600px;
}

.living-copy h2 {
  max-width: 10ch;
  margin-bottom: 26px;
}

.living-copy p {
  max-width: 47ch;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.7);
}

.living-data {
  align-self: start;
  justify-self: end;
  width: min(300px, 65%);
  margin-top: 70px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(18, 31, 47, 0.66);
  box-shadow: 0 26px 70px rgba(6, 13, 20, 0.36);
  backdrop-filter: blur(18px);
}

.living-data-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}

.living-data dl {
  margin: 0;
}

.living-data dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
}

.living-principle {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: flex;
  min-height: 90px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.78rem;
}

.care-world {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(40px, 7vw, 110px);
  padding-block: clamp(95px, 12vw, 160px);
}

.care-world-heading h2 {
  max-width: 10ch;
  margin: 24px 0 27px;
  font-size: clamp(2.9rem, 5.4vw, 5.6rem);
}

.care-world-heading p {
  max-width: 48ch;
  color: var(--muted);
}

.care-world-list {
  border-top: 1px solid var(--line);
}

.care-world-list article {
  display: grid;
  min-height: 150px;
  grid-template-columns: 48px 0.6fr 1fr 44px;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease;
}

.care-world-list article:hover {
  padding-inline: 10px;
}

.care-world-list article > span {
  color: var(--blue);
  font-size: 0.74rem;
}

.care-world-list h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 400;
}

.care-world-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.care-world-list article > a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.care-world-list article > a:hover {
  color: var(--white);
  background: var(--navy);
}

.story-section {
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.36fr 0.64fr;
  background: var(--white);
}

.story-image {
  position: relative;
  min-height: 690px;
  background: url("/nerivaport-story-care.jpg") center / cover no-repeat;
}

.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(19, 34, 51, 0.72), transparent 48%);
}

.story-caption {
  position: absolute;
  bottom: 38px;
  left: clamp(24px, 5vw, 72px);
  z-index: 2;
  max-width: 430px;
  color: var(--white);
}

.story-caption p {
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.25;
}

.story-caption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 92px);
  border-left: 1px solid var(--line);
}

.story-copy h2 {
  max-width: 10ch;
  margin-bottom: 27px;
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.story-copy > p {
  color: var(--muted);
}

.story-meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 25px 0;
  padding: 15px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
}

.story-copy .button {
  align-self: flex-start;
}

.professional {
  padding-block: clamp(95px, 12vw, 160px);
  text-align: center;
}

.professional h2 {
  max-width: 12ch;
  margin: 22px auto 28px;
}

.professional > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.professional-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.professional-flow > div {
  min-height: 210px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.professional-flow > div:last-child {
  border-right: 0;
}

.professional-flow span {
  color: var(--blue);
  font-size: 0.74rem;
}

.professional-flow strong {
  display: block;
  margin: 35px 0 8px;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 400;
}

.professional-flow p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.final-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  top: -340px;
  right: -170px;
  border: 1px solid rgba(93, 169, 233, 0.38);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(93, 169, 233, 0.08);
}

.final-cta .shell {
  position: relative;
  z-index: 2;
  padding-block: clamp(85px, 10vw, 135px);
  text-align: center;
}

.final-cta .shell > span {
  color: var(--coral);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta h2 {
  max-width: 10ch;
  margin: 22px auto 28px;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer {
  padding: 62px clamp(24px, 5vw, 72px) 25px;
  color: var(--white);
  background: #101b29;
}

.footer-lead {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-lead p {
  max-width: 580px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-left: 31%;
  padding-block: 48px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 11px;
  color: var(--white);
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.44);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.72rem;
}

/* Account */

.account-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.account-header {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(22px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(19, 34, 51, 0.78);
  backdrop-filter: blur(18px);
}

.account-header > a:last-child {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.account-background,
.account-overlay {
  position: absolute;
  inset: 0;
}

.account-background {
  background: url("/nerivaport-human-care.jpg") 66% center / cover no-repeat;
  filter: saturate(0.72);
}

.account-overlay {
  background:
    linear-gradient(90deg, rgba(19, 34, 51, 0.96), rgba(19, 34, 51, 0.5)),
    linear-gradient(0deg, rgba(19, 34, 51, 0.72), rgba(19, 34, 51, 0.08));
}

.account-layout {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: clamp(45px, 8vw, 130px);
  align-items: center;
  padding-block: 55px;
}

.account-story {
  max-width: 650px;
}

.account-story h1 {
  max-width: 10ch;
  margin-bottom: 25px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 6.6rem);
}

.account-story > p {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.account-story ul {
  display: grid;
  gap: 9px;
  margin: 30px 0 0;
  padding: 23px 0 0;
  color: rgba(255, 255, 255, 0.65);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.78rem;
  list-style: none;
}

.account-story li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--green);
}

.account-card {
  padding: clamp(25px, 4vw, 44px);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 35px 100px rgba(6, 13, 20, 0.36);
  backdrop-filter: blur(24px);
}

.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 30px;
  padding: 4px;
  border-radius: 999px;
  background: #edf1f4;
}

.account-tabs a {
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--muted);
  text-align: center;
  font-size: 0.78rem;
}

.account-tabs a.is-active {
  color: var(--white);
  background: var(--navy);
}

.account-kicker {
  color: var(--coral);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-card h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.account-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.86rem;
}

.account-form {
  display: grid;
  gap: 16px;
}

.account-form > label:not(.account-check) {
  display: grid;
  gap: 7px;
}

.account-form label > span {
  color: #45505c;
  font-size: 0.76rem;
}

.account-form input[type="text"],
.account-form input[type="email"],
.account-form input[type="password"] {
  width: 100%;
  min-height: 49px;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid rgba(16, 24, 33, 0.18);
  border-radius: 13px;
  background: var(--white);
  outline: 0;
}

.account-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(93, 169, 233, 0.15);
}

.account-check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.account-check input {
  margin-top: 3px;
}

.account-consent span {
  line-height: 1.45;
}

.account-consent a {
  display: inline-block;
  margin-top: 5px;
  color: var(--blue);
  font-weight: 700;
}

.account-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.knowledge-grid h2 a {
  color: inherit;
  text-decoration: none;
}

.knowledge-grid footer a {
  color: inherit;
  font-size: 1.1rem;
  text-decoration: none;
}

.guide-page {
  padding: 54px 0 96px;
  background:
    radial-gradient(circle at 88% 8%, rgba(109, 181, 198, 0.16), transparent 30%),
    var(--paper);
}

.guide-breadcrumb {
  display: flex;
  gap: 9px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 0.78rem;
}

.guide-breadcrumb a {
  color: inherit;
}

.guide-hero {
  display: grid;
  max-width: 920px;
  margin-bottom: 54px;
}

.guide-hero h1 {
  max-width: 880px;
  margin: 18px 0;
  color: var(--navy);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.guide-hero > p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.guide-review {
  display: grid;
  gap: 3px;
  width: fit-content;
  margin-top: 26px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.guide-review span,
.guide-review small,
.guide-footer span {
  color: var(--muted);
  font-size: 0.7rem;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
}

.guide-content {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.guide-content section {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.guide-content section > span {
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 800;
}

.guide-content h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.guide-content p,
.guide-boundary p,
.guide-footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.guide-boundary {
  position: sticky;
  top: 30px;
  padding: 25px;
  color: var(--white);
  border-radius: 22px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.guide-boundary strong {
  display: block;
  margin-bottom: 12px;
}

.guide-boundary p {
  color: rgba(255, 255, 255, 0.68);
}

.guide-boundary a {
  display: inline-block;
  margin-top: 20px;
  color: var(--blue);
}

.guide-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 54px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.guide-footer > div {
  max-width: 700px;
}

@media (max-width: 760px) {
  .guide-page {
    padding-top: 32px;
  }

  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-boundary {
    position: static;
  }

  .guide-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

.account-form .button {
  margin-top: 4px;
  background: var(--navy);
}

.account-help {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.76rem;
}

.account-notice {
  margin-bottom: 20px;
  padding: 13px 15px;
  border-radius: 13px;
  font-size: 0.78rem;
}

.account-notice strong {
  display: block;
}

.account-notice.is-success {
  color: #235d3a;
  background: rgba(112, 189, 140, 0.18);
}

.account-notice.is-error {
  color: #7a3520;
  background: rgba(243, 154, 107, 0.19);
}

/* Profile */

.profile-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.profile-header {
  position: relative;
  z-index: 10;
  display: grid;
  min-height: 84px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(22px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(19, 34, 51, 0.74);
  backdrop-filter: blur(18px);
}

.profile-header > a:last-child,
.profile-header > button:last-child {
  justify-self: end;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
}

.profile-header > button:last-child:disabled {
  cursor: wait;
  opacity: 0.55;
}

.profile-security {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.75rem;
}

.profile-security > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(112, 189, 140, 0.13);
}

.profile-background,
.profile-overlay {
  position: absolute;
  inset: 0;
}

.profile-background {
  right: 50%;
  background: url("/nerivaport-human-care.jpg") 65% center / cover no-repeat;
  filter: saturate(0.78);
}

.profile-overlay {
  background:
    linear-gradient(90deg, transparent 28%, rgba(19, 34, 51, 0.82) 50%, var(--navy) 63%),
    linear-gradient(0deg, rgba(19, 34, 51, 0.8), transparent 48%);
}

.profile-layout {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(35px, 6vw, 95px);
  align-items: center;
  padding-block: 50px;
}

.profile-story {
  align-self: end;
  max-width: 450px;
  padding-bottom: 36px;
}

.profile-story h1 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1.02;
}

.profile-story p {
  color: rgba(255, 255, 255, 0.68);
}

.profile-form {
  padding: clamp(25px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(27, 44, 63, 0.72);
  box-shadow: 0 35px 90px rgba(6, 13, 20, 0.36);
  backdrop-filter: blur(22px);
}

.profile-required-notice {
  margin-bottom: 20px;
  padding: 12px 14px;
  border: 1px solid rgba(109, 181, 198, 0.35);
  border-radius: 12px;
  color: var(--white);
  background: rgba(109, 181, 198, 0.12);
  font-size: 0.84rem;
}

.profile-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

.profile-progress > div {
  width: min(250px, 48%);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.profile-progress i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--blue));
  transition: width 320ms ease;
}

.profile-eyebrow {
  color: var(--coral);
  font-size: 0.75rem;
}

.profile-form h2 {
  margin: 10px 0 12px;
  font-family: inherit;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.profile-form > p {
  color: rgba(255, 255, 255, 0.65);
}

.profile-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
  margin: 25px 0;
}

.profile-option {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 17px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.profile-option:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.36);
}

.profile-option.is-selected {
  border-color: var(--coral);
  background: rgba(243, 154, 107, 0.11);
  box-shadow: inset 3px 0 0 var(--coral);
}

.profile-option > span:first-child {
  display: grid;
  gap: 2px;
}

.profile-option small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

.profile-option > span:last-child {
  color: var(--coral);
}

.profile-data-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.73rem;
  flex-wrap: wrap;
}

.profile-data-note strong {
  color: var(--white);
}

.profile-buttons {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.form-error {
  margin: -12px 0 17px;
  color: #ffd2bf !important;
  font-size: 0.77rem;
}

/* MyCare */

.mycare-page,
.ops-page {
  display: grid;
  min-height: 100vh;
  grid-template-columns: 230px minmax(0, 1fr);
  background:
    radial-gradient(circle at 100% 0%, var(--blue-soft), transparent 27%),
    #f3f5f6;
}

.mycare-sidebar,
.ops-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  height: 100vh;
  flex-direction: column;
  padding: 24px 17px;
  color: var(--white);
  background: var(--navy);
}

.mycare-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mycare-mobile-menu {
  position: relative;
  display: none;
}

.mycare-mobile-menu summary {
  padding: 9px 14px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  font-size: 0.75rem;
}

.mycare-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mycare-sidebar .mycare-mobile-menu nav {
  position: absolute;
  z-index: 30;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(270px, 80vw);
  margin: 0;
  padding: 9px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mycare-sidebar .mycare-mobile-menu nav a {
  padding: 11px 12px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  border-radius: 9px;
}

.mycare-sidebar .mycare-mobile-menu nav a:last-child {
  border-bottom: 0;
}

.mycare-sidebar .mycare-mobile-menu nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--blue-soft);
}

.mycare-sidebar nav,
.ops-sidebar nav {
  display: grid;
  gap: 5px;
  margin-top: 42px;
}

.mycare-sidebar nav a,
.mycare-sidebar nav span,
.ops-sidebar nav span {
  padding: 11px 13px;
  color: rgba(255, 255, 255, 0.57);
  border-radius: 12px;
  font-size: 0.78rem;
}

.mycare-sidebar nav .is-active,
.ops-sidebar nav .is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.mycare-sidebar nav .is-coming {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mycare-sidebar nav .is-coming small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  font-weight: 600;
}

.privacy-center,
.ops-sidebar > a:last-child {
  margin-top: auto;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.75rem;
}

.mycare-main,
.ops-main {
  min-width: 0;
  padding: clamp(26px, 4vw, 58px);
}

.mycare-top,
.ops-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 35px;
}

.mycare-top > div:first-child > span,
.ops-top > div:first-child > span {
  color: var(--blue);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mycare-top h1,
.ops-top h1 {
  margin: 8px 0 9px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.mycare-top p,
.ops-top p {
  margin: 0;
  color: var(--muted);
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-menu button {
  min-height: 39px;
  padding-inline: 14px;
  color: var(--muted);
  border-color: var(--line);
  background: var(--white);
  font-size: 0.72rem;
}

.mycare-status {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding-inline: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
}

.user-menu > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
}

.mycare-profile-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.mycare-profile-strip > div {
  display: grid;
  gap: 4px;
  padding: 15px 18px;
  border-right: 1px solid var(--line);
}

.mycare-profile-strip span {
  color: var(--muted);
  font-size: 0.68rem;
}

.mycare-profile-strip strong {
  font-size: 0.82rem;
}

.mycare-profile-strip > a {
  align-self: center;
  padding: 12px 18px;
  color: var(--blue);
  font-size: 0.75rem;
}

.mycare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 20px;
}

.timeline-panel,
.ops-chart-panel,
.ops-queue {
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 24, 33, 0.06);
}

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

.panel-heading > div {
  display: grid;
  gap: 3px;
}

.panel-heading span {
  color: var(--muted);
  font-size: 0.72rem;
}

.period-switch {
  display: flex;
  gap: 5px;
}

.period-switch button {
  min-height: 36px;
  padding-inline: 13px;
  color: var(--muted);
  border-color: var(--line);
  background: var(--white);
  font-size: 0.72rem;
}

.period-switch button.is-active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.care-timeline {
  position: relative;
  display: grid;
  padding-left: 31px;
  transition: transform 220ms ease;
}

.care-timeline.week-view {
  transform: translateY(-4px);
}

.care-timeline::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 20px;
  left: 8px;
  width: 1px;
  background: linear-gradient(var(--blue), var(--coral), var(--line));
}

.timeline-event {
  position: relative;
  display: grid;
  min-height: 92px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: start;
  padding: 4px 0 22px;
}

.timeline-event::before {
  content: "";
  position: absolute;
  top: 9px;
  left: -27px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(93, 169, 233, 0.15);
}

.timeline-event.is-now::before {
  background: var(--coral);
  box-shadow:
    0 0 0 4px rgba(243, 154, 107, 0.14),
    0 0 16px var(--coral);
}

.timeline-event time {
  color: var(--muted);
  font-size: 0.72rem;
}

.timeline-event p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.77rem;
}

.timeline-event > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  color: var(--blue);
  background: var(--blue-soft);
}

.timeline-event button {
  min-height: 38px;
  padding-inline: 14px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  font-size: 0.72rem;
}

.timeline-event button:disabled {
  color: var(--green);
  cursor: default;
}

.next-action {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  color: var(--white);
  border-radius: 24px;
  background: var(--navy);
  box-shadow: 0 24px 65px rgba(16, 24, 33, 0.14);
}

.next-action::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  top: -150px;
  right: -110px;
  border: 1px solid rgba(93, 169, 233, 0.45);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(93, 169, 233, 0.1);
}

.next-action > * {
  position: relative;
  z-index: 2;
}

.next-action-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
}

.next-time {
  display: block;
  margin: 28px 0 8px;
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 1.2rem;
}

.next-action h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: inherit;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.next-action p,
.next-action dt,
.next-action small {
  color: rgba(255, 255, 255, 0.64);
}

.next-action dl {
  margin: 23px 0;
}

.next-action dt,
.next-action dd {
  font-size: 0.75rem;
}

.next-action small {
  display: block;
  margin-top: 16px;
  font-size: 0.68rem;
}

.approval-success {
  display: grid;
  min-height: 420px;
  align-content: center;
  text-align: center;
}

.approval-success h2 {
  color: var(--white);
}

.approval-success > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--green);
  font-size: 1.4rem;
}

.approval-success .button {
  justify-self: center;
  margin-top: 12px;
}

.assistant-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 20px;
  padding: 21px 24px;
  border: 1px solid rgba(243, 154, 107, 0.24);
  border-radius: 20px;
  background: linear-gradient(120deg, #fff4ed, var(--white));
}

.assistant-note > span {
  color: var(--coral);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.assistant-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.assistant-note button {
  min-height: 38px;
  padding-inline: 14px;
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  font-size: 0.72rem;
}

/* Operations */

.ops-sidebar {
  background: #101b29;
}

.system-health {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.75rem;
}

.system-health > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(112, 189, 140, 0.14);
}

.ops-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-bottom: 20px;
}

.ops-kpis article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 15px 42px rgba(16, 24, 33, 0.05);
}

.ops-kpis article > span,
.ops-kpis small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
}

.ops-kpis strong {
  display: block;
  margin: 13px 0 6px;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 20px;
}

.ops-tag {
  padding: 6px 10px;
  color: var(--blue) !important;
  border-radius: 999px;
  background: var(--blue-soft);
}

.ops-chart {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.chart-grid {
  position: absolute;
  inset: 0 0 42px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, transparent 24%, var(--line) 25%, transparent 25%);
  background-size: 100% 25%, 25% 100%;
}

.chart-area {
  position: absolute;
  right: 2%;
  bottom: 44px;
  left: 2%;
  height: 72%;
  clip-path: polygon(0 84%, 20% 70%, 40% 74%, 60% 52%, 78% 45%, 100% 8%, 100% 100%, 0 100%);
  background: linear-gradient(180deg, rgba(93, 169, 233, 0.34), rgba(93, 169, 233, 0.06));
  border-top: 3px solid var(--blue);
}

.chart-area i {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 3px solid var(--blue);
  border-radius: 50%;
  background: var(--white);
}

.chart-area i:nth-child(1) {
  bottom: 13%;
  left: 0;
}

.chart-area i:nth-child(2) {
  bottom: 27%;
  left: 20%;
}

.chart-area i:nth-child(3) {
  bottom: 23%;
  left: 40%;
}

.chart-area i:nth-child(4) {
  bottom: 47%;
  left: 60%;
}

.chart-area i:nth-child(5) {
  top: 3%;
  right: 0;
}

.chart-labels {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.68rem;
}

.ops-queue > div:last-child {
  display: grid;
}

.ops-queue article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.ops-queue article:last-child {
  border-bottom: 0;
}

.ops-queue article > div {
  display: grid;
  gap: 3px;
}

.ops-queue article span {
  color: var(--muted);
  font-size: 0.7rem;
}

.ops-queue article small {
  padding: 5px 9px;
  color: var(--blue);
  border-radius: 999px;
  background: var(--blue-soft);
}

.engine-state {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.8fr;
  gap: 0;
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.engine-state > div {
  display: grid;
  align-content: center;
  min-height: 100px;
  padding: 18px 21px;
  border-right: 1px solid var(--line);
}

.engine-state > div:last-child {
  border-right: 0;
}

.engine-state > div:first-child {
  grid-template-columns: auto 1fr;
  column-gap: 11px;
}

.engine-state > div:first-child p {
  grid-column: 2;
}

.engine-state span,
.engine-state p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

@keyframes care-orbit {
  to {
    transform: rotate(344deg);
  }
}

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

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

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu {
    display: block;
  }

  .hero-inner,
  .living-inner,
  .manifesto,
  .care-world,
  .account-layout,
  .profile-layout,
  .mycare-grid,
  .ops-grid {
    grid-template-columns: 1fr;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 35, 52, 0.96), rgba(20, 35, 52, 0.42)),
      linear-gradient(0deg, rgba(20, 35, 52, 0.86), transparent);
  }

  .hero-copy {
    max-width: 650px;
  }

  .care-signal-wrap {
    min-height: 330px;
  }

  .manifesto {
    grid-template-columns: 0.35fr 1fr;
  }

  .manifesto-quote {
    grid-column: 2;
  }

  .living-data {
    justify-self: start;
    margin-top: 10px;
  }

  .care-world-heading {
    max-width: 670px;
  }

  .story-section {
    grid-template-columns: 1fr;
  }

  .story-image {
    min-height: 580px;
  }

  .professional-flow {
    grid-template-columns: 1fr;
  }

  .professional-flow > div {
    min-height: 160px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .professional-flow > div:last-child {
    border-bottom: 0;
  }

  .profile-background {
    right: 0;
    bottom: 48%;
  }

  .profile-overlay {
    background: linear-gradient(
      0deg,
      var(--navy) 38%,
      rgba(19, 34, 51, 0.84) 57%,
      rgba(19, 34, 51, 0.2)
    );
  }

  .profile-story {
    padding-top: 220px;
  }

  .account-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .account-story {
    max-width: 720px;
  }

  .mycare-grid,
  .ops-grid {
    gap: 16px;
  }

  .ops-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .language-button {
    display: none;
  }

  .hero {
    min-height: 920px;
  }

  .hero-photo {
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(20, 35, 52, 0.97), rgba(20, 35, 52, 0.54)),
      linear-gradient(0deg, rgba(20, 35, 52, 0.92), transparent);
  }

  .hero-inner {
    display: block;
    padding-top: 128px;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 14vw, 5.3rem);
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .care-signal-wrap {
    min-height: 310px;
    margin-top: 30px;
  }

  .hero-index {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-block: 18px;
  }

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

  .manifesto-quote {
    grid-column: auto;
  }

  .living-system {
    min-height: 980px;
  }

  .living-inner {
    display: block;
    padding-top: 70px;
  }

  .living-overlay {
    background:
      linear-gradient(90deg, rgba(19, 34, 51, 0.94), rgba(19, 34, 51, 0.28)),
      linear-gradient(0deg, rgba(19, 34, 51, 0.9), transparent);
  }

  .living-data {
    width: min(290px, 82%);
    margin-top: 50px;
  }

  .living-principle {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding-block: 15px;
  }

  .care-world-list article {
    grid-template-columns: 38px 1fr 42px;
    gap: 13px;
    padding-block: 20px;
  }

  .care-world-list p {
    grid-column: 2;
  }

  .care-world-list article > a {
    grid-row: 1 / span 2;
    grid-column: 3;
  }

  .story-image {
    min-height: 520px;
    background-position: 65% center;
  }

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

  .footer-links {
    margin-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-header {
    grid-template-columns: 1fr auto;
  }

  .profile-security {
    display: none;
  }

  .profile-options {
    grid-template-columns: 1fr;
  }

  .account-layout {
    padding-block: 38px;
  }

  .account-story h1 {
    font-size: clamp(2.8rem, 11vw, 4.9rem);
  }

  .mycare-page,
  .ops-page {
    grid-template-columns: 1fr;
  }

  .mycare-sidebar,
  .ops-sidebar {
    position: static;
    display: block;
    width: auto;
    height: auto;
    padding: 16px;
  }

  .mycare-sidebar nav,
  .ops-sidebar nav,
  .privacy-center,
  .ops-sidebar > a:last-child {
    display: none;
  }

  .mycare-mobile-menu {
    display: block;
  }

  .mycare-sidebar .mycare-mobile-menu[open] nav {
    display: grid;
    margin-top: 0;
  }

  .mycare-main,
  .ops-main {
    padding: 22px 16px 40px;
  }

  .mycare-top,
  .ops-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .user-menu {
    align-self: flex-end;
    margin-top: -62px;
  }

  .mycare-profile-strip {
    grid-template-columns: 1fr;
  }

  .mycare-profile-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assistant-note {
    grid-template-columns: 1fr;
  }

  .ops-kpis {
    grid-template-columns: 1fr;
  }

  .engine-state {
    grid-template-columns: 1fr;
  }

  .engine-state > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 480px) {
  .site-header,
  .profile-header,
  .account-header {
    padding-inline: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .header-actions > .button {
    display: none;
  }

  .hero {
    min-height: 980px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    justify-content: center;
  }

  .care-signal {
    width: min(270px, 86%);
  }

  .signal-toggle {
    bottom: 0;
  }

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

  .story-image {
    min-height: 440px;
  }

  .story-caption {
    right: 22px;
    left: 22px;
  }

  .profile-story {
    padding-top: 115px;
    padding-bottom: 8px;
  }

  .profile-form {
    padding: 21px 17px;
  }

  .account-layout {
    gap: 24px;
    padding-block: 30px 42px;
  }

  .account-story h1 {
    font-size: 2.65rem;
  }

  .account-story ul {
    display: none;
  }

  .account-card {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .profile-progress {
    align-items: flex-start;
    flex-direction: column;
  }

  .profile-progress > div {
    width: 100%;
  }

  .profile-buttons {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .profile-buttons .button {
    width: 100%;
  }

  .timeline-panel,
  .ops-chart-panel,
  .ops-queue {
    padding: 18px 15px;
  }

  .panel-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .timeline-event {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .timeline-event > span,
  .timeline-event > button {
    grid-column: 2;
    justify-self: start;
  }

  .chart-labels span:nth-child(2),
  .chart-labels span:nth-child(4) {
    display: none;
  }
}

/* Growth Engine 0.3.5.1 */
.growth-header {
  position: relative;
  z-index: 20;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(18px);
}

.growth-header .desktop-nav {
  color: var(--muted);
}

.growth-header .desktop-nav a {
  position: relative;
}

.growth-header .desktop-nav a.is-current,
.growth-header .desktop-nav a:hover {
  color: var(--ink);
}

.growth-header .desktop-nav a.is-current::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  content: "";
}

.growth-header .language-button {
  min-height: 40px;
  color: var(--ink);
  border-color: var(--line);
  background: transparent;
}

.growth-header .mobile-menu summary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.66);
}

.growth-page {
  overflow: hidden;
  background:
    linear-gradient(rgba(16, 24, 33, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 33, 0.022) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
}

.growth-hero {
  position: relative;
  min-height: 690px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 20%, rgba(93, 169, 233, 0.26), transparent 26%),
    radial-gradient(circle at 20% 88%, rgba(243, 154, 107, 0.18), transparent 28%),
    var(--navy);
}

.growth-hero::after {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.growth-orb {
  position: absolute;
  z-index: 1;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  animation: np-orbit 18s linear infinite;
}

.growth-orb::before,
.growth-orb::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: inherit;
  content: "";
}

.growth-orb::before {
  inset: 34px;
}

.growth-orb::after {
  inset: 82px;
}

.growth-orb-one {
  top: -145px;
  right: 6%;
}

.growth-orb-two {
  bottom: -210px;
  left: 38%;
  width: 440px;
  height: 440px;
  animation-direction: reverse;
}

@keyframes np-orbit {
  to {
    transform: rotate(360deg);
  }
}

.growth-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(45px, 9vw, 130px);
  padding-block: 120px 100px;
}

.growth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.growth-kicker::before {
  width: 25px;
  height: 1px;
  background: currentColor;
  content: "";
}

.growth-hero h1 {
  max-width: 860px;
  margin: 24px 0 28px;
  color: var(--white);
  font-size: clamp(3.7rem, 7vw, 7.4rem);
}

.growth-hero-inner > div > p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.growth-privacy-note {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(20px);
}

.growth-privacy-note > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 44px;
  place-items: center;
  color: var(--blue);
  border: 1px solid rgba(93, 169, 233, 0.45);
  border-radius: 50%;
  font-size: 24px;
}

.growth-privacy-note strong {
  display: block;
  margin-bottom: 10px;
}

.growth-privacy-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.tool-lab {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-block: 100px 55px;
}

.tool-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 25px 70px rgba(16, 24, 33, 0.07);
}

.tool-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--blue);
  content: "";
}

.tool-card-coral::before {
  background: var(--coral);
}

.tool-card-green::before {
  background: var(--green);
}

.tool-card-head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.tool-card-head > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--navy);
  border-radius: 50%;
  background: var(--blue-soft);
  font-size: 12px;
}

.tool-card-coral .tool-card-head > span {
  background: rgba(243, 154, 107, 0.18);
}

.tool-card-green .tool-card-head > span {
  background: rgba(112, 189, 140, 0.2);
}

.tool-card-head strong,
.tool-card-head small {
  display: block;
}

.tool-card-head strong {
  color: var(--navy);
  font-size: 19px;
}

.tool-card-head small {
  margin-top: 3px;
  color: var(--muted);
}

.tool-card form {
  display: grid;
  gap: 15px;
}

.tool-card label,
.tool-card legend {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.tool-card input[type="number"] {
  width: 100%;
  min-height: 50px;
  margin-top: 7px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8f9f9;
}

.tool-card input:focus {
  outline: 3px solid rgba(93, 169, 233, 0.22);
  border-color: var(--blue);
}

.tool-card fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.tool-card legend {
  margin-bottom: 7px;
}

.tool-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink) !important;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f8f9f9;
}

.tool-card .button {
  width: 100%;
  margin-top: 4px;
}

.tool-card output {
  display: grid;
  min-height: 82px;
  align-content: center;
  gap: 4px;
  padding: 15px;
  color: var(--muted);
  border-radius: 14px;
  background: var(--paper);
  font-size: 12px;
}

.tool-card output strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.growth-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 40px 110px;
}

.growth-trust > div {
  padding: 25px 35px;
  border-right: 1px solid var(--line);
}

.growth-trust > div:first-child {
  padding-left: 0;
}

.growth-trust > div:last-child {
  border-right: 0;
}

.growth-trust span {
  color: var(--coral);
  font-size: 11px;
}

.growth-trust strong {
  display: block;
  margin: 13px 0 6px;
}

.growth-trust p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.growth-next {
  padding-block: 100px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(93, 169, 233, 0.22), transparent 28%),
    var(--navy);
}

.growth-next h2 {
  max-width: 980px;
  margin: 22px 0 35px;
}

.growth-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.knowledge-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 80px;
  padding-block: 130px 85px;
}

.knowledge-hero h1 {
  max-width: 850px;
  margin: 26px 0 0;
  color: var(--navy);
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.knowledge-intro > p {
  color: var(--muted);
  font-size: 17px;
}

.knowledge-intro > div {
  margin-top: 38px;
  padding: 23px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 255, 255, 0.7);
}

.knowledge-intro span,
.knowledge-intro strong {
  display: block;
}

.knowledge-intro span {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-bottom: 110px;
  background: var(--line);
  border: 1px solid var(--line);
}

.knowledge-grid article {
  min-height: 365px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.knowledge-grid article:hover {
  position: relative;
  z-index: 1;
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.knowledge-card-meta,
.knowledge-grid article footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.knowledge-card-meta span {
  color: var(--coral);
}

.knowledge-card-meta small {
  color: var(--muted);
}

.knowledge-grid h2 {
  margin: 55px 0 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3vw, 3rem);
}

.knowledge-grid p {
  color: var(--muted);
}

.knowledge-grid article footer {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.knowledge-grid article footer i {
  color: var(--blue);
  font-size: 20px;
  font-style: normal;
}

.editorial-standard {
  padding-block: 115px;
  color: var(--white);
  background: var(--navy);
}

.editorial-standard-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.editorial-standard h2 {
  margin-top: 25px;
  font-size: clamp(3rem, 5.5vw, 5.6rem);
}

.editorial-standard ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.editorial-standard li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.editorial-standard li > span {
  color: var(--coral);
  font-size: 11px;
}

.editorial-standard li strong {
  display: block;
  margin-bottom: 5px;
}

.editorial-standard li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.knowledge-disclaimer {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 25px;
  padding-block: 70px;
}

.knowledge-disclaimer > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 50%;
  font-family: Georgia, serif;
  font-style: italic;
}

.knowledge-disclaimer p {
  max-width: 790px;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.privacy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: clamp(45px, 8vw, 110px);
  padding-block: 125px 82px;
}

.privacy-hero h1 {
  max-width: 850px;
  margin: 25px 0 0;
  color: var(--navy);
  font-size: clamp(3.8rem, 7vw, 7rem);
}

.privacy-hero-note {
  padding: 28px;
  border: 1px solid rgba(93, 169, 233, 0.26);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(224, 239, 250, 0.82), rgba(255, 255, 255, 0.72));
}

.privacy-hero-note strong {
  color: var(--navy);
}

.privacy-hero-note p {
  margin: 12px 0 22px;
  color: var(--muted);
}

.privacy-hero-note small {
  color: var(--coral);
  font-weight: 700;
}

.privacy-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.privacy-summary article {
  min-height: 225px;
  padding: 34px;
  border-right: 1px solid var(--line);
}

.privacy-summary article:last-child {
  border-right: 0;
}

.privacy-summary span,
.privacy-sections > section > span {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 0.8rem;
}

.privacy-summary strong {
  display: block;
  margin: 45px 0 12px;
  color: var(--navy);
  font-size: 1.1rem;
}

.privacy-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.privacy-content {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(50px, 8vw, 120px);
  padding-block: 110px;
}

.privacy-content > aside {
  position: sticky;
  top: 110px;
  display: grid;
  height: max-content;
  gap: 8px;
}

.privacy-content > aside span {
  margin-bottom: 13px;
  color: var(--coral);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.privacy-content > aside a {
  padding: 9px 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.privacy-sections {
  display: grid;
}

.privacy-sections > section {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 55px;
  margin-bottom: 55px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.privacy-sections h2 {
  margin: -8px 0 20px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.privacy-sections p {
  max-width: 820px;
  color: var(--muted);
}

.privacy-contact {
  display: inline-flex;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.global-hero .hero-copy h1 {
  max-width: 1000px;
  font-size: clamp(3.6rem, 7vw, 7.1rem);
}

.global-engine {
  padding-block: 115px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 85%, rgba(243, 154, 107, 0.16), transparent 25%),
    var(--navy);
}

.global-engine-head {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 65px;
  align-items: start;
}

.global-engine-head h2 {
  margin: 0 0 70px;
}

.global-engine-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
}

.global-engine-grid article {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--navy-2);
}

.global-engine-grid article > span:first-child {
  color: var(--coral);
  font-size: 11px;
}

.global-engine-grid strong {
  margin: 70px 0 13px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
}

.global-engine-grid p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.global-engine-grid a,
.engine-boundary {
  margin-top: auto;
  color: var(--blue);
  font-size: 12px;
}

.global-trust {
  padding-block: 120px;
}

@media (max-width: 980px) {
  .growth-hero-inner,
  .knowledge-hero,
  .editorial-standard-grid,
  .privacy-hero {
    grid-template-columns: 1fr;
  }

  .growth-privacy-note {
    max-width: 540px;
  }

  .tool-lab,
  .knowledge-grid,
  .global-engine-grid {
    grid-template-columns: 1fr 1fr;
  }

  .global-engine-head {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .privacy-summary article {
    min-height: 180px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .privacy-summary article:last-child {
    border-bottom: 0;
  }

  .privacy-summary strong {
    margin-top: 28px;
  }

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

  .privacy-content > aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .privacy-content > aside span {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .growth-hero {
    min-height: auto;
  }

  .growth-hero-inner {
    padding-block: 90px 65px;
  }

  .growth-hero h1,
  .knowledge-hero h1,
  .privacy-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .tool-lab,
  .knowledge-grid,
  .global-engine-grid,
  .growth-trust {
    grid-template-columns: 1fr;
  }

  .tool-card {
    padding: 25px 20px;
  }

  .growth-trust > div {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .knowledge-hero {
    gap: 35px;
    padding-block: 90px 55px;
  }

  .privacy-hero {
    gap: 32px;
    padding-block: 85px 52px;
  }

  .privacy-content {
    gap: 55px;
    padding-block: 80px;
  }

  .privacy-content > aside {
    grid-template-columns: 1fr;
  }

  .privacy-sections > section {
    grid-template-columns: 1fr;
  }

  .knowledge-grid article {
    min-height: 300px;
  }

  .knowledge-disclaimer {
    grid-template-columns: 45px 1fr;
  }

  .knowledge-disclaimer .button {
    grid-column: 1 / -1;
  }

  .global-engine-grid article {
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .growth-orb {
    animation: none;
  }
}
