:root {
  --teal: #0b3534;
  --teal-light: #164b48;
  --ink: #102b2b;
  --paper: #f7f5ee;
  --cream: #eeeadd;
  --white: #ffffff;
  --green: #a9e6ca;
  --green-soft: #dff5e9;
  --coral: #ff7a68;
  --coral-soft: #ffe2db;
  --blue: #9bc7e5;
  --blue-soft: #e0eef7;
  --text: #1b3736;
  --muted: #607271;
  --line: rgba(16, 43, 43, 0.14);
  --dark-line: rgba(255, 255, 255, 0.14);
  --container: 1180px;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(11, 53, 52, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

::selection {
  background: var(--coral-soft);
  color: var(--teal);
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--coral);
  color: var(--teal);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  color: var(--teal);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  border-bottom: 1px solid rgba(11, 53, 52, 0.12);
}

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

.brand-symbol {
  position: relative;
  display: flex;
  width: 38px;
  height: 38px;
  align-items: flex-end;
  justify-content: center;
  gap: 3px;
  padding: 9px 8px;
  border-radius: 13px;
  background: var(--teal);
}

.brand-symbol i {
  display: block;
  width: 4px;
  border-radius: 4px;
  background: var(--green);
}

.brand-symbol i:nth-child(1) {
  height: 8px;
}

.brand-symbol i:nth-child(2) {
  height: 18px;
  background: var(--coral);
}

.brand-symbol i:nth-child(3) {
  height: 12px;
}

.brand-name {
  color: var(--teal);
  font-size: 21px;
  font-weight: 770;
  letter-spacing: -0.055em;
}

.brand-name span {
  color: var(--coral);
}

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

.site-nav a {
  position: relative;
  color: rgba(11, 53, 52, 0.64);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--coral);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 17px;
  border: 1px solid rgba(11, 53, 52, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 860px;
  padding-top: 90px;
  background:
    radial-gradient(circle at 81% 25%, rgba(169, 230, 202, 0.55), transparent 27%),
    linear-gradient(115deg, #f8f5ed 0%, #eef5ec 58%, #d8f0e3 100%);
}

.hero::before {
  position: absolute;
  top: 90px;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: linear-gradient(rgba(11, 53, 52, 0.08), transparent);
  content: "";
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-shape-one {
  top: 160px;
  right: -125px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(11, 53, 52, 0.09);
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.13),
    0 0 0 140px rgba(255, 255, 255, 0.08);
}

.hero-shape-two {
  bottom: -260px;
  left: -190px;
  width: 480px;
  height: 480px;
  background: rgba(255, 122, 104, 0.09);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(50px, 7.5vw, 105px);
  align-items: center;
  padding-top: 102px;
  padding-bottom: 78px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.19em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
}

.eyebrow-dark {
  color: #687c7a;
}

.hero .eyebrow {
  color: #56706e;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--teal);
  font-size: clamp(54px, 6.4vw, 84px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.hero h1 em {
  display: inline;
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-lead {
  max-width: 620px;
  margin: 32px 0 0;
  color: #5d7472;
  font-size: 18px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 21px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--teal);
  box-shadow: 0 14px 30px rgba(11, 53, 52, 0.15);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal-light);
  box-shadow: 0 18px 37px rgba(11, 53, 52, 0.22);
}

.button-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #526c6a;
  font-size: 12px;
  font-weight: 800;
}

.button-link:hover,
.button-link:focus-visible {
  color: var(--teal);
}

.hero-product {
  position: relative;
  width: min(100%, 520px);
  justify-self: end;
}

.product-window {
  position: relative;
  overflow: hidden;
  min-height: 510px;
  padding: 24px;
  border: 1px solid rgba(11, 53, 52, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.81);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: rotate(1.5deg);
}

.product-window::before {
  position: absolute;
  top: -130px;
  right: -110px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(169, 230, 202, 0.26);
  content: "";
}

.window-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 23px;
  border-bottom: 1px solid rgba(11, 53, 52, 0.09);
}

.window-title {
  display: flex;
  gap: 11px;
  align-items: center;
}

.mini-logo {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
  background: var(--teal);
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
}

.window-title strong,
.window-title small {
  display: block;
}

.window-title strong {
  color: var(--teal);
  font-size: 12px;
}

.window-title small {
  color: #83918f;
  font-size: 8px;
  font-weight: 700;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: #2c7061;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #52b899;
  box-shadow: 0 0 0 4px rgba(82, 184, 153, 0.11);
}

.insight-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
  margin-top: 28px;
}

.wellbeing-card,
.signal-card {
  min-height: 272px;
  padding: 18px;
  border-radius: 21px;
}

.wellbeing-card {
  background: var(--teal);
  color: var(--white);
}

.wellbeing-card > p,
.signal-top p {
  margin: 0;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress-ring {
  display: grid;
  width: 132px;
  height: 132px;
  margin: 18px auto 16px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle closest-side, var(--teal) 76%, transparent 78% 99%),
    conic-gradient(var(--green) 0 77%, rgba(255, 255, 255, 0.11) 77%);
}

.progress-ring div {
  text-align: center;
}

.progress-ring strong,
.progress-ring small {
  display: block;
}

.progress-ring strong {
  font-size: 20px;
  line-height: 1;
}

.progress-ring small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
}

.wellbeing-card > span {
  display: block;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

.signal-card {
  display: flex;
  flex-direction: column;
  background: var(--coral-soft);
}

.signal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--teal);
}

.signal-top span {
  color: #93685f;
  font-size: 8px;
  font-weight: 800;
}

.pulse-chart {
  display: flex;
  height: 124px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 7px;
  margin: 29px 0 24px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(11, 53, 52, 0.1);
}

.pulse-chart i {
  display: block;
  width: 12px;
  border-radius: 999px;
  background: var(--coral);
}

.pulse-chart i:nth-child(1) {
  height: 23%;
}

.pulse-chart i:nth-child(2) {
  height: 42%;
}

.pulse-chart i:nth-child(3) {
  height: 34%;
}

.pulse-chart i:nth-child(4) {
  height: 68%;
}

.pulse-chart i:nth-child(5) {
  height: 52%;
}

.pulse-chart i:nth-child(6) {
  height: 82%;
}

.pulse-chart i:nth-child(7) {
  height: 61%;
}

.pulse-chart i:nth-child(8) {
  height: 91%;
  background: var(--teal);
}

.signal-card > small {
  margin-top: auto;
  color: #8c6d67;
  font-size: 8px;
  line-height: 1.5;
}

.journey-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 53, 52, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
}

.journey-row > i {
  height: 1px;
  background: rgba(11, 53, 52, 0.12);
}

.journey-row > div {
  display: flex;
  gap: 7px;
  align-items: center;
}

.journey-row p {
  margin: 0;
  color: #5a706e;
  font-size: 8px;
  font-weight: 800;
}

.journey-icon {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 8px;
  color: var(--teal);
  font-size: 7px;
  font-weight: 900;
}

.journey-icon-green {
  background: var(--green-soft);
}

.journey-icon-coral {
  background: var(--coral-soft);
}

.journey-icon-blue {
  background: var(--blue-soft);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  gap: 11px;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid rgba(11, 53, 52, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 17px 45px rgba(11, 53, 52, 0.14);
  color: var(--teal);
}

.floating-card-top {
  top: 92px;
  right: -39px;
}

.floating-card-bottom {
  bottom: 54px;
  left: -45px;
}

.floating-card > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  background: var(--coral-soft);
  color: var(--coral);
}

.floating-card > .shield {
  background: var(--green-soft);
  color: #4d9b81;
  font-weight: 900;
}

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

.floating-card small {
  color: #8a9997;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-card strong {
  margin-top: 1px;
  font-size: 10px;
}

.hero-values {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(11, 53, 52, 0.12);
}

.hero-values p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 24px;
  border-right: 1px solid rgba(11, 53, 52, 0.1);
  color: #5f7674;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-values p:last-child {
  border-right: 0;
}

.hero-values i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}

.section {
  padding: 126px 0;
}

.about {
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: 0.38fr 1.62fr;
  gap: 50px;
}

.about-content h2,
.section-intro h2,
.principles-heading h2 {
  margin: 0;
  color: var(--teal);
  font-size: clamp(45px, 5.5vw, 70px);
  font-weight: 590;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.about-content h2 {
  max-width: 880px;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  max-width: 900px;
  margin-top: 60px;
  padding-top: 35px;
  border-top: 1px solid var(--line);
}

.about-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.about-columns p:first-child {
  color: var(--text);
  font-size: 18px;
}

.promise {
  position: relative;
  overflow: hidden;
  padding: 95px 0;
  background: var(--coral);
  color: var(--teal);
}

.promise-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.35fr 1.3fr 0.35fr;
  gap: 45px;
  align-items: start;
}

.promise-inner > p {
  margin: 11px 0 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.promise blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(37px, 4.4vw, 56px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.14;
}

.promise-mark {
  display: flex;
  height: 90px;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 7px;
}

.promise-mark i {
  width: 7px;
  border-radius: 8px;
  background: var(--teal);
}

.promise-mark i:nth-child(1) {
  height: 20px;
}

.promise-mark i:nth-child(2) {
  height: 42px;
}

.promise-mark i:nth-child(3) {
  height: 79px;
}

.promise-mark i:nth-child(4) {
  height: 53px;
}

.promise-mark i:nth-child(5) {
  height: 30px;
}

.capabilities {
  background: var(--white);
}

.section-intro {
  display: flex;
  gap: 60px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 65px;
}

.section-intro > div {
  max-width: 760px;
}

.section-intro > p {
  max-width: 330px;
  margin: 0 0 6px;
  color: var(--muted);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.capability-card {
  position: relative;
  display: flex;
  min-height: 500px;
  flex-direction: column;
  overflow: hidden;
  padding: 28px 30px 31px;
  border-radius: var(--radius);
  color: var(--teal);
  transition: transform 220ms ease;
}

.capability-card:hover {
  transform: translateY(-4px);
}

.capability-card-green {
  background: var(--green-soft);
}

.capability-card-coral {
  background: var(--coral-soft);
}

.capability-card-blue {
  background: var(--blue-soft);
}

.capability-card-cream {
  background: var(--cream);
}

.card-number {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.card-art {
  position: relative;
  height: 170px;
  margin: 13px 0 23px;
}

.card-art span,
.card-art i,
.card-art b {
  position: absolute;
  display: block;
}

.card-art-product span {
  top: 19px;
  left: 50%;
  width: 125px;
  height: 125px;
  border: 14px solid var(--teal);
  border-radius: 50%;
  transform: translateX(-50%);
}

.card-art-product i {
  top: 44px;
  left: calc(50% + 38px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--coral);
}

.card-art-product b {
  top: 69px;
  left: calc(50% - 49px);
  width: 98px;
  height: 14px;
  border-radius: 10px;
  background: var(--green);
}

.card-art-journey::before {
  position: absolute;
  top: 83px;
  right: 12%;
  left: 12%;
  height: 2px;
  background: rgba(11, 53, 52, 0.2);
  content: "";
}

.card-art-journey span,
.card-art-journey i,
.card-art-journey b {
  top: 61px;
  width: 45px;
  height: 45px;
  border: 8px solid var(--teal);
  border-radius: 50%;
  background: var(--coral-soft);
}

.card-art-journey span {
  left: 10%;
}

.card-art-journey i {
  left: calc(50% - 22px);
  background: var(--coral);
}

.card-art-journey b {
  right: 10%;
  background: var(--teal);
}

.card-art-platform span {
  top: 24px;
  left: calc(50% - 87px);
  width: 174px;
  height: 116px;
  border: 5px solid var(--teal);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.35);
}

.card-art-platform i {
  top: 50px;
  left: calc(50% - 59px);
  width: 72px;
  height: 10px;
  border-radius: 10px;
  background: var(--teal);
  box-shadow:
    0 22px 0 rgba(11, 53, 52, 0.28),
    0 44px 0 rgba(11, 53, 52, 0.16);
}

.card-art-platform b {
  top: 48px;
  left: calc(50% + 28px);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral);
}

.card-art-advisory span {
  top: 23px;
  left: calc(50% - 75px);
  width: 150px;
  height: 122px;
  border: 3px solid var(--teal);
  border-radius: 50% 50% 45% 55%;
  transform: rotate(-7deg);
}

.card-art-advisory i {
  top: 65px;
  left: calc(50% - 74px);
  width: 148px;
  height: 3px;
  background: var(--teal);
  transform: rotate(-7deg);
}

.card-art-advisory b {
  top: 43px;
  left: calc(50% + 32px);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--green);
}

.capability-card h3 {
  max-width: 480px;
  margin: auto 0 11px;
  font-size: clamp(28px, 3.4vw, 37px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.capability-card > p {
  max-width: 500px;
  margin: 0;
  color: rgba(16, 43, 43, 0.67);
}

.capability-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.capability-card li {
  padding: 6px 9px;
  border: 1px solid rgba(11, 53, 52, 0.13);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
}

.principles {
  background:
    radial-gradient(circle at 0 100%, rgba(169, 230, 202, 0.12), transparent 28%),
    var(--teal);
  color: var(--white);
}

.principles-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(65px, 10vw, 145px);
}

.principles-heading {
  align-self: start;
  position: sticky;
  top: 50px;
}

.principles-heading h2 {
  color: var(--white);
}

.principles-heading > p:last-child {
  max-width: 450px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.principles-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 20px;
  padding: 35px 0 41px;
  border-top: 1px solid var(--dark-line);
}

.principles-list article:last-child {
  border-bottom: 1px solid var(--dark-line);
}

.principles-list > article > span {
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.principles-list h3 {
  margin: -8px 0 9px;
  font-size: 28px;
  font-weight: 570;
  letter-spacing: -0.04em;
}

.principles-list p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: 126px 0;
  background: var(--green);
  color: var(--teal);
}

.contact-ring {
  position: absolute;
  border: 1px solid rgba(11, 53, 52, 0.12);
  border-radius: 50%;
}

.contact-ring-one {
  top: -250px;
  right: -130px;
  width: 600px;
  height: 600px;
}

.contact-ring-two {
  right: 190px;
  bottom: -340px;
  width: 470px;
  height: 470px;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.17fr 0.83fr;
  gap: clamp(60px, 10vw, 145px);
  align-items: end;
}

.contact .eyebrow {
  color: #477368;
}

.contact-copy h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 590;
  letter-spacing: -0.065em;
  line-height: 1;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 28px 0 35px;
  color: rgba(11, 53, 52, 0.67);
  font-size: 17px;
}

.button-light {
  background: var(--white);
  box-shadow: 0 16px 35px rgba(11, 53, 52, 0.11);
  color: var(--teal);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--paper);
  box-shadow: 0 20px 42px rgba(11, 53, 52, 0.16);
}

.office {
  display: block;
  padding: 30px;
  border: 1px solid rgba(11, 53, 52, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
  font-style: normal;
  backdrop-filter: blur(14px);
}

.office-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.office-top p {
  margin: 0;
  color: #4f776e;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.office-icon {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 11px;
  background: var(--teal);
  color: var(--green);
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
}

.office strong,
.office > span,
.office > a {
  display: block;
}

.office strong {
  margin-bottom: 14px;
  font-size: 20px;
}

.office > span {
  color: rgba(11, 53, 52, 0.64);
  font-size: 13px;
  line-height: 1.8;
}

.office > a {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(11, 53, 52, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.site-footer {
  padding: 48px 0 28px;
  background: var(--teal);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--dark-line);
}

.brand-footer .brand-symbol {
  background: rgba(255, 255, 255, 0.1);
}

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

.footer-main > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
}

.footer-main > a:last-child {
  justify-self: end;
  color: rgba(255, 255, 255, 0.59);
  font-size: 11px;
  font-weight: 800;
}

.footer-meta {
  display: flex;
  gap: 35px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.footer-meta p {
  margin: 0;
}

.footer-meta p:last-child {
  max-width: 500px;
  text-align: right;
}

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}

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

  .hero-layout {
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(50px, 6.7vw, 70px);
  }

  .floating-card-top {
    right: -12px;
  }

  .floating-card-bottom {
    left: -12px;
  }
}

@media (max-width: 860px) {
  .hero::before {
    display: none;
  }

  .hero-layout,
  .about-layout,
  .principles-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    padding-top: 82px;
  }

  .hero-product {
    max-width: 570px;
    justify-self: center;
    margin-top: 20px;
  }

  .about-layout {
    gap: 28px;
  }

  .promise-inner {
    grid-template-columns: 0.28fr 1.4fr;
  }

  .promise-mark {
    display: none;
  }

  .section-intro {
    display: block;
  }

  .section-intro > p {
    margin-top: 29px;
  }

  .principles-layout {
    gap: 55px;
  }

  .principles-heading {
    position: static;
  }

  .office {
    max-width: 520px;
  }
}

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

  .nav-inner {
    height: 76px;
  }

  .nav-contact {
    padding: 9px 13px;
    font-size: 0;
  }

  .nav-contact::before {
    content: "Contact";
    font-size: 11px;
  }

  .nav-contact span {
    font-size: 11px;
  }

  .brand-name {
    font-size: 19px;
  }

  .hero {
    padding-top: 76px;
  }

  .hero-layout {
    padding-top: 60px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 61px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 21px;
    margin-top: 34px;
  }

  .product-window {
    min-height: 475px;
    padding: 18px;
    border-radius: 25px;
    transform: none;
  }

  .insight-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .wellbeing-card,
  .signal-card {
    min-height: 253px;
    padding: 14px;
  }

  .progress-ring {
    width: 104px;
    height: 104px;
  }

  .journey-row {
    gap: 6px;
    padding: 13px 10px;
  }

  .journey-row p {
    display: none;
  }

  .floating-card-top {
    display: none;
  }

  .floating-card-bottom {
    right: 14px;
    bottom: 18px;
    left: auto;
  }

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

  .hero-values p {
    justify-content: flex-start;
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(11, 53, 52, 0.08);
  }

  .section {
    padding: 88px 0;
  }

  .about-content h2,
  .section-intro h2,
  .principles-heading h2 {
    font-size: clamp(41px, 11vw, 54px);
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 23px;
    margin-top: 39px;
    padding-top: 27px;
  }

  .promise {
    padding: 72px 0;
  }

  .promise-inner {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .promise blockquote {
    font-size: clamp(35px, 9.5vw, 46px);
  }

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

  .capability-card {
    min-height: 475px;
    padding: 23px;
  }

  .capability-card h3 {
    font-size: 30px;
  }

  .principles-list article {
    grid-template-columns: 41px 1fr;
    gap: 9px;
  }

  .contact {
    padding: 89px 0;
  }

  .contact-copy h2 {
    font-size: clamp(43px, 12vw, 59px);
  }

  .button-light {
    width: 100%;
    gap: 10px;
    font-size: 11px;
  }

  .office {
    padding: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-main > a:last-child {
    justify-self: start;
  }

  .footer-meta {
    flex-direction: column;
    gap: 10px;
  }

  .footer-meta p:last-child {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
