@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --ink: #142336;
  --muted: #68788b;
  --line: #dce5eb;
  --paper: #f5f8fa;
  --white: #fff;
  --blue: #2e8cff;
  --blue-deep: #1465dd;
  --green: #20d2ab;
  --green-soft: #baf2e5;
  --yellow: #f5da70;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --display: 'Space Grotesk', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --mono: 'DM Mono', Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.shell {
  width: min(1160px, calc(100% - 64px));
  margin: 0 auto;
}

.section {
  padding: 132px 0;
  position: relative;
}

.site-header {
  height: 82px;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}

.site-header.scrolled {
  height: 70px;
  background: rgba(245, 248, 250, .86);
  border-color: rgba(20, 35, 54, .08);
  backdrop-filter: blur(18px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
}

.brand-logo {
  width: 151px;
  height: 38px;
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.62);
  display: block;
}

.desktop-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 36px);
  margin-left: auto;
}

.nav-link {
  color: #667687;
  font-size: 13px;
  position: relative;
  padding: 8px 0;
  transition: color .25s ease;
}

.nav-link::after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: scale(0);
  transition: transform .25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink);
}

.nav-link.active::after {
  transform: scale(1);
}

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

.language-switch {
  border: 0;
  background: none;
  padding: 8px 0;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
  letter-spacing: .05em;
}

.language-switch span {
  color: #c5cfd7;
  padding: 0 3px;
}

.language-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
}

.header-cta {
  background: var(--ink);
  color: #fff;
  padding: 12px 16px;
  border-radius: 24px;
  font-size: 12px;
  transition: transform .25s ease, background .25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
}

.header-cta span,
.button span,
.text-link span,
.outline-link span {
  margin-left: 10px;
  font-size: 16px;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  min-height: 760px;
  padding-top: 175px;
  padding-bottom: 48px;
  background: radial-gradient(circle at 82% 26%, #e2f6f1 0, transparent 25%), linear-gradient(115deg, #f4f8fc 0%, #f8fafb 42%, #eaf4f4 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  left: -290px;
  top: 160px;
  border: 1px solid rgba(46, 140, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(46, 140, 255, .025), 0 0 0 80px rgba(46, 140, 255, .025);
}

.hero-grid {
  min-height: 530px;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  gap: 28px;
}

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: .1em;
  color: #698096;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(32, 210, 171, .14);
}

.hero h1,
h2 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.06em;
  line-height: 1.05;
  margin: 28px 0 24px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 78px);
}

.hero h1 em,
h2 span {
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.07em;
}

.hero-lead {
  max-width: 410px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  padding: 14px 21px;
  font-size: 13px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(20, 35, 54, .14);
}

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

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

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

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

.text-link {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid #9caab6;
  padding-bottom: 5px;
  transition: color .2s ease, border-color .2s ease;
}

.text-link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 73px;
  color: #93a2af;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-signature strong {
  color: var(--ink);
  font-weight: 500;
}

.avatar-stack {
  display: flex;
  align-items: center;
}

.avatar-stack span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  margin-left: -6px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  color: var(--ink);
  background: var(--green-soft);
  font-family: var(--mono);
  font-size: 7px;
}

.avatar-stack span:nth-child(2) {
  background: var(--blue);
  color: #fff;
}

.avatar-stack span:nth-child(3) {
  background: var(--yellow);
}

.hero-art {
  height: 560px;
  position: relative;
}

.planet {
  width: min(37vw, 360px);
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 34% 30%, #8decd3 0, #28d0ad 28%, #1a98ca 69%, #1767b9 100%);
  box-shadow: inset -22px -28px 42px rgba(10, 80, 147, .34), inset 15px 16px 30px rgba(255, 255, 255, .25), 0 25px 80px rgba(40, 152, 199, .24);
  overflow: hidden;
}

.planet::before,
.planet::after {
  content: '';
  position: absolute;
  width: 150%;
  height: 35%;
  left: -24%;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.planet::before {
  top: 19%;
}

.planet::after {
  top: 53%;
  transform: rotate(18deg);
}

.planet-shine {
  width: 64%;
  height: 64%;
  position: absolute;
  left: 9%;
  top: 5%;
  border-radius: 50%;
  background: rgba(255, 255, 255, .13);
  filter: blur(14px);
}

.planet-label {
  color: rgba(255, 255, 255, .94);
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.1;
  text-align: center;
  text-shadow: 0 2px 16px rgba(10, 80, 147, .18);
}

.planet-label small {
  display: block;
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: .12em;
}

.orbital {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(46, 140, 255, .22);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-28deg);
}

.orbital-one {
  width: 84%;
  height: 35%;
}

.orbital-two {
  width: 96%;
  height: 52%;
  transform: translate(-50%, -50%) rotate(32deg);
  border-color: rgba(32, 210, 171, .24);
}

.orbital-three {
  width: 64%;
  height: 93%;
  transform: translate(-50%, -50%) rotate(55deg);
  border-color: rgba(20, 101, 221, .14);
}

.orbit-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, .65);
}

.dot-a {
  top: 20%;
  left: 16%;
  background: var(--green);
}

.dot-b {
  bottom: 13%;
  right: 12%;
  background: var(--blue);
}

.dot-c {
  top: 13%;
  right: 21%;
  background: var(--yellow);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.glow-blue {
  width: 96px;
  height: 96px;
  right: 6%;
  bottom: 22%;
  background: rgba(46, 140, 255, .12);
}

.glow-green {
  width: 120px;
  height: 120px;
  left: 9%;
  top: 8%;
  background: rgba(32, 210, 171, .1);
}

.floating-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 14px;
  min-width: 134px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 36px rgba(34, 93, 128, .1);
  backdrop-filter: blur(12px);
}

.floating-card small {
  color: #7990a3;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: .1em;
}

.floating-card strong {
  margin-top: 2px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.2;
}

.floating-card strong span {
  color: var(--blue);
  font-size: 14px;
}

.mini-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  align-self: flex-end;
  border-radius: 50%;
  color: var(--blue);
  background: #e4efff;
  font-size: 14px;
}

.card-growth {
  top: 17%;
  right: 8%;
  transform: rotate(4deg);
}

.card-growth i {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 20px;
  margin-top: 8px;
}

.card-growth i b {
  width: 5px;
  border-radius: 5px;
  background: var(--green);
}

.card-growth i b:nth-child(1) {
  height: 8px
}

.card-growth i b:nth-child(2) {
  height: 11px
}

.card-growth i b:nth-child(3) {
  height: 10px
}

.card-growth i b:nth-child(4) {
  height: 15px
}

.card-growth i b:nth-child(5) {
  height: 13px
}

.card-growth i b:nth-child(6) {
  height: 17px
}

.card-growth i b:nth-child(7) {
  height: 18px
}

.card-growth i b:nth-child(8) {
  height: 20px
}

.card-users {
  left: 3%;
  bottom: 18%;
  transform: rotate(-5deg);
}

.user-dots {
  display: flex;
  gap: 3px;
  margin-top: 8px;
}

.user-dots i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  border: 2px solid #fff;
}

.user-dots i+i {
  margin-left: -6px;
}

.floating-tag {
  position: absolute;
  left: 18%;
  top: 21%;
  z-index: 2;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .13em;
  padding: 8px 10px;
  border-radius: 3px;
  border: 1px solid rgba(20, 35, 54, .12);
  background: rgba(255, 255, 255, .32);
  transform: rotate(-9deg);
}

.floating-tag span {
  color: var(--green);
  margin: 0 4px;
}

.hero-bottom {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #9aa8b3;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.scroll-line {
  width: 94px;
  height: 1px;
  position: relative;
  background: #d0dae1;
}

.scroll-line i {
  width: 26px;
  height: 2px;
  position: absolute;
  top: -1px;
  left: 0;
  background: var(--blue);
}

.hero-code {
  margin-left: auto;
}

.metrics-band {
  background: var(--ink);
  color: #fff;
  padding: 27px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  padding: 0 30px;
  border-left: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric:first-child {
  padding-left: 0;
  border-left: 0;
}

.metric strong {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -.04em;
}

.metric strong span {
  color: var(--green);
  font-size: 16px;
}

.metric span {
  color: #8d9cad;
  font-size: 11px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
}

.section-heading>div {
  flex: none;
}

.section-heading h2,
.jobs h2,
.faq h2 {
  margin: 24px 0 0;
  font-size: clamp(39px, 5vw, 66px);
}

.section-heading>p {
  max-width: 405px;
  color: var(--muted);
  line-height: 1.9;
  margin: 0 0 3px;
  font-size: 14px;
}

.split-heading {
  align-items: start;
}

.split-heading>p {
  margin-top: 56px;
}

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

.story-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 12%;
  margin-top: 110px;
}

.story-quote {
  min-height: 310px;
  padding: 44px 48px;
  position: relative;
  background: #e9f4f2;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.story-quote::after {
  content: 'L';
  position: absolute;
  right: -5px;
  bottom: -60px;
  font-family: var(--display);
  font-size: 265px;
  font-weight: 700;
  line-height: 1;
  color: rgba(32, 210, 171, .12);
}

.quote-mark {
  color: var(--green);
  font-family: var(--serif);
  font-size: 90px;
  line-height: .7;
}

.story-quote p {
  margin: 14px 0 38px;
  font-family: var(--display);
  font-size: 29px;
  line-height: 1.3;
  letter-spacing: -.04em;
  position: relative;
  z-index: 1;
}

.story-quote strong {
  color: #12ae91;
}

.quote-footer {
  color: #6a8d89;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.quote-footer span {
  display: inline-block;
  width: 30px;
  height: 1px;
  vertical-align: middle;
  margin-right: 8px;
  background: var(--green);
}

.story-body {
  position: relative;
  padding-top: 7px;
  max-width: 550px;
}

.story-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 2;
  margin: 0 0 22px;
}

.story-body .large-paragraph {
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1.55;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}

.circle-link {
  width: 92px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  right: 3%;
  bottom: -20px;
  border: 1px solid #bfd0dc;
  border-radius: 50%;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.2;
  text-align: center;
  transition: .25s ease;
}

.circle-link b {
  font-size: 16px;
  font-weight: 400;
}

.circle-link:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
  transform: rotate(-10deg);
}

.business-section {
  margin-top: 135px;
}

.subheading-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 31px;
}

.subheading-row h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -.03em;
}

.section-index,
.subheading-row small {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
}

.subheading-line {
  height: 1px;
  flex: 1;
  background: var(--line);
}

.subheading-row small {
  color: #98a7b2;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.business-card {
  min-height: 330px;
  padding: 25px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.business-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(20, 35, 54, .11);
}

.business-blue {
  color: #fff;
  background: var(--blue);
}

.business-dark {
  color: #fff;
  background: var(--ink);
}

.business-green {
  color: var(--ink);
  background: var(--green);
}

.business-cream {
  color: var(--ink);
  background: #f3e3a2;
}

.card-number {
  font-family: var(--mono);
  font-size: 10px;
  opacity: .7;
}

.business-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  margin-top: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 22px;
}

.icon-ai {
  font-size: 12px;
  letter-spacing: -.04em;
}

.business-card h4 {
  margin: 19px 0 8px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -.04em;
}

.business-card p {
  margin: 0;
  font-size: 12px;
  line-height: 1.75;
  opacity: .78;
}

.business-card a {
  margin-top: auto;
  font-size: 11px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  width: fit-content;
}

.business-card a span {
  margin-left: 7px;
  font-size: 15px;
}

.timeline-section {
  background: #f2f6f7;
  overflow: hidden;
}

.timeline-section::after {
  content: 'LUNA';
  position: absolute;
  right: -90px;
  bottom: -40px;
  color: rgba(20, 35, 54, .025);
  font-family: var(--display);
  font-size: 210px;
  font-weight: 700;
  letter-spacing: -.1em;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 110px;
}

.timeline-progress {
  height: 1px;
  position: absolute;
  top: 11px;
  left: 0;
  right: 0;
  background: #d8e2e6;
}

.timeline-progress span {
  display: block;
  width: 38%;
  height: 2px;
  background: var(--blue);
}

.timeline-item {
  position: relative;
  padding-top: 34px;
}

.timeline-year {
  color: #90a0ad;
  font-family: var(--mono);
  font-size: 12px;
}

.timeline-dot {
  width: 23px;
  height: 23px;
  position: absolute;
  top: 0;
  left: 0;
  border: 7px solid #f2f6f7;
  border-radius: 50%;
  background: #c4d3dc;
  box-shadow: 0 0 0 1px #cad6dd;
}

.timeline-item.active .timeline-dot {
  background: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 0 0 7px rgba(46, 140, 255, .12);
}

.timeline-content {
  padding-top: 36px;
  border-top: 1px solid #dce5e9;
  margin-top: 21px;
}

.timeline-content small {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .08em;
}

.timeline-content h3 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -.04em;
}

.timeline-content p {
  max-width: 210px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin: 0;
}

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

.news-heading {
  align-items: center;
}

.outline-link {
  border: 1px solid #c8d4dd;
  border-radius: 30px;
  padding: 13px 19px;
  color: var(--ink);
  font-size: 12px;
  transition: .25s ease;
}

.outline-link:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.featured-news {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  margin-top: 76px;
  min-height: 385px;
  background: #edf5f8;
}

.featured-art {
  min-height: 385px;
  position: relative;
  padding: 27px;
  overflow: hidden;
  background: linear-gradient(135deg, #2a8aff, #39d5ae);
  color: #fff;
}

.featured-art::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  right: -150px;
  bottom: -180px;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  box-shadow: 0 0 0 40px rgba(255, 255, 255, .07), 0 0 0 80px rgba(255, 255, 255, .07);
}

.news-pill {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
}

.news-art-lines {
  position: absolute;
  inset: 24% -5% 12% 25%;
  background: repeating-linear-gradient(165deg, transparent 0 17px, rgba(255, 255, 255, .27) 18px 19px, transparent 20px 38px);
  transform: rotate(-8deg);
}

.news-art-title {
  position: absolute;
  left: 33px;
  bottom: 45px;
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 75px);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .88;
}

.news-art-title em {
  color: #cef8ee;
  font-family: var(--serif);
  font-weight: 400;
}

.news-art-caption {
  position: absolute;
  right: 25px;
  bottom: 25px;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.5;
  text-align: right;
}

.featured-copy {
  padding: 45px 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.article-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  color: #91a1ae;
  font-family: var(--mono);
  font-size: 9px;
}

.article-meta span {
  color: var(--blue);
}

.featured-copy h3 {
  margin: 21px 0 15px;
  font-family: var(--display);
  font-size: clamp(24px, 2.8vw, 33px);
  line-height: 1.32;
  letter-spacing: -.05em;
}

.featured-copy p {
  max-width: 355px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.news-list {
  margin-top: 25px;
}

.news-row {
  display: grid;
  grid-template-columns: 60px 1fr 120px 22px;
  align-items: center;
  gap: 20px;
  min-height: 89px;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease, background .3s ease;
}

.news-row:hover {
  padding: 0 14px;
  background: #f6f9fb;
}

.news-row-index {
  color: #a3b0bb;
  font-family: var(--mono);
  font-size: 11px;
}

.news-row h3 {
  margin: 4px 0 0;
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -.03em;
}

.article-tag {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.news-row time {
  color: #9aa8b3;
  font-family: var(--mono);
  font-size: 10px;
}

.news-row>a {
  color: var(--blue);
  font-size: 19px;
}

.benefits {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.benefits-bg {
  position: absolute;
  inset: 0;
  opacity: .5;
  pointer-events: none;
}

.benefits-bg span {
  position: absolute;
  border: 1px solid rgba(79, 205, 225, .16);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.benefits-bg span:nth-child(1) {
  width: 600px;
  height: 260px;
  right: -100px;
  top: 150px;
}

.benefits-bg span:nth-child(2) {
  width: 760px;
  height: 300px;
  right: -150px;
  top: 140px;
  transform: rotate(30deg);
}

.benefits-bg span:nth-child(3) {
  width: 280px;
  height: 280px;
  left: -150px;
  bottom: -120px;
  border-color: rgba(32, 210, 171, .2);
}

.benefits-inner {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: #7b98ad;
}

.benefits h2 {
  color: #fff;
}

.benefits h2 span {
  color: var(--green);
}

.benefits-heading>p {
  color: #92a5b5;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 74px;
}

.benefit-card {
  min-height: 248px;
  padding: 27px;
  display: flex;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  transition: background .3s ease, border .3s ease, transform .3s ease;
}

.benefit-card:hover {
  border-color: rgba(32, 210, 171, .65);
  background: rgba(32, 210, 171, .08);
  transform: translateY(-5px);
}

.benefit-icon {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 50%;
}

.benefit-card small {
  color: #70a6c0;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.benefit-card h3 {
  margin: 24px 0 10px;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.35;
  letter-spacing: -.03em;
}

.benefit-card p {
  margin: 0;
  color: #93a4b3;
  font-size: 12px;
  line-height: 1.8;
}

.benefits-note {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  column-gap: 15px;
  margin-top: 105px;
  color: #7c909f;
  font-family: var(--mono);
  font-size: 11px;
}

.benefits-note strong {
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.benefits-note i {
  color: var(--green);
  font-size: 9px;
}

.jobs {
  background: #f6f2e9;
}

.jobs-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 70px;
}

.jobs h2 span,
.faq h2 span {
  color: #dc8e47;
}

.jobs-intro {
  max-width: 355px;
}

.jobs-intro p {
  color: var(--muted);
  margin: 0 0 27px;
  font-size: 14px;
  line-height: 1.9;
}

.jobs-board {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 50px;
  margin-top: 93px;
  padding-top: 27px;
  border-top: 1px solid #d6d6cd;
}

.job-filters {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.job-filters span {
  display: flex;
  justify-content: space-between;
  color: #8e989a;
  font-size: 12px;
  cursor: pointer;
}

.job-filters b {
  color: #aeb6b7;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
}

.job-filters .filter-active {
  color: var(--ink);
  font-weight: 600;
}

.job-filters .filter-active b {
  color: #dc8e47;
}

.job-row {
  display: grid;
  grid-template-columns: 1fr 115px 22px;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #dddcd4;
  transition: padding .25s ease, color .25s ease;
}

.job-row:hover {
  padding: 20px 14px;
  color: #dc8e47;
}

.job-type {
  color: #a5a8a3;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .11em;
}

.job-row h3 {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -.03em;
}

.job-location {
  color: #8b9695;
  font-family: var(--mono);
  font-size: 9px;
}

.job-arrow {
  color: #d39054;
  font-size: 19px;
}

.faq {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 13%;
}

.faq-heading p {
  color: var(--muted);
  font-size: 13px;
  margin: 30px 0 25px;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  align-items: center;
  padding: 23px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: -.02em;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary>span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 9px;
}

.faq-list summary b {
  color: var(--blue);
  font-size: 22px;
  font-weight: 300;
  text-align: right;
  transition: transform .25s ease;
}

.faq-list details[open] summary b {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 590px;
  padding: 0 35px 25px 40px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.closing-cta {
  min-height: 490px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2b86f4, #1fbfbc);
  color: #fff;
}

.closing-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 30%, rgba(255, 255, 255, .21), transparent 26%), radial-gradient(circle at 80% 75%, rgba(20, 35, 54, .14), transparent 30%);
}

.closing-orbit {
  position: absolute;
  width: 840px;
  height: 280px;
  right: -10%;
  top: 10%;
  border: 1px solid rgba(255, 255, 255, .31);
  border-radius: 50%;
  transform: rotate(-15deg);
}

.closing-orbit::after,
.closing-orbit::before {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 50%;
  inset: 25px -10px;
}

.closing-orbit::before {
  inset: 55px 25px;
  border-color: rgba(255, 255, 255, .18);
}

.closing-orbit span {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, .8);
  border-radius: 50%;
  background: var(--green);
}

.closing-orbit span:nth-child(1) {
  left: 23%;
  top: -5px;
}

.closing-orbit span:nth-child(2) {
  right: 3%;
  top: 55%;
  background: var(--yellow);
}

.closing-orbit span:nth-child(3) {
  left: 44%;
  bottom: -4px;
  background: var(--blue);
}

.closing-content {
  position: relative;
  z-index: 1;
}

.closing-kicker {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .13em;
}

.closing-content h2 {
  margin: 25px 0 32px;
  color: #fff;
  font-size: clamp(49px, 6vw, 80px);
}

.closing-content h2 em {
  color: #dcfff5;
  font-family: var(--serif);
  font-weight: 400;
}

.closing-content .button {
  padding-left: 25px;
  padding-right: 25px;
}

.site-footer {
  background: #0d1b2b;
  color: #fff;
}

.footer-top {
  min-height: 265px;
  padding-top: 60px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand .brand-logo {
  background: #fff;
}

.footer-top p {
  margin: 20px 0 0;
  color: #8ea2b4;
  font-size: 12px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: clamp(30px, 7vw, 95px);
}

.footer-links>div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links small {
  margin-bottom: 10px;
  color: #5ca9bc;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .1em;
}

.footer-links a {
  color: #a9b8c5;
  font-size: 11px;
  transition: color .2s ease;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: #627689;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .04em;
}

.footer-bottom i {
  color: var(--green);
  font-style: normal;
  font-size: 12px;
  margin-left: 5px;
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .8s ease, transform .8s ease;
}

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

.reveal-delay {
  transition-delay: .13s;
}

.reveal-delay-2 {
  transition-delay: .24s;
}

.reveal-delay-3 {
  transition-delay: .35s;
}

@media (max-width: 900px) {
  .shell {
    width: min(100% - 40px, 680px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 34px;
    height: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform .25s ease;
  }

  .menu-toggle[aria-expanded='true'] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded='true'] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .mobile-nav {
    display: flex;
    max-height: 0;
    flex-direction: column;
    overflow: hidden;
    padding: 0 20px;
    background: rgba(245, 248, 250, .97);
    transition: max-height .35s ease, padding .35s ease;
  }

  .mobile-nav.open {
    max-height: 330px;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(20, 35, 54, .08);
    font-family: var(--display);
    font-size: 17px;
  }

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

  .hero {
    min-height: 960px;
    padding-top: 135px;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .hero-art {
    width: 100%;
    height: 480px;
  }

  .planet {
    width: min(60vw, 340px);
  }

  .hero-signature {
    margin-top: 52px;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 23px 0;
  }

  .metric:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .metric:nth-child(3),
  .metric:nth-child(4) {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .metric:nth-child(4) {
    padding-left: 30px;
  }

  .section-heading,
  .jobs-top {
    align-items: start;
    flex-direction: column;
    gap: 28px;
  }

  .split-heading>p {
    margin-top: 0;
  }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 75px;
  }

  .story-quote {
    min-height: 255px;
  }

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

  .business-card {
    min-height: 300px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 72px;
    padding-left: 26px;
  }

  .timeline-progress {
    width: 1px;
    height: calc(100% - 25px);
    left: 10px;
    top: 11px;
    right: auto;
  }

  .timeline-progress span {
    width: 2px;
    height: 40%;
  }

  .timeline-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 20px;
    padding: 0 0 47px;
  }

  .timeline-dot {
    left: -26px;
  }

  .timeline-content {
    padding-top: 0;
    border-top: 0;
    margin-top: 0;
  }

  .timeline-year {
    padding-top: 1px;
  }

  .featured-news {
    grid-template-columns: 1fr;
  }

  .featured-art {
    min-height: 300px;
  }

  .featured-copy {
    min-height: 330px;
    padding: 35px;
  }

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

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

  .benefits-note {
    margin-top: 70px;
  }

  .jobs-board {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-top: 65px;
  }

  .job-filters {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 24px;
  }

  .job-filters span {
    gap: 7px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 540px) {
  .shell {
    width: calc(100% - 34px);
  }

  .site-header {
    height: 70px;
  }

  .brand-logo {
    width: 132px;
    height: 34px;
  }

  .hero {
    min-height: 865px;
    padding-top: 118px;
  }

  .hero h1 {
    font-size: 46px;
  }

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

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

  .hero-art {
    height: 380px;
    margin-top: 5px;
  }

  .planet {
    width: 245px;
  }

  .planet-label {
    font-size: 23px;
  }

  .card-growth {
    top: 11%;
    right: 0;
    transform: scale(.82) rotate(4deg);
    transform-origin: right top;
  }

  .card-users {
    left: 0;
    bottom: 12%;
    transform: scale(.82) rotate(-5deg);
    transform-origin: left bottom;
  }

  .floating-tag {
    left: 7%;
    top: 15%;
    transform: scale(.85) rotate(-9deg);
  }

  .orbital-one {
    width: 100%;
  }

  .orbital-two {
    width: 115%;
  }

  .orbital-three {
    height: 105%;
  }

  .hero-bottom {
    display: none;
  }

  .metric {
    padding: 0 15px;
  }

  .metric:nth-child(4) {
    padding-left: 15px;
  }

  .metric strong {
    font-size: 25px;
  }

  .section {
    padding: 90px 0;
  }

  .section-heading h2,
  .jobs h2,
  .faq h2 {
    font-size: 42px;
  }

  .story-layout {
    margin-top: 52px;
  }

  .story-quote {
    padding: 32px 28px;
  }

  .story-quote p {
    font-size: 25px;
  }

  .story-body .large-paragraph {
    font-size: 21px;
  }

  .circle-link {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 28px 0 0 auto;
  }

  .business-section {
    margin-top: 88px;
  }

  .subheading-row {
    gap: 10px;
  }

  .subheading-row small {
    display: none;
  }

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

  .business-card {
    min-height: 270px;
  }

  .business-icon {
    margin-top: 25px;
  }

  .timeline-content h3 {
    font-size: 19px;
  }

  .news-heading .outline-link {
    align-self: flex-start;
  }

  .featured-art {
    min-height: 260px;
  }

  .featured-copy {
    padding: 30px 24px;
  }

  .featured-copy h3 {
    font-size: 25px;
  }

  .news-row {
    grid-template-columns: 32px 1fr 18px;
    gap: 12px;
    min-height: 106px;
  }

  .news-row time {
    display: none;
  }

  .news-row h3 {
    font-size: 15px;
  }

  .benefit-card {
    padding: 23px 19px;
  }

  .benefits-note strong {
    font-size: 20px;
  }

  .jobs-top {
    gap: 24px;
  }

  .job-row {
    grid-template-columns: 1fr 20px;
    gap: 8px;
  }

  .job-location {
    grid-column: 1;
    grid-row: 2;
  }

  .job-arrow {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .faq-list summary {
    grid-template-columns: 31px 1fr 22px;
    font-size: 14px;
    gap: 3px;
  }

  .faq-answer {
    padding: 0 15px 22px 31px;
  }

  .closing-cta {
    min-height: 430px;
  }

  .closing-content h2 {
    font-size: 49px;
  }

  .closing-orbit {
    width: 580px;
    right: -40%;
  }

  .footer-top {
    flex-direction: column;
    padding: 45px 0;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 30px;
  }

  .footer-bottom {
    min-height: 95px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }
}

/* Multi-page layouts and softer card geometry */
.page-hero {
  min-height: 465px;
  padding-top: 130px;
  padding-bottom: 68px;
  background: radial-gradient(circle at 80% 25%, #e3f7f2 0, transparent 26%), linear-gradient(115deg, #f4f8fc 0%, #f8fafb 44%, #eaf4f4 100%);
  overflow: hidden;
}

.page-hero-warm {
  background: radial-gradient(circle at 82% 28%, #f7dca9 0, transparent 22%), linear-gradient(115deg, #fbf7ee 0%, #f6f2e9 52%, #f1eadb 100%);
}

.page-hero-dark {
  color: #fff;
  background: radial-gradient(circle at 78% 15%, rgba(32, 210, 171, .28) 0, transparent 25%), linear-gradient(130deg, #102a43 0%, #0d1b2b 60%, #102b36 100%);
}

.page-hero-inner {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.page-hero h1 {
  max-width: 790px;
  margin: 24px 0 17px;
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  letter-spacing: -.07em;
  line-height: .98;
}

.page-hero h1 em {
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.07em;
}

.page-hero-dark h1 em {
  color: var(--green);
}

.page-hero p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.page-hero-dark p {
  color: #9bb0bf;
}

.page-hero .button {
  margin-top: 26px;
}

.news-count {
  color: #9aa8b3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
}

.news-next {
  padding: 43px 0;
  color: #fff;
  background: var(--ink);
}

.news-next .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.news-next p {
  margin: 0;
  color: #a6b6c2;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -.03em;
}

.career-cta {
  padding: 105px 0;
  background: #e7f3f0;
}

.career-cta h2 {
  margin: 18px 0 28px;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.02;
  letter-spacing: -.06em;
}

.career-cta h2 em {
  color: #14ad90;
  font-family: var(--serif);
  font-weight: 400;
}

.benefit-principles {
  background: #f2f6f7;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 70px;
}

.principle-card {
  min-height: 225px;
  padding: 25px;
  border: 1px solid #d8e2e6;
  border-radius: 22px;
  background: rgba(255, 255, 255, .55);
  transition: transform .25s ease, box-shadow .25s ease;
}

.principle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(20, 35, 54, .08);
}

.principle-card span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 10px;
}

.principle-card h3 {
  margin: 36px 0 10px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -.04em;
}

.principle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.story-quote,
.business-card,
.benefit-card {
  border-radius: 22px;
}

.featured-news {
  border-radius: 22px;
  overflow: hidden;
}

.jobs-board {
  padding: 27px 28px 14px;
  border: 1px solid #d6d6cd;
  border-radius: 22px;
  background: rgba(255, 255, 255, .26);
}

.job-row:last-child {
  border-bottom: 0;
}

.language-label {
  display: inline-flex;
  align-items: center;
}

body:has(.page-hero-dark) .site-header:not(.scrolled) .nav-link,
body:has(.page-hero-dark) .site-header:not(.scrolled) .language-label {
  color: rgba(255, 255, 255, .78);
}

body:has(.page-hero-dark) .site-header:not(.scrolled) .menu-toggle span {
  background: #fff;
}

@media (max-width: 900px) {
  .news-next .shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .jobs-board {
    padding: 24px 20px 12px;
  }
}

@media (max-width: 540px) {
  .page-hero {
    min-height: 430px;
    padding-top: 105px;
    padding-bottom: 50px;
  }

  .page-hero-inner {
    min-height: 250px;
  }

  .page-hero h1 {
    font-size: 47px;
  }

  .page-hero p {
    font-size: 14px;
  }

  .news-next p {
    font-size: 18px;
  }

  .jobs-board {
    padding: 22px 16px 10px;
  }
}