:root {
  --ink: #0b1628;
  --ink-soft: #435067;
  --ink-muted: #667085;
  --paper: #f7f9fc;
  --white: #ffffff;
  --blue-950: #071b34;
  --blue-900: #0a2748;
  --blue-800: #113b67;
  --blue-700: #1f5f9c;
  --blue-600: #2775b8;
  --blue-500: #3b8bca;
  --cyan: #71d9f2;
  --cyan-soft: #dff8ff;
  --line: #dce3ed;
  --success: #16794b;
  --error: #bd2c2c;
  --shadow-sm: 0 10px 30px rgba(12, 31, 57, 0.08);
  --shadow-lg: 0 28px 80px rgba(5, 22, 45, 0.18);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

::selection {
  color: var(--blue-950);
  background: var(--cyan-soft);
}

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue-900);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(220, 227, 237, 0.72);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  color: var(--blue-950);
  text-decoration: none;
}

.brand-logo {
  width: 136px;
  height: auto;
}

.site-header .brand-logo {
  width: auto;
  height: 60px;
  max-width: 300px;
  max-height: calc(var(--header-height) - 20px);
  object-fit: contain;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.brand-word {
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 6px;
}

.site-nav a {
  position: relative;
  padding: 9px 13px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-800);
  background: #edf5fb;
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 18px;
  color: var(--white);
  background: var(--blue-800);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: var(--blue-700);
}

.site-nav .nav-login {
  border: 1px solid #bdd3e4;
  color: var(--blue-900);
  background: #f7fbfe;
}

.site-nav .nav-login:hover {
  border-color: var(--blue-700);
  color: var(--blue-950);
  background: #e8f3fa;
}

.site-nav .language-switch {
  min-width: 46px;
  margin-left: 8px;
  border: 1px solid var(--line);
  color: var(--blue-800);
  background: var(--white);
  text-align: center;
}

.site-nav .language-switch:hover {
  border-color: #bdd3e4;
  color: var(--blue-900);
  background: #edf5fb;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  color: var(--blue-950);
  background: #edf5fb;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(780px, calc(100svh - var(--header-height)));
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(113, 217, 242, 0.19), transparent 28%),
    radial-gradient(circle at 4% 90%, rgba(39, 117, 184, 0.28), transparent 35%),
    linear-gradient(125deg, var(--blue-950), var(--blue-900) 56%, #0d3459);
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom right, black, transparent 68%);
}

.hero::after {
  content: "";
  position: absolute;
  top: -240px;
  right: -250px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(113, 217, 242, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 92px rgba(113, 217, 242, 0.025), 0 0 0 184px rgba(113, 217, 242, 0.018);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  align-items: center;
  min-height: min(780px, calc(100svh - var(--header-height)));
  padding-block: 84px;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  gap: 10px;
  color: var(--blue-700);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
}

.hero .eyebrow,
.page-hero .eyebrow,
.band .eyebrow {
  color: var(--cyan);
}

.display,
h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  text-wrap: balance;
}

.display {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 5.7rem);
  font-weight: 760;
  letter-spacing: -0.055em;
}

.display .accent {
  color: var(--cyan);
}

.hero-lead {
  max-width: 620px;
  margin: 0 0 34px;
  color: #d8e5f2;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.6;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row-centered {
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: var(--blue-950);
  background: var(--cyan);
  box-shadow: 0 10px 30px rgba(113, 217, 242, 0.2);
}

.button-primary:hover {
  background: #9ce9f8;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.11);
}

.button-dark {
  color: var(--white);
  background: var(--blue-900);
  box-shadow: var(--shadow-sm);
}

.button-dark:hover {
  background: var(--blue-800);
}

.button-light {
  color: var(--blue-900);
  border-color: var(--line);
  background: var(--white);
}

.button-light:hover {
  border-color: #c1d3e4;
  background: #f3f8fc;
}

.hero-visual {
  position: relative;
}

.product-window {
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  transform: rotate(1.2deg);
}

.product-window::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(7, 27, 52, 0.1);
  border-radius: 22px;
  pointer-events: none;
}

.product-window img {
  width: 100%;
  min-height: 310px;
  border-radius: 22px;
  object-fit: contain;
  background: #dfe2e4;
}

.floating-label {
  position: absolute;
  right: -22px;
  bottom: -25px;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  color: var(--white);
  background: rgba(11, 38, 67, 0.92);
  box-shadow: var(--shadow-lg);
}

.floating-label strong {
  display: block;
  font-size: 0.95rem;
}

.floating-label span {
  display: block;
  margin-top: 4px;
  color: #bad5e9;
  font-size: 0.78rem;
  line-height: 1.45;
}

.signal {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(113, 217, 242, 0.13);
}

.hero-facts {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 22, 43, 0.65);
}

.fact-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 22px 0;
  list-style: none;
}

.fact-list li {
  padding: 2px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: #bed3e4;
  font-size: 0.86rem;
}

.fact-list li:first-child {
  padding-left: 0;
}

.fact-list li:last-child {
  border: 0;
}

.fact-list strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 0.98rem;
}

.section {
  padding-block: clamp(78px, 10vw, 132px);
}

.section-tight {
  padding-block: clamp(58px, 8vw, 92px);
}

.section-muted {
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.56fr);
  align-items: end;
  margin-bottom: 50px;
  gap: 50px;
}

.section-heading h2,
.prose-head h1,
.page-hero h1 {
  margin-bottom: 0;
  color: var(--blue-950);
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  font-weight: 760;
  letter-spacing: -0.045em;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--blue-600);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 27, 52, 0.03);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: #c0d9eb;
  box-shadow: var(--shadow-sm);
}

.value-card::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 1px solid #d7e9f6;
  border-radius: 50%;
  box-shadow: 0 0 0 24px #f5fafd, 0 0 0 25px #e9f3fa;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 46px;
  border-radius: 12px;
  color: var(--blue-800);
  background: #e8f3fa;
  font-weight: 820;
}

.value-card h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.value-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--ink-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.split-reverse > :first-child {
  order: 2;
}

.media-frame {
  position: relative;
  padding: 14px;
  border-radius: var(--radius-lg);
  background: #e8f0f6;
}

.media-frame::before {
  content: "";
  position: absolute;
  inset: -18px auto auto -18px;
  width: 94px;
  height: 94px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  border-radius: 20px 0 0;
}

.media-frame img {
  width: 100%;
  min-height: 370px;
  border-radius: 24px;
  object-fit: cover;
}

.copy h2,
.copy h1 {
  margin-bottom: 22px;
  color: var(--blue-950);
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  font-weight: 760;
  letter-spacing: -0.045em;
}

.copy h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.copy > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.check-list,
.link-list {
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin-block: 14px;
  padding-left: 32px;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.44em;
  left: 0;
  width: 16px;
  height: 9px;
  border-bottom: 2px solid var(--blue-600);
  border-left: 2px solid var(--blue-600);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-weight: 760;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-link {
  margin-top: 30px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: process;
  gap: 32px;
}

.process-step {
  position: relative;
  padding-top: 74px;
  counter-increment: process;
}

.process-step::before {
  content: "0" counter(process);
  position: absolute;
  top: 0;
  left: 0;
  color: #c7deed;
  font-size: 3.8rem;
  font-weight: 820;
  letter-spacing: -0.06em;
  line-height: 1;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  left: 96px;
  width: calc(100% - 92px);
  border-top: 1px dashed #b9cad7;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
}

.band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 110px);
  color: var(--white);
  background: linear-gradient(125deg, var(--blue-950), #103a60);
}

.band::before {
  content: "";
  position: absolute;
  top: -90px;
  right: 8%;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(113, 217, 242, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 68px rgba(113, 217, 242, 0.04), 0 0 0 136px rgba(113, 217, 242, 0.025);
}

.band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.band h2 {
  max-width: 710px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.7vw, 4.2rem);
  letter-spacing: -0.045em;
}

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

.use-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 390px;
  padding: 30px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--blue-900);
  isolation: isolate;
}

.use-card:first-child {
  grid-column: span 8;
}

.use-card:last-child {
  grid-column: 1 / -1;
  min-height: 300px;
}

.use-card img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 16, 32, 0.92), rgba(3, 16, 32, 0.08) 76%);
}

.use-card-content {
  position: absolute;
  right: 30px;
  bottom: 30px;
  left: 30px;
}

.use-card h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.use-card p {
  max-width: 540px;
  margin: 0;
  color: #d1deea;
}

.use-card-solid {
  color: var(--blue-950);
  background: var(--cyan-soft);
}

.use-card-solid::after {
  background:
    radial-gradient(circle at 90% 12%, rgba(39, 117, 184, 0.22), transparent 33%),
    linear-gradient(145deg, transparent 0%, rgba(255, 255, 255, 0.55));
}

.use-card-solid p {
  color: var(--ink-soft);
}

.use-card-solid .use-card-content {
  max-width: 620px;
}

.home-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(42px, 7vw, 88px);
}

.home-proof-copy h2 {
  margin-bottom: 22px;
  color: var(--blue-950);
  font-size: clamp(2.15rem, 4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.home-proof-copy > p:not(.eyebrow, .home-proof-note) {
  margin-bottom: 24px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.home-proof-tags {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  gap: 9px;
}

.home-proof-tags li {
  padding: 8px 12px;
  border: 1px solid #c7dce9;
  border-radius: 999px;
  color: var(--blue-800);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
}

.home-proof-note {
  max-width: 62ch;
  margin: 24px 0 0;
  color: #60788a;
  font-size: 0.75rem;
  line-height: 1.55;
}

.home-proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-proof-image {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  background: #dfeaf1;
  box-shadow: 0 18px 38px rgba(18, 55, 79, 0.12);
}

.home-proof-image--primary {
  grid-column: 1 / -1;
  min-height: 280px;
}

.home-proof-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-proof-image::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(3, 16, 32, 0.8), transparent);
  content: "";
}

.home-proof-image figcaption {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 780;
  letter-spacing: 0.02em;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(80px, 10vw, 138px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(113, 217, 242, 0.18), transparent 28%),
    linear-gradient(125deg, var(--blue-950), var(--blue-900));
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 70px;
}

.page-hero h1 {
  color: var(--white);
}

.page-hero p {
  margin: 0 0 5px;
  color: #ceddea;
  font-size: 1.1rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.metric {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-800);
  font-size: 1.12rem;
}

.metric p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 16px;
}

.feature-list li {
  min-height: 170px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.feature-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-900);
}

.feature-list span {
  color: var(--ink-soft);
}

.product-media img,
.package-media img {
  object-fit: contain;
  background: #e4e6e7;
}

.strive-explainer {
  overflow: hidden;
  margin: 0;
  padding: 10px;
  border: 1px solid #cddde8;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 26px 60px rgba(18, 55, 79, 0.13);
}

.strive-explainer-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px 24px 8px 8px;
  background: #dce4ea;
}

.strive-explainer-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
}

.strive-view-label {
  position: absolute;
  top: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 27, 52, 0.82);
  box-shadow: 0 8px 22px rgba(7, 27, 52, 0.16);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.strive-view-label--physical {
  left: 18px;
}

.strive-view-label--virtual {
  left: calc(40% + 18px);
}

.strive-explainer-caption {
  display: grid;
  grid-template-columns: 2fr 3fr;
  background: var(--white);
}

.strive-explainer-point {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  padding: clamp(22px, 3vw, 32px);
  gap: 16px;
}

.strive-explainer-point + .strive-explainer-point {
  border-left: 1px solid var(--line);
}

.strive-explainer-point > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 840;
}

.strive-explainer-point h3 {
  margin-bottom: 7px;
  color: var(--blue-950);
  font-size: 1.15rem;
}

.strive-explainer-point p {
  margin: 0;
  color: var(--ink-soft);
}

.strive-explainer + .system-flow {
  margin-top: clamp(32px, 5vw, 52px);
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 14px;
}

.flow-step {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.flow-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  z-index: 2;
  top: 45px;
  right: -19px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border: 1px solid #c7deed;
  border-radius: 50%;
  color: var(--blue-700);
  background: var(--white);
  font-weight: 800;
}

.flow-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--blue-600);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.flow-step h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.flow-step p {
  margin: 0;
  color: var(--ink-soft);
}

.technical-note {
  margin: 28px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 12px 12px 0;
  color: var(--ink-soft);
  background: #eaf4fa;
  font-size: 0.92rem;
}

.compatibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.compatibility-card {
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.compatibility-card--upcoming {
  border-color: rgba(37, 133, 185, 0.42);
  box-shadow: inset 0 3px 0 rgba(37, 133, 185, 0.72);
}

.compatibility-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 92px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid #e5ebf0;
  border-radius: 14px;
  background: #f7f9fb;
}

.compatibility-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.compatibility-logo--unity {
  max-height: 68px;
}

.compatibility-logo--unreal {
  max-height: 46px;
}

.compatibility-status {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-800);
  background: #e8f3fa;
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compatibility-status--upcoming {
  color: #754900;
  background: #fff0ce;
}

.compatibility-card h3 {
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: 1.55rem;
}

.compatibility-card p {
  margin: 0;
  color: var(--ink-soft);
}

.trademark-note {
  margin: 14px 0 0;
  color: #65707a;
  font-size: 0.76rem;
  line-height: 1.55;
}

.package-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  gap: 0;
}

.package-list li {
  display: grid;
  grid-template-columns: minmax(145px, 0.7fr) minmax(0, 1fr);
  padding-block: 13px;
  border-bottom: 1px solid var(--line);
  gap: 18px;
}

.package-list strong {
  color: var(--blue-900);
}

.package-list span {
  color: var(--ink-soft);
}

.demo-photo {
  width: min(100%, 500px);
  justify-self: center;
}

.demo-photo img {
  aspect-ratio: 3 / 4;
  object-position: center;
}

.application-section {
  padding-top: 0;
}

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

.application-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--white), #f5faff);
  box-shadow: 0 1px 0 rgba(7, 27, 52, 0.03);
}

.application-card::after {
  position: absolute;
  right: -42px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(49, 154, 204, 0.16);
  border-radius: 50%;
  content: "";
}

.application-number {
  display: block;
  margin-bottom: 36px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 840;
  letter-spacing: 0.12em;
}

.application-card h3,
.research-offer h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  color: var(--blue-950);
  font-size: 1.45rem;
}

.application-card p {
  position: relative;
  z-index: 1;
  max-width: 48ch;
  margin: 0;
  color: var(--ink-soft);
}

.study-proof {
  padding-block: clamp(76px, 10vw, 126px);
  color: var(--white);
  background:
    radial-gradient(circle at 88% 8%, rgba(113, 217, 242, 0.16), transparent 31%),
    linear-gradient(145deg, var(--blue-950), #0b2c51);
}

.study-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.56fr);
  align-items: end;
  margin-bottom: 42px;
  gap: 50px;
}

.study-heading .eyebrow {
  color: var(--cyan);
}

.study-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 4.2vw, 3.8rem);
  letter-spacing: -0.04em;
}

.study-summary p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
}

.study-link {
  color: var(--white);
  font-weight: 780;
  text-decoration-color: var(--cyan);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.study-link:hover {
  color: var(--cyan);
}

.study-quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.study-quote {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.065);
}

.study-quote blockquote {
  margin: 0;
}

.study-quote blockquote p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  font-weight: 620;
  line-height: 1.48;
}

.study-quote figcaption {
  margin-top: auto;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  line-height: 1.45;
}

.study-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  gap: 18px;
}

.study-stats li {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(113, 217, 242, 0.07);
  gap: 18px;
}

.study-stats strong {
  color: var(--cyan);
  font-size: 1.35rem;
  white-space: nowrap;
}

.study-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.study-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
}

.research-offer {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #cfe1ee;
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #f7fbfe, var(--white));
}

.research-offer h3 {
  font-size: 1.25rem;
}

.research-offer p:not(.kicker) {
  margin-bottom: 16px;
}

.vr-value-section {
  overflow: hidden;
  border-block: 1px solid #dbe8f0;
  background:
    radial-gradient(circle at 6% 18%, rgba(25, 177, 214, 0.1), transparent 28%),
    linear-gradient(180deg, #f8fbfd 0%, #eef5f9 100%);
}

.vr-value-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(30px, 5vw, 68px);
}

.vr-value-layout .copy > p:last-child {
  margin-bottom: 0;
}

.research-visual {
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 55px rgba(18, 55, 79, 0.12);
}

.research-visual img {
  min-height: 0;
  aspect-ratio: 4 / 3;
  object-position: center;
}

.research-offer-wide {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(320px, 1fr) auto;
  align-items: center;
  margin-top: clamp(24px, 4vw, 38px);
  padding: clamp(24px, 3vw, 34px);
  gap: clamp(22px, 3.5vw, 48px);
  border-left-width: 1px;
  border-top: 4px solid var(--cyan);
  box-shadow: 0 18px 42px rgba(18, 55, 79, 0.08);
}

.research-offer-wide .kicker {
  margin-bottom: 8px;
}

.research-offer-wide h3,
.research-offer-wide p:not(.kicker) {
  margin-bottom: 0;
}

.research-offer-wide .text-link {
  white-space: nowrap;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.illustration-note {
  max-width: 980px;
  margin: 22px 0 0;
  padding: 13px 16px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  line-height: 1.55;
}

.illustration-note strong {
  color: var(--blue-950);
}

.case-card {
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 27, 52, 0.03);
}

.case-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin: -30px -30px 26px;
  border-bottom: 1px solid var(--line);
  background: var(--blue-950);
}

.case-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-visual figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  background: rgba(7, 27, 52, 0.78);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1;
}

.case-number {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 14px;
  color: var(--blue-950);
  background: var(--cyan-soft);
  font-weight: 840;
}

.case-card h3 {
  min-height: 2.5em;
  margin-bottom: 24px;
  color: var(--blue-950);
  font-size: 1.5rem;
}

.case-details {
  margin: 0;
}

.case-details div {
  padding-block: 16px;
  border-top: 1px solid var(--line);
}

.case-details dt {
  margin-bottom: 4px;
  color: var(--blue-700);
  font-size: 0.75rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-details dd {
  margin: 0;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(45px, 8vw, 100px);
}

.contact-card {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.contact-details {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  margin-block: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--blue-900);
  font-size: 1.05rem;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 720;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  color: var(--ink);
  background: #fbfcfe;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 10px 13px;
}

.field textarea {
  min-height: 170px;
  padding: 13px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue-600);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(39, 117, 184, 0.12);
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue-700);
}

.checkbox label {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.form-note {
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.account-request-notice {
  padding: 16px 18px;
  border: 1px solid #acd3e7;
  border-radius: 12px;
  color: var(--blue-950);
  background: #edf8fd;
}

.account-request-notice p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0f5d39;
  border: 1px solid #a8dec5;
  background: #e9f8f0;
}

.form-status.is-error {
  color: #8d1f1f;
  border: 1px solid #edb1b1;
  background: #fff0f0;
}

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

.prose-head {
  padding-block: 70px 42px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.prose-head p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.prose {
  padding-block: 62px 100px;
}

.prose h2 {
  margin: 2.4em 0 0.7em;
  color: var(--blue-950);
  font-size: 1.75rem;
  letter-spacing: -0.025em;
}

.prose h3 {
  margin: 2em 0 0.55em;
  color: var(--blue-900);
  font-size: 1.2rem;
}

.prose p,
.prose li {
  color: var(--ink-soft);
}

.prose a {
  color: var(--blue-700);
}

.legal-note {
  margin: 0 0 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 10px 10px 0;
  color: var(--ink-soft);
  background: #edf6fb;
}

.prose address {
  color: var(--ink-soft);
  font-style: normal;
}

.legal-note {
  margin-bottom: 32px;
  padding: 16px 18px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 10px 10px 0;
  color: var(--ink-soft);
  background: #edf6fb;
}

.site-footer {
  padding-top: 72px;
  color: #c7d4df;
  background: #07182c;
}

.site-footer-minimal {
  padding-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.7fr;
  padding-bottom: 60px;
  gap: 60px;
}

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

.footer-brand .brand-logo {
  width: 190px;
}

.footer-brand p {
  max-width: 430px;
  margin: 22px 0 0;
  color: #9fb1c1;
}

.footer-column h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column li {
  margin-block: 9px;
}

.footer-column a {
  color: #adbecd;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.social-link-mark {
  display: inline-block;
  flex: 0 0 auto;
  width: 26px;
  height: 24px;
  overflow: hidden;
  background: transparent url("../img/social/linkedin-in-white.png") center / contain no-repeat;
  text-indent: -9999px;
}

.contact-details .social-link {
  justify-content: flex-start;
  color: var(--blue-700);
  font-weight: 760;
}

.contact-details .social-link-mark {
  background-image: url("../img/social/linkedin-in-blue.png");
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  gap: 20px;
  color: #8195a7;
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  color: #9fb1c1;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--white);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.error-page {
  display: grid;
  place-items: center;
  min-height: calc(100svh - var(--header-height));
  padding-block: 80px;
  text-align: center;
}

.error-code {
  display: block;
  color: #dbeaf4;
  font-size: clamp(7rem, 22vw, 15rem);
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.error-page h1 {
  margin: 34px 0 14px;
  color: var(--blue-950);
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.error-page p {
  max-width: 580px;
  margin: 0 auto 28px;
  color: var(--ink-soft);
}

.news-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.news-card-media {
  display: block;
  min-height: 390px;
  overflow: hidden;
  background: var(--blue-900);
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.025);
}

.news-card-content {
  align-self: center;
  padding: clamp(34px, 5vw, 62px);
}

.news-meta,
.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-meta {
  margin-bottom: 18px;
}

.news-meta time,
.news-article-meta time {
  color: var(--ink-muted);
}

.news-card h2 {
  margin-bottom: 18px;
  color: var(--blue-950);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  letter-spacing: -0.035em;
}

.news-card h2 a {
  text-decoration: none;
}

.news-card h2 a:hover {
  color: var(--blue-700);
}

.news-card-content > p {
  margin: 0 0 25px;
  color: var(--ink-soft);
}

.news-article-hero .narrow {
  position: relative;
  z-index: 1;
}

.news-back-link {
  display: inline-flex;
  margin-bottom: 34px;
  color: #d5e6f2;
  font-weight: 720;
  text-decoration: none;
}

.news-back-link:hover {
  color: var(--cyan);
}

.news-article-meta {
  margin-bottom: 20px;
  color: var(--cyan);
}

.news-article-meta time {
  color: #b8cad9;
}

.news-article-hero h1 {
  max-width: 800px;
  margin-bottom: 25px;
}

.news-article-hero .news-article-lead {
  max-width: 720px;
  margin: 0;
  color: #d4e1ec;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.news-article-media {
  margin: 0 0 52px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.news-article-media img {
  width: 100%;
  border-radius: calc(var(--radius-md) - 7px);
}

.news-article-media figcaption {
  padding: 12px 7px 4px;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.news-prose {
  padding: 0;
}

.news-prose > p:first-child {
  color: var(--ink);
  font-size: 1.16rem;
}

.news-prose > p:last-child {
  margin-top: 2.4em;
  padding: 22px 24px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #edf6fb;
}

.careers-overview {
  background:
    radial-gradient(circle at 92% 8%, rgba(113, 217, 242, 0.13), transparent 25%),
    var(--paper);
}

.careers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(38px, 7vw, 86px);
}

.careers-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
}

.careers-copy > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.career-status-card {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid #cbd9e6;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.career-status-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan));
  content: "";
}

.career-status {
  display: inline-flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 8px 13px;
  border: 1px solid #b9d9c9;
  border-radius: 999px;
  color: #12633e;
  background: #edf9f3;
  font-size: 0.82rem;
  font-weight: 780;
  line-height: 1.3;
}

.career-status > span {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: #23865a;
  box-shadow: 0 0 0 4px rgba(35, 134, 90, 0.12);
}

.career-status-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.career-status-card p {
  margin: 0;
  color: var(--ink-soft);
}

.career-status-card .career-status-note {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--blue-800);
  font-weight: 720;
}

@media (max-width: 1120px) and (min-width: 981px) {
  .header-inner {
    gap: 14px;
  }

  .site-header .brand-logo {
    height: 52px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }

  .site-nav .nav-cta {
    margin-left: 4px;
    padding-inline: 12px;
  }

  .site-nav .language-switch {
    margin-left: 4px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100svh - var(--header-height));
    display: flex;
    align-items: stretch;
    flex-direction: column;
    padding: 26px 20px 40px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 180ms ease, transform 220ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .site-nav a {
    padding: 13px 16px;
    font-size: 1.05rem;
  }

  .site-nav .nav-cta {
    margin: 16px 0 0;
    text-align: center;
  }

  .site-nav .nav-login {
    margin-top: 10px;
    text-align: center;
  }

  .site-nav .language-switch {
    align-self: flex-start;
    min-width: 54px;
    margin: 10px 0 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 74px 92px;
    gap: 58px;
  }

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

  .hero-visual {
    width: min(92%, 650px);
  }

  .section-heading,
  .study-heading,
  .page-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .study-quote-grid {
    grid-template-columns: 1fr;
  }

  .study-quote {
    min-height: auto;
  }

  .value-grid,
  .metric-grid,
  .system-flow,
  .compatibility-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-card:last-child,
  .metric:last-child {
    grid-column: 1 / -1;
  }

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

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

  .home-proof-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-reverse > :first-child {
    order: initial;
  }

  .vr-value-layout {
    gap: 30px;
  }

  .research-offer-wide {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .research-offer-wide .text-link {
    margin-top: 4px;
    white-space: normal;
  }

  .use-card,
  .use-card:first-child {
    grid-column: span 6;
  }

  .use-card:last-child {
    grid-column: 1 / -1;
  }

  .band-inner {
    align-items: start;
    flex-direction: column;
  }

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

  .system-flow .flow-step:nth-child(2)::after {
    display: none;
  }

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

  .case-card h3 {
    min-height: 0;
  }

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

  .news-card-media {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

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

  .header-inner {
    gap: 14px;
  }

  .brand-word {
    font-size: 1.04rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-logo {
    width: 122px;
  }

  .site-header .brand-logo {
    width: auto;
    max-width: calc(100vw - 96px);
  }

  .footer-brand .brand-logo {
    width: 175px;
  }

  .display {
    font-size: clamp(2.75rem, 14vw, 4.3rem);
  }

  .hero-inner {
    padding-top: 56px;
  }

  .hero-visual {
    width: calc(100% - 8px);
  }

  .product-window {
    padding: 9px;
    border-radius: 24px;
  }

  .product-window img {
    min-height: 230px;
    border-radius: 17px;
  }

  .floating-label {
    right: -8px;
    bottom: -44px;
  }

  .hero-facts {
    padding-block: 8px;
  }

  .fact-list {
    grid-template-columns: 1fr;
    padding-block: 12px;
  }

  .fact-list li,
  .fact-list li:first-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .fact-list li:last-child {
    border-bottom: 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .news-card {
    border-radius: var(--radius-md);
  }

  .news-card-content {
    padding: 28px 23px 32px;
  }

  .news-article-hero {
    padding-block: 60px 72px;
  }

  .news-back-link {
    margin-bottom: 27px;
  }

  .news-article-media {
    margin-bottom: 36px;
    padding: 7px;
  }

  .value-grid,
  .metric-grid,
  .process-grid,
  .feature-list,
  .application-grid,
  .system-flow,
  .compatibility-grid {
    grid-template-columns: 1fr;
  }

  .study-stats {
    grid-template-columns: 1fr;
  }

  .value-card:last-child,
  .metric:last-child {
    grid-column: auto;
  }

  .value-card {
    min-height: auto;
    padding: 28px;
  }

  .card-number {
    margin-bottom: 30px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .use-card,
  .use-card:first-child,
  .use-card:last-child {
    grid-column: 1 / -1;
  }

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

  .home-proof-image,
  .home-proof-image--primary {
    grid-column: auto;
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .media-frame img {
    min-height: 280px;
  }

  .strive-view-label {
    top: 10px;
    padding: 7px 9px;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .strive-view-label--physical {
    left: 10px;
  }

  .strive-view-label--virtual {
    left: calc(40% + 10px);
  }

  .strive-explainer-caption {
    grid-template-columns: 1fr;
  }

  .strive-explainer-point + .strive-explainer-point {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .flow-step {
    min-height: auto;
  }

  .flow-step:not(:last-child)::after {
    display: none;
  }

  .flow-number {
    margin-bottom: 26px;
  }

  .package-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

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

  .field-full {
    grid-column: auto;
  }

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

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

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .button-row {
    display: none;
  }

  .prose,
  .prose-head {
    padding-block: 20px;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }
}
