@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&display=swap");

:root {
  --ink: #101820;
  --muted: #65717c;
  --line: #dde5ea;
  --paper: #f7fafb;
  --blue: #0f70b7;
  --teal: #1f9c98;
  --green: #6a9c42;
  --white: #ffffff;
  --max: 1224px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Montserrat, Inter, "Pretendard", "Noto Sans KR", Arial, sans-serif;
  background: var(--white);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 24, 32, 0.08);
  backdrop-filter: blur(14px);
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .nav {
  height: 86px;
}

.home-page .nav-links {
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 500;
}

.home-page .nav-links a:hover,
.home-page .nav-links a[aria-current="page"] {
  color: var(--white);
}

.home-page .nav-links a[aria-current="page"] {
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
}

.nav {
  width: min(100% - 40px, var(--max));
  height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  width: 182px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #27313a;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 0;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.mobile-language-switcher {
  display: none;
}

.language-switcher button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.language-switcher button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 58px;
  padding: 8px 0;
  display: grid;
  justify-items: stretch;
  background: transparent;
  color: #fff;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.language-menu a {
  padding: 8px 15px;
  color: inherit;
  font-size: 17px;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.42);
}

.language-menu a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.language-switcher.open .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  font-size: 22px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: var(--white);
  background: #0e1a22;
}

.hero video,
.hero .hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 16, 24, 0.76), rgba(5, 16, 24, 0.24) 58%, rgba(5, 16, 24, 0.56));
}

.home-hero::after {
  background: rgba(3, 13, 16, 0.46);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  display: grid;
  align-content: center;
  padding: 72px 0;
}

.home-hero .hero-inner {
  justify-items: center;
  text-align: center;
}

.home-hero h1 {
  max-width: 1020px;
  font-size: clamp(42px, 4.2vw, 66px);
  line-height: 1.18;
  text-wrap: balance;
}

.home-hero p {
  max-width: 560px;
  margin-top: 76px;
  margin-bottom: 130px;
  font-weight: 700;
}

.hero-button {
  min-width: 400px;
  min-height: 70px;
  border: 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  font-weight: 800;
  font-family: "Lora", Georgia, serif;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
}

.home-mission {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: #fff;
}

.mission-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 84px;
  align-items: center;
}

.mission-copy {
  position: relative;
  z-index: 2;
  padding-left: 52px;
}

.mission-kicker {
  margin: 0 0 46px;
  color: #3b00c4;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(42px, 4.8vw, 64px);
  line-height: 1.12;
  font-weight: 800;
}

.mission-copy h2 {
  margin: 0 0 22px;
  font-size: 29px;
  line-height: 1.18;
}

.mission-copy p:not(.mission-kicker) {
  max-width: 650px;
  color: #1d1e20;
  font-size: 20px;
}

.mission-button {
  min-width: 210px;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  background: #000;
}

.mission-art {
  position: relative;
  min-height: 600px;
}

.mission-art img {
  position: absolute;
  z-index: 2;
  right: 6%;
  top: 116px;
  width: min(560px, 82%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transform: skewX(-12deg);
  transform-origin: center;
}

.decor-circle {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 12%;
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background: repeating-linear-gradient(135deg, rgba(16, 24, 32, 0.09) 0 1px, transparent 1px 3px);
}

.decor-line {
  position: absolute;
  z-index: 1;
  top: -108px;
  left: 47%;
  width: 5px;
  height: 240px;
  background: #3b00c4;
}

.decor-dot {
  position: absolute;
  z-index: 2;
  top: 119px;
  left: calc(47% - 25px);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #3b00c4;
}

.decor-slab {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  width: 470px;
  height: 430px;
  transform: skewX(18deg);
  background: repeating-linear-gradient(135deg, rgba(16, 24, 32, 0.12) 0 1px, transparent 1px 4px);
}

.home-tech {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.tech-rule {
  width: 420px;
  height: 4px;
  margin: 0 auto 116px;
  background: #1d1e20;
}

.tech-kicker {
  position: relative;
  z-index: 2;
  margin: 0 0 80px 94px;
  font-family: "Lora", Georgia, serif;
  font-size: 28px;
  font-weight: 800;
}

.tech-mosaic {
  position: relative;
  max-width: 1100px;
  min-height: 760px;
  margin: 0 auto;
}

.tech-copy,
.tech-image,
.tech-decor,
.tech-dot {
  position: absolute;
}

.tech-copy h3 {
  margin: 0 0 28px;
  color: #3b00c4;
  font-size: 26px;
  line-height: 1.18;
}

.tech-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.48;
}

.tech-copy-a {
  top: 70px;
  left: 0;
  width: 300px;
}

.tech-copy-b {
  top: 470px;
  left: 415px;
  width: 320px;
}

.tech-copy-c {
  top: 32px;
  right: 0;
  width: 300px;
}

.tech-image {
  z-index: 2;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
}

.tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-image-a {
  top: 345px;
  left: 0;
  width: 260px;
  height: 230px;
}

.tech-image-b {
  top: 62px;
  left: 415px;
  width: 250px;
  height: 215px;
}

.tech-image-c {
  top: 350px;
  right: 0;
  width: 260px;
  height: 230px;
}

.tech-decor {
  width: 250px;
  height: 250px;
  border-radius: 18px;
  background: repeating-linear-gradient(135deg, rgba(16, 24, 32, 0.12) 0 1px, transparent 1px 4px);
}

.tech-decor-a {
  z-index: 1;
  top: 405px;
  left: 50px;
}

.tech-decor-b {
  z-index: 1;
  top: 420px;
  right: 60px;
}

.tech-dot {
  top: -38px;
  left: 49%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #3b00c4;
}

.patent-badge {
  position: absolute;
  top: 0;
  right: -110px;
  width: 82px;
  height: 92px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #3b00c4;
  font-size: 13px;
  font-weight: 800;
  clip-path: polygon(50% 0, 100% 24%, 100% 74%, 50% 100%, 0 74%, 0 24%);
}

.tech-summary {
  display: none;
}

.home-competitiveness {
  position: relative;
  min-height: 720px;
  padding: 86px 0 70px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(rgba(8, 11, 12, 0.78), rgba(8, 11, 12, 0.78)),
    url("../assets/images/photo-1576671081837-49000212a370.avif") center / cover no-repeat;
}

.home-competitiveness::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 40%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 4px);
}

.home-competitiveness h2 {
  position: relative;
  margin: 0 0 142px 96px;
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-size: 26px;
}

.strength-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 56px;
  max-width: 1010px;
  margin: 0 auto;
}

.strength-grid article {
  position: relative;
  min-height: 260px;
}

.strength-grid span {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 0 26px;
  border-radius: 50%;
  background: #3b00c4;
}

.strength-grid h3 {
  position: relative;
  display: inline-block;
  margin: 0 0 22px;
  padding: 0 22px 0 2px;
  color: #fff;
  font-size: 23px;
  line-height: 1.2;
}

.strength-grid h3::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -22px;
  bottom: 3px;
  z-index: -1;
  height: 23px;
  border-radius: 4px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 1px, transparent 1px 3px);
}

.strength-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.48;
}

.strength-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  min-height: 58px;
  margin: 82px auto 0;
  border-radius: 999px;
  background: #3b00c4;
  color: #fff;
  font-weight: 700;
}

.strength-button::after {
  content: "";
  position: absolute;
  top: 58px;
  left: 50%;
  width: 4px;
  height: 80px;
  background: #3b00c4;
}

.home-products {
  position: relative;
  min-height: 790px;
  padding: 96px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(rgba(244, 250, 252, 0.68), rgba(244, 250, 252, 0.68)),
    url("../assets/images/photo-1465173121987-373740a169b3.avif") center / cover no-repeat;
}

.product-heading {
  text-align: center;
  margin-bottom: 64px;
}

.product-heading p {
  margin: 0 0 10px;
  color: #1d1e20;
  font-size: 15px;
}

.product-heading h2 {
  margin: 0;
  color: #1d1e20;
  font-family: "Lora", Georgia, serif;
  font-size: 47px;
  font-weight: 400;
}

.product-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.home-product-card {
  position: relative;
  width: 360px;
  height: 420px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 16px;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.home-product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.56));
}

.home-product-card > div {
  position: relative;
  z-index: 1;
  padding: 0 36px 36px;
}

.home-product-card p,
.home-product-card span {
  margin: 0;
  font-weight: 700;
}

.home-product-card h3 {
  margin: 14px 0;
  font-size: 32px;
  line-height: 1.08;
}

.home-product-card strong {
  position: absolute;
  top: 0;
  right: 30px;
  z-index: 2;
  width: 98px;
  height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #3b00c4;
  color: #fff;
  font-size: 14px;
}

.product-cosmetic {
  margin-top: 48px;
  background-image: url("../assets/images/photo-1516670428252-df97bba108d1.avif");
}

.product-cnf {
  width: 360px;
  height: 430px;
  background-image: url("../assets/images/CNF-1-bg.jpg");
}

.product-bio {
  margin-top: 74px;
  background-image: url("../assets/images/photo-1551601651-2a8555f1a136.avif");
}

.product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 350px;
  min-height: 58px;
  margin: 30px auto 0;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-weight: 700;
}

.section {
  padding: 108px 0;
}

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

.section.dark {
  background: #101820;
  color: var(--white);
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.section-title {
  max-width: 760px;
  margin: 0 0 44px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.03;
  font-family: "Lora", Georgia, serif;
}

.section-title p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.dark .section-title p,
.dark .lead {
  color: rgba(255, 255, 255, 0.72);
}

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

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack img {
  position: absolute;
  border-radius: 8px;
  object-fit: cover;
}

.stack-large {
  right: 0;
  top: 0;
  width: 78%;
  height: 420px;
}

.stack-small {
  left: 0;
  bottom: 0;
  width: 46%;
  height: 260px;
  box-shadow: 0 24px 60px rgba(16, 24, 32, 0.22);
}

.feature-list {
  display: grid;
  gap: 26px;
}

.feature-row {
  display: grid;
  grid-template-columns: 36% minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.feature-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
}

.feature-row span {
  color: var(--blue);
  font-weight: 800;
}

.feature-row h3 {
  margin: 8px 0 14px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
  font-family: "Lora", Georgia, serif;
}

.feature-row p {
  color: var(--muted);
}

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

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

.highlight-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.highlight-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.highlight-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 800;
}

.highlight-item h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.08;
  font-family: "Lora", Georgia, serif;
}

.highlight-item p {
  margin: 0;
  color: var(--muted);
}

.media-grid img,
.feature-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.feature-image {
  aspect-ratio: 4 / 3;
}

.tech-grid,
.product-grid,
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.product-band article {
  min-height: 520px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  display: grid;
  align-content: start;
}

.product-media {
  height: 250px;
  margin: -26px -26px 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-media img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

.product-band h3 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.1;
  font-family: "Lora", Georgia, serif;
}

.product-band p {
  color: var(--muted);
}

.product-band strong {
  align-self: end;
  margin-top: 28px;
  color: var(--blue);
  font-size: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.card-body {
  padding: 24px;
}

.card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.18;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.metric {
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.metric strong {
  display: block;
  margin-bottom: 14px;
  color: #95d6cd;
  font-size: 20px;
}

.page-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: 110px 0 76px;
  color: var(--white);
  background: #12212c;
  overflow: hidden;
  display: grid;
  align-items: center;
}

.page-hero img,
.page-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.54;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 19, 30, 0.88), rgba(8, 19, 30, 0.42));
}

.page-hero .wrap {
  position: relative;
  z-index: 1;
}

.page-label {
  display: block;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 3.8vw, 46px);
  line-height: 1.05;
  font-weight: 800;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

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

.cta-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 8px;
  color: var(--white);
  background: #13202a;
}

.cta-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-tile div {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 26px;
  display: grid;
  align-content: end;
}

.person-list,
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.person,
.pipeline {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.person h3,
.pipeline h3 {
  margin: 0 0 4px;
}

.person p,
.pipeline p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.timeline-year {
  color: var(--blue);
  font-size: 30px;
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 56px;
  align-items: start;
}

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

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 700;
}

.form-status.show {
  display: block;
}

.form-status.success {
  color: #105c48;
  background: #def4f0;
}

.form-status.error {
  color: #8a1f3d;
  background: #ffe8ef;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: #303b45;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid #cfd9df;
  border-radius: 6px;
  padding: 14px 15px;
  font: inherit;
}

.field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.logo-lockup {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 26px;
}

.logo-lockup div {
  min-height: 110px;
  padding: 20px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.logo-lockup img {
  max-height: 72px;
  object-fit: contain;
}

.contact-panel h3 {
  margin: 0 0 10px;
}

.contact-panel p {
  color: var(--muted);
}

.site-footer {
  position: relative;
  padding: 62px 0 28px;
  background: #101023;
  color: rgba(255, 255, 255, 0.76);
}

.top-button {
  position: absolute;
  top: 0;
  right: calc((100% - min(100% - 40px, var(--max))) / 2);
  transform: translateY(-50%);
  min-width: 78px;
  min-height: 44px;
  display: grid;
  place-items: center;
  background: #404040;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.philosophy-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.philosophy-page {
  overflow-x: hidden;
  background: #fff;
}

.philosophy-page .nav {
  height: 64px;
}

.philosophy-page .nav-links {
  color: rgba(255, 255, 255, 0.92);
}

.philosophy-page .nav-links a:hover,
.philosophy-page .nav-links a[aria-current="page"] {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.74);
}

.philo-hero {
  position: relative;
  min-height: 252px;
  color: #fff;
  overflow: hidden;
  background: #111;
}

.philo-hero video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 12, 0.56);
}

.philo-hero-inner {
  position: relative;
  z-index: 1;
  min-height: 252px;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 74px;
  align-items: center;
  padding-top: 54px;
}

.philo-label {
  width: 122px;
  height: 122px;
  display: grid;
  place-items: center;
  justify-self: end;
  background: #0e171d;
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  font-weight: 800;
}

.philo-hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  line-height: 1.18;
}

.philo-intro {
  position: relative;
  padding: 112px 0 76px;
  background: #1b1b1b;
  color: #fff;
}

.philo-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc((100% - min(100% - 40px, var(--max))) / 2 + 18px);
  width: 4px;
  height: 112px;
  background: #3b00c4;
}

.philo-intro::after {
  content: "";
  position: absolute;
  top: 96px;
  left: calc((100% - min(100% - 40px, var(--max))) / 2 - 12px);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #3b00c4;
}

.philo-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 560px) 330px;
  justify-content: space-between;
  gap: 72px;
  align-items: center;
  width: min(100% - 40px, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.philo-intro .eyebrow,
.philo-dark .eyebrow {
  color: #0faeaa;
}

.philo-intro h2 {
  margin: 0 0 34px;
  font-family: "Lora", Georgia, serif;
  font-size: 32px;
  line-height: 1.18;
}

.philo-intro p {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
  font-size: 13px;
}

.philo-intro p:last-child {
  max-width: 540px;
}

.philo-intro-images {
  position: relative;
  min-height: 325px;
}

.philo-cell {
  position: absolute;
  left: 0;
  top: 0;
  width: 330px;
  height: 380px;
  object-fit: cover;
}

.philo-lab {
  display: none;
  position: absolute;
  right: -110px;
  top: -40px;
  width: 300px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}

.philo-mission-light,
.philo-vision-light {
  padding: 84px 0;
  background: #fff;
}

.philo-mission-layout,
.philo-vision-layout {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: 120px minmax(0, 410px) minmax(0, 560px);
  gap: 60px;
  align-items: start;
  max-width: none;
}

.mission-note,
.vision-note {
  font-family: "Lora", Georgia, serif;
  font-weight: 800;
}

.mission-note i,
.vision-note i {
  display: block;
  width: 62px;
  height: 62px;
  margin-top: 22px;
  border-top: 3px solid #111;
  border-left: 3px solid #111;
}

.mission-text,
.vision-text {
  padding-top: 66px;
}

.mission-text h2,
.vision-text h2 {
  margin: 0 0 18px;
  max-width: 420px;
  font-size: 30px;
  line-height: 1.18;
}

.mission-text p,
.vision-text p {
  max-width: 420px;
  font-size: 13px;
}

.mission-collage,
.vision-collage {
  position: relative;
  min-height: 560px;
}

.mission-collage .decor-circle,
.vision-collage .decor-circle {
  top: 0;
  left: 70px;
  width: 180px;
  height: 180px;
}

.mission-collage .decor-dot,
.vision-collage .decor-dot {
  top: 74px;
  left: 228px;
  width: 48px;
  height: 48px;
}

.mission-collage img,
.vision-collage img {
  position: absolute;
  object-fit: cover;
}

.collage-a {
  right: 64px;
  top: 46px;
  width: 215px;
  height: 365px;
}

.collage-b {
  left: 40px;
  bottom: 44px;
  width: 340px;
  height: 190px;
}

.collage-c {
  left: 200px;
  top: 128px;
  width: 170px;
  height: 170px;
}

.vision-a {
  right: 112px;
  top: 0;
  width: 310px;
  height: 270px;
}

.vision-b {
  right: 0;
  bottom: 50px;
  width: 510px;
  height: 220px;
}

.philo-dark {
  padding: 130px 0;
  color: #fff;
  background: #101820;
}

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

.philo-dark h2 {
  margin: 20px 0 40px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(44px, 4.5vw, 66px);
  line-height: 1.12;
}

.philo-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.philo-links {
  padding: 108px 0 102px;
  background: #f2f2f2;
}

.philo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  max-width: none;
}

.philo-link-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 0;
  color: #111820;
  background: transparent;
}

.philo-link-card img {
  position: absolute;
  right: 0;
  top: 0;
  width: 44%;
  height: 100%;
  object-fit: contain;
}

.philo-link-card div {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 26px 128px 22px 0;
  display: grid;
  align-content: center;
}

.philo-link-card p {
  margin: 0 0 6px;
  color: #222;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  text-transform: none;
}

.philo-link-card h3 {
  margin: 0 0 24px;
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  line-height: 1.15;
}

.philo-link-card span {
  justify-self: start;
  padding: 12px 36px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.footer-mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 40px;
}

.footer-logo {
  width: 182px;
  margin-bottom: 22px;
}

.newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  padding: 0 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.newsletter input[name="website"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.newsletter-status {
  grid-column: 1 / -1;
  width: 100%;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
}

.site-footer .button.light {
  border: 0;
  border-radius: 999px;
  background: #3b00c4;
}

.copyright {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

@media (max-width: 860px) {
  .nav {
    height: 66px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .home-page .site-header {
    position: sticky;
    background: rgba(255, 255, 255, 0.96);
  }

  .philosophy-page .site-header {
    position: sticky;
    background: rgba(255, 255, 255, 0.96);
  }

  .philosophy-page .logo img {
    content: url("../assets/logo/curenology_ci.png");
  }

  .philosophy-page .nav-links {
    color: #27313a;
  }

  .philosophy-page .nav-links a[aria-current="page"] {
    border-bottom: 0;
  }

  .philo-hero,
  .philo-hero-inner {
    min-height: 520px;
  }

  .philo-hero-inner,
  .philo-intro-grid,
  .philo-mission-layout,
  .philo-vision-layout,
  .philo-dark-grid,
  .philo-link-grid {
    grid-template-columns: 1fr;
  }

  .philo-label {
    justify-self: start;
  }

  .philo-hero h1 {
    font-size: 32px;
  }

  .philo-intro {
    padding: 100px 0 74px;
  }

  .philo-intro::before,
  .philo-intro::after {
    display: none;
  }

  .philo-intro-grid {
    max-width: none;
    gap: 40px;
  }

  .philo-intro-images,
  .mission-collage,
  .vision-collage {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .philo-cell,
  .philo-lab,
  .mission-collage img,
  .vision-collage img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .mission-collage .decor-circle,
  .mission-collage .decor-dot,
  .vision-collage .decor-circle,
  .vision-collage .decor-dot {
    display: none;
  }

  .mission-text,
  .vision-text {
    padding-top: 0;
  }

  .philo-dark {
    padding: 74px 0;
  }

  .home-page .nav-links {
    color: #27313a;
  }

  .home-page .logo img {
    content: url("../assets/logo/curenology_ci.png");
  }

  .home-page .nav-links a[aria-current="page"] {
    border-bottom: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
  }

  .hero,
  .hero-inner {
    min-height: 680px;
  }

  .home-hero h1 {
    font-size: 39px;
    line-height: 1.12;
  }

  .home-hero p {
    margin-top: 28px;
    margin-bottom: 34px;
  }

  .hero-button {
    min-width: min(100%, 340px);
    min-height: 58px;
  }

  .split,
  .mission-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tech-grid,
  .product-grid,
  .product-band,
  .cards,
  .highlight-grid,
  .metric-list,
  .cta-grid,
  .person-list,
  .pipeline-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-row {
    grid-template-columns: 1fr;
  }

  .highlight-item {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .image-stack {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .image-stack img,
  .stack-large,
  .stack-small {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .section {
    padding: 74px 0;
  }

  .mission-copy {
    padding-left: 0;
  }

  .mission-art {
    min-height: 390px;
  }

  .mission-art img {
    right: 8%;
    top: 70px;
    width: 74%;
  }

  .decor-circle {
    width: 190px;
    height: 190px;
  }

  .decor-line,
  .decor-dot {
    display: none;
  }

  .decor-slab {
    width: 310px;
    height: 300px;
  }

  .home-tech {
    display: none;
  }

  .tech-summary {
    display: block;
  }

  .home-competitiveness {
    min-height: auto;
    padding: 74px 0;
  }

  .home-competitiveness h2 {
    margin: 0 0 42px;
  }

  .strength-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .strength-grid article {
    min-height: auto;
  }

  .strength-button {
    width: min(100%, 350px);
  }

  .home-products {
    min-height: auto;
    padding: 74px 0;
  }

  .product-stage {
    flex-direction: column;
  }

  .home-product-card,
  .product-cnf {
    width: min(100%, 360px);
    height: 390px;
    margin-top: 0;
  }

  .newsletter {
    flex-direction: column;
  }

  .newsletter input,
  .newsletter .button {
    min-height: 46px;
  }
}

@media (max-width: 1120px) {
  .home-tech {
    display: none;
  }

  .tech-summary {
    display: block;
  }
}

@media (max-width: 520px) {
  .wrap,
  .nav,
  .hero-inner {
    width: min(100% - 28px, var(--max));
  }

  .logo img,
  .footer-logo {
    width: 158px;
  }

  .media-grid,
  .timeline-item,
  .highlight-item,
  .logo-lockup {
    grid-template-columns: 1fr;
  }

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

/* Original-site alignment pass */
.sub-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.sub-page .logo img {
  content: url("../assets/logo/curenology_ci_w.png");
}

.sub-page .nav {
  height: 76px;
}

.sub-page .nav-links {
  color: rgba(255, 255, 255, 0.92);
}

.sub-page .nav-links a:hover,
.sub-page .nav-links a[aria-current="page"] {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.74);
}

.page-hero {
  min-height: 440px;
  height: 440px;
  padding: 76px 0 0;
  align-items: center;
}

.page-hero video {
  opacity: 1;
}

.page-hero::after {
  background: rgba(7, 10, 12, 0.54);
}

.page-hero .wrap {
  display: grid;
  grid-template-columns: 210px minmax(0, 820px);
  gap: 80px;
  align-items: center;
}

.page-label {
  width: 134px;
  height: 134px;
  margin: 0;
  display: grid;
  place-items: center;
  justify-self: end;
  text-align: center;
  background: #0e171d;
  color: #fff;
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  line-height: 1.12;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 27px;
  line-height: 1.18;
}

.page-hero p {
  display: none;
}

.philo-hero {
  min-height: 440px;
  height: 440px;
}

.philo-hero-inner {
  min-height: 440px;
  padding-top: 76px;
}

.section-kicker {
  margin: 0 0 52px;
  font-family: "Lora", Georgia, serif;
  font-size: 18px;
  font-weight: 800;
}

.corner {
  display: block;
  width: 78px;
  height: 78px;
  border-top: 3px solid #1b1b1b;
  border-left: 3px solid #1b1b1b;
}

.sub-dark-intro {
  position: relative;
  padding: 104px 0 86px;
  color: #fff;
  background: #1b1b1b;
}

.sub-intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 570px) 300px;
  justify-content: space-between;
  align-items: center;
  min-height: 350px;
}

.sub-intro-grid .intro-line-dot {
  position: absolute;
  top: -104px;
  left: 18px;
  width: 4px;
  height: 128px;
  background: #3b00c4;
}

.sub-intro-grid .intro-line-dot::after {
  content: "";
  position: absolute;
  left: -24px;
  bottom: -48px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #3b00c4;
}

.sub-intro-grid h2 {
  margin: 0 0 36px;
  font-family: "Lora", Georgia, serif;
  font-size: 38px;
  line-height: 1.16;
}

.sub-intro-grid p {
  max-width: 520px;
  margin: 0;
  font-weight: 700;
}

.sub-intro-grid img {
  width: 300px;
  height: 320px;
  object-fit: cover;
}

.pill-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.pill-row span {
  padding: 8px 22px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

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

.competency-grid article {
  position: relative;
  min-height: 470px;
  padding: 46px 0 0 22px;
}

.competency-grid .corner {
  position: absolute;
  top: 0;
  left: 0;
}

.competency-grid .decor-circle {
  top: 12px;
  right: 120px;
  left: auto;
  width: 150px;
  height: 150px;
}

.competency-grid .decor-dot {
  top: 0;
  right: 102px;
  left: auto;
  width: 50px;
  height: 50px;
}

.competency-grid h3 {
  margin: 0 0 24px;
  font-size: 36px;
  line-height: 1.08;
}

.competency-grid strong {
  display: block;
  max-width: 390px;
  margin-bottom: 24px;
}

.competency-grid p,
.competency-grid li {
  max-width: 410px;
  font-size: 15px;
}

.competency-grid > article > img {
  width: 220px;
  height: 180px;
  margin-top: 34px;
  border-radius: 14px;
  object-fit: cover;
}

.mini-pair {
  display: flex;
  gap: 0;
  align-items: flex-end;
  margin-top: 34px;
}

.mini-pair img {
  width: 170px;
  height: 145px;
  border-radius: 14px;
  object-fit: cover;
}

.mini-pair img + img {
  margin-left: -18px;
  margin-bottom: -34px;
}

.tech-original {
  padding-top: 90px;
}

.tech-detail {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 84px;
}

.tech-detail aside {
  position: relative;
  padding-left: 52px;
}

.tech-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #3b00c4;
}

.tech-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #3b00c4;
}

.tech-detail aside h2 {
  margin: 20px 0 46px;
  color: #3b00c4;
  font-size: 28px;
  line-height: 1.14;
}

.tech-detail aside img {
  width: 220px;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
}

.tech-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 52px 70px;
}

.tech-copy-grid h3 {
  margin: 0 0 14px;
  font-size: 15px;
}

.tech-copy-grid p {
  font-size: 14px;
}

.tech-copy-grid .innovation {
  grid-column: 1 / -1;
  padding: 24px 34px;
  border-left: 4px solid #3b00c4;
  color: #3b00c4;
  background: #fff;
}

.product-original {
  padding-top: 84px;
}

.product-line {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 430px) minmax(0, 520px);
  gap: 34px;
  align-items: center;
  min-height: 360px;
  margin-bottom: 72px;
}

.product-line h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.1;
}

.product-line strong {
  display: block;
  margin-bottom: 28px;
}

.product-line p {
  max-width: 430px;
  font-size: 14px;
}

.purple {
  color: #3b00c4;
  font-weight: 800;
}

.button.small {
  min-height: 38px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 12px;
}

.product-line figure {
  position: relative;
  min-height: 300px;
  margin: 0;
}

.product-line figure > img:not(.float-product) {
  width: 290px;
  height: 220px;
  border-radius: 14px;
  object-fit: cover;
}

.product-line figure .decor-circle {
  top: -70px;
  left: -210px;
  width: 150px;
  height: 150px;
}

.product-line figure .decor-dot {
  top: -22px;
  left: -228px;
  width: 46px;
  height: 46px;
}

.float-product {
  position: absolute;
  left: -64px;
  bottom: 24px;
  width: 120px;
  height: auto;
  object-fit: contain;
}

.product-line.bio figure {
  display: flex;
  gap: 18px;
}

.product-line.bio figure img {
  width: 150px;
  height: 120px;
}

.product-milestones {
  background: #fff;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 50px;
  padding-top: 54px;
  border-top: 4px solid #242424;
}

.milestone-grid span {
  display: block;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: #e9ecef;
}

.milestone-grid .active span {
  background: #f2f2f2;
}

.milestone-grid h3 {
  margin: 0 0 18px;
  color: #b9c1ca;
  font-size: 24px;
}

.milestone-grid .active h3,
.milestone-grid .active h4 {
  color: #3b00c4;
}

.milestone-grid h4 {
  margin: 0 0 18px;
  font-size: 21px;
  line-height: 1.12;
}

.milestone-grid p {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.45;
}

.milestone-grid p:last-child {
  margin-bottom: 0;
}

.milestone-grid strong,
.milestone-grid u {
  font-weight: 800;
  text-underline-offset: 3px;
}

.contact-original {
  padding-top: 84px;
}

.contact-main-grid,
.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 520px);
  gap: 110px;
  align-items: start;
}

.contact-brand {
  position: relative;
  min-height: 350px;
  padding-top: 94px;
}

.contact-brand .corner {
  position: absolute;
  top: 0;
  left: 0;
}

.contact-brand .decor-circle {
  top: 0;
  right: 40px;
  left: auto;
  width: 190px;
  height: 190px;
}

.contact-brand .decor-dot {
  top: 150px;
  right: 110px;
  left: auto;
  width: 58px;
  height: 58px;
}

.contact-brand img {
  width: 300px;
  margin: 0 auto 32px;
}

.contact-brand p {
  max-width: 360px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
}

.contact-form .button {
  justify-self: start;
  min-width: 260px;
  border: 0;
  border-radius: 999px;
  background: #3b00c4;
}

.contact-info-grid {
  margin-top: 74px;
}

.contact-address {
  padding-left: 82px;
}

.contact-map {
  height: 390px;
  background: #f0f2f4;
}

.partner-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 60px;
  align-items: start;
  max-width: 760px;
  margin: 110px auto 54px;
  padding-top: 82px;
  border-top: 4px solid #242424;
}

.partner-block img {
  width: 180px;
  object-fit: contain;
}

.partner-offices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 80px;
  max-width: 960px;
  margin: 0 auto;
}

.lower-nav {
  height: 58px;
  background: #242424;
  color: rgba(255, 255, 255, 0.9);
}

.lower-nav .wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.lower-nav a {
  position: relative;
  padding: 20px 0;
}

.lower-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 1px;
  background: rgba(255, 255, 255, 0.58);
}

.lower-nav + .section.dark,
.lower-nav + .philo-links {
  background: #f2f2f2;
  color: #111820;
}

.lower-nav + .section.dark {
  padding: 78px 0 86px;
}

.lower-nav + .section.dark .cta-grid {
  max-width: 956px;
  margin: 0 auto;
  gap: 34px;
}

.lower-nav + .section.dark .cta-tile {
  min-height: 210px;
  border-radius: 0;
  background: transparent;
  color: #111820;
}

.lower-nav + .section.dark .cta-tile img {
  left: auto;
  right: 0;
  top: 10px;
  width: 34%;
  height: calc(100% - 20px);
  object-fit: contain;
}

.lower-nav + .section.dark .cta-tile div {
  padding: 28px 120px 24px 0;
  align-content: center;
}

.lower-nav + .section.dark .cta-tile .eyebrow {
  color: #222;
  font-family: "Lora", Georgia, serif;
  text-transform: none;
}

.lower-nav + .section.dark .cta-tile h3 {
  margin: 0 0 24px;
  font-family: "Lora", Georgia, serif;
  font-size: 22px;
  line-height: 1.16;
}

.lower-nav + .section.dark .cta-tile h3::after {
  content: "Learn more";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-height: 42px;
  margin-top: 22px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: Montserrat, Inter, "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

@media (max-width: 860px) {
  .sub-page .site-header {
    position: sticky;
    background: rgba(255, 255, 255, 0.96);
  }

  .sub-page .logo img {
    content: url("../assets/logo/curenology_ci.png");
  }

  .page-hero,
  .philo-hero {
    height: auto;
    min-height: 440px;
  }

  .page-hero .wrap,
  .sub-intro-grid,
  .tech-detail,
  .tech-copy-grid,
  .product-line,
  .contact-main-grid,
  .contact-info-grid,
  .partner-block,
  .partner-offices,
  .competency-grid,
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .page-label {
    justify-self: start;
  }
}

/* Reference screenshot tuning */
.sub-page .nav,
.sub-page .wrap,
.sub-page .philo-intro-grid,
.sub-page .philo-mission-layout,
.sub-page .philo-vision-layout,
.sub-page .philo-link-grid {
  width: min(100% - 40px, 1224px);
  max-width: 1224px;
}

.sub-page .site-header {
  z-index: 10;
}

.sub-page .nav {
  height: 68px;
}

.sub-page .logo img {
  width: 178px;
}

.page-hero,
.philo-hero {
  height: 440px;
  min-height: 440px;
  padding: 68px 0 0;
}

.philo-hero-inner,
.page-hero .wrap {
  height: 100%;
  min-height: 0;
  padding-top: 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 850px);
  gap: 72px;
  align-items: center;
}

.page-label,
.philo-label {
  width: 138px;
  height: 138px;
  justify-self: start;
  margin-left: 0;
  font-size: 18px;
}

.page-hero h1,
.philo-hero h1 {
  max-width: 860px;
  font-size: 28px;
  line-height: 1.14;
}

.philosophy-page .philo-intro {
  padding: 126px 0 86px;
}

.philosophy-page .philo-intro::before {
  left: calc((100% - min(100% - 40px, 1224px)) / 2 + 18px);
  height: 126px;
}

.philosophy-page .philo-intro::after {
  top: 114px;
  left: calc((100% - min(100% - 40px, 1224px)) / 2 - 12px);
}

.philosophy-page .philo-intro-grid {
  grid-template-columns: minmax(0, 640px) 360px;
  min-height: 440px;
  gap: 110px;
}

.philosophy-page .philo-intro h2 {
  max-width: 680px;
  font-size: 38px;
  line-height: 1.16;
}

.philosophy-page .philo-intro p {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.55;
}

.philosophy-page .philo-cell {
  width: 360px;
  height: 360px;
}

.philo-mission-light,
.philo-vision-light {
  padding: 92px 0 110px;
}

.philo-mission-layout,
.philo-vision-layout {
  grid-template-columns: 108px minmax(0, 440px) minmax(0, 620px);
  gap: 54px;
  min-height: 610px;
}

.mission-text,
.vision-text {
  padding-top: 86px;
}

.mission-text h2,
.vision-text h2 {
  max-width: 470px;
  font-size: 34px;
  line-height: 1.14;
}

.mission-text p,
.vision-text p {
  max-width: 470px;
  font-size: 15px;
  line-height: 1.55;
}

.mission-collage,
.vision-collage {
  min-height: 610px;
}

.mission-collage .decor-circle {
  left: 72px;
  width: 210px;
  height: 210px;
}

.mission-collage .decor-dot {
  top: 98px;
  left: 252px;
  width: 58px;
  height: 58px;
}

.collage-a {
  right: 44px;
  top: 46px;
  width: 250px;
  height: 420px;
}

.collage-b {
  left: 10px;
  bottom: 54px;
  width: 380px;
  height: 210px;
}

.collage-c {
  left: 160px;
  top: 160px;
  width: 190px;
  height: 190px;
}

.vision-collage .decor-circle {
  top: 250px;
  left: 0;
  width: 210px;
  height: 210px;
}

.vision-collage .decor-dot {
  top: 268px;
  left: -28px;
  width: 58px;
  height: 58px;
}

.vision-a {
  right: 0;
  top: 30px;
  width: 360px;
  height: 300px;
}

.vision-b {
  right: 0;
  bottom: 22px;
  width: 600px;
  height: 235px;
}

.product-original {
  padding: 110px 0 26px;
}

.product-line {
  grid-template-columns: 46px minmax(0, 430px) minmax(0, 540px);
  gap: 34px;
  min-height: 350px;
  margin-bottom: 92px;
}

.product-line figure {
  min-height: 280px;
}

.product-line figure > img:not(.float-product) {
  width: 320px;
  height: 220px;
}

.product-line figure .decor-circle {
  left: -230px;
  width: 160px;
  height: 160px;
}

.product-line figure .decor-dot {
  left: -245px;
}

.product-line.bio figure {
  align-items: center;
}

.product-line.bio figure img {
  width: 160px;
  height: 128px;
}

.product-page .pipeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 86px;
}

.product-page .section:not(.product-original):not(.dark):not(.product-milestones):not(.related-cta) {
  padding-top: 0;
}

.product-milestones {
  padding-top: 92px;
}

.product-milestones .section-title h2 {
  display: none;
}

.milestone-grid {
  gap: 72px;
}

.contact-original {
  padding: 110px 0 78px;
}

.contact-main-grid,
.contact-info-grid {
  grid-template-columns: minmax(0, 510px) minmax(0, 560px);
  gap: 116px;
}

.contact-brand img {
  width: 330px;
}

.contact-map {
  height: 390px;
}

.partner-block {
  max-width: 820px;
}

.partner-offices {
  max-width: 940px;
}

.sub-dark-intro {
  padding: 118px 0 94px;
}

.sub-intro-grid {
  grid-template-columns: minmax(0, 620px) 330px;
  min-height: 410px;
  gap: 96px;
}

.sub-intro-grid h2 {
  max-width: 650px;
  font-size: 38px;
}

.sub-intro-grid img {
  width: 330px;
  height: 330px;
}

.sub-intro-grid .intro-line-dot {
  top: -118px;
  left: 18px;
  height: 142px;
}

.tech-detail {
  grid-template-columns: 370px minmax(0, 720px);
  gap: 92px;
}

.tech-original {
  padding: 92px 0;
}

.technology-page .section.alt,
.technology-page .section {
  padding-top: 92px;
  padding-bottom: 92px;
}

.lower-nav {
  height: 58px;
}

.lower-nav + .section.dark,
.lower-nav + .philo-links {
  padding-top: 84px;
  padding-bottom: 92px;
}

.lower-nav + .section.dark .cta-grid,
.philo-link-grid {
  max-width: 1050px;
}

.lower-nav + .section.dark .cta-tile,
.philo-link-card {
  min-height: 220px;
}

.site-footer {
  padding-top: 72px;
}

.site-footer .wrap {
  width: min(100% - 40px, 1224px);
  max-width: 1224px;
}

.footer-grid {
  grid-template-columns: minmax(0, 420px) minmax(0, 520px);
  justify-content: space-between;
}

.related-cta {
  padding: 86px 0 94px;
  background: #f2f2f2;
  color: #111820;
}

.related-cta .cta-grid {
  max-width: 1050px;
  margin: 0 auto;
  gap: 36px;
}

.related-cta .cta-tile {
  min-height: 220px;
  border-radius: 0;
  background: transparent;
  color: #111820;
}

.related-cta .cta-tile img {
  left: auto;
  right: 0;
  top: 0;
  width: 44%;
  height: 100%;
  object-fit: contain;
}

.related-cta .cta-tile div {
  padding: 28px 128px 24px 0;
  align-content: center;
}

.related-cta .cta-tile .eyebrow {
  color: #222;
  font-family: "Lora", Georgia, serif;
  text-transform: none;
}

.related-cta .cta-tile h3 {
  margin: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 24px;
  line-height: 1.14;
}

.related-cta .cta-tile h3::after {
  content: "Learn more";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  min-height: 44px;
  margin-top: 24px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-family: Montserrat, Inter, "Pretendard", "Noto Sans KR", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.product-page .page-hero {
  margin-bottom: 0;
}

.product-original .wrap {
  display: grid;
  grid-template-columns: 1fr;
}

.product-page .section-kicker {
  width: 100%;
  max-width: 930px;
  margin: 0 auto 80px;
}

.product-line {
  width: 100%;
  max-width: 930px;
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: 34px minmax(0, 440px) minmax(0, 390px);
  gap: 26px 42px;
}

.product-line h2 {
  font-size: 27px;
}

.product-line figure {
  justify-self: end;
}

.product-line figure > img:not(.float-product) {
  width: 270px;
  height: 218px;
}

.product-line figure .decor-circle {
  left: -245px;
  top: -82px;
}

.product-line figure .decor-dot {
  left: -260px;
  top: -28px;
}

.product-line.bio {
  margin-bottom: 34px;
}

.product-line.bio figure {
  min-height: 150px;
  justify-self: end;
}

.product-pipeline {
  padding: 0 0 104px;
  background: #fff;
}

.product-pipeline .wrap {
  max-width: 930px;
}

.product-pipeline .pipeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 72px;
}

.product-pipeline .pipeline {
  padding: 0;
  border: 0;
}

.product-pipeline .pipeline h3 {
  color: #3b00c4;
  font-size: 15px;
  line-height: 1.25;
}

.product-pipeline .pipeline p {
  color: #111820;
  font-size: 13px;
  line-height: 1.45;
}

.product-milestones .wrap {
  max-width: 930px;
}

.milestone-grid {
  gap: 54px;
}

.tech-page-block {
  padding: 92px 0;
  background: #fff;
}

.tech-page-block.tech-reverse {
  background: #f3f3f3;
}

.tech-page-grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 710px);
  gap: 84px;
  align-items: start;
}

.tech-side {
  position: relative;
  padding-left: 60px;
  min-height: 640px;
}

.tech-side .tech-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #3b00c4;
}

.tech-side .tech-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -19px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #3b00c4;
}

.tech-side > p {
  margin: 0 0 22px;
  font-family: "Lora", Georgia, serif;
  font-size: 14px;
  font-weight: 800;
}

.tech-side h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 46px;
  color: #3b00c4;
  font-size: 24px;
  line-height: 1.15;
}

.tech-side .decor-circle {
  top: 52px;
  left: 132px;
  width: 132px;
  height: 132px;
}

.tech-side img {
  position: relative;
  z-index: 1;
  width: 220px;
  height: 220px;
  border-radius: 12px;
  object-fit: cover;
}

.tech-info {
  display: grid;
  gap: 34px;
}

.tech-info-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
}

.tech-info h3 {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.25;
}

.tech-info h4 {
  margin: 0 0 10px;
}

.tech-info p,
.tech-info li {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.innovation-box {
  padding: 22px 28px;
  border-left: 4px solid #3b00c4;
  color: #3b00c4;
  background: #fff;
}

.ecm-compare {
  padding-top: 28px;
  border-top: 3px solid #202020;
  border-bottom: 3px solid #202020;
}

.ecm-compare > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px;
  padding: 22px 0 34px;
  border-top: 1px dashed #bbb;
}

.reverse-grid {
  display: grid;
  grid-template-columns: minmax(0, 470px) minmax(0, 470px);
  justify-content: space-between;
  gap: 90px;
}

.reverse-grid h2 {
  margin: 0 0 52px;
  font-size: 18px;
  line-height: 1.35;
}

.reverse-grid h3 {
  margin: 0 0 18px;
  font-size: 16px;
}

.reverse-grid p {
  font-size: 13px;
}

.reverse-visual img {
  width: 330px;
  min-height: 360px;
  margin-left: auto;
  object-fit: contain;
  background: #fff;
}

.bubble-diagram {
  position: relative;
  width: 430px;
  height: 390px;
  margin: 44px 0 0 auto;
}

.bubble-diagram span,
.bubble-diagram strong,
.bubble-diagram em {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  font-style: normal;
  line-height: 1.24;
}

.bubble-diagram span {
  width: 205px;
  height: 205px;
  border-radius: 50%;
  background: repeating-linear-gradient(135deg, rgba(16, 24, 32, 0.1) 0 1px, rgba(255, 255, 255, 0.72) 1px 4px);
  color: #3b00c4;
  font-size: 18px;
  font-weight: 800;
}

.bubble-diagram span:nth-child(1) { left: 0; top: 86px; }
.bubble-diagram span:nth-child(2) { left: 112px; top: 0; }
.bubble-diagram span:nth-child(3) { right: 0; top: 86px; }

.bubble-diagram strong {
  left: 122px;
  top: 164px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: #3b00c4;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.bubble-diagram em {
  left: 46px;
  right: 0;
  bottom: -2px;
  display: block;
  color: #222;
  font-size: 18px;
  text-align: left;
}

@media (max-width: 860px) {
  .bubble-diagram {
    width: min(100%, 360px);
    height: 350px;
    margin: 36px auto 0;
  }

  .bubble-diagram span {
    width: 166px;
    height: 166px;
    font-size: 16px;
  }

  .bubble-diagram span:nth-child(1) { left: 0; top: 70px; }
  .bubble-diagram span:nth-child(2) { left: calc(50% - 83px); top: 0; }
  .bubble-diagram span:nth-child(3) { right: 0; top: 70px; }

  .bubble-diagram strong {
    left: calc(50% - 76px);
    top: 132px;
    width: 152px;
    height: 152px;
    font-size: 15px;
  }

  .bubble-diagram em {
    left: 0;
    bottom: 0;
    font-size: 16px;
  }
}

/* Density pass: make the in-grid content feel as full as the reference site. */
.sub-page .section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.sub-page .section-kicker {
  margin-bottom: 52px;
}

.page-hero .wrap,
.philo-hero-inner {
  grid-template-columns: 180px minmax(0, 920px);
  gap: 64px;
}

.page-hero h1,
.philo-hero h1 {
  max-width: 920px;
}

.sub-dark-intro {
  padding: 96px 0 72px;
}

.sub-intro-grid {
  grid-template-columns: minmax(0, 700px) 390px;
  gap: 72px;
  min-height: 360px;
}

.sub-intro-grid .intro-line-dot {
  top: -96px;
  height: 122px;
}

.sub-intro-grid h2 {
  max-width: 720px;
  margin-bottom: 24px;
}

.sub-intro-grid p {
  max-width: 680px;
}

.sub-intro-grid img {
  width: 390px;
  height: 320px;
}

.philosophy-page .philo-intro {
  padding: 104px 0 72px;
}

.philosophy-page .philo-intro::before {
  height: 104px;
}

.philosophy-page .philo-intro::after {
  top: 92px;
}

.philosophy-page .philo-intro-grid {
  grid-template-columns: minmax(0, 720px) 390px;
  gap: 80px;
  min-height: 380px;
}

.philosophy-page .philo-cell {
  width: 390px;
  height: 360px;
}

.philo-mission-light,
.philo-vision-light {
  padding: 72px 0 82px;
}

.philo-mission-layout,
.philo-vision-layout {
  grid-template-columns: 90px minmax(0, 470px) minmax(0, 650px);
  gap: 40px;
  min-height: 560px;
}

.mission-text,
.vision-text {
  padding-top: 72px;
}

.mission-text h2,
.vision-text h2 {
  max-width: 500px;
  font-size: 36px;
}

.mission-collage,
.vision-collage {
  min-height: 560px;
}

.collage-a {
  right: 12px;
  width: 280px;
  height: 430px;
}

.collage-b {
  left: 0;
  bottom: 36px;
  width: 410px;
  height: 225px;
}

.collage-c {
  left: 178px;
  top: 146px;
  width: 205px;
  height: 205px;
}

.vision-a {
  width: 400px;
  height: 318px;
}

.vision-b {
  width: 650px;
  height: 250px;
}

.competency-grid {
  gap: 82px 88px;
}

.competency-grid article {
  min-height: 430px;
}

.competency-grid > article > img {
  width: 260px;
  height: 200px;
}

.mini-pair img {
  width: 190px;
  height: 150px;
}

.product-original {
  padding-top: 82px;
}

.product-page .section-kicker,
.product-line,
.product-pipeline .wrap,
.product-milestones .wrap {
  max-width: 1080px;
}

.product-page .section-kicker {
  margin-bottom: 50px;
}

.product-line {
  grid-template-columns: 34px minmax(0, 480px) minmax(0, 520px);
  gap: 24px 44px;
  min-height: 320px;
  margin-bottom: 58px;
}

.product-line h2 {
  font-size: 30px;
}

.product-line strong {
  margin-bottom: 18px;
}

.product-line p {
  max-width: 470px;
  font-size: 14px;
}

.product-line figure {
  min-height: 260px;
  justify-self: stretch;
}

.product-line figure > img:not(.float-product) {
  width: 360px;
  height: 235px;
}

.product-line figure .decor-circle {
  left: -210px;
  top: -64px;
  width: 172px;
  height: 172px;
}

.product-line figure .decor-dot {
  left: -228px;
  top: -8px;
}

.product-line.bio {
  min-height: 220px;
  margin-bottom: 18px;
}

.product-line.bio figure {
  min-height: 170px;
  align-items: start;
}

.product-line.bio figure img {
  width: 190px;
  height: 150px;
}

.product-pipeline {
  padding-bottom: 76px;
}

.product-pipeline .pipeline-grid {
  gap: 48px;
}

.product-milestones {
  padding-top: 72px;
  padding-bottom: 92px;
}

.milestone-grid {
  gap: 38px;
}

.tech-page-block {
  padding: 72px 0;
}

.tech-page-grid {
  grid-template-columns: 360px minmax(0, 790px);
  gap: 58px;
}

.tech-side {
  min-height: 560px;
}

.tech-side h2 {
  font-size: 26px;
}

.tech-side img {
  width: 245px;
  height: 245px;
}

.tech-info-row {
  gap: 50px;
}

.tech-info {
  gap: 26px;
}

.reverse-grid {
  grid-template-columns: minmax(0, 520px) minmax(0, 540px);
  gap: 70px;
}

.reverse-visual img {
  width: 390px;
}

.contact-original {
  padding-top: 82px;
}

.contact-main-grid,
.contact-info-grid {
  grid-template-columns: minmax(0, 540px) minmax(0, 590px);
  gap: 72px;
}

.contact-brand {
  min-height: 320px;
}

.contact-brand img {
  width: 360px;
}

.partner-block,
.partner-offices {
  max-width: 1040px;
}

.related-cta {
  padding: 64px 0 70px;
}

.related-cta .cta-grid,
.philo-link-grid {
  max-width: 1120px;
  gap: 28px;
}

.related-cta .cta-tile,
.philo-link-card {
  min-height: 200px;
}

.site-footer {
  padding-top: 58px;
}

.philo-link-card h3,
.related-cta .cta-tile h3 {
  line-height: 1.12;
}

.home-hero h1 {
  max-width: 1120px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  line-height: 1.2;
  font-weight: 800;
}

@media (max-width: 860px) {
  .home-hero h1 {
    font-size: 38px;
    line-height: 1.14;
  }
}

@media (max-width: 520px) {
  .home-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 860px) {
  .sub-page .nav,
  .sub-page .wrap,
  .sub-page .philo-intro-grid,
  .sub-page .philo-mission-layout,
  .sub-page .philo-vision-layout,
  .sub-page .philo-link-grid {
    width: min(100% - 28px, 1224px);
  }

  .philo-hero-inner,
  .page-hero .wrap,
  .philosophy-page .philo-intro-grid,
  .philo-mission-layout,
  .philo-vision-layout,
  .product-line,
  .contact-main-grid,
  .contact-info-grid,
  .sub-intro-grid,
  .tech-detail,
  .product-page .pipeline-grid,
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .page-label,
  .philo-label {
    width: 118px;
    height: 118px;
  }

  .mission-collage img,
  .vision-collage img,
  .philo-cell {
    position: static;
    width: 100%;
    height: auto;
  }
}

/* Mobile navigation final pass */
@media (max-width: 860px) {
  .home-page .site-header,
  .sub-page .site-header,
  .philosophy-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .home-page .nav,
  .sub-page .nav,
  .philosophy-page .nav {
    width: min(100% - 48px, 1224px);
    height: 82px;
    position: relative;
    z-index: 42;
  }

  .home-page .logo img,
  .sub-page .logo img,
  .philosophy-page .logo img {
    content: url("../assets/logo/curenology_ci_w.png");
    width: 170px;
  }

  .menu-toggle {
    display: inline-block;
    position: relative;
    z-index: 45;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: transparent;
    font-size: 0;
    overflow: hidden;
  }

  .menu-toggle::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 8px;
    width: 26px;
    height: 18px;
    background:
      linear-gradient(#fff, #fff) 0 0 / 26px 2px no-repeat,
      linear-gradient(#fff, #fff) 0 8px / 26px 2px no-repeat,
      linear-gradient(#fff, #fff) 0 16px / 26px 2px no-repeat;
  }

  .menu-toggle::after {
    content: "";
    display: none;
    position: absolute;
    left: 6px;
    top: 16px;
    width: 24px;
    height: 2px;
    background: #fff;
    transform: rotate(-45deg);
  }

  .nav-open .menu-toggle::before {
    left: 6px;
    top: 16px;
    width: 24px;
    height: 2px;
    background: #fff;
    transform: rotate(45deg);
  }

  .nav-open .menu-toggle::after {
    display: block;
  }

  .nav-links,
  .home-page .nav-links,
  .sub-page .nav-links,
  .philosophy-page .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: 66.666vw;
    min-width: 250px;
    max-width: 360px;
    height: min(100vh, 440px);
    padding: 96px 38px 42px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 14px;
    color: #fff;
    background: rgba(3, 7, 10, 0.88);
    border: 0;
    box-shadow: none;
    transform: translateY(-105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.34s ease, opacity 0.24s ease;
  }

  .nav-links.open,
  .home-page .nav-links.open,
  .sub-page .nav-links.open,
  .philosophy-page .nav-links.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .home-page .nav-links a,
  .sub-page .nav-links a,
  .philosophy-page .nav-links a {
    padding: 2px 0 4px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-align: right;
    border-bottom: 0;
  }

  .nav-links a[aria-current="page"],
  .home-page .nav-links a[aria-current="page"],
  .sub-page .nav-links a[aria-current="page"],
  .philosophy-page .nav-links a[aria-current="page"] {
    color: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  }
}

@media (max-width: 520px) {
  .home-page .nav,
  .sub-page .nav,
  .philosophy-page .nav {
    width: min(100% - 38px, 1224px);
  }

  .home-page .logo img,
  .sub-page .logo img,
  .philosophy-page .logo img {
    width: 150px;
  }

  .nav-links,
  .home-page .nav-links,
  .sub-page .nav-links,
  .philosophy-page .nav-links {
    width: 68vw;
    min-width: 232px;
    padding-right: 28px;
  }
}

@media (max-width: 860px) {
  .nav-links .language-switcher,
  .home-page .nav-links .language-switcher,
  .sub-page .nav-links .language-switcher,
  .philosophy-page .nav-links .language-switcher {
    width: auto;
    display: grid;
    justify-items: end;
    color: #fff;
  }

  .language-switcher button,
  .home-page .language-switcher button,
  .sub-page .language-switcher button,
  .philosophy-page .language-switcher button {
    padding: 2px 0 4px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
  }

  .language-menu,
  .home-page .language-menu,
  .sub-page .language-menu,
  .philosophy-page .language-menu {
    position: static;
    min-width: 0;
    padding: 4px 0 0;
    justify-items: end;
    background: transparent;
    color: #fff;
    box-shadow: none;
  }

  .language-menu a,
  .home-page .language-menu a,
  .sub-page .language-menu a,
  .philosophy-page .language-menu a {
    padding: 4px 0;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.84);
  }
}

/* Mobile sub-page hero alignment */
@media (max-width: 860px) {
  .sub-page .page-hero,
  .sub-page .philo-hero {
    height: 435px;
    min-height: 435px;
    padding: 0;
  }

  .sub-page .page-hero .wrap,
  .sub-page .philo-hero-inner {
    width: min(100% - 40px, 1224px);
    height: 100%;
    min-height: 0;
    padding: 74px 0 42px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: center;
    justify-items: center;
    gap: 28px;
    text-align: center;
  }

  .sub-page .page-label,
  .sub-page .philo-label {
    width: 116px;
    height: 116px;
    margin: 0;
    justify-self: center;
    font-size: 16px;
    line-height: 1.18;
  }

  .sub-page .page-hero h1,
  .sub-page .philo-hero h1 {
    max-width: 340px;
    margin: 0 auto;
    font-size: 21px;
    line-height: 1.12;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .sub-page .page-hero,
  .sub-page .philo-hero {
    height: 432px;
    min-height: 432px;
  }

  .sub-page .page-hero .wrap,
  .sub-page .philo-hero-inner {
    width: min(100% - 32px, 1224px);
    padding-top: 70px;
    padding-bottom: 38px;
    gap: 26px;
  }

  .sub-page .page-hero h1,
  .sub-page .philo-hero h1 {
    max-width: 320px;
    font-size: 20px;
  }
}

/* Highlight mobile intro fix */
@media (max-width: 860px) {
  .highlight-page .sub-dark-intro {
    padding-top: 112px;
  }

  .highlight-page .sub-intro-grid {
    position: relative;
    gap: 32px;
  }

  .highlight-page .sub-intro-grid .intro-line-dot {
    top: -112px;
    left: 24px;
    height: 88px;
  }

  .highlight-page .sub-intro-grid .intro-line-dot::after {
    left: -26px;
    bottom: -54px;
  }
}

@media (max-width: 520px) {
  .highlight-page .sub-dark-intro {
    padding-top: 118px;
  }

  .highlight-page .sub-intro-grid .intro-line-dot {
    top: -118px;
    left: 28px;
    height: 90px;
  }

  .highlight-page .sub-intro-grid h2 {
    padding-top: 14px;
  }
}

/* Philosophy mission collage image placement */
.philosophy-page .mission-collage .decor-circle {
  left: 74px;
  top: 4px;
  width: 210px;
  height: 210px;
}

.philosophy-page .mission-collage .decor-dot {
  left: 255px;
  top: 92px;
  width: 58px;
  height: 58px;
  z-index: 4;
}

.philosophy-page .collage-a {
  right: 14px;
  top: 52px;
  width: 280px;
  height: 430px;
  z-index: 1;
}

.philosophy-page .collage-b {
  left: 38px;
  bottom: 34px;
  width: 430px;
  height: 250px;
  z-index: 2;
}

.philosophy-page .collage-c {
  left: 132px;
  top: 104px;
  width: 190px;
  height: 190px;
  z-index: 3;
}

/* Technology Venn diagram legibility pass */
.technology-page .bubble-diagram {
  width: 440px;
  height: 450px;
  margin-top: 36px;
  overflow: visible;
}

.technology-page .bubble-diagram span {
  z-index: 1;
}

.technology-page .bubble-diagram span:nth-child(1) {
  left: 0;
  top: 88px;
}

.technology-page .bubble-diagram span:nth-child(2) {
  left: 116px;
  top: 0;
  z-index: 2;
}

.technology-page .bubble-diagram span:nth-child(3) {
  right: 0;
  top: 88px;
}

.technology-page .bubble-diagram strong {
  left: 124px;
  top: 170px;
  z-index: 3;
}

.technology-page .bubble-diagram em {
  left: 0;
  right: 0;
  top: 382px;
  bottom: auto;
  z-index: 4;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .technology-page .bubble-diagram {
    width: min(100%, 360px);
    height: 390px;
  }

  .technology-page .bubble-diagram span:nth-child(1) {
    left: 0;
    top: 72px;
  }

  .technology-page .bubble-diagram span:nth-child(2) {
    left: calc(50% - 83px);
    top: 0;
  }

  .technology-page .bubble-diagram span:nth-child(3) {
    right: 0;
    top: 72px;
  }

  .technology-page .bubble-diagram strong {
    left: calc(50% - 76px);
    top: 138px;
  }

  .technology-page .bubble-diagram em {
    top: 330px;
    font-size: 16px;
  }
}

/* Product page CTA spacing */
.product-page .related-cta {
  padding: 96px 0 70px;
}

@media (max-width: 860px) {
  .product-page .related-cta {
    padding: 72px 0 58px;
  }
}

/* Language selector final placement */
.nav-links > .language-switcher {
  margin-left: 16px;
}

@media (max-width: 860px) {
  .home-page .nav,
  .sub-page .nav,
  .philosophy-page .nav {
    justify-content: flex-start;
  }

  .nav-links > .language-switcher {
    display: none !important;
  }

  .nav > .mobile-language-switcher {
    display: inline-flex;
    margin-left: auto;
    margin-right: 18px;
    z-index: 45;
  }

  .mobile-language-switcher button,
  .home-page .mobile-language-switcher button,
  .sub-page .mobile-language-switcher button,
  .philosophy-page .mobile-language-switcher button {
    padding: 4px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
  }

  .mobile-language-switcher .language-menu,
  .home-page .mobile-language-switcher .language-menu,
  .sub-page .mobile-language-switcher .language-menu,
  .philosophy-page .mobile-language-switcher .language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 34px;
    padding: 0;
    display: grid;
    justify-items: end;
    background: transparent;
    color: #fff;
    box-shadow: none;
  }

  .mobile-language-switcher .language-menu a,
  .home-page .mobile-language-switcher .language-menu a,
  .sub-page .mobile-language-switcher .language-menu a,
  .philosophy-page .mobile-language-switcher .language-menu a {
    padding: 4px 0;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
  }
}
