:root {
  --white: #FFFFFF;
  --black: #000000;
  --muted: #6B6B6B;
  --border-grey: #E5E5E5;
  --nav-inner-height: 66px;
  --nav-shell-height: 82px;
  --nav-shell-padding: 8px;
  --qim-glow-violet: 124, 58, 237;
  --qim-glow-teal: 20, 184, 166;
  --qim-glow-ember: 244, 114, 62;
  --qim-card-glow: var(--qim-glow-violet);
  --qim-motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FFFFFF;
  color: #000000;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, a, button, input, textarea, summary, li, span {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 300;
  letter-spacing: 0;
}

a { color: inherit; }
.container { width: min(1200px, calc(100% - 48px)); margin: 0 auto; }
.white { background: #FFFFFF; color: #000000; }
.dark { background: #000000; color: #FFFFFF; }
.muted { color: var(--muted); }
main { padding-top: var(--nav-shell-height); }

/* QIM premium float-in motion */
.qim-float-in {
  --qim-float-distance: 26px;
  --qim-float-blur: 10px;
  opacity: 0;
  transform: translate3d(0, var(--qim-float-distance), 0) scale(0.985);
  filter: blur(var(--qim-float-blur));
  will-change: opacity, transform, filter;
}

.qim-float-in.qim-float-card {
  --qim-float-distance: 18px;
  --qim-float-blur: 8px;
}

.qim-float-in.is-visible {
  animation: qim-premium-float-in 0.92s var(--qim-motion-ease) both;
  animation-delay: var(--qim-float-delay, 0ms);
}

@keyframes qim-premium-float-in {
  from {
    opacity: 0;
    transform: translate3d(0, var(--qim-float-distance), 0) scale(0.985);
    filter: blur(var(--qim-float-blur));
  }
  62% {
    opacity: 1;
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .qim-float-in,
  .qim-float-in.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none !important;
  }
}

/* Navbar */
.navbar-shell {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: var(--nav-shell-height);
  padding-top: var(--nav-shell-padding);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #FFFFFF;
  pointer-events: none;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), top 0.42s cubic-bezier(0.22, 1, 0.36, 1), height 0.42s cubic-bezier(0.22, 1, 0.36, 1), padding 0.42s cubic-bezier(0.22, 1, 0.36, 1), background 0.28s ease;
  will-change: transform, top, height, padding;
}

.navbar-shell.nav-hidden { transform: translateY(-130%); }

.navbar-shell.is-scrolled {
  top: 20px;
  height: var(--nav-inner-height);
  padding-top: 0;
  background: transparent;
}

.navbar-inner {
  width: 95%;
  max-width: 1440px;
  height: var(--nav-inner-height);
  border-radius: 4px;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 14px 8px 18px;
  pointer-events: auto;
  transition: background 0.22s ease, color 0.22s ease;
  border: none;
  box-shadow: none;
}

.navbar-shell[data-theme="dark"] .navbar-inner {
  background: rgba(18,18,24,0.72);
  color: rgba(255,255,255,0.94);
}

.navbar-shell[data-theme="light"] .navbar-inner {
  background: rgba(255,255,255,0.85);
  color: #111111;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 210px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.brand.logo-pop { transform: scale(1.06); }
.logo-img { width: auto; height: 42px; display: block; object-fit: contain; }

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.16;
  font-size: 13.2px;
  font-weight: 400;
  white-space: nowrap;
}

.brand-text span {
  font-weight: 400;
}

.brand-text span:nth-child(2) {
  opacity: 0.8;
}

.navbar-shell.is-scrolled .brand-text {
  flex-direction: row;
  line-height: 1.02;
  font-size: 13px;
  font-weight: 400;
}

.navbar-shell.is-scrolled .brand-text span { display: none; font-weight: 400; }
.navbar-shell.is-scrolled .brand-text::before { content: attr(data-short); }

.main-nav {
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item { position: relative; }
.nav-link, .nav-trigger, .nav-list a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  background: transparent;
  transition: background 0.18s ease;
}

.navbar-shell[data-theme="dark"] .nav-link:hover,
.navbar-shell[data-theme="dark"] .nav-link.active {
  background: transparent;
  border-color: currentColor;
}

.navbar-shell[data-theme="light"] .nav-link:hover,
.navbar-shell[data-theme="light"] .nav-link.active {
  background: transparent;
  border-color: currentColor;
}

.nav-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  opacity: 0;
  transform: translateY(-1px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-chevron svg {
  display: block;
}

.nav-link:hover .nav-chevron,
.nav-link.active .nav-chevron,
.nav-item.dropdown-open .nav-chevron {
  opacity: 1;
  transform: translateY(1px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 220px;
  padding: 8px;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: none;
  box-shadow: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.navbar-shell[data-theme="dark"] .dropdown { background: rgba(12,12,18,0.88); }
.navbar-shell[data-theme="light"] .dropdown { background: rgba(255,255,255,0.92); }
.nav-item.dropdown-open .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown a {
  display: flex;
  width: 100%;
  border-radius: 999px;
  white-space: nowrap;
  border: 1.5px solid transparent;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 1px 0;
  transition: border-color 0.18s ease, color 0.18s ease, padding 0.18s ease, margin 0.18s ease;
}

.dropdown-link.active-sub {
  padding-top: 14px;
  padding-bottom: 14px;
  margin-top: 5px;
  margin-bottom: 5px;
}

.navbar-shell[data-theme="dark"] .dropdown-link:hover,
.navbar-shell[data-theme="dark"] .dropdown-link.active-sub {
  background: transparent;
  border-color: currentColor;
}

.navbar-shell[data-theme="light"] .dropdown-link:hover,
.navbar-shell[data-theme="light"] .dropdown-link.active-sub {
  background: transparent;
  border-color: currentColor;
}

.contact-button {
  background: #FFFFFF;
  color: #000000 !important;
}

.navbar-shell[data-theme="dark"] .contact-button {
  background: transparent;
  color: rgba(255,255,255,0.94) !important;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 22px;
  cursor: pointer;
}

.mobile-nav { display: none; }

/* Pill buttons — dimensions are locked across default/hover/active/focus.
   Only the inner .pill-arrow-icon and .pill-arrow-small svg animate. */
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #E5E5E5;
  border-radius: 999px;
  padding: 18px 32px;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  line-height: 1;
  text-decoration: none;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.02em;
  transform: none;
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.pill-button:hover,
.pill-button:focus,
.pill-button:focus-visible,
.pill-button:active { transform: none; }

.pill-button:focus { outline: none; }
.pill-button:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* Tech label and points */
.tech-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
  background: #F0F0F0;
  padding: 6px 14px;
  border-radius: 999px;
  margin: 4px 0 16px;
}

.section-subtitle {
  max-width: 500px;
  margin: 16px auto 12px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.tech-points {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 500px;
  text-align: left;
}

.tech-points li {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
  padding-left: 18px;
  position: relative;
  margin: 0;
}

.tech-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
}

.pill-button-solid {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.pill-button-solid:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
}

.technology-cta-button:hover {
  transform: none;
}

.technology-cta-button:active {
  transform: none;
}

.pill-arrow {
  position: relative;
  width: 56px;
  height: 28px;
  border-radius: 999px;
  border: 1.25px solid currentColor;
  overflow: hidden;
  flex-shrink: 0;
  box-sizing: border-box;

  display: flex;
  align-items: center;
}

.pill-arrow-icon {
  position: absolute;
  left: 10px;
  top: 16%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transform: translateX(0);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pill-button:hover .pill-arrow-icon {
  transform: translateX(20px);
}

.pill-arrow-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  overflow: visible;
}

.pill-button span {
  line-height: 1;
  display: block;
}

.pill-arrow-small {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  border: 1.25px solid currentColor;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
  color: inherit;
  text-decoration: none;
  transform: none;
  transition: border-color 0.22s ease, color 0.22s ease;
}

.pill-arrow-small:hover,
.pill-arrow-small:focus,
.pill-arrow-small:focus-visible,
.pill-arrow-small:active { transform: none; }

.pill-arrow-small svg {
  position: absolute;
  left: 7px;
  top: 50%;
  width: 15px;
  height: 15px;
  display: block;
  transform: translate3d(0, -50%, 0);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pill-arrow-small:hover svg { transform: translate3d(15px, -50%, 0); }

/* Hero and content */
.hero, .page-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-shell-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
  color: #FFFFFF;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(255,255,255,0.04) 0%, rgba(0,0,0,0) 55%),
    #000000;
  z-index: 0;
  pointer-events: none;
}

.page-hero.compact { padding-top: 0; }
.research-hero {
  width: 100vw;
  min-height: calc(100vh - var(--nav-shell-height));
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: #000000;
  overflow: hidden;
  position: relative;
  padding-top: 0;
}

.research-hero .particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: normal;
  background: transparent;
}

.research-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.particle-canvas,
.particles-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.88; mix-blend-mode: screen; pointer-events: none; }

.dot-orbit-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
  pointer-events: none;
  background: transparent;
}

.hero .hero-content,
.page-hero .hero-content { z-index: 3; }

.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 72px;
  width: 34px;
  height: 68px;
  border: none;
  border-radius: 999px;
  background: #FFFFFF;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 9px;
  font-weight: 400;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.scroll-top-btn::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-left: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 8px;
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-top-btn.is-visible:hover {
  transform: translateY(-2px);
}

/* Company pages */
.company-page {
  background: #FFFFFF;
  color: #000000;
}

.company-intro {
  padding: clamp(82px, 11vw, 128px) 0 70px;
}

.company-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: end;
}

.company-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 6px 12px;
  border: 1px solid #E6E6E6;
  background: #FAFAFA;
  color: #555555;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-intro h1,
.company-section-title h2 {
  margin: 18px 0 0;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.company-intro h1 {
  max-width: 970px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
}

.company-intro-copy {
  margin: 0;
  color: #4F4F4F;
  font-size: 16px;
  line-height: 1.8;
}

.company-stat-panel {
  border-radius: 8px;
  background: #000000;
  color: #FFFFFF;
  padding: 26px;
  box-shadow: 0 18px 44px -34px rgba(0,0,0,0.42);
}

.company-stat-panel span {
  display: block;
  color: rgba(255,255,255,0.56);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-stat-panel strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.96;
  font-weight: 300;
}

.company-band {
  padding: 84px 0;
}

.company-band.dark {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent 32%),
    radial-gradient(ellipse 70% 48% at 50% 0%, rgba(124,58,237,0.07), transparent 72%),
    #000000;
  color: #FFFFFF;
}

.company-band.dark.company-band-continuation {
  padding-top: 0;
  background: #000000;
}

.company-section-title {
  max-width: 820px;
  margin-bottom: 34px;
}

.company-section-title h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
}

.company-section-title p {
  margin: 18px 0 0;
  color: #5C5C5C;
  font-size: 16px;
  line-height: 1.78;
}

.company-band.dark .company-section-title p {
  color: rgba(255,255,255,0.66);
}

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

.company-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-line-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 34px;
}

.company-line-list.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-line-list.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-profile-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.company-profile-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-profile {
  min-height: 360px;
  padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.company-profile:nth-child(odd) {
  border-right: 1px solid #E3E3E3;
}

.company-profile:nth-child(n+3) {
  border-top: 1px solid #E3E3E3;
  padding-top: clamp(44px, 5vw, 64px);
}

.company-profile-media {
  width: min(136px, 50%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.92), transparent 32%),
    linear-gradient(145deg, #F5F5F5, #E8E8E8);
  color: #111111;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.company-profile-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.company-profile h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  font-weight: 400;
}

.company-profile p {
  margin: 0;
  color: #565656;
  line-height: 1.7;
  font-size: 14.5px;
}

.company-line-item {
  min-height: 170px;
  padding: 0 0 28px;
  border-bottom: 1px solid #E3E3E3;
}

.company-band.dark .company-line-item {
  border-bottom-color: rgba(255,255,255,0.22);
}

.company-strength-list .company-line-item {
  border-bottom: 0;
  padding-right: clamp(24px, 3vw, 40px);
  border-right: 1px solid rgba(255,255,255,0.22);
}

.company-strength-list .company-line-item:last-child {
  border-right: 0;
}

.company-transition-band {
  padding: 72px 0 78px;
  background: #FFFFFF;
  color: #000000;
}

.company-transition-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.company-transition-copy {
  max-width: 760px;
  margin: 0;
  color: #000000;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.34;
  font-weight: 300;
}

.company-transition-inner .pill-button {
  flex-shrink: 0;
}

.prod-academy-cta {
  margin-top: 0.5rem;
  box-shadow: 0 18px 42px -30px rgba(0,0,0,0.65);
}

.company-line-item .company-role,
.company-line-item .resource-type {
  margin: 0 0 12px;
}

.company-line-item h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.22;
  font-weight: 400;
}

.company-line-item p {
  margin: 0;
  color: #565656;
  line-height: 1.68;
  font-size: 14.5px;
}

.company-mini-profile {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.company-mini-media {
  width: 74px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.92), transparent 34%),
    linear-gradient(145deg, #F6F6F6, #E7E7E7);
  color: #111111;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.company-band.dark .company-line-item h3 {
  color: #FFFFFF;
}

.company-band.dark .company-line-item p {
  color: rgba(255,255,255,0.72);
}

.company-band.dark .company-mini-media {
  background:
    radial-gradient(circle at 35% 28%, rgba(255,255,255,0.95), transparent 34%),
    linear-gradient(145deg, #F5F5F5, #DCDCDC);
}

.company-card,
.company-person,
.company-form-card {
  border-radius: 8px;
  border: 1px solid #E8E8E8;
  background: #FFFFFF;
  color: #111111;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 12px 30px -28px rgba(0,0,0,0.25);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.company-band.dark .company-card,
.company-band.dark .company-person {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.96);
}

.company-card:hover,
.company-person:hover,
.company-form-card:hover {
  border-color: #D7D7D7;
  box-shadow: 0 16px 38px -30px rgba(0,0,0,0.34);
}

.company-card h3,
.company-person h3,
.company-form-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.18;
  font-weight: 400;
}

.company-card p,
.company-person p {
  margin: 0;
  color: #565656;
  line-height: 1.72;
  font-size: 14.5px;
}

.company-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.company-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #E2E2E2;
  background: #FAFAFA;
  color: #232323;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 500;
}

.company-person {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.company-role {
  margin-bottom: 22px;
  color: #5E5E5E;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-person p {
  flex: 1;
}

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

.company-capability-list li {
  border-radius: 999px;
  border: 1px solid #E2E2E2;
  background: #FAFAFA;
  padding: 12px 16px;
  color: #222222;
  font-size: 13px;
}

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

.company-application-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #444444;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.company-application-form input,
.company-application-form textarea {
  width: 100%;
  border: 1px solid #E1E1E1;
  border-radius: 8px;
  padding: 13px 14px;
  background: #FFFFFF;
  color: #111111;
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.company-application-form input:focus,
.company-application-form textarea:focus {
  outline: none;
  border-color: rgba(0,0,0,0.36);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

.company-application-form textarea,
.company-application-form .full {
  grid-column: 1 / -1;
}

.company-application-form textarea {
  min-height: 130px;
  resize: vertical;
}

.company-application-form button {
  width: fit-content;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .company-intro-grid,
  .company-grid,
  .company-grid.two,
  .company-profile-row,
  .company-profile-row.two,
  .company-line-list,
  .company-line-list.two,
  .company-line-list.four,
  .company-capability-list,
  .company-application-form {
    grid-template-columns: 1fr;
  }

  .company-profile {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid #E3E3E3;
  }

  .company-profile:last-child {
    border-bottom: 0;
  }

  .company-profile-media {
    width: 112px;
  }

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

  .company-strength-list .company-line-item {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.22);
  }

  .company-strength-list .company-line-item:last-child {
    border-bottom: 0;
  }
}
.hero-backdrop {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 980px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  background: #FFFFFF;
  color: #000000;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
}

.eyebrow.small {
  color: #6B6B6B;
}

.hero-content h1 {
  margin: 18px 0 14px;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
}

.hero-content p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,255,255,0.88);
  font-size: 18px;
}

.section { padding: 96px 0; background: #FFFFFF; color: #000000; }
.section-compact { padding: 48px 0; }
.section-title { max-width: 860px; margin: 0 auto 48px; text-align: center; }
.section-title .eyebrow.small {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #888888;
  display: block;
  margin-bottom: 14px;
}

.adjacent-section .section-title .eyebrow.small {
  display: inline-flex;
  padding: 6px 12px;
  font-size: 11px;
  background: #FFFFFF;
  border: 1px solid #E5E5E5;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-title .tech-label {
  margin-top: 0;
}
.section-compact .section-title .tech-label {
  margin-top: 0;
  margin-bottom: 12px;
}
.section-title h2 { margin: 0 0 20px; font-size: clamp(28px, 4vw, 46px); line-height: 1.15; font-weight: 300; letter-spacing: -0.01em; }
.section-title p { margin: 0 auto 0; color: #666666; font-size: 16px; line-height: 1.7; font-weight: 300; }
.small-card-label {
  display: inline-flex;
  margin: 18px 0 0;
  padding: 10px 14px;
  border-radius: 8px;
  background: #F7F7F7;
  color: #111111;
  font-size: 13px;
}
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  min-height: 210px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 24px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.card h3 { margin: 0 0 10px; font-size: 22px; }
.card p { margin: 0; color: #6B6B6B; line-height: 1.6; }
.center-row { display: flex; justify-content: center; margin-top: 28px; }

/* Quantum Emulator Section */
.emulator-content {
  max-width: 820px;
  margin: 0 auto;
}

.emulator-subsection {
  margin-bottom: 42px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E5E5E5;
}

.emulator-subsection:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.subsection-title {
  font-size: 22px;
  font-weight: 500;
  color: #111111;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.subsection-description {
  font-size: 16px;
  line-height: 1.75;
  color: #475467;
  margin: 0 0 20px;
}

.challenge-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.challenge-list li {
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
  padding-left: 24px;
  position: relative;
}

.challenge-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #2F6BFF;
  font-weight: 600;
}

.editorial-page {
  background: #FFFFFF;
  color: #000000;
  padding: 168px 0 108px;
}

.editorial-shell {
  max-width: 1060px;
}

.editorial-header {
  max-width: 760px;
  padding-bottom: 58px;
}

.editorial-header h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}

.editorial-header p {
  margin: 0;
  color: #4E4E4E;
  font-size: 18px;
  line-height: 1.75;
}

.resource-section {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 48px;
  padding: 42px 0;
  border-top: 1px solid #E5E5E5;
}

.resource-section:last-child {
  border-bottom: 1px solid #E5E5E5;
}

.resource-section-dark {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: max(24px, calc((100vw - 1060px) / 2));
  padding-right: max(24px, calc((100vw - 1060px) / 2));
  background: #000000;
  color: #FFFFFF;
  border-top-color: #000000;
}

.resource-section-dark .resource-section-heading span,
.resource-section-dark .resource-type {
  color: rgba(255,255,255,0.62);
}

.resource-section-dark .resource-section-heading h2,
.resource-section-dark .resource-item h3 {
  color: #FFFFFF;
}

.resource-section-dark .resource-item {
  border-bottom-color: rgba(255,255,255,0.18);
}

.resource-section-dark .resource-item p:not(.resource-type) {
  color: rgba(255,255,255,0.72);
}

.resource-section-dark .resource-item a {
  color: #FFFFFF;
}

.resource-section-dark .resource-item a:hover {
  color: rgba(255,255,255,0.78);
}

.resource-section-heading {
  position: sticky;
  top: 112px;
  align-self: start;
}

.resource-section-heading span,
.resource-type {
  display: block;
  margin: 0 0 10px;
  color: #6B6B6B;
  font-size: 13px;
  line-height: 1.4;
}

.resource-section-heading h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
}

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

.resource-item {
  min-height: 230px;
  padding: 0 0 34px;
  margin-bottom: 34px;
  border-bottom: 1px solid #E5E5E5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}

.resource-item h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.22;
}

.resource-item p:not(.resource-type) {
  margin: 0;
  color: #5E5E5E;
  line-height: 1.68;
}

.resource-item a {
  width: fit-content;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.resource-item a:hover {
  color: #F0441E;
}

.contact-page {
  background: #FFFFFF;
  color: #000000;
  padding: 168px 0 108px;
}

.contact-shell {
  max-width: 1120px;
}

.contact-header {
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 48px;
}

.contact-main {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: start;
  padding-bottom: 64px;
  border-bottom: 1px solid #E5E5E5;
}

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

.contact-form label {
  display: grid;
  gap: 9px;
}

.contact-form span,
.company-info span {
  color: #6B6B6B;
  font-size: 13px;
  line-height: 1.4;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #DADADA;
  border-radius: 8px;
  background: #FFFFFF;
  color: #000000;
  padding: 14px 15px;
  font-size: 15px;
  font-family: "IBM Plex Sans JP", sans-serif;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #000000;
  background: #FAFAFA;
}

.contact-message,
.contact-submit {
  grid-column: 1 / -1;
}

.contact-submit {
  width: fit-content;
  border-color: #000000;
  background: #000000;
  color: #FFFFFF;
  font-family: "IBM Plex Sans JP", sans-serif;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-card {
  border-top: 1px solid #E5E5E5;
  padding: 18px 0 4px;
}

.contact-card:first-child {
  border-top: none;
  padding-top: 0;
}

.contact-card h2 {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
}

.contact-card a {
  color: #5E5E5E;
  text-decoration: none;
  font-size: 15px;
}

.contact-card a:hover {
  color: #000000;
}

.contact-focus {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: 48px;
  padding: 56px 0;
  border-bottom: 1px solid #E5E5E5;
}

.contact-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
}

.contact-focus-grid article {
  border-top: 1px solid #E5E5E5;
  padding-top: 18px;
}

.contact-focus-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
}

.contact-focus-grid p {
  margin: 0;
  color: #5E5E5E;
  line-height: 1.65;
}

.contact-focus-link {
  display: inline-block;
  margin-top: 14px;
  color: #000000;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.contact-focus-link:hover {
  color: #F0441E;
}

.company-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  padding-top: 42px;
}

.company-info p {
  margin: 8px 0 0;
  line-height: 1.5;
}

.cta-strip { padding: 72px 0; background: #000000; color: #FFFFFF; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.cta-inner h2 { margin: 0; font-size: clamp(28px, 4vw, 48px); line-height: 1.1; }

.cta-typewriter {
  position: relative;
  max-width: 760px;
}

.cta-typewriter-spacer {
  visibility: hidden;
}

.cta-typewriter-output {
  position: absolute;
  inset: 0 0 auto 0;
  display: block;
  opacity: 0;
  white-space: normal;
  transition: opacity 0.8s ease;
}

.cta-typewriter.is-typing .cta-typewriter-output,
.cta-typewriter.is-complete .cta-typewriter-output {
  opacity: 1;
}

.cta-typewriter-cursor {
  display: inline-block;
  color: #FFFFFF;
  margin-left: 0.08em;
  opacity: 0;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.48),
    0 0 16px rgba(66, 133, 244, 0.22);
}

.cta-typewriter.is-typing .cta-typewriter-cursor,
.cta-typewriter.is-complete .cta-typewriter-cursor {
  opacity: 1;
  animation: cta-cursor-blink 1.05s ease-in-out infinite;
}

@keyframes cta-cursor-blink {
  0%, 48% { opacity: 1; }
  52%, 100% { opacity: 0.22; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-typewriter-cursor {
    animation: none !important;
  }
}

.accent { color: #000000; }

.stats-grid {
  display: grid;
  grid-template-columns: 150px 1fr 300px;
  gap: 32px;
  align-items: center;
}

.stat-circle {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #FFFFFF;
  font-size: 36px;
}

.stat-copy p { margin: 0 0 14px; color: #6B6B6B; font-size: 18px; line-height: 1.55; }
.rating { font-size: 20px; color: #000000; }
.rating span { color: #000000; }
.stat-visual img { width: 100%; height: auto; display: block; }

.solutions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

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

.feature-card {
  border: 0.5px solid #D5D5D5;
  border-radius: 3px;
  background: #FFFFFF;
  padding: 32px;
}

.solution-option {
  position: relative;
  width: 100%;
  min-height: 72px;
  border: 1px solid #E3E6EA;
  border-radius: 6px;
  background: #FFFFFF;
  color: #000000;
  padding: 18px 52px 18px 22px;
  text-align: left;
  font-size: 16px;
  line-height: 1.35;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.03);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background-color 0.24s ease,
    box-shadow 0.24s ease;
}

.solution-option::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, #4285F4, #34A853, #FBBC05, #EA4335);
  opacity: 0;
  transform: scaleY(0.48);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.solution-option::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  opacity: 0.34;
  transform: translateY(-50%) rotate(45deg);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.solution-option:hover {
  transform: translate3d(4px, -2px, 0);
  border-color: #C4CAD3;
  background-color: #FBFCFF;
  box-shadow:
    0 10px 22px rgba(16, 24, 40, 0.07),
    0 0 14px rgba(66, 133, 244, 0.08);
}

.solution-option:hover::before {
  opacity: 0.42;
  transform: scaleY(0.72);
}

.solution-option:hover::after {
  opacity: 0.68;
  transform: translate(3px, -50%) rotate(45deg);
}

.solution-option.is-active {
  border-color: #9EADBF;
  border-width: 1px;
  background: linear-gradient(90deg, rgba(66, 133, 244, 0.06), rgba(52, 168, 83, 0.035) 42%, #FFFFFF 100%);
  font-weight: 400;
  box-shadow:
    0 12px 26px rgba(16, 24, 40, 0.08),
    0 0 0 1px rgba(66, 133, 244, 0.08),
    0 0 18px rgba(52, 168, 83, 0.08);
}

.solution-option.is-active::before {
  opacity: 1;
  transform: scaleY(1);
}

.solution-option.is-active::after {
  opacity: 0.9;
  transform: translate(4px, -50%) rotate(45deg);
}

.solution-option:focus-visible {
  outline: 2px solid rgba(66, 133, 244, 0.42);
  outline-offset: 3px;
}

.feature-card h3 { margin: 0 0 20px; font-size: 22px; font-weight: 400; letter-spacing: -0.01em; }
.feature-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.feature-card-copy { min-width: 0; }
.feature-card-image { display: flex; align-items: center; justify-content: center; }
.feature-card-image img { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; max-height: 360px; }
.feature-card ul { margin: 0; padding-left: 0; color: #555555; line-height: 1.9; list-style: none; }
.feature-card ul li { margin-bottom: 14px; padding-left: 24px; position: relative; font-size: 15px; }
.feature-card ul li::before { content: "•"; position: absolute; left: 8px; color: #999999; }

@media (max-width: 900px) {
  .feature-card-grid { grid-template-columns: 1fr; }
  .feature-card-image { margin-top: 20px; }
}

.partner-strip { padding-top: 36px; padding-bottom: 36px; }

.partner-marquee {
  width: 100%;
  overflow: hidden;
}

.partner-row {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 16px;
  animation: partner-marquee 34s linear infinite;
  will-change: transform;
}

.partner-marquee:hover .partner-row {
  animation-play-state: paused;
}

.partner {
  flex: 0 0 220px;
  min-width: 220px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  padding: 16px;
  background: #FFFFFF;
}

@keyframes partner-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.capabilities {
  position: relative;
  overflow: hidden;
  background: #000000;
  color: #FFFFFF;
}

.cap-bg {
  display: none;
}

.cap-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.capabilities .container { position: relative; z-index: 1; }
.cap-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 8px;
  border: 1px solid #E5E5E5;
  background: #FFFFFF;
  color: #000000;
}

.cap-card h3 { margin: 0 0 18px; font-size: 28px; }
.cap-card ul { margin: 0 0 24px; padding-left: 20px; color: #4E4E4E; line-height: 1.8; }

.cap-card .pill-button {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.cap-card .pill-button:hover {
  background: #1A1A1A;
  border-color: #1A1A1A;
}

.news-slider-section {
  background: #000000;
  color: #FFFFFF;
}

.news-slider-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.news-eyebrow {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
}

.news-slider-header h2 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  color: #FFFFFF;
}

.news-slider-header p {
  max-width: 720px;
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 17px;
  line-height: 1.7;
}

.news-controls {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.news-nav {
  width: 68px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.36);
  background: transparent;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 13px;
  transition: border-color 0.18s ease, background 0.18s ease;
}

.news-nav:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}

.news-carousel {
  overflow: hidden;
}

.news-track {
  display: flex;
  gap: 22px;
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.news-card {
  flex: 0 0 min(520px, calc(100vw - 72px));
  min-height: 360px;
  border-radius: 22px;
  background: #FFFFFF;
  color: #000000;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}

.news-card-visual {
  height: 86px;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(0,0,0,0.08) 22% 23%, transparent 23% 46%, rgba(0,0,0,0.08) 46% 47%, transparent 47% 70%, rgba(0,0,0,0.08) 70% 71%, transparent 71%),
    radial-gradient(circle at 20% 35%, rgba(0,0,0,0.16), transparent 18%),
    #F7F7F7;
}

.news-card-visual img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }

.news-card-meta,
.news-page-meta {
  color: #6B6B6B;
  font-size: 13px;
  line-height: 1.4;
}

.news-card h3 {
  margin: 12px 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.news-card p {
  margin: 0;
  color: #4E4E4E;
  line-height: 1.65;
}

.news-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.news-card-date {
  color: #6B6B6B;
  font-size: 13px;
  white-space: nowrap;
}

.news-card .pill-button {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
  padding: 14px 20px;
  font-size: 14px;
}

.news-card .pill-button:hover,
.news-card .pill-button:active {
  transform: none;
}

.news-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.news-dot {
  width: 28px;
  height: 3px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  cursor: pointer;
  padding: 0;
}

.news-dot.is-active {
  background: #FFFFFF;
}

.news-page {
  background: #FFFFFF;
  color: #000000;
  padding: 168px 0 108px;
}

.news-page-shell {
  max-width: 1120px;
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 48px;
  padding: 44px 0;
  border-top: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.news-feature h2 {
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.08;
}

.news-feature p,
.news-page-card p {
  color: #5E5E5E;
  line-height: 1.7;
}

.news-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 34px 0 24px;
}

.news-filter {
  border: 1px solid #DADADA;
  border-radius: 999px;
  background: #FFFFFF;
  padding: 10px 15px;
  font-size: 13px;
}

.news-filter:first-child {
  border-color: #000000;
}

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

.news-page-card {
  min-height: 300px;
  border: 1px solid #E5E5E5;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  background: #FFFFFF;
}

.news-page-card h3 {
  margin: 10px 0 12px;
  font-size: 26px;
  line-height: 1.16;
}

.news-page-card a {
  width: fit-content;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
}

.test-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.testimonial,
.stat-box,
.support-card {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 24px;
}

.testimonial p { margin: 0 0 24px; color: #111111; line-height: 1.8; font-size: 18px; }
.author { display: flex; flex-direction: column; gap: 4px; color: #6B6B6B; }
.author strong { color: #000000; font-weight: 300; }
.stats-stack { display: grid; gap: 16px; }
.stat-box strong { display: block; font-size: 36px; font-weight: 300; color: #000000; }
.stat-box span { color: #6B6B6B; }
.support-card h3 { margin: 0 0 10px; font-size: 22px; }
.support-card p { margin: 0 0 18px; color: #6B6B6B; line-height: 1.6; }

/* ABOUT COMPANY & LEADERSHIP SECTION */
.about-leadership {
  padding: 120px 0;
  background: #FFFFFF;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-heading {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  margin: 16px 0 12px;
  line-height: 1.3;
  color: #000000;
}

.about-tagline {
  font-size: 18px;
  color: #6B6B6B;
  margin: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-company-intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-company-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin: 0;
}

.about-button {
  width: fit-content;
  padding: 14px 28px;
  border-radius: 999px;
  background: #000000;
  color: #FFFFFF;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  border: 2px solid #000000;
  font-size: 14px;
  font-weight: 400;
}

.about-button:hover {
  background: #FFFFFF;
  color: #000000;
}

.about-button .pill-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about-button .pill-arrow-icon {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.about-button:hover .pill-arrow-icon {
  transform: translateX(3px);
}

/* LEADERSHIP SECTION */
.about-right {
  display: flex;
  align-items: center;
}

.leadership-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.founder-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.founder-portrait-large {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #F5F5F5;
  border: 2px solid #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.founder-portrait-large .founder-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0%);
  transition: filter 0.3s ease;
}

.founder-portrait-large:hover .founder-avatar {
  filter: grayscale(20%);
}

.founder-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.founder-name {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  margin: 0;
}

.founder-role {
  font-size: 14px;
  font-weight: 600;
  color: #6B6B6B;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.founder-background {
  font-size: 14px;
  color: #555555;
  margin: 0;
  line-height: 1.6;
}

.founder-expertise {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  margin: 8px 0 0;
}

.founder-quote {
  font-size: 16px;
  font-style: italic;
  color: #555555;
  margin: 16px 0 0;
  padding-left: 16px;
  border-left: 3px solid #000000;
  line-height: 1.7;
}

/* FOUNDER THUMBNAILS */
.founder-thumbnails {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
}

.founder-thumb {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #E5E5E5;
  background: #FFFFFF;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-thumb .founder-avatar-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.founder-thumb:hover {
  border-color: #000000;
}

.founder-thumb:hover .founder-avatar-thumb {
  filter: grayscale(40%);
}

.founder-thumb.active {
  border-color: #000000;
  border-width: 3px;
}

.founder-thumb.active .founder-avatar-thumb {
  filter: grayscale(0%);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .about-content-grid {
    gap: 60px;
  }

  .founder-featured {
    gap: 30px;
  }

  .about-heading {
    font-size: clamp(28px, 4vw, 40px);
  }
}

@media (max-width: 768px) {
  .about-leadership {
    padding: 80px 0;
  }

  .about-header {
    margin-bottom: 60px;
  }

  .about-content-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .founder-featured {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-heading {
    font-size: 32px;
  }

  .about-tagline {
    font-size: 16px;
  }

  .founder-name {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .about-leadership {
    padding: 60px 0;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-company-intro {
    gap: 12px;
  }

  .about-company-intro p {
    font-size: 15px;
  }

  .about-left {
    gap: 30px;
  }

  .leadership-container {
    gap: 30px;
  }

  .founder-thumbnails {
    gap: 12px;
  }

  .founder-thumb {
    width: 70px;
    height: 70px;
  }

  .founder-name {
    font-size: 18px;
  }

  .founder-expertise {
    font-size: 14px;
  }

  .founder-quote {
    font-size: 14px;
    padding-left: 12px;
  }
}

.footer { padding: 56px 0 28px; background: #000000; color: #FFFFFF; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.15fr) minmax(150px, 0.45fr) minmax(150px, 0.45fr);
  gap: 24px;
  align-items: start;
}
.footer-logo { height: 44px; width: auto; object-fit: contain; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-brand h3 { margin: 10px 0 0; font-size: 28px; color: #FFFFFF; }
.footer-col h4 { display: none; }
.footer-col p { margin: 12px 0 0; max-width: 360px; line-height: 1.6; }
.footer-col a { color: rgba(255,255,255,0.78); text-decoration: none; }
.footer-col a:hover { color: #FFFFFF; }
.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  width: min(100%, 560px);
}

.newsletter input {
  min-width: 0;
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 16px 18px;
  font-size: 15px;
}

.footer-button { padding: 16px 22px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
}
.social { display: flex; gap: 18px; }
.social a { color: rgba(255,255,255,0.72); text-decoration: none; }

@media (max-width: 980px) {
  :root {
    --nav-inner-height: 52px;
    --nav-shell-height: 66px;
    --nav-shell-padding: 7px;
  }
  .navbar-inner { height: 52px; padding: 6px 12px; }
  .brand { min-width: auto; }
  .logo-img { height: 34px; }
  .brand-text { display: none; }
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .mobile-nav {
    position: fixed;
    left: 2.5%;
    right: 2.5%;
    top: 82px;
    z-index: 999;
    display: none;
    flex-direction: column;
    gap: 4px;
    border-radius: 4px;
    padding: 10px;
    pointer-events: auto;
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
  }
  .mobile-nav.open { display: flex; }
  .navbar-shell[data-theme="dark"] .mobile-nav { background: rgba(12,12,18,0.88); color: rgba(255,255,255,0.94); }
  .navbar-shell[data-theme="light"] .mobile-nav { background: rgba(255,255,255,0.92); color: #111111; }
  .mobile-nav details { border-bottom: none; }
  .mobile-nav summary { padding: 12px 10px; cursor: pointer; list-style: none; }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav a { display: block; padding: 10px 16px; text-decoration: none; border-radius: 4px; }
  .grid-3, .footer-grid, .stats-grid, .solutions-grid, .test-grid { grid-template-columns: 1fr; }
  .editorial-page { padding: 136px 0 84px; }
  .editorial-header { padding-bottom: 40px; }
  .contact-page { padding: 136px 0 84px; }
  .contact-main,
  .contact-focus {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .news-slider-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .news-feature,
  .news-page-grid {
    grid-template-columns: 1fr;
  }
  .news-page { padding: 136px 0 84px; }
  .company-info {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .resource-section {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 0;
  }
  .resource-section-heading {
    position: static;
  }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .hero-backdrop { font-size: 8rem; }
  .partner { flex-basis: 180px; min-width: 180px; }
  .newsletter { flex-direction: column; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 32px, 1200px); }
  .hero-content p { font-size: 16px; }
  .section { padding: 72px 0; }
  .editorial-page { padding: 124px 0 72px; }
  .editorial-header p { font-size: 16px; }
  .contact-page { padding: 124px 0 72px; }
  .contact-main { padding-bottom: 48px; }
  .contact-form,
  .contact-focus-grid {
    grid-template-columns: 1fr;
  }
  .news-card {
    flex-basis: calc(100vw - 48px);
    min-height: 380px;
    padding: 22px;
  }
  .news-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .news-page { padding: 124px 0 72px; }
  .news-feature { gap: 24px; }
  .contact-submit {
    width: 100%;
  }
  .resource-list { grid-template-columns: 1fr; }
  .resource-item {
    min-height: 0;
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
  .pill-button { width: 100%; padding: 16px 22px; }
  .hero-backdrop { font-size: 5.4rem; }
}

/* =========================================================
   Technology page — hero actions, quantum stack, FAQ, etc.
   ========================================================= */

/* Hero actions row */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.pill-button-ghost {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.55);
}
.pill-button-ghost:hover { background: rgba(255,255,255,0.08); border-color: #FFFFFF; }

/* Quantum Control Stack section */
.stack-section {
  background: #FFFFFF;
  color: #111827;
  padding: 112px 0;
}

.stack-section-title {
  text-align: center;
  margin-bottom: 64px;
}

.stack-section-title h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #111827;
  margin: 0;
  font-family: "IBM Plex Sans JP", sans-serif;
}

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

.stack-intro .stack-eyebrow {
  color: #2F5FD0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: transparent;
  padding: 0;
}

.stack-title {
  margin: 18px 0 22px;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #111827;
  max-width: 300px;
}

.stack-description {
  color: #5B6473;
  font-size: 16px;
  line-height: 1.75;
  max-width: 295px;
  margin: 0 0 38px;
}

.stack-zones { display: flex; flex-direction: column; gap: 0; }

.zone-legend {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px dashed #D0D5DD;
}
.zone-legend:first-child { padding-top: 0; }
.zone-legend:last-child { border-bottom: none; padding-bottom: 0; }

.zone-glyph {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.zone-glyph.zone-room { background: rgba(47,107,255,0.08); border: 1px solid rgba(47,107,255,0.24); color: #2F6BFF; }
.zone-glyph.zone-cryo { background: rgba(22,180,194,0.08); border: 1px solid rgba(22,180,194,0.24); color: #16B4C2; }
.zone-glyph.zone-ultra { background: rgba(124,58,237,0.08); border: 1px solid rgba(124,58,237,0.24); color: #7C3AED; }

.zone-text { min-width: 0; }
.zone-label {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0;
}
.zone-label-room { color: #2F6BFF; }
.zone-label-cryo { color: #16B4C2; }
.zone-label-ultra { color: #7C3AED; }
.zone-text p {
  margin: 0;
  color: #5B6473;
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
}

/* Stack layers (right column) */
.stack-layers {
  position: relative;
  min-width: 0;
}

.stack-layers::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: transparent;
  z-index: 0;
  display: none;
}

.stack-card {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  border: 1px solid #EAECF0;
  border-radius: 16px;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 1px 2px rgba(16,24,40,0.04);
}
.stack-card.stack-zone-room { border-color: rgba(47,107,255,0.22); }
.stack-card.stack-zone-cryo { border-color: rgba(22,180,194,0.22); }
.stack-card.stack-zone-ultra { border-color: rgba(124,58,237,0.22); }

.stack-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
}
.stack-icon.stack-zone-room { background: #2F6BFF; }
.stack-icon.stack-zone-cryo { background: #16B4C2; }
.stack-icon.stack-zone-ultra { background: #7C3AED; }

.stack-body { min-width: 0; }
.stack-card-title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  color: #111827;
  letter-spacing: -0.01em;
}
.stack-card-desc {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: #475467;
  max-width: 560px;
}

.stack-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0;
}
.stack-chip.stack-zone-room { color: #2F6BFF; background: rgba(47,107,255,0.10); }
.stack-chip.stack-zone-cryo { color: #16B4C2; background: rgba(22,180,194,0.10); }
.stack-chip.stack-zone-ultra { color: #7C3AED; background: rgba(124,58,237,0.10); }

/* QIM Focus / Active Layers */
.stack-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  margin-top: 32px;
  margin-bottom: 16px;
}

.stack-intro-text {
  font-size: 15px;
  line-height: 1.7;
  color: #5B6473;
  margin: 0 0 32px;
  font-weight: 300;
  max-width: 280px;
}

.stack-badges {
  display: flex;
  gap: 10px;
  align-items: center;
}

.qim-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #000000;
  color: #FFFFFF;
  white-space: nowrap;
}

.stack-card.qim-active {
  border-left-width: 4px;
  border-left-color: #000000 !important;
  box-shadow: 0 2px 8px rgba(16,24,40,0.08), 0 0 0 1px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}

.stack-card.qim-active:hover {
  box-shadow: 0 4px 12px rgba(16,24,40,0.12), 0 0 0 1px rgba(0,0,0,0.3);
}

.stack-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30px;
  margin: 0 0 0 28px;
  color: #98A2B3;
}

/* FAQ Styling */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid #EAECF0;
}

.faq-item {
  border-bottom: 1px solid #EAECF0;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: #111827;
  transition: color 0.2s ease;
}

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

/* Icon button container */
.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 2px solid #EAECF0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: #111827;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* Open state - minus icon */
.faq-item[open] summary::after {
  content: "−";
  border-color: #EAECF0;
}

.faq-item summary:hover {
  color: #000000;
}

.faq-item summary:hover::after {
  border-color: #111827;
}

.faq-item p {
  margin: 0 0 20px 0;
  padding: 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.75;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1190px) {
  .stack-section { padding: 88px 0; }
  .stack-grid { grid-template-columns: 1fr; gap: 40px; }
  .stack-title { max-width: none; }
  .stack-description { max-width: 640px; }
  .zone-text p { max-width: 540px; }
}

@media (max-width: 720px) {
  .stack-section { padding: 72px 0; }
  .stack-card {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 16px;
  }
  .stack-icon { width: 44px; height: 44px; border-radius: 12px; }
  .stack-icon svg { width: 18px; height: 18px; }
  .stack-badges {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
    flex-wrap: wrap;
  }
  .stack-card-title { font-size: 16px; }
  .stack-card-desc { font-size: 13.5px; }
  .stack-layers::before { left: 22px; }
  .stack-arrow { margin-left: 22px; height: 24px; }
}

/* Adjacent technology areas */
.adjacent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.adjacent-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.24s ease;
}

.adjacent-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.01em;
}

.adjacent-card p {
  margin: 0;
  color: #5B6473;
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .adjacent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .adjacent-grid { grid-template-columns: 1fr; }
}

/* Adjacent Areas — full-width black section, white cards */
.adjacent-section {
  background: #000000;
  color: #FFFFFF;
}

.adjacent-section .section-title .eyebrow.small {
  color: #111111;
}

.adjacent-section .section-title h2 {
  color: #FFFFFF;
}

.adjacent-section .section-title p {
  color: rgba(255,255,255,0.7);
}

.adjacent-section .adjacent-card {
  background: #FFFFFF;
}

.adjacent-section .adjacent-card h3 { color: #111111; }
.adjacent-section .adjacent-card p { color: #4B5563; }

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid #EAECF0;
}

.faq-item {
  border-bottom: 1px solid #EAECF0;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.005em;
}

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

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #D0D5DD;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 400;
  color: #5B6473;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  color: #111827;
  border-color: #111827;
}

.faq-item p {
  margin: 0 56px 22px 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}

/* =========================================================
   Research Page Styling — Editorial Design
   ========================================================= */

.research-intro {
  padding: 96px 0;
}

.research-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.research-intro-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.research-intro-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.research-intro-paragraph {
  font-size: 17px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 500px;
}

.research-intro-right {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.research-focus-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 42px;
  border-bottom: 1px solid #EAECF0;
}

.research-focus-area:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.research-focus-title {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: none;
}

.research-focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.research-focus-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #5B6473;
  position: relative;
  padding-left: 18px;
}

.research-focus-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 400;
}

/* Research Areas Section */
.research-areas {
  background: #000000;
  color: #FFFFFF;
  padding: 96px 0;
}

.research-areas-header {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}

.research-areas-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.research-areas-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.research-areas-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.research-area-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.research-area-row:first-child {
  padding-top: 0;
}

.research-area-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.research-area-content {
  flex: 1;
  min-width: 500px;
}

.research-area-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.research-area-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
  max-width: 680px;
}

.research-area-work {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.research-work-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.research-work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.research-work-list li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-left: 18px;
}

.research-work-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.research-area-link {
  align-self: flex-start;
  margin-top: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.research-area-link:hover {
  color: rgba(255,255,255,0.85);
}

/* Research Philosophy Section */
.research-philosophy {
  background: #FFFFFF;
  padding: 96px 0;
}

.research-philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.research-philosophy-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0 0 24px;
}

.research-philosophy-paragraph {
  font-size: 18px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Publications & Lab Notes Section */
.research-publications {
  background: #f5f5f5;
  padding: 96px 0;
}

.research-publications-header {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.research-publications-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0 0 16px;
}

.research-publications-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #5B6473;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.research-publications-buttons {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.research-publications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 48px;
}

.research-publication-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid #EAECF0;
  border-radius: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  transition: background 0.2s ease;
}

.research-publication-card:first-child {
  border-top: 1px solid #EAECF0;
}

.research-publication-card:hover {
  background: rgba(0, 0, 0, 0.02);
}

.research-pub-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B6473;
  width: fit-content;
  flex-shrink: 0;
  min-width: 100px;
  text-align: left;
  grid-column: 1;
  grid-row: 1 / -1;
  padding-right: 16px;
}

.research-pub-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #111827;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
}

.research-pub-abstract {
  font-size: 15px;
  line-height: 1.7;
  color: #5B6473;
  margin: 0;
  grid-column: 2;
  grid-row: 2;
  margin-top: 4px;
}

.research-pub-link {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s ease;
  grid-column: 3;
  grid-row: 1;
  white-space: nowrap;
  justify-self: end;
}

.research-pub-link:hover {
  color: #5B6473;
}

/* Research Final CTA Section */
.research-final-cta {
  background: #000000;
  color: #FFFFFF;
  padding: 96px 0;
  text-align: center;
}

.research-cta-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.research-cta-text {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin: 0 0 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.research-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.research-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.research-cta-button {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.research-cta-button:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.92);
}

.research-cta-button-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.4);
}

.research-cta-button-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* Whitepaper Section */
.research-whitepaper {
  background: #FFFFFF;
  padding: 120px 0;
}

.whitepaper-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 24px;
  padding: 72px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 1400px;
  margin: 0 auto;
}

.whitepaper-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.whitepaper-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B6473;
  width: fit-content;
}

.whitepaper-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.whitepaper-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 500px;
}

.whitepaper-visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #F5F5F5 0%, #EFEFEF 100%);
  border-radius: 16px;
  border: 1px solid #EAECF0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.whitepaper-placeholder {
  font-size: 16px;
  color: #999999;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.whitepaper-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.whitepaper-description {
  font-size: 17px;
  line-height: 1.85;
  color: #475467;
  margin: 0;
  max-width: 550px;
}

.whitepaper-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.whitepaper-button-secondary {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1.5px solid #000000 !important;
}

.whitepaper-button-secondary:hover {
  background: #F8F8F8 !important;
  border-color: #000000 !important;
}

@media (max-width: 1200px) {
  .whitepaper-box {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 56px;
  }

  .whitepaper-visual {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .research-whitepaper {
    padding: 80px 0;
  }

  .whitepaper-box {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: 16px;
  }

  .whitepaper-title {
    font-size: 28px;
  }

  .whitepaper-subtitle {
    font-size: 16px;
  }

  .whitepaper-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .whitepaper-buttons {
    flex-direction: column;
  }

  .whitepaper-buttons .pill-button {
    width: 100%;
  }

  .whitepaper-visual {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .whitepaper-box {
    padding: 32px 20px;
    gap: 28px;
  }

  .whitepaper-title {
    font-size: 24px;
  }

  .whitepaper-label {
    font-size: 11px;
  }

  .whitepaper-subtitle {
    font-size: 15px;
  }

  .whitepaper-description {
    font-size: 14px;
  }

  .whitepaper-buttons .pill-button {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* Research Page Responsive */
@media (max-width: 1000px) {
  .research-intro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .research-area-content {
    min-width: 0;
    flex: 1;
  }

  .research-area-row {
    flex-direction: column;
    gap: 24px;
  }

  .research-publications-buttons {
    flex-direction: column;
    align-items: center;
  }

  .research-publications-buttons .pill-button {
    width: 100%;
  }

  .research-publication-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .research-pub-category {
    grid-column: 1;
    grid-row: 1;
    min-width: auto;
    padding-right: 0;
  }

  .research-pub-title {
    grid-column: 1;
    grid-row: 2;
  }

  .research-pub-abstract {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }

  .research-pub-link {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .research-intro {
    padding: 72px 0;
  }

  .research-intro-headline {
    font-size: 28px;
  }

  .research-intro-paragraph {
    font-size: 16px;
  }

  .research-intro-right {
    gap: 32px;
  }

  .research-focus-area {
    padding-bottom: 32px;
    gap: 10px;
  }

  .research-areas {
    padding: 72px 0;
  }

  .research-areas-header {
    margin-bottom: 48px;
  }

  .research-area-row {
    padding: 36px 0;
  }

  .research-area-title {
    font-size: 20px;
  }

  .research-area-description {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .research-philosophy {
    padding: 72px 0;
  }

  .research-philosophy-headline {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .research-publications {
    padding: 72px 0;
  }

  .research-publications-header {
    margin-bottom: 36px;
  }

  .research-publications-buttons {
    flex-direction: column;
  }

  .research-publications-buttons .pill-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .research-publication-card {
    padding: 20px 0;
    grid-template-columns: 1fr;
  }

  .research-pub-title {
    font-size: 16px;
  }

  .research-pub-abstract {
    font-size: 14px;
  }

  .research-final-cta {
    padding: 72px 0;
  }

  .research-cta-headline {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .research-cta-text {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .research-cta-buttons {
    gap: 12px;
  }

  .research-cta-button {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
  }
}x;
  margin: 0 0 0 28px;
  color: #98A2B3;
}

/* FAQ Styling */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid #EAECF0;
}

.faq-item {
  border-bottom: 1px solid #EAECF0;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: #111827;
  transition: color 0.2s ease;
}

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

/* Icon button container */
.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 2px solid #EAECF0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: #111827;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

/* Open state - minus icon */
.faq-item[open] summary::after {
  content: "−";
  border-color: #EAECF0;
}

.faq-item summary:hover {
  color: #000000;
}

.faq-item summary:hover::after {
  border-color: #111827;
}

.faq-item p {
  margin: 0 0 20px 0;
  padding: 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.75;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1190px) {
  .stack-section { padding: 88px 0; }
  .stack-grid { grid-template-columns: 1fr; gap: 40px; }
  .stack-title { max-width: none; }
  .stack-description { max-width: 640px; }
  .zone-text p { max-width: 540px; }
}

@media (max-width: 720px) {
  .stack-section { padding: 72px 0; }
  .stack-card {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 16px;
  }
  .stack-icon { width: 44px; height: 44px; border-radius: 12px; }
  .stack-icon svg { width: 18px; height: 18px; }
  .stack-badges {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
    flex-wrap: wrap;
  }
  .stack-card-title { font-size: 16px; }
  .stack-card-desc { font-size: 13.5px; }
  .stack-layers::before { left: 22px; }
  .stack-arrow { margin-left: 22px; height: 24px; }
}

/* Adjacent technology areas */
.adjacent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.adjacent-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.24s ease;
}

.adjacent-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.01em;
}

.adjacent-card p {
  margin: 0;
  color: #5B6473;
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .adjacent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .adjacent-grid { grid-template-columns: 1fr; }
}

/* Adjacent Areas — full-width black section, white cards */
.adjacent-section {
  background: #000000;
  color: #FFFFFF;
}

.adjacent-section .section-title .eyebrow.small {
  color: #111111;
}

.adjacent-section .section-title h2 {
  color: #FFFFFF;
}

.adjacent-section .section-title p {
  color: rgba(255,255,255,0.7);
}

.adjacent-section .adjacent-card {
  background: #FFFFFF;
}

.adjacent-section .adjacent-card h3 { color: #111111; }
.adjacent-section .adjacent-card p { color: #4B5563; }

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid #EAECF0;
}

.faq-item {
  border-bottom: 1px solid #EAECF0;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.005em;
}

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

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #D0D5DD;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 400;
  color: #5B6473;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  color: #111827;
  border-color: #111827;
}

.faq-item p {
  margin: 0 56px 22px 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}

/* =========================================================
   Research Page Styling — Editorial Design
   ========================================================= */

.research-intro {
  padding: 96px 0;
}

.research-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.research-intro-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.research-intro-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.research-intro-paragraph {
  font-size: 17px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 500px;
}

.research-intro-right {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.research-focus-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 42px;
  border-bottom: 1px solid #EAECF0;
}

.research-focus-area:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.research-focus-title {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
  text-transform: none;
}

.research-focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.research-focus-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #5B6473;
  position: relative;
  padding-left: 18px;
}

.research-focus-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 400;
}

/* Research Areas Section */
.research-areas {
  background: #000000;
  color: #FFFFFF;
  padding: 96px 0;
}

.research-areas-header {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}

.research-areas-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.research-areas-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.research-areas-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.research-area-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.research-area-row:first-child {
  padding-top: 0;
}

.research-area-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.research-area-content {
  flex: 1;
  min-width: 500px;
}

.research-area-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.research-area-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
  max-width: 680px;
}

.research-area-work {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.research-work-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.research-work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.research-work-list li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-left: 18px;
}

.research-work-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.research-area-link {
  align-self: flex-start;
  margin-top: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.research-area-link:hover {
  color: rgba(255,255,255,0.85);
}

/* Research Philosophy Section */
.research-philosophy {
  background: #FFFFFF;
  padding: 96px 0;
}

.research-philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.research-philosophy-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0 0 24px;
}

.research-philosophy-paragraph {
  font-size: 18px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Publications & Lab Notes Section */
.research-publications {
  background: #f5f5f5;
  padding: 96px 0;
}

.research-publications-header {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.research-publications-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0 0 16px;
}

.research-publications-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #5B6473;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.research-publications-buttons {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.research-publications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 48px;
}

.research-publication-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid #EAECF0;
  border-radius: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  transition: background 0.2s ease;
}

.research-publication-card:first-child {
  border-top: 1px solid #EAECF0;
}

.research-publication-card:hover {
  background: rgba(0, 0, 0, 0.02);
}

.research-pub-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B6473;
  width: fit-content;
  flex-shrink: 0;
  min-width: 100px;
  text-align: left;
  grid-column: 1;
  grid-row: 1 / -1;
  padding-right: 16px;
}

.research-pub-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #111827;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
}

.research-pub-abstract {
  font-size: 15px;
  line-height: 1.7;
  color: #5B6473;
  margin: 0;
  grid-column: 2;
  grid-row: 2;
  margin-top: 4px;
}

.research-pub-link {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s ease;
  grid-column: 3;
  grid-row: 1;
  white-space: nowrap;
  justify-self: end;
}

.research-pub-link:hover {
  color: #5B6473;
}

/* Research Final CTA Section */
.research-final-cta {
  background: #000000;
  color: #FFFFFF;
  padding: 96px 0;
  text-align: center;
}

.research-cta-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.research-cta-text {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin: 0 0 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.research-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.research-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.research-cta-button {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.research-cta-button:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.92);
}

.research-cta-button-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.4);
}

.research-cta-button-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

/* Whitepaper Section */
.research-whitepaper {
  background: #FFFFFF;
  padding: 120px 0;
}

.whitepaper-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 24px;
  padding: 72px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 1400px;
  margin: 0 auto;
}

.whitepaper-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.whitepaper-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B6473;
  width: fit-content;
}

.whitepaper-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.whitepaper-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 500px;
}

.whitepaper-visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #F5F5F5 0%, #EFEFEF 100%);
  border-radius: 16px;
  border: 1px solid #EAECF0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.whitepaper-placeholder {
  font-size: 16px;
  color: #999999;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.whitepaper-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.whitepaper-description {
  font-size: 17px;
  line-height: 1.85;
  color: #475467;
  margin: 0;
  max-width: 550px;
}

.whitepaper-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.whitepaper-button-secondary {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1.5px solid #000000 !important;
}

.whitepaper-button-secondary:hover {
  background: #F8F8F8 !important;
  border-color: #000000 !important;
}

@media (max-width: 1200px) {
  .whitepaper-box {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 56px;
  }

  .whitepaper-visual {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .research-whitepaper {
    padding: 80px 0;
  }

  .whitepaper-box {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: 16px;
  }

  .whitepaper-title {
    font-size: 28px;
  }

  .whitepaper-subtitle {
    font-size: 16px;
  }

  .whitepaper-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .whitepaper-buttons {
    flex-direction: column;
  }

  .whitepaper-buttons .pill-button {
    width: 100%;
  }

  .whitepaper-visual {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .whitepaper-box {
    padding: 32px 20px;
    gap: 28px;
  }

  .whitepaper-title {
    font-size: 24px;
  }

  .whitepaper-label {
    font-size: 11px;
  }

  .whitepaper-subtitle {
    font-size: 15px;
  }

  .whitepaper-description {
    font-size: 14px;
  }

  .whitepaper-buttons .pill-button {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* Research Page Responsive */
@media (max-width: 1000px) {
  .research-intro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .research-area-content {
    min-width: 0;
    flex: 1;
  }

  .research-area-row {
    flex-direction: column;
    gap: 24px;
  }

  .research-publications-buttons {
    flex-direction: column;
    align-items: center;
  }

  .research-publications-buttons .pill-button {
    width: 100%;
  }

  .research-publication-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .research-pub-category {
    grid-column: 1;
    grid-row: 1;
    min-width: auto;
    padding-right: 0;
  }

  .research-pub-title {
    grid-column: 1;
    grid-row: 2;
  }

  .research-pub-abstract {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }

  .research-pub-link {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .research-intro {
    padding: 72px 0;
  }

  .research-intro-headline {
    font-size: 28px;
  }

  .research-intro-paragraph {
    font-size: 16px;
  }

  .research-intro-right {
    gap: 32px;
  }

  .research-focus-area {
    padding-bottom: 32px;
    gap: 10px;
  }

  .research-areas {
    padding: 72px 0;
  }

  .research-areas-header {
    margin-bottom: 48px;
  }

  .research-area-row {
    padding: 36px 0;
  }

  .research-area-title {
    font-size: 20px;
  }

  .research-area-description {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .research-philosophy {
    padding: 72px 0;
  }

  .research-philosophy-headline {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .research-publications {
    padding: 72px 0;
  }

  .research-publications-header {
    margin-bottom: 36px;
  }

  .research-publications-buttons {
    flex-direction: column;
  }

  .research-publications-buttons .pill-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .research-publication-card {
    padding: 20px 0;
    grid-template-columns: 1fr;
  }

  .research-pub-title {
    font-size: 16px;
  }

  .research-pub-abstract {
    font-size: 14px;
  }

  .research-final-cta {
    padding: 72px 0;
  }

  .research-cta-headline {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .research-cta-text {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .research-cta-buttons {
    gap: 12px;
  }

  .research-cta-button {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
  }
}
x;
  margin: 0 0 0 28px;
  color: #98A2B3;
}

/* FAQ Styling */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid #EAECF0;
}

.faq-item {
  border-bottom: 1px solid #EAECF0;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 400;
  color: #111827;
  transition: color 0.2s ease;
}

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

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  min-width: 32px;
  border: 2px solid #EAECF0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  color: #111827;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  border-color: #EAECF0;
}

.faq-item summary:hover {
  color: #000000;
}

.faq-item summary:hover::after {
  border-color: #111827;
}

.faq-item p {
  margin: 0 0 20px 0;
  padding: 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.75;
}

.faq-item p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1190px) {
  .stack-section { padding: 88px 0; }
  .stack-grid { grid-template-columns: 1fr; gap: 40px; }
  .stack-title { max-width: none; }
  .stack-description { max-width: 640px; }
  .zone-text p { max-width: 540px; }
}

@media (max-width: 720px) {
  .stack-section { padding: 72px 0; }
  .stack-card {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 12px;
    padding: 16px;
  }
  .stack-icon { width: 44px; height: 44px; border-radius: 12px; }
  .stack-icon svg { width: 18px; height: 18px; }
  .stack-badges {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 4px;
    flex-wrap: wrap;
  }
  .stack-card-title { font-size: 16px; }
  .stack-card-desc { font-size: 13.5px; }
  .stack-layers::before { left: 22px; }
  .stack-arrow { margin-left: 22px; height: 24px; }
}

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

.adjacent-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.24s ease;
}

.adjacent-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.01em;
}

.adjacent-card p {
  margin: 0;
  color: #5B6473;
  font-size: 14.5px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .adjacent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .adjacent-grid { grid-template-columns: 1fr; }
}

.adjacent-section {
  background: #000000;
  color: #FFFFFF;
}

.adjacent-section .section-title .eyebrow.small {
  color: #111111;
}

.adjacent-section .section-title h2 {
  color: #FFFFFF;
}

.adjacent-section .section-title p {
  color: rgba(255,255,255,0.7);
}

.adjacent-section .adjacent-card {
  background: #FFFFFF;
}

.adjacent-section .adjacent-card h3 { color: #111111; }
.adjacent-section .adjacent-card p { color: #4B5563; }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid #EAECF0;
}

.faq-item {
  border-bottom: 1px solid #EAECF0;
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 500;
  color: #111827;
  letter-spacing: -0.005em;
}

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

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #D0D5DD;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 400;
  color: #5B6473;
  flex-shrink: 0;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary::after {
  content: "\2212";
  color: #111827;
  border-color: #111827;
}

.faq-item p {
  margin: 0 56px 22px 0;
  color: #475467;
  font-size: 15px;
  line-height: 1.75;
  max-width: 720px;
}

/* Research Page Styling */
.research-intro {
  padding: 96px 0;
}

.research-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.research-intro-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.research-intro-headline {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.research-intro-paragraph {
  font-size: 17px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 500px;
}

.research-intro-right {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.research-focus-area {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 42px;
  border-bottom: 1px solid #EAECF0;
}

.research-focus-area:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.research-focus-title {
  font-size: 16px;
  font-weight: 500;
  color: #111827;
  margin: 0;
  letter-spacing: -0.01em;
}

.research-focus-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.research-focus-list li {
  font-size: 14px;
  line-height: 1.6;
  color: #5B6473;
  position: relative;
  padding-left: 18px;
}

.research-focus-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 400;
}

.research-areas {
  background: #000000;
  color: #FFFFFF;
  padding: 96px 0;
}

.research-areas-header {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}

.research-areas-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 16px;
}

.research-areas-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.research-areas-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.research-area-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.research-area-row:first-child {
  padding-top: 0;
}

.research-area-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.research-area-content {
  flex: 1;
  min-width: 500px;
}

.research-area-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin: 0 0 14px;
}

.research-area-description {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin: 0 0 24px;
  max-width: 680px;
}

.research-area-work {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.research-work-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.research-work-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.research-work-list li {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  position: relative;
  padding-left: 18px;
}

.research-work-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

.research-area-link {
  align-self: flex-start;
  margin-top: 8px;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s ease;
}

.research-area-link:hover {
  color: rgba(255,255,255,0.85);
}

.research-philosophy {
  background: #FFFFFF;
  padding: 96px 0;
}

.research-philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.research-philosophy-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0 0 24px;
}

.research-philosophy-paragraph {
  font-size: 18px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.research-publications {
  background: #f5f5f5;
  padding: 96px 0;
}

.research-publications-header {
  max-width: 900px;
  margin: 0 auto 56px;
  text-align: center;
}

.research-publications-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0 0 16px;
}

.research-publications-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: #5B6473;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.research-publications-buttons {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.research-publications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 48px;
}

.research-publication-card {
  background: transparent;
  border: none;
  border-bottom: 1px solid #EAECF0;
  border-radius: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  transition: background 0.2s ease;
}

.research-publication-card:first-child {
  border-top: 1px solid #EAECF0;
}

.research-publication-card:hover {
  background: rgba(0, 0, 0, 0.02);
}

.research-pub-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B6473;
  width: fit-content;
  flex-shrink: 0;
  min-width: 100px;
  text-align: left;
  grid-column: 1;
  grid-row: 1 / -1;
  padding-right: 16px;
}

.research-pub-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #111827;
  margin: 0;
  grid-column: 2;
  grid-row: 1;
}

.research-pub-abstract {
  font-size: 15px;
  line-height: 1.7;
  color: #5B6473;
  margin: 0;
  grid-column: 2;
  grid-row: 2;
  margin-top: 4px;
}

.research-pub-link {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: color 0.2s ease;
  grid-column: 3;
  grid-row: 1;
  white-space: nowrap;
  justify-self: end;
}

.research-pub-link:hover {
  color: #5B6473;
}

.research-final-cta {
  background: #000000;
  color: #FFFFFF;
  padding: 96px 0;
  text-align: center;
}

.research-cta-headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin: 0 0 20px;
}

.research-cta-text {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin: 0 0 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.research-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.research-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.research-cta-button:hover {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.92);
}

.research-cta-button-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.4);
}

.research-cta-button-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
}

@media (max-width: 1000px) {
  .research-intro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .research-area-content {
    min-width: 0;
    flex: 1;
  }

  .research-area-row {
    flex-direction: column;
    gap: 24px;
  }

  .research-publications-buttons {
    flex-direction: column;
    align-items: center;
  }

  .research-publications-buttons .pill-button {
    width: 100%;
  }

  .research-publication-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .research-pub-category {
    grid-column: 1;
    grid-row: 1;
    min-width: auto;
    padding-right: 0;
  }

  .research-pub-title {
    grid-column: 1;
    grid-row: 2;
  }

  .research-pub-abstract {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }

  .research-pub-link {
    grid-column: 1;
    grid-row: 4;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .research-intro {
    padding: 72px 0;
  }

  .research-intro-headline {
    font-size: 28px;
  }

  .research-intro-paragraph {
    font-size: 16px;
  }

  .research-intro-right {
    gap: 32px;
  }

  .research-focus-area {
    padding-bottom: 32px;
  }

  .research-areas {
    padding: 72px 0;
  }

  .research-areas-header {
    margin-bottom: 48px;
  }

  .research-area-row {
    padding: 36px 0;
  }

  .research-area-title {
    font-size: 20px;
  }

  .research-area-description {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .research-philosophy {
    padding: 72px 0;
  }

  .research-philosophy-headline {
    font-size: 28px;
    margin-bottom: 18px;
  }

  .research-publications {
    padding: 72px 0;
  }

  .research-publications-header {
    margin-bottom: 36px;
  }

  .research-publications-buttons {
    flex-direction: column;
  }

  .research-publications-buttons .pill-button {
    width: 100%;
    padding: 14px 24px;
    font-size: 15px;
  }

  .research-publication-card {
    padding: 20px 0;
    grid-template-columns: 1fr;
  }

  .research-pub-title {
    font-size: 16px;
  }

  .research-pub-abstract {
    font-size: 14px;
  }

  .research-final-cta {
    padding: 72px 0;
  }

  .research-cta-headline {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .research-cta-text {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .research-cta-buttons {
    gap: 12px;
  }

  .research-cta-button {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
  }
}

/* Whitepaper Section */
.research-whitepaper {
  background: #FFFFFF;
  padding: 120px 0;
}

.whitepaper-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 24px;
  padding: 72px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 1400px;
  margin: 0 auto;
}

.whitepaper-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.whitepaper-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B6473;
  width: fit-content;
}

.whitepaper-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.whitepaper-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 500px;
}

.whitepaper-visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #F5F5F5 0%, #EFEFEF 100%);
  border-radius: 16px;
  border: 1px solid #EAECF0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.whitepaper-placeholder {
  font-size: 16px;
  color: #999999;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.whitepaper-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.whitepaper-description {
  font-size: 17px;
  line-height: 1.85;
  color: #475467;
  margin: 0;
  max-width: 550px;
}

.whitepaper-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.whitepaper-button-secondary {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1.5px solid #000000 !important;
}

.whitepaper-button-secondary:hover {
  background: #F8F8F8 !important;
  border-color: #000000 !important;
}

/* Whitepaper Responsive */
@media (max-width: 1200px) {
  .whitepaper-box {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 56px;
  }

  .whitepaper-visual {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .research-whitepaper {
    padding: 80px 0;
  }

  .whitepaper-box {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: 16px;
  }

  .whitepaper-title {
    font-size: 28px;
  }

  .whitepaper-subtitle {
    font-size: 16px;
  }

  .whitepaper-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .whitepaper-buttons {
    flex-direction: column;
  }

  .whitepaper-buttons .pill-button {
    width: 100%;
  }

  .whitepaper-visual {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .whitepaper-box {
    padding: 32px 20px;
    gap: 28px;
  }

  .whitepaper-title {
    font-size: 24px;
  }

  .whitepaper-label {
    font-size: 11px;
  }

  .whitepaper-subtitle {
    font-size: 15px;
  }

  .whitepaper-description {
    font-size: 14px;
  }

  .whitepaper-buttons .pill-button {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* Whitepaper Section */
.research-whitepaper {
  background: #FFFFFF;
  padding: 120px 0;
}

.whitepaper-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 24px;
  padding: 72px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 1400px;
  margin: 0 auto;
}

.whitepaper-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.whitepaper-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B6473;
  width: fit-content;
}

.whitepaper-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.whitepaper-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 500px;
}

.whitepaper-visual {
  width: 100
/* Whitepaper Section */
.research-whitepaper {
  background: #FFFFFF;
  padding: 120px 0;
}

.whitepaper-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid #F0F0F0;
  border-radius: 24px;
  padding: 72px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  max-width: 1400px;
  margin: 0 auto;
}

.whitepaper-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.whitepaper-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5B6473;
  width: fit-content;
}

.whitepaper-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
}

.whitepaper-subtitle {
  font-size: 18px;
  line-height: 1.75;
  color: #5B6473;
  margin: 0;
  max-width: 500px;
}

.whitepaper-visual {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(135deg, #F5F5F5 0%, #EFEFEF 100%);
  border-radius: 16px;
  border: 1px solid #EAECF0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.whitepaper-placeholder {
  font-size: 16px;
  color: #999999;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.whitepaper-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.whitepaper-description {
  font-size: 17px;
  line-height: 1.85;
  color: #475467;
  margin: 0;
  max-width: 550px;
}

.whitepaper-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.whitepaper-button-secondary {
  background: #FFFFFF !important;
  color: #000000 !important;
  border: 1.5px solid #000000 !important;
}

.whitepaper-button-secondary:hover {
  background: #F8F8F8 !important;
  border-color: #000000 !important;
}

@media (max-width: 1200px) {
  .whitepaper-box {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 56px;
  }

  .whitepaper-visual {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 768px) {
  .research-whitepaper {
    padding: 80px 0;
  }

  .whitepaper-box {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
    border-radius: 16px;
  }

  .whitepaper-title {
    font-size: 28px;
  }

  .whitepaper-subtitle {
    font-size: 16px;
  }

  .whitepaper-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .whitepaper-buttons {
    flex-direction: column;
  }

  .whitepaper-buttons .pill-button {
    width: 100%;
  }

  .whitepaper-visual {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .whitepaper-box {
    padding: 32px 20px;
    gap: 28px;
  }

  .whitepaper-title {
    font-size: 24px;
  }

  .whitepaper-label {
    font-size: 11px;
  }

  .whitepaper-subtitle {
    font-size: 15px;
  }

  .whitepaper-description {
    font-size: 14px;
  }

  .whitepaper-buttons .pill-button {
    padding: 14px 20px;
    font-size: 14px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SPACING — tighten gap between What We Do → Technology sections
═══════════════════════════════════════════════════════════════ */
.what-section       { padding-bottom: 40px; }
.technology-section { padding-top:    40px; }

/* ═══════════════════════════════════════════════════════════════
   SHARED CARD GLOW SYSTEM
═══════════════════════════════════════════════════════════════ */

.technology-section .technology-glow-card {
  border-radius: 10px;
}

.technology-section .technology-glow-card,
.adjacent-section .adjacent-card,
.prod-track,
.product-track-card {
  border: 0;
  position: relative;
  overflow: visible;
  box-shadow:
    0 18px 28px -24px rgba(0,0,0,0.22),
    -26px 30px 66px -22px rgba(var(--qim-card-glow), 0.21),
    26px 30px 66px -22px rgba(var(--qim-card-glow), 0.21),
    0 0 56px 8px rgba(var(--qim-card-glow), 0.126);
  transition: box-shadow 0.24s ease;
}

.prod-track.sr {
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.24s ease;
}

.technology-section .technology-glow-card:hover,
.technology-section .technology-glow-card:active,
.adjacent-section .adjacent-card:hover,
.adjacent-section .adjacent-card:active,
.prod-track:hover,
.prod-track:active,
.product-track-card:hover,
.product-track-card:active {
  box-shadow:
    0 20px 34px -22px rgba(0,0,0,0.28),
    -32px 36px 84px -18px rgba(var(--qim-card-glow), 0.35),
    32px 36px 84px -18px rgba(var(--qim-card-glow), 0.35),
    0 0 76px 14px rgba(var(--qim-card-glow), 0.16);
}

.qim-glow-violet {
  --qim-card-glow: var(--qim-glow-violet);
}

.qim-glow-ember {
  --qim-card-glow: var(--qim-glow-ember);
}

.qim-glow-teal {
  --qim-card-glow: var(--qim-glow-teal);
}

/* Product overview page */
.product-page {
  background: #FFFFFF;
}

.product-hero {
  min-height: calc(92vh - var(--nav-shell-height));
  padding: 90px 0 74px;
}

.product-hero::before {
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,0.08), rgba(0,0,0,0) 34%),
    linear-gradient(180deg, #000000 0%, #111111 52%, #000000 100%);
}

.product-hero-content {
  max-width: 980px;
}

.product-hero-content > .eyebrow {
  background: #000000;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.34);
}

.product-hero-content h1 {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.product-hero-content p {
  max-width: 820px;
  line-height: 1.72;
}

.product-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.product-hero .pill-button-solid {
  background: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.product-hero-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.34);
}

.product-hero-secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255,255,255,0.08);
}

.product-status-strip {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 34px auto 0;
}

.product-status-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.05);
  font-size: 12px;
  font-weight: 400;
}

.product-overview-section {
  padding-top: 92px;
}

.product-section-title {
  max-width: 920px;
}

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

.product-track-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 28px;
  transition: box-shadow 0.24s ease;
}

.product-track-card-primary {
  background: #000000;
  color: #FFFFFF;
}

.product-track-card-academy {
  --qim-card-glow: var(--qim-glow-ember);
}

.product-track-card h3 {
  margin: 16px 0 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.product-track-card p {
  margin: 0;
  color: #606060;
  font-size: 15px;
  line-height: 1.72;
}

.product-track-card-primary p {
  color: rgba(255,255,255,0.76);
}

.product-card-label,
.product-cta-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 6px 11px;
  background: #F2F2F2;
  color: #111111;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-track-card-primary .product-card-label,
.product-cta-label {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.78);
}

.product-track-card-academy .product-card-label,
.academy-panel .product-card-label {
  background: rgba(108,59,255,0.1);
  color: #4E24C8;
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card-meta span {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E1E1E1;
  border-radius: 999px;
  padding: 7px 11px;
  color: #4B4B4B;
  font-size: 12px;
  font-weight: 400;
}

.product-track-card-primary .product-card-meta span {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.24);
}

.product-track-card-academy .product-card-meta span {
  border-color: rgba(108,59,255,0.26);
  color: #4E24C8;
}

.product-roadmap-section {
  background: #F7F7F7;
  padding: 96px 0;
}

.product-split-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}

.product-split-header h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  font-weight: 300;
}

.product-split-header p {
  margin: 0;
  color: #555555;
  line-height: 1.76;
}

.roadmap-band {
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 74px 34px 26px;
  overflow: hidden;
}

.roadmap-axis {
  position: relative;
  height: 78px;
  margin: 0 4px;
}

.roadmap-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 3px;
  background: #000000;
}

.roadmap-point {
  position: absolute;
  top: 34px;
  width: 20px;
  height: 20px;
  border: 3px solid #FFFFFF;
  border-radius: 999px;
  background: #000000;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px #000000;
}

.roadmap-point strong,
.roadmap-point em {
  position: absolute;
  left: 50%;
  width: max-content;
  transform: translateX(-50%);
  text-align: center;
  font-style: normal;
  white-space: nowrap;
}

.roadmap-point strong {
  bottom: 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.roadmap-point em {
  top: 28px;
  color: #777777;
  font-size: 12px;
}

.roadmap-now {
  background: #FFFFFF;
  box-shadow: 0 0 0 1px #000000, 0 0 0 7px rgba(0,0,0,0.07);
}

.roadmap-small {
  width: 16px;
  height: 16px;
  top: 36px;
}

.roadmap-dark {
  transform: translateX(-100%);
}

.roadmap-dark strong,
.roadmap-dark em {
  left: 100%;
  transform: translateX(-100%);
  text-align: right;
}

.roadmap-months {
  display: flex;
  justify-content: space-between;
  color: #666666;
  font-size: 12px;
  padding-top: 8px;
}

.roadmap-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.roadmap-stage-card {
  min-height: 300px;
  border: 1px solid #DDDDDD;
  border-top: 6px solid #000000;
  border-radius: 8px;
  background: #FFFFFF;
  padding: 26px;
}

.roadmap-stage-time {
  display: block;
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.roadmap-stage-card ul,
.product-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-stage-card li,
.product-detail-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  color: #4F4F4F;
  line-height: 1.58;
  font-size: 14px;
}

.roadmap-stage-card li::before,
.product-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 1px;
  background: #000000;
}

.stage-red,
.stage-gold,
.stage-teal {
  border-top-color: #000000;
}

.product-detail-section {
  padding: 96px 0;
}

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

.product-detail-panel {
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  background: #FFFFFF;
  padding: clamp(28px, 4vw, 42px);
}

.product-detail-panel h2 {
  margin: 18px 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 300;
}

.product-detail-panel p {
  margin: 0 0 24px;
  color: #555555;
  line-height: 1.76;
}

.academy-panel {
  border-color: rgba(108,59,255,0.34);
  box-shadow: 0 20px 44px rgba(108,59,255,0.1);
}

.academy-button {
  margin-top: 20px;
  background: #6C3BFF;
  color: #FFFFFF;
  border-color: #6C3BFF;
}

.academy-button:hover {
  background: #000000;
  border-color: #000000;
}

.product-cta-strip .cta-inner {
  align-items: flex-end;
}

.product-cta-strip .cta-inner > div {
  max-width: 760px;
}

.product-cta-strip h2 {
  margin-top: 16px;
}

@media (max-width: 980px) {
  .product-track-grid,
  .roadmap-stage-grid,
  .product-detail-grid,
  .product-split-header {
    grid-template-columns: 1fr;
  }

  .product-track-card {
    min-height: 300px;
  }

  .roadmap-stage-card {
    min-height: auto;
  }

  .roadmap-band {
    padding: 58px 22px 24px;
  }
}

@media (max-width: 720px) {
  .product-hero {
    min-height: auto;
    padding: 72px 0 60px;
  }

  .product-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-hero-actions .pill-button {
    width: 100%;
  }

  .roadmap-band {
    display: n
/* Mobile nav: overview links injected by JS */
.mobile-nav .mobile-overview-link {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
  padding-bottom: 10px !important;
}
.navbar-shell[data-theme="light"] .mobile-nav .mobile-overview-link {
  border-bottom-color: rgba(0,0,0,0.07);
}

/* Touch: make nav-chevron visually a tap target */
@media (pointer: coarse) {
  .nav-chevron {
    opacity: 1 !important;
    padding: 6px;
    margin-left: 0;
  }
}

/* ── Footer social icons ────────────────────────────────────────────────── */
.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Form feedback messages ─────────────────────────────────────────────── */
.form-msg {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.form-msg--ok {
  background: #f0faf4;
  color: #1a7a3f;
  border: 1px solid #b6dfc9;
}
.form-msg--err {
  background: #fff5f5;
  color: #b91c1c;
  border: 1px solid #fecaca;
}
.footer .form-msg,
.dark .form-msg {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .form-msg--err,
.dark .form-msg--err {
  background: rgba(185, 28, 28, 0.2);
  color: #fca5a5;
  border-color: rgba(185, 28, 28, 0.4);
}
