:root {
  --ink: #11110f;
  --paper: #f1efe7;
  --paper-soft: #e9e6dc;
  --blue: #2857ff;
  --white: #f8f7f2;
  --line: rgba(17, 17, 15, 0.19);
  --pad: clamp(1.25rem, 3.4vw, 4.25rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
a {
  cursor: default;
}

a[href] {
  cursor: pointer;
}

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

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

::selection {
  color: var(--white);
  background: var(--blue);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.page-shell {
  width: 100%;
  padding-inline: var(--pad);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 6.3rem;
  padding: 1.4rem var(--pad);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: flex-end;
  gap: 0.65rem;
}

.brand-mark {
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.brand-suffix {
  padding-bottom: 0.05rem;
  font-size: 0.58rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.72;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.25rem);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-contact {
  transition: opacity 180ms ease;
}

.desktop-nav a:hover,
.header-contact:hover {
  opacity: 0.62;
}

.header-contact {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arrow-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  transition: transform 280ms var(--ease);
}

a:hover .arrow-icon {
  transform: translate(0.16rem, -0.16rem);
}

.hero {
  position: relative;
  min-height: max(47rem, 100svh);
  overflow: hidden;
  color: var(--white);
  background: #0e0e0d;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 63% 50%;
  animation: hero-scale 1.8s var(--ease) both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.94) 0%, rgba(8, 8, 7, 0.72) 37%, rgba(8, 8, 7, 0.16) 72%, rgba(8, 8, 7, 0.26) 100%),
    linear-gradient(0deg, rgba(7, 7, 6, 0.64) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: max(47rem, 100svh);
  padding-top: clamp(9.5rem, 18vh, 12rem);
  padding-bottom: 5.5rem;
  flex-direction: column;
}

.hero-kicker,
.eyebrow {
  font-size: 0.68rem;
  font-weight: 650;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(248, 247, 242, 0.72);
}

.signal-dot {
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(40, 87, 255, 0.2);
}

.hero-title {
  max-width: 11ch;
  margin: clamp(3.5rem, 8vh, 6.5rem) 0 0;
  font-size: clamp(4.2rem, 8.4vw, 8.75rem);
  font-weight: 550;
  line-height: 0.84;
  letter-spacing: -0.075em;
}

.hero-title em {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero-bottom {
  display: grid;
  max-width: 50rem;
  margin-top: auto;
  grid-template-columns: minmax(16rem, 26rem) auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}

.hero-bottom > p {
  margin: 0;
  color: rgba(248, 247, 242, 0.74);
  font-size: clamp(0.96rem, 1.2vw, 1.08rem);
  line-height: 1.6;
}

.round-link {
  display: inline-flex;
  width: max-content;
  min-width: 12.8rem;
  padding: 0.95rem 1.05rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.03em;
  transition: color 260ms var(--ease), background 260ms var(--ease), border 260ms var(--ease);
}

.round-link:hover {
  border-color: var(--white);
  color: var(--ink);
  background: var(--white);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  right: var(--pad);
  bottom: 2rem;
  display: flex;
  gap: 2rem;
  color: rgba(248, 247, 242, 0.62);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-enter {
  animation: hero-enter 900ms 220ms var(--ease) both;
}

.hero-enter-two {
  animation-delay: 320ms;
}

.hero-enter-three {
  animation-delay: 460ms;
}

.section-label {
  display: grid;
  padding-top: 0.8rem;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-label span:first-child {
  opacity: 0.48;
}

.belief {
  display: grid;
  padding-top: clamp(5.5rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 12vw, 12rem);
  grid-template-columns: minmax(11rem, 0.58fr) 1.42fr;
  gap: clamp(2rem, 7vw, 8rem);
}

.belief-copy h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6.2vw, 7.1rem);
  font-weight: 520;
  line-height: 0.97;
  letter-spacing: -0.065em;
}

.belief-copy h2 span {
  color: #8a8983;
}

.belief-copy > p {
  max-width: 31rem;
  margin: 4rem 0 0 auto;
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
  line-height: 1.55;
}

.proof {
  display: grid;
  padding-bottom: clamp(5.5rem, 9vw, 9rem);
  grid-template-columns: 1fr 1fr 1.35fr;
}

.proof-item {
  min-height: 13rem;
  padding: 1.5rem;
  border-top: 1px solid var(--ink);
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-item strong,
.proof-item span {
  display: block;
}

.proof-item strong {
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 520;
  line-height: 1;
  letter-spacing: -0.07em;
}

.proof-item span {
  margin-top: 0.8rem;
  color: #63625e;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-statement strong {
  max-width: 8ch;
}

.system {
  display: grid;
  grid-template-columns: minmax(20rem, 0.94fr) 1.06fr;
  color: var(--white);
  background: var(--ink);
}

.system-visual {
  position: relative;
  min-height: 62rem;
  overflow: hidden;
}

.system-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-note {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0.65rem 0.8rem;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.system-content {
  display: flex;
  min-width: 0;
  padding: clamp(3rem, 5vw, 5.5rem) var(--pad);
  flex-direction: column;
}

.section-label-light,
.section-label-dark {
  border-color: rgba(255, 255, 255, 0.24);
}

.system-intro {
  margin-top: clamp(5rem, 10vw, 9rem);
}

.eyebrow {
  margin: 0;
  color: #8f8e88;
}

.system-intro h2 {
  max-width: 10ch;
  margin: 1.6rem 0 0;
  font-size: clamp(3rem, 5.3vw, 6.2rem);
  font-weight: 520;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.capability-list {
  margin-top: auto;
}

.capability {
  display: grid;
  padding: 1.6rem 0;
  grid-template-columns: 2.5rem minmax(8rem, 0.85fr) 1.15fr;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  align-items: start;
}

.capability > span {
  color: #777772;
  font-size: 0.64rem;
}

.capability h3,
.capability p {
  margin: 0;
}

.capability h3 {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 550;
}

.capability p {
  color: #aaa9a3;
  font-size: 0.85rem;
  line-height: 1.55;
}

.care {
  padding-top: clamp(6rem, 10vw, 10rem);
  padding-bottom: clamp(6rem, 10vw, 10rem);
}

.care-copy {
  display: grid;
  grid-template-columns: minmax(11rem, 0.58fr) 1.42fr;
  gap: clamp(2rem, 7vw, 8rem);
}

.care-headline h2 {
  max-width: 12ch;
  margin: 1.6rem 0 0;
  font-size: clamp(3.2rem, 6.2vw, 7.2rem);
  font-weight: 520;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.care-headline > p:last-child {
  max-width: 31rem;
  margin: 3rem 0 0 auto;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
}

.care-visual {
  height: min(68vw, 50rem);
  min-height: 33rem;
  margin-top: clamp(5rem, 8vw, 8rem);
  overflow: hidden;
  background: #242421;
}

.care-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blue-statement {
  color: var(--white);
  background: var(--blue);
}

.statement-inner {
  position: relative;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.statement-inner p {
  margin: 0;
  font-size: clamp(3.5rem, 8.3vw, 9.2rem);
  font-weight: 520;
  line-height: 0.86;
  letter-spacing: -0.075em;
}

.statement-inner p:last-of-type {
  color: rgba(255, 255, 255, 0.44);
}

.statement-mark {
  position: absolute;
  right: var(--pad);
  bottom: 2rem;
  font-size: 0.58rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.contact-inner {
  padding-top: clamp(5rem, 9vw, 8rem);
}

.contact-main {
  padding: clamp(6rem, 10vw, 10rem) 0 clamp(5rem, 8vw, 8rem);
}

.contact-main a {
  display: inline-flex;
  width: 100%;
  max-width: 13ch;
  margin-top: 1.5rem;
  align-items: flex-end;
  gap: 1rem;
  font-size: clamp(3.6rem, 8.2vw, 9rem);
  font-weight: 520;
  line-height: 0.9;
  letter-spacing: -0.075em;
  transition: color 240ms ease;
}

.contact-main a:hover {
  color: var(--blue);
}

.contact-main .arrow-icon {
  width: clamp(2.5rem, 5vw, 5rem);
  height: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 0.2em;
}

.contact-details {
  display: grid;
  padding-bottom: clamp(5rem, 8vw, 8rem);
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  color: #b1b0aa;
  font-size: clamp(1rem, 1.5vw, 1.24rem);
  line-height: 1.5;
}

.contact-details > div,
.contact-details address {
  display: flex;
  flex-direction: column;
  font-style: normal;
}

.contact-details span {
  margin-bottom: 1rem;
  color: #6e6e68;
  font-size: 0.6rem;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-details a {
  width: max-content;
  border-bottom: 1px solid #4d4d48;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-details a:hover {
  border-color: var(--blue);
  color: var(--white);
}

footer {
  display: grid;
  min-height: 7.5rem;
  padding: 1.8rem 0;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #777772;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

footer p {
  margin: 0;
}

footer > a:last-child {
  justify-self: end;
  transition: color 180ms ease;
}

footer > a:last-child:hover {
  color: var(--white);
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(1.8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-scale {
  from {
    opacity: 0;
    transform: scale(1.045);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 5.5rem;
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero-title {
    max-width: 10ch;
    font-size: clamp(4rem, 14vw, 7rem);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero-meta {
    display: none;
  }

  .belief,
  .care-copy {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .belief-copy > p,
  .care-headline > p:last-child {
    margin-left: 0;
  }

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

  .system-visual {
    min-height: 42rem;
    max-height: 80vh;
  }

  .system-content {
    min-height: 54rem;
  }

  .system-intro {
    margin-bottom: 5rem;
  }

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

  footer p {
    display: none;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }

  .brand-suffix {
    display: none;
  }

  .header-contact {
    font-size: 0.66rem;
  }

  .hero {
    min-height: 46rem;
  }

  .hero-content {
    min-height: 46rem;
    padding-top: 8rem;
    padding-bottom: 3.2rem;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(8, 8, 7, 0.88) 0%, rgba(8, 8, 7, 0.38) 100%),
      linear-gradient(0deg, rgba(7, 7, 6, 0.86) 0%, transparent 58%);
  }

  .hero-kicker {
    font-size: 0.61rem;
  }

  .hero-title {
    margin-top: 3.6rem;
    font-size: clamp(3.55rem, 17vw, 5.5rem);
    line-height: 0.88;
  }

  .hero-bottom {
    max-width: 100%;
  }

  .hero-bottom > p {
    max-width: 24rem;
    font-size: 0.9rem;
  }

  .round-link {
    min-width: min(100%, 18rem);
  }

  .belief {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .belief-copy h2,
  .care-headline h2 {
    font-size: clamp(2.8rem, 13.3vw, 4.8rem);
  }

  .belief-copy > p {
    margin-top: 2.5rem;
  }

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

  .proof-item,
  .proof-item:first-child,
  .proof-item:last-child {
    min-height: 9rem;
    padding: 1.25rem 0;
    border-right: 0;
  }

  .proof-item strong {
    font-size: 3.8rem;
  }

  .proof-statement strong {
    max-width: none;
  }

  .system-visual {
    min-height: 34rem;
  }

  .system-content {
    min-height: 0;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .system-intro {
    margin-top: 4.5rem;
    margin-bottom: 4.5rem;
  }

  .system-intro h2 {
    font-size: clamp(2.8rem, 13vw, 4.5rem);
  }

  .capability {
    padding: 1.4rem 0;
    grid-template-columns: 2rem 1fr;
  }

  .capability p {
    grid-column: 2;
    padding-top: 0.45rem;
  }

  .care {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .care-headline > p:last-child {
    margin-top: 2.5rem;
  }

  .care-visual {
    height: 35rem;
    min-height: 0;
    margin-top: 4rem;
  }

  .statement-inner {
    padding-top: 5rem;
    padding-bottom: 6.5rem;
  }

  .statement-inner p {
    font-size: clamp(3.2rem, 14.8vw, 5.5rem);
    line-height: 0.9;
  }

  .contact-main {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .contact-main a {
    font-size: clamp(3.2rem, 15vw, 5.7rem);
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  footer {
    min-height: 6.5rem;
  }
}

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

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