:root {
  --black: #050505;
  --ink: #111111;
  --charcoal: #202020;
  --gray-700: #575757;
  --gray-500: #8a8a8a;
  --gray-300: #d4d4d4;
  --gray-200: #e8e8e8;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --accent: #0b5fff;
  --accent-dark: #003db8;
  --accent-light: #9fc2ff;
  --accent-soft: rgba(11, 95, 255, 0.1);
  --accent-line: rgba(11, 95, 255, 0.28);
  --max-width: 1180px;
  --header-height: 92px;
  --radius: 8px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
  --accent-shadow: 0 22px 60px rgba(11, 95, 255, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic",
    system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

.reveal-on-scroll {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 22px, 0);
  transition: opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(20px, 2.6vw, 34px);
  padding: 8px clamp(24px, 4vw, 64px);
  color: var(--black);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: clamp(58px, 5vw, 76px);
  max-width: 178px;
  display: block;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
}

.site-nav {
  display: inline-flex;
  justify-content: center;
  gap: clamp(20px, 2.8vw, 38px);
  font-size: 1.06rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--accent);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  min-height: 46px;
  padding: 0 22px;
  color: var(--white);
  background: var(--accent);
  border: 1px solid var(--accent);
  font-size: 0.98rem;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 48px;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.site-header.menu-active .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.menu-active .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-height) + 58px) 0 0;
  background: var(--gray-100);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58) 48%, rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at center, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.2) 44%, rgba(255, 255, 255, 0.7) 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-ai-security-platform.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.08) brightness(1.08);
}

.hero-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gray-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1180px;
  margin: 0 auto;
  font-size: 4.25rem;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
  word-break: keep-all;
}

.typing-title {
  min-height: 2.08em;
}

.typing-cursor {
  width: 0.07em;
  height: 0.82em;
  display: inline-block;
  margin-left: 0.06em;
  background: currentColor;
  vertical-align: 0.04em;
  transform: translateY(-0.08em);
  animation: typing-cursor-blink 820ms steps(2, start) infinite;
}

@keyframes typing-cursor-blink {
  50% {
    opacity: 0;
  }
}

.hero-lead {
  max-width: 1120px;
  margin: 26px auto 0;
  color: var(--gray-700);
  font-size: 1.12rem;
  line-height: 1.72;
  word-break: keep-all;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
}

.button:disabled {
  opacity: 0.58;
  cursor: progress;
  transform: none;
}

.button-dark {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--white);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-light {
  color: var(--black);
  background: var(--white);
  border-color: var(--black);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.button-invert {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.button-invert:hover,
.button-invert:focus-visible {
  color: var(--white);
  background: transparent;
}

.button-ghost {
  color: var(--black);
  background: var(--white);
  border-color: var(--black);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.button-ghost-dark {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost-dark:hover,
.button-ghost-dark:focus-visible {
  color: var(--black);
  background: var(--white);
  border-color: var(--white);
}

.hero-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-top: -36px;
  padding-bottom: 42px;
}

.metric {
  position: relative;
  min-height: 286px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "value"
    "label"
    "body"
    "list";
  align-content: start;
  padding: clamp(30px, 3vw, 42px);
  overflow: hidden;
  text-align: left;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(11, 95, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 54px rgba(5, 5, 5, 0.08);
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--accent);
}

.metric::after {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(5, 5, 5, 0.06);
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
  line-height: 1;
  font-weight: 900;
  pointer-events: none;
}

.metric:nth-child(1)::after {
  content: "FOCUS";
}

.metric:nth-child(2)::after {
  content: "MODULES";
}

.metric:nth-child(3)::after {
  content: "POC";
}

.metric strong {
  grid-area: value;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: clamp(4.1rem, 5.6vw, 5.8rem);
  line-height: 1;
  color: var(--accent);
}

.metric strong small {
  font-size: 1.18rem;
  font-weight: 800;
}

.metric span {
  grid-area: label;
  margin-top: 26px;
  color: var(--black);
  font-size: 1.28rem;
  line-height: 1.2;
  font-weight: 800;
}

.metric p {
  grid-area: body;
  max-width: none;
  margin: 16px 0 0;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.65;
  word-break: keep-all;
}

.metric-list {
  grid-area: list;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.metric-list li {
  padding: 8px 10px;
  color: var(--black);
  border: 1px solid rgba(11, 95, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(11, 95, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.15;
}

.trust-strip {
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.trust-content {
  min-height: 82px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
}

.trust-content > span {
  color: var(--gray-700);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-content ul {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-content li {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.section {
  padding: 108px 0;
}

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

.section-soft {
  background: var(--gray-100);
}

.section-black {
  color: var(--white);
  background: var(--black);
}

.section-heading h2,
.contact-intro h1,
.contact-intro h2 {
  max-width: 800px;
  margin: 0;
  font-size: 3.3rem;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: 0;
  word-break: keep-all;
}

.section-heading p:not(.eyebrow),
.contact-intro p {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--gray-700);
  word-break: keep-all;
}

.section-black .section-heading p,
.section-black .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.page-hero {
  padding: calc(var(--header-height) + 78px) 0 82px;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
}

.page-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 4rem;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
  word-break: keep-all;
}

.page-hero p:not(.eyebrow) {
  margin: 0;
  color: var(--gray-700);
  font-size: 1.12rem;
  word-break: keep-all;
}

.company-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--header-height) + 88px) 0 104px;
  color: var(--white);
  background: var(--black);
}

.company-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/hero-ai-security-platform.png");
  background-size: cover;
  background-position: center;
  filter: grayscale(1) contrast(1.12) brightness(0.62);
}

.company-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.56) 52%, rgba(0, 0, 0, 0.82)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 52%);
}

.company-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(34px, 5.6vw, 82px);
  align-items: end;
}

.company-hero .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.company-hero-copy h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(3.3rem, 5.8vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: 0;
  word-break: keep-all;
}

.company-hero-copy > p {
  max-width: 780px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.16rem;
  line-height: 1.8;
  word-break: keep-all;
}

.company-hero-panel {
  display: grid;
  gap: 12px;
}

.company-hero-panel article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.company-method-list span {
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-hero-panel span {
  color: var(--accent-light);
  font-size: 1.35rem;
  line-height: 0.9;
  font-weight: 900;
}

.company-hero-panel h2 {
  margin: 30px 0 8px;
  font-size: 1.5rem;
  line-height: 1.16;
}

.company-hero-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  word-break: keep-all;
}

.company-belief-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.company-belief-copy > p {
  max-width: 820px;
  margin: 8px 0 0;
  color: var(--gray-700);
  font-size: 1.18rem;
  line-height: 1.82;
  word-break: keep-all;
}

.company-two-axis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.company-two-axis article,
.company-scope-grid article {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.company-two-axis article {
  min-height: 235px;
  padding: 28px;
}

.company-two-axis h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.18;
  word-break: keep-all;
}

.company-two-axis p,
.company-scope-grid p,
.company-method-list p,
.company-cta-layout p {
  margin: 0;
  color: var(--gray-700);
  word-break: keep-all;
}

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

.company-scope-grid article {
  min-height: 330px;
  padding: 26px;
}

.company-scope-grid span {
  color: var(--accent);
  display: block;
  font-size: clamp(2.9rem, 5vw, 4.25rem);
  line-height: 0.9;
  font-weight: 900;
}

.company-scope-grid h3 {
  margin: 48px 0 14px;
  font-size: 1.45rem;
  line-height: 1.18;
  word-break: keep-all;
}

.company-method-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.company-method-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.company-method-list li {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.company-method-list h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 1.38rem;
  line-height: 1.18;
  word-break: keep-all;
}

.company-method-list div {
  max-width: 620px;
}

.company-method-list p {
  color: rgba(255, 255, 255, 0.68);
}

.company-cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
}

.company-cta-layout h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 5.4vw, 5.2rem);
  line-height: 1.02;
  word-break: keep-all;
}

.company-cta-layout > p {
  max-width: 760px;
  font-size: 1.16rem;
  line-height: 1.82;
}

.compact {
  margin-bottom: 42px;
}

.split-layout,
.usecase-layout,
.roadmap-layout,
.team-layout,
.faq-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section-body > p {
  margin: 38px 0 0;
  color: var(--gray-700);
  font-size: 1.12rem;
  word-break: keep-all;
}

.home-tech-index {
  color: var(--accent);
  font-size: clamp(2.9rem, 6vw, 4.6rem);
  line-height: 0.9;
  font-weight: 900;
}

.text-link-invert {
  color: var(--white);
}

.home-technology-section .row-heading {
  align-items: start;
}

.home-technology-section .section-heading h2 {
  max-width: 860px;
}

.home-tech-stack {
  display: grid;
  gap: 12px;
}

.home-tech-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) minmax(220px, 0.48fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(11, 95, 255, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.04);
}

.home-tech-card h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.1;
  word-break: keep-all;
}

.home-tech-card p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.02rem;
  line-height: 1.72;
  word-break: keep-all;
}

.home-tech-card ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-tech-card li {
  padding: 9px 11px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
}

.home-event-grid {
  max-width: none;
}

.home-path-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding-top: 6px;
}

.home-path-copy h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  word-break: keep-all;
}

.home-path-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--gray-700);
  font-size: 1.12rem;
  word-break: keep-all;
}

.home-path-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.link-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.link-card {
  min-height: 198px;
  display: block;
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: var(--accent-shadow);
}

.link-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.link-card h3 {
  margin: 22px 0 8px;
  font-size: 1.2rem;
}

.link-card p {
  margin: 0;
  color: var(--gray-700);
  word-break: keep-all;
}

.principle-card,
.product-card,
.event-card,
.team-card,
.usecase-card {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 220ms ease, box-shadow 220ms ease,
    transform 220ms ease;
}

.home-tech-card,
.event-card,
.team-card,
.company-two-axis article,
.company-scope-grid article,
.company-method-list li,
.technology-roadmap li,
.technology-usecase-list .usecase-card,
.contact-form {
  position: relative;
  overflow: hidden;
}

.home-tech-card::before,
.event-card::before,
.team-card::before,
.company-two-axis article::before,
.company-scope-grid article::before,
.company-method-list li::before,
.technology-roadmap li::before,
.technology-usecase-list .usecase-card::before,
.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-28%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(11, 95, 255, 0.88),
    transparent
  );
  transition: opacity 220ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .home-tech-card:hover,
  .event-card:hover,
  .team-card:hover,
  .company-two-axis article:hover,
  .company-scope-grid article:hover,
  .company-method-list li:hover,
  .technology-roadmap li:hover,
  .technology-usecase-list .usecase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 95, 255, 0.42);
    box-shadow: 0 24px 70px rgba(5, 5, 5, 0.13);
  }

  .section-black .team-card:hover,
  .technology-roadmap li:hover,
  .technology-usecase-list .usecase-card:hover {
    box-shadow: 0 24px 70px rgba(11, 95, 255, 0.18);
  }

  .home-tech-card:hover::before,
  .event-card:hover::before,
  .team-card:hover::before,
  .company-two-axis article:hover::before,
  .company-scope-grid article:hover::before,
  .company-method-list li:hover::before,
  .technology-roadmap li:hover::before,
  .technology-usecase-list .usecase-card:hover::before,
  .contact-form:focus-within::before {
    opacity: 1;
    transform: translateX(0);
  }
}

.principle-card {
  min-height: 225px;
  padding: 24px;
}

.index-pill {
  width: 34px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

.principle-card h3,
.product-card h3,
.event-card h3,
.team-card h3,
.usecase-card h3,
.tech-card h3,
.roadmap li h3 {
  margin: 22px 0 10px;
  font-size: 1.16rem;
  line-height: 1.28;
  word-break: keep-all;
}

.principle-card p,
.product-card p,
.event-card p,
.team-card p,
.usecase-card p,
.tech-card p,
.roadmap li p {
  margin: 0;
  color: var(--gray-700);
  word-break: keep-all;
}

.row-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}

.text-link,
.section-note {
  font-weight: 800;
  white-space: nowrap;
}

.text-link {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
}

.text-emphasis {
  color: var(--black);
  font-weight: 900;
  background-image: linear-gradient(transparent 62%, rgba(11, 95, 255, 0.18) 0);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-black .text-emphasis,
.company-hero .text-emphasis,
.section-contact .text-emphasis {
  color: var(--white);
  background-image: linear-gradient(transparent 62%, rgba(11, 95, 255, 0.46) 0);
}

.section-note {
  color: var(--gray-700);
  font-size: 0.88rem;
}

.technology-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--gray-300);
  border: 1px solid var(--gray-300);
}

.tech-card {
  min-height: 310px;
  padding: 28px;
  background: var(--white);
}

.tech-card .step {
  display: block;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tech-card::after {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  margin-top: 28px;
  background:
    linear-gradient(90deg, var(--accent) 1px, transparent 1px),
    linear-gradient(0deg, var(--accent) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.18;
}

.technology-heading {
  max-width: 860px;
}

.technology-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--gray-700);
  font-size: 1.08rem;
  word-break: keep-all;
}

.technology-row-heading {
  align-items: start;
  margin-bottom: 42px;
}

.technology-row-heading .section-heading h2,
.technology-row-heading h2 {
  max-width: 780px;
}

.technology-section-copy {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--gray-700);
  font-size: 1.08rem;
  line-height: 1.76;
  word-break: keep-all;
}

.technology-solution-list {
  display: grid;
  gap: 22px;
}

.technology-solution {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  min-height: 560px;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background-color: var(--black);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  transition: border-color 240ms ease, box-shadow 240ms ease,
    transform 240ms ease;
}

.technology-solution::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.1) 78%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 45%);
}

.technology-solution-crypto {
  background-image: url("assets/technology-cryptography.png");
}

.technology-solution-prompt {
  background-image: url("assets/technology-prompt-privacy.png");
}

.technology-solution-distributed {
  background-image: url("assets/technology-distributed-learning.png");
}

@media (hover: hover) {
  .technology-solution:hover {
    transform: translateY(-5px);
    border-color: rgba(159, 194, 255, 0.45);
    box-shadow: 0 34px 90px rgba(5, 5, 5, 0.2);
  }
}

.technology-solution-content {
  grid-column: 1;
  display: grid;
  justify-items: start;
}

.solution-index {
  width: 36px;
  aspect-ratio: 1;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--accent-light);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 800;
}

.technology-solution h3 {
  max-width: 620px;
  margin: 10px 0 18px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
  word-break: keep-all;
}

.technology-solution-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.75;
  word-break: keep-all;
}

.solution-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.solution-points li {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list article {
  padding: 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
}

.detail-list h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
}

.detail-list p {
  margin: 0;
  color: var(--gray-700);
  word-break: keep-all;
}

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

.preview-grid .product-card {
  box-shadow: var(--accent-shadow);
}

.product-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  color: var(--white);
  background: var(--black);
  border-color: rgba(255, 255, 255, 0.2);
}

.product-card .eyebrow {
  color: var(--accent-light);
}

.product-card p {
  color: rgba(255, 255, 255, 0.66);
}

.status-list {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.status-list li {
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.usecase-card {
  min-height: 190px;
  padding: 24px;
}

.technology-usecase-list .usecase-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border-left: 5px solid var(--accent);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background-color: #060606;
  background-image:
    linear-gradient(90deg, rgba(2, 2, 2, 0.9), rgba(2, 2, 2, 0.7) 48%, rgba(2, 2, 2, 0.18)),
    var(--technology-card-image);
  background-position: var(--technology-card-position, center);
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.technology-usecase-list .usecase-card h3 {
  position: relative;
  margin-top: 0;
  font-size: 1.35rem;
  color: var(--white);
}

.technology-usecase-list .usecase-card p {
  position: relative;
  max-width: 540px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.technology-card-bg-agent {
  --technology-card-image: url("assets/technology-card-agent.png");
}

.technology-card-bg-data {
  --technology-card-image: url("assets/technology-card-data.png");
}

.technology-card-bg-generation {
  --technology-card-image: url("assets/technology-card-generation.png");
}

.technology-card-bg-evaluation {
  --technology-card-image: url("assets/technology-card-evaluation.png");
}

.technology-card-bg-research {
  --technology-card-image: url("assets/technology-card-research.png");
}

.technology-card-bg-implementation {
  --technology-card-image: url("assets/technology-card-implementation.png");
}

.technology-card-bg-validation {
  --technology-card-image: url("assets/technology-card-validation.png");
}

.event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 980px;
  margin-inline: auto;
}

.event-card {
  min-height: auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: start;
  padding: 28px;
  box-shadow: none;
}

.event-meta {
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 12px;
}

.event-card time {
  display: block;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

.event-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  color: var(--black);
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.event-tag-poc {
  color: var(--white);
  background: var(--black);
  border-color: var(--black);
}

.event-tag-research {
  color: var(--white);
  background: #005dff;
  border-color: #005dff;
}

.event-tag-startup {
  color: var(--white);
  background: #00a86b;
  border-color: #00a86b;
}

.event-tag-competition {
  color: var(--white);
  background: #7c3aed;
  border-color: #7c3aed;
}

.event-tag-award {
  color: var(--white);
  background: #e68a00;
  border-color: #e68a00;
}

.event-tag-exhibition {
  color: var(--white);
  background: #0099d8;
  border-color: #0099d8;
}

.event-card h3 {
  margin: 0 0 10px;
  font-size: 1.32rem;
}

.event-card p {
  max-width: 660px;
}

.event-body {
  min-width: 0;
}

.roadmap {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--black);
}

.roadmap li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
}

.roadmap .phase {
  color: var(--accent);
  font-weight: 800;
}

.roadmap li h3 {
  margin-top: 0;
}

.technology-roadmap {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  border-top: 0;
}

.technology-roadmap li {
  display: block;
  min-height: 280px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background-color: #070707;
  background-image:
    linear-gradient(180deg, rgba(2, 2, 2, 0.8), rgba(2, 2, 2, 0.48) 56%, rgba(2, 2, 2, 0.84)),
    var(--technology-card-image);
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.technology-roadmap .phase {
  display: block;
  margin-bottom: 58px;
  color: #7fb0ff;
}

.technology-roadmap li h3 {
  margin: 0 0 12px;
  font-size: 1.38rem;
  color: var(--white);
}

.technology-roadmap li p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.72;
}

.technology-collab-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
}

.technology-collab-layout h2 {
  max-width: 860px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.04;
  word-break: keep-all;
}

.technology-collab-layout p:not(.eyebrow) {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  line-height: 1.78;
  word-break: keep-all;
}

.technology-collab-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.team-section-inner {
  display: grid;
  gap: 42px;
}

.team-block {
  display: grid;
  gap: 18px;
}

.team-block-open {
  margin-top: 14px;
}

.team-block-heading {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.team-block-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.35;
  word-break: keep-all;
}

.team-block-heading .eyebrow {
  margin-bottom: 10px;
}

.team-grid {
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 300px));
  justify-content: center;
  gap: 16px;
}

.team-grid-open {
  max-width: 860px;
}

.team-grid-members {
  max-width: 980px;
}

.team-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  padding: 18px;
  color: var(--black);
  background: var(--white);
  border-color: var(--gray-200);
}

.team-card-placeholder {
  border-style: dashed;
  border-color: rgba(13, 96, 255, 0.38);
  background: rgba(255, 255, 255, 0.94);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-100);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.08) contrast(1.02);
}

.team-photo-slot {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px dashed rgba(13, 96, 255, 0.42);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 800;
}

.team-card h3 {
  margin-bottom: 8px;
  color: var(--black);
}

.team-card p {
  margin-bottom: 0;
  color: var(--gray-700);
}

.team-info-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
}

.team-info-row {
  display: grid;
  gap: 3px;
  padding-top: 10px;
  border-top: 1px solid var(--gray-200);
}

.team-info-row dt {
  color: var(--gray-500);
  font-size: 0.72rem;
  font-weight: 800;
}

.team-info-row dd {
  min-width: 0;
  margin: 0;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  word-break: keep-all;
}

.team-role {
  display: block;
  margin-top: 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.team-email {
  display: inline-flex;
  width: fit-content;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
  word-break: break-all;
}

.team-email:hover,
.team-email:focus-visible {
  color: var(--black);
}

.accordion {
  border-top: 1px solid var(--black);
}

.accordion-item {
  border-bottom: 1px solid var(--gray-300);
}

.accordion-item button {
  width: 100%;
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  align-items: center;
  padding: 0;
  color: var(--black);
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.accordion-item button:hover,
.accordion-item button:focus-visible {
  color: var(--accent);
}

.accordion-icon {
  position: relative;
  width: 28px;
  aspect-ratio: 1;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.accordion-icon::before,
.accordion-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 1px;
  background: currentColor;
}

.accordion-icon::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.accordion-item button[aria-expanded="true"] .accordion-icon::after {
  transform: rotate(0deg);
}

.accordion-panel {
  padding: 0 52px 24px 0;
  color: var(--gray-700);
}

.accordion-panel p {
  margin: 0;
  word-break: keep-all;
}

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

.contact-page {
  padding-top: calc(var(--header-height) + 86px);
}

.contact-intro p {
  color: rgba(255, 255, 255, 0.68);
}

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

.contact-points li {
  position: relative;
  padding: 0 0 12px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.74);
  white-space: pre-line;
}

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 18px rgba(159, 194, 255, 0.55);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease,
    background 220ms ease;
}

.contact-form:focus-within {
  border-color: rgba(159, 194, 255, 0.58);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 24px 72px rgba(11, 95, 255, 0.16);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(0, 0, 0, 0.28);
  outline: 0;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-light);
  box-shadow: 0 0 0 3px rgba(11, 95, 255, 0.28);
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-status {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 24px;
  margin: 0;
  color: var(--accent-light);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.55;
  word-break: keep-all;
  overflow-wrap: normal;
}

.site-footer {
  padding: 58px 0 28px;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand .brand-logo {
  width: clamp(180px, 20vw, 240px);
  height: auto;
}

.site-footer p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer a {
  display: table;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.footer-bottom a {
  margin: 0;
}

.callout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.callout-layout h2 {
  max-width: 760px;
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: 0;
  word-break: keep-all;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: grid;
    justify-items: start;
    gap: 0;
    padding: 18px 20px 28px;
    color: var(--black);
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(-100% - var(--header-height)));
    transition: opacity 180ms ease, transform 180ms ease, visibility 0ms 180ms;
  }

  .site-header.menu-active .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0ms;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
  }

  .site-nav a::after {
    display: none;
  }

  .header-cta {
    grid-column: 3;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 4;
    justify-self: end;
  }

  .hero-grid,
  .page-hero-grid,
  .home-path-layout,
  .technology-collab-layout,
  .company-hero-grid,
  .company-belief-layout,
  .company-method-layout,
  .company-cta-layout,
  .split-layout,
  .usecase-layout,
  .roadmap-layout,
  .team-layout,
  .faq-layout,
  .contact-layout,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 3.6rem;
  }

  .section-heading h2,
  .page-hero h1,
  .contact-intro h1,
  .contact-intro h2 {
    font-size: 2.8rem;
  }

  .principle-grid,
  .link-card-grid,
  .company-scope-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(240px, 300px));
  }

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

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

  .technology-collab-actions {
    justify-content: flex-start;
  }

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

  .home-tech-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .home-tech-card ul {
    grid-column: 2;
    justify-content: flex-start;
  }

  .home-path-actions {
    justify-content: flex-start;
  }

  .technology-solution {
    grid-template-columns: minmax(0, 1fr);
    background-position: center;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 78px;
  }

  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .page-hero-grid > *,
  .technology-row-heading > *,
  .technology-solution-content,
  .technology-solution-content > *,
  .solution-points,
  .solution-points li {
    min-width: 0;
  }

  .page-hero-grid,
  .technology-row-heading,
  .technology-solution-list,
  .technology-solution,
  .technology-solution-content {
    max-width: 100%;
  }

  .technology-solution-content {
    width: min(100%, calc(100vw - 64px));
  }

  .page-hero p:not(.eyebrow),
  .technology-section-copy,
  .technology-solution-content > p:not(.eyebrow) {
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .page-hero p:not(.eyebrow),
  .technology-section-copy {
    max-width: calc(100vw - 28px);
  }

  .technology-solution h3,
  .technology-solution-content > p:not(.eyebrow),
  .solution-points {
    max-width: calc(100vw - 64px);
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: 8px 16px;
    gap: 12px;
  }

  .brand {
    font-size: 0.82rem;
  }

  .brand-logo {
    width: auto;
    height: 58px;
    max-width: calc(100vw - 112px);
  }

  .menu-toggle {
    position: absolute;
    top: 50%;
    right: 16px;
    display: inline-flex;
    grid-column: 3;
    width: 46px;
    transform: translateY(-50%);
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 36px);
  }

  .hero-grid {
    min-height: auto;
    justify-items: stretch;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-items: stretch;
  }

  .hero h1 {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 2rem;
    line-height: 1.08;
    word-break: break-all;
    overflow-wrap: anywhere;
    line-break: anywhere;
  }

  .hero h1 [data-typing-target] {
    display: block;
    width: 100%;
    max-width: 100%;
  }

  .hero-lead {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    font-size: 0.98rem;
    line-height: 1.72;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-lead br {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 28px;
    padding-bottom: 32px;
  }

  .metric {
    min-height: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "value"
      "label"
      "body"
      "list";
    padding: 26px;
  }

  .metric::after {
    display: none;
  }

  .metric strong {
    font-size: 3.35rem;
  }

  .metric span {
    margin-top: 16px;
    font-size: 1.02rem;
  }

  .metric p {
    max-width: none;
    font-size: 0.95rem;
  }

  .metric-list {
    margin-top: 18px;
  }

  .trust-content {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0;
  }

  .trust-content ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 68px 0;
  }

  .contact-page {
    padding-top: calc(var(--header-height) + 56px);
  }

  .section-heading h2,
  .page-hero h1,
  .contact-intro h1,
  .contact-intro h2 {
    font-size: 2.25rem;
  }

  .page-hero {
    padding: calc(var(--header-height) + 46px) 0 58px;
  }

  .company-hero {
    padding: calc(var(--header-height) + 48px) 0 64px;
  }

  .company-hero-copy h1 {
    font-size: 3.2rem;
  }

  .company-hero-copy > p,
  .company-belief-copy > p,
  .company-cta-layout > p {
    font-size: 1.04rem;
  }

  .principle-grid,
  .link-card-grid,
  .company-two-axis,
  .company-scope-grid,
  .technology-roadmap,
  .product-grid,
  .usecase-list,
  .technology-map,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .home-tech-card ul {
    grid-column: auto;
  }

  .home-path-copy h2 {
    font-size: 2.4rem;
  }

  .company-method-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .company-scope-grid article,
  .company-two-axis article {
    min-height: auto;
  }

  .company-scope-grid h3 {
    margin-top: 48px;
  }

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

  .team-grid {
    grid-template-columns: minmax(0, 320px);
  }

  .technology-solution {
    min-height: auto;
    padding: 28px 18px;
    background-position: center right;
  }

  .technology-solution h3 {
    width: 100%;
    max-width: 100%;
    font-size: 1.72rem;
    line-height: 1.12;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .technology-solution-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .solution-points li {
    max-width: 100%;
    padding: 8px 9px;
    font-size: 0.76rem;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .technology-section-copy {
    font-size: 1rem;
  }

  .technology-roadmap li {
    min-height: auto;
  }

  .technology-roadmap .phase {
    margin-bottom: 36px;
  }

  .row-heading {
    display: grid;
    align-items: start;
  }

  .roadmap li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-layout,
  .contact-layout > *,
  .contact-intro,
  .contact-form,
  .contact-form label,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-width: 0;
    max-width: 100%;
  }

  .contact-layout,
  .contact-form {
    width: calc(100vw - 96px) !important;
    max-width: calc(100vw - 96px) !important;
  }

  .section-contact {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .contact-intro h1,
  .contact-intro p,
  .contact-points,
  .contact-points li {
    width: calc(100vw - 96px) !important;
    max-width: calc(100vw - 96px) !important;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .contact-intro h1 {
    font-size: 2rem;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .callout-layout h2 {
    font-size: 2.15rem;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .section-heading h2,
  .page-hero h1,
  .contact-intro h1,
  .contact-intro h2 {
    font-size: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
