:root {
  color-scheme: dark;
  --ink: #050a0f;
  --ink-soft: #08131d;
  --ink-raised: #0b1721;
  --paper: #f5f8fa;
  --muted: #9babb7;
  --dim: #71818d;
  --line: rgba(164, 205, 223, 0.16);
  --line-strong: rgba(164, 225, 235, 0.32);
  --orange: #ff6333;
  --orange-hot: #ff4f18;
  --cyan: #25e6d2;
  --blue: #4eb5ff;
  --green: #91e477;
  --yellow: #f1d96b;
  --shell: min(1280px, calc(100vw - 64px));
  --display: "Bahnschrift Condensed", "DIN Condensed", "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --body: "Source Han Sans SC", "Noto Sans CJK SC", "Microsoft YaHei", sans-serif;
  --mono: "Cascadia Mono", "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  --mouse-x: 72%;
  --mouse-y: 14%;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle 720px at var(--mouse-x) var(--mouse-y), rgba(36, 230, 210, 0.08), transparent 62%),
    linear-gradient(180deg, #050a0f 0%, #06111a 44%, #050a0f 100%);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

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

::selection {
  color: #051015;
  background: var(--cyan);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--cyan);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.ambient {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.13;
}

.ambient-one {
  top: 12vh;
  right: -10vw;
  width: 46vw;
  height: 46vw;
  background: var(--cyan);
}

.ambient-two {
  top: 170vh;
  left: -18vw;
  width: 36vw;
  height: 36vw;
  background: var(--orange);
  opacity: 0.08;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-color: var(--line);
  background: rgba(5, 10, 15, 0.9);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
}

.nav-shell {
  display: flex;
  align-items: center;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  width: 210px;
  min-height: 46px;
}

.brand img {
  width: 192px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 24px 0;
  color: #a9b5be;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 160ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--cyan));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  margin-left: 34px;
  border: 1px solid rgba(255, 99, 51, 0.6);
  color: #fff;
  background: rgba(255, 99, 51, 0.08);
  font-size: 14px;
  font-weight: 800;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  transition:
    background 160ms ease,
    border-color 160ms ease;
}

.nav-cta b {
  margin-left: 22px;
  color: var(--orange);
}

.nav-cta:hover {
  border-color: var(--orange);
  background: rgba(255, 99, 51, 0.18);
}

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

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: 76px;
  overflow: clip;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 10, 15, 0.98) 0%, rgba(5, 10, 15, 0.94) 34%, rgba(5, 10, 15, 0.42) 72%, rgba(5, 10, 15, 0.82) 100%),
    linear-gradient(180deg, transparent 60%, var(--ink) 98%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(88, 190, 214, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(88, 190, 214, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000, transparent 82%);
}

.hero-grid::before,
.hero-grid::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(37, 230, 210, 0.14);
  border-radius: 50%;
}

.hero-grid::before {
  top: 12%;
  right: 7%;
  width: min(54vw, 860px);
  aspect-ratio: 1;
}

.hero-grid::after {
  top: 24%;
  right: 17%;
  width: min(34vw, 520px);
  aspect-ratio: 1;
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(460px, 0.86fr) minmax(640px, 1.14fr);
  align-items: center;
  min-height: calc(100svh - 76px - 46px);
  padding-block: clamp(64px, 8vh, 108px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(620px, 100%);
  min-width: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 31px;
  margin-bottom: 30px;
  border: 1px solid var(--line-strong);
  color: #b7c7d2;
  background: rgba(7, 18, 27, 0.76);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}

.eyebrow span {
  padding: 5px 13px;
}

.eyebrow b {
  align-self: stretch;
  padding: 5px 10px;
  border-left: 1px solid var(--line-strong);
  color: var(--ink);
  background: var(--cyan);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 5.7vw, 88px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span,
.hero h1 em {
  display: block;
}

.hero h1 em {
  margin-top: 8px;
  color: transparent;
  background: linear-gradient(90deg, var(--orange) 0%, #ff9a56 48%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: normal;
}

.hero-copy > p {
  max-width: 570px;
  margin: 30px 0 0;
  color: #aebdc7;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 190px;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-size: 14px;
  font-weight: 800;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button i {
  margin-left: 24px;
  font-style: normal;
  font-weight: 400;
}

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

.button-primary {
  border-color: var(--orange);
  color: #fff;
  background: var(--orange-hot);
  box-shadow: 0 14px 40px rgba(255, 79, 24, 0.22);
}

.button-primary:hover {
  background: #ff6333;
}

.button-quiet {
  background: rgba(8, 20, 29, 0.72);
}

.button-quiet:hover {
  border-color: var(--cyan);
  background: rgba(37, 230, 210, 0.08);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 580px;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-facts div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 82px;
  padding: 14px 18px 14px 0;
}

.hero-facts div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.hero-facts strong {
  color: var(--paper);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.hero-facts span {
  margin-left: 10px;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.45;
}

.hero-visual {
  position: absolute;
  top: 50%;
  right: -14vw;
  z-index: 1;
  width: min(78vw, 1240px);
  aspect-ratio: 1823 / 863;
  overflow: hidden;
  border: 1px solid rgba(79, 205, 222, 0.24);
  background: #04101a;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.44);
  transform: translateY(-50%);
  clip-path: polygon(4% 0, 100% 0, 100% 92%, 96% 100%, 0 100%, 0 8%);
}

.hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--ink) 0%, transparent 32%),
    linear-gradient(180deg, rgba(5, 10, 15, 0.12), transparent 58%, rgba(5, 10, 15, 0.72));
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  pointer-events: none;
  background: repeating-linear-gradient(180deg, transparent 0 5px, rgba(151, 228, 238, 0.035) 6px);
  mix-blend-mode: screen;
}

.hero-visual picture,
.hero-visual img {
  width: 100%;
  height: 100%;
}

.hero-visual img {
  object-fit: cover;
}

.visual-topline,
.visual-caption {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.visual-topline {
  top: 22px;
  right: 28px;
  left: 28%;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(141, 217, 228, 0.24);
  color: #a8c0cc;
}

.visual-topline b {
  color: var(--cyan);
}

.visual-topline b::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}

.visual-caption {
  right: 32px;
  bottom: 20px;
  gap: 9px;
  color: #8ea4af;
}

.visual-caption i {
  width: 16px;
  height: 1px;
  background: var(--orange);
}

.signal-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 46px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: rgba(5, 10, 15, 0.84);
}

.signal-track {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 1180px;
  height: 100%;
  color: #81939e;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.signal-track i {
  width: 5px;
  height: 5px;
  background: var(--orange);
  transform: rotate(45deg);
}

.section {
  position: relative;
  padding-block: clamp(96px, 10vw, 152px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}

.section-index {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.section-index::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentcolor;
}

.section-head h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 4.2vw, 64px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.section-intro {
  max-width: 500px;
  margin: 0;
  padding-bottom: 6px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.products-section {
  background:
    linear-gradient(90deg, transparent 0, rgba(40, 171, 193, 0.035) 50%, transparent 100%),
    var(--ink);
}

.products-section::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.42;
  background-image: linear-gradient(90deg, transparent 49.9%, rgba(81, 170, 191, 0.08) 50%, transparent 50.1%);
  background-size: calc(100% / 4) 100%;
}

.products-section .shell {
  position: relative;
  z-index: 1;
}

.product-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.product-legend span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: #9eb0ba;
  background: rgba(9, 23, 34, 0.6);
  font-size: 12px;
}

.dot {
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
}

.dot.orange { background: var(--orange); }
.dot.cyan { background: var(--cyan); }
.dot.green { background: var(--green); }
.dot.yellow { background: var(--yellow); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 28px 25px 22px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--card-accent) 6%, transparent), transparent 38%),
    rgba(8, 20, 29, 0.74);
  transition:
    transform 200ms ease,
    background 200ms ease,
    border-color 200ms ease;
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  .product-card {
    background: rgba(8, 20, 29, 0.82);
  }
}

.product-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--card-accent), transparent 70%);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.product-card::after {
  position: absolute;
  right: -52px;
  bottom: -62px;
  width: 160px;
  height: 160px;
  content: "";
  border: 1px solid color-mix(in srgb, var(--card-accent) 32%, transparent);
  border-radius: 50%;
  opacity: 0.34;
  transition: transform 260ms ease;
}

.product-card:hover {
  z-index: 2;
  border-color: color-mix(in srgb, var(--card-accent) 40%, transparent);
  background:
    linear-gradient(150deg, color-mix(in srgb, var(--card-accent) 12%, transparent), transparent 46%),
    rgba(9, 25, 35, 0.94);
  transform: translateY(-5px);
}

.product-card:hover::before {
  transform: scaleX(1);
}

.product-card:hover::after {
  transform: scale(1.18);
}

.card-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.card-rail span {
  color: var(--card-accent);
  font-size: 13px;
  font-weight: 800;
}

.product-mark {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 50%, transparent);
  color: var(--card-accent);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 12%, transparent), transparent),
    rgba(3, 12, 18, 0.78);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 13px, 100% 100%, 0 100%);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 24px;
  margin-bottom: 9px;
  color: var(--dim);
  font-size: 11px;
}

.product-meta b {
  padding: 2px 7px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 38%, transparent);
  color: var(--card-accent);
  font-size: 10px;
  font-weight: 700;
}

.product-meta b.beta {
  color: #061016;
  background: var(--yellow);
}

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

.product-en {
  margin: 3px 0 18px !important;
  color: var(--card-accent) !important;
  font-family: var(--mono);
  font-size: 9px !important;
  letter-spacing: 0.11em;
  line-height: 1.5 !important;
}

.product-card > p {
  margin: 0;
  color: #9aabb5;
  font-size: 14px;
  line-height: 1.8;
}

.product-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 20px 0 26px;
  list-style: none;
}

.product-card li {
  padding: 3px 7px;
  border: 1px solid var(--line);
  color: #81939f;
  font-size: 10px;
}

.product-links {
  position: relative;
  z-index: 3;
  margin-top: auto;
}

.product-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding-top: 10px;
  border-top: 1px solid rgba(134, 174, 184, 0.14);
  color: #dce7ec;
  font-size: 13px;
  font-weight: 700;
}

.product-links a:last-child {
  min-height: 30px;
  padding-top: 4px;
  border-top-color: rgba(134, 174, 184, 0.08);
  color: #899da5;
  font-size: 11px;
  font-weight: 600;
}

.product-links a:hover {
  color: #ffffff;
}

.product-links a i {
  color: var(--card-accent);
  font-style: normal;
  font-size: 16px;
  transition: transform 160ms ease;
}

.product-links a:hover i {
  transform: translate(3px, -3px);
}

.product-note {
  max-width: 900px;
  margin: 22px 0 0;
  color: #687985;
  font-size: 12px;
}

.agent-section {
  overflow: clip;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 99, 51, 0.05), transparent 36%),
    linear-gradient(315deg, rgba(37, 230, 210, 0.06), transparent 36%),
    #061019;
}

.agent-section::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(77, 174, 196, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 174, 196, 0.08) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 70% 45%, #000, transparent 62%);
}

.agent-section .shell {
  position: relative;
  z-index: 2;
}

.agent-beam {
  position: absolute;
  top: -10%;
  right: 12%;
  width: 2px;
  height: 120%;
  background: linear-gradient(transparent, var(--cyan), transparent);
  opacity: 0.2;
  transform: rotate(22deg);
  box-shadow: 0 0 70px 24px rgba(37, 230, 210, 0.12);
}

.agent-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.82fr) minmax(580px, 1.18fr);
  gap: 70px;
  align-items: stretch;
}

.agent-steps {
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.agent-steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.agent-steps li > span {
  padding-top: 2px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
}

.agent-steps b {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.agent-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.agent-console {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(4, 13, 20, 0.9);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.3);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.console-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #8295a0;
  background: #0b1822;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.console-bar b {
  color: var(--cyan);
}

.console-bar b::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 6px;
  content: "";
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 9px var(--cyan);
}

.console-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 444px;
}

.console-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 444px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(37, 230, 210, 0.12), transparent 42%),
    linear-gradient(rgba(74, 166, 190, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 166, 190, 0.05) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.console-core {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid var(--cyan);
  color: var(--paper);
  background: rgba(8, 33, 43, 0.86);
  box-shadow:
    0 0 0 12px rgba(37, 230, 210, 0.04),
    0 0 60px rgba(37, 230, 210, 0.18);
  clip-path: polygon(25% 0, 75% 0, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0 75%, 0 25%);
}

.console-core span {
  align-self: end;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.console-core b {
  align-self: start;
  color: var(--cyan);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(68, 221, 214, 0.2);
  border-radius: 50%;
}

.orbit::before,
.orbit::after {
  position: absolute;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 13px var(--orange);
}

.orbit::before { top: 18%; right: 9%; }
.orbit::after { bottom: 8%; left: 24%; background: var(--cyan); box-shadow: 0 0 13px var(--cyan); }

.orbit-a { width: 210px; height: 210px; }
.orbit-b { width: 288px; height: 288px; border-style: dashed; transform: rotate(34deg); }
.orbit-c { width: 362px; height: 362px; opacity: 0.5; }

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: 4px 7px;
  border: 1px solid var(--line);
  color: #9ab0bc;
  background: rgba(5, 16, 23, 0.9);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.label-context { top: 18%; left: 12%; }
.label-tools { top: 21%; right: 12%; }
.label-policy { right: 10%; bottom: 17%; }
.label-eval { bottom: 15%; left: 13%; }

.console-log {
  padding: 24px 20px;
}

.console-log p {
  display: grid;
  grid-template-columns: 24px 1fr;
  padding: 14px 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.console-log span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 10px;
}

.console-log b {
  color: #dce8ed;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.console-log em {
  grid-column: 2;
  margin-top: 5px;
  color: #6f828d;
  font-size: 11px;
  font-style: normal;
}

.console-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 18px;
  border-top: 1px solid var(--line);
  color: #7f929d;
  background: #07131c;
  font-size: 11px;
}

.console-foot a {
  color: var(--cyan);
  font-weight: 700;
}

.agent-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.agent-outcomes article {
  min-height: 196px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 16, 23, 0.52);
}

.agent-outcomes span,
.capability-grid span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.agent-outcomes h3,
.capability-grid h3 {
  margin: 22px 0 8px;
  font-size: 18px;
}

.agent-outcomes p,
.capability-grid p {
  margin: 0;
  color: #8699a5;
  font-size: 13px;
  line-height: 1.8;
}

.architecture-section {
  background: var(--ink);
}

.stack-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 440px;
  padding: 42px;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(79, 168, 190, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 168, 190, 0.06) 1px, transparent 1px),
    #07121a;
  background-size: 38px 38px;
}

.stack-layer {
  position: relative;
  min-height: 250px;
  padding: 24px 20px;
  border: 1px solid color-mix(in srgb, var(--layer) 34%, transparent);
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--layer) 9%, transparent), transparent 48%),
    rgba(5, 15, 22, 0.92);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 0 100%);
}

.stack-layer:nth-child(1) { min-height: 390px; }
.stack-layer:nth-child(2) { min-height: 344px; }
.stack-layer:nth-child(3) { min-height: 297px; }

.stack-layer > span {
  display: block;
  color: var(--layer);
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.stack-layer > b {
  display: block;
  margin: 12px 0 34px;
  color: var(--layer);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.stack-layer h3 {
  margin: 0 0 9px;
  font-size: 20px;
}

.stack-layer p {
  margin: 0;
  color: #899ba6;
  font-size: 13px;
  line-height: 1.8;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-grid article {
  min-height: 204px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-section {
  position: relative;
  padding-block: clamp(96px, 10vw, 142px);
  overflow: hidden;
  background:
    linear-gradient(110deg, rgba(255, 99, 51, 0.18), transparent 44%),
    linear-gradient(290deg, rgba(37, 230, 210, 0.16), transparent 42%),
    #08141d;
}

.contact-section::before {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 420px;
  height: 420px;
  content: "";
  border: 1px solid rgba(37, 230, 210, 0.12);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow:
    0 0 0 52px rgba(37, 230, 210, 0.025),
    0 0 0 104px rgba(37, 230, 210, 0.015);
}

.contact-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
}

.contact-section h2 {
  font-size: clamp(46px, 5.2vw, 78px);
}

.contact-section p:not(.section-index) {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 360px;
  min-height: 68px;
  padding: 0 20px;
  border: 1px solid rgba(255, 99, 51, 0.72);
  background: rgba(255, 99, 51, 0.1);
  font-size: 14px;
  font-weight: 800;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: background 160ms ease;
}

.contact-link i {
  color: var(--orange);
  font-size: 20px;
  font-style: normal;
}

.contact-link:hover {
  background: rgba(255, 99, 51, 0.2);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #03080c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  padding-block: 64px;
}

.footer-brand img {
  width: 226px;
  height: auto;
}

.footer-brand p {
  margin: 22px 0 0;
  color: #6f818c;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

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

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links b {
  margin-bottom: 8px;
  color: #d7e2e7;
  font-size: 13px;
}

.footer-links a,
.footer-links span {
  color: #70828d;
  font-size: 12px;
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  border-top: 1px solid var(--line);
  color: #63747f;
  font-size: 11px;
}

.footer-bottom b {
  font-weight: 400;
}

.footer-bottom a:hover {
  color: #aab8c0;
}

.noscript {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px;
  color: #121212;
  background: var(--yellow);
  text-align: center;
  font-size: 13px;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 540ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 540ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.motion-ready .hero-visual.reveal {
  transform: translateY(calc(-50% + 20px));
}

.motion-ready .hero-visual.reveal.is-visible {
  transform: translateY(-50%);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1020px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .nav-cta {
    margin-left: 22px;
  }

  .hero-shell {
    grid-template-columns: minmax(420px, 0.88fr) minmax(480px, 1.12fr);
  }

  .hero-visual {
    right: -26vw;
    width: min(90vw, 1080px);
  }

  .product-grid,
  .agent-outcomes,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    min-height: 450px;
  }

  .agent-layout {
    grid-template-columns: 0.76fr 1.24fr;
    gap: 40px;
  }

  .console-main {
    grid-template-columns: 1fr;
  }

  .console-orbit {
    min-height: 390px;
    border-right: 0;
  }

  .console-log {
    display: none;
  }

}

@media (max-width: 900px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    position: absolute;
    top: 14px;
    right: 24px;
    z-index: 3;
    display: grid;
    place-content: center;
    gap: 7px;
    width: 48px;
    height: 48px;
    margin-left: auto;
    border: 1px solid var(--line-strong);
    color: var(--paper);
    background: rgba(6, 18, 26, 0.72);
    cursor: pointer;
    flex: 0 0 48px;
  }

  .menu-toggle i {
    display: block;
    width: 20px;
    height: 1px;
    background: currentcolor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - 76px);
    padding: 18px 24px 34px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: rgba(4, 11, 16, 0.98);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.46);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

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

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 58px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
    font-weight: 800;
  }

  .mobile-menu a span {
    width: 46px;
    color: var(--orange);
    font-family: var(--mono);
    font-size: 10px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 84px;
    padding-bottom: 120px;
  }

  .hero-copy {
    width: min(620px, 78%);
  }

  .hero-visual {
    top: 52%;
    right: -42vw;
    width: 105vw;
    opacity: 0.7;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-intro {
    max-width: 650px;
  }

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

  .agent-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-left: 1px solid var(--line);
  }

  .agent-steps li {
    min-height: 130px;
    padding: 18px;
    border-right: 1px solid var(--line);
  }

  .stack-board {
    grid-template-columns: repeat(2, 1fr);
    min-height: 0;
  }

  .stack-layer,
  .stack-layer:nth-child(1),
  .stack-layer:nth-child(2),
  .stack-layer:nth-child(3) {
    min-height: 250px;
  }

  .contact-shell,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .contact-link {
    width: min(100%, 480px);
  }
}

@media (max-width: 767px) {
  :root {
    --shell: calc(100% - 40px);
  }

  html {
    scroll-padding-top: 70px;
  }

  body {
    width: 100%;
    max-width: 100vw;
    background:
      radial-gradient(circle 440px at 80% 7%, rgba(37, 230, 210, 0.07), transparent 64%),
      var(--ink);
  }

  .site-header,
  main,
  .site-footer {
    max-width: 100vw;
    overflow-x: clip;
  }

  .nav-shell {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .ambient {
    display: none;
  }

  .nav-shell {
    min-height: 62px;
  }

  .brand {
    width: 174px;
    min-height: 44px;
  }

  .brand img {
    width: 166px;
  }

  .menu-toggle {
    top: 9px;
    right: 20px;
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .mobile-menu {
    top: 62px;
    max-height: calc(100svh - 62px);
  }

  .hero {
    min-height: 0;
    padding-top: 62px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(5, 10, 15, 0.05), rgba(5, 10, 15, 0.56) 48%, var(--ink) 92%);
  }

  .hero-grid {
    background-size: 40px 40px;
  }

  .hero-shell {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 98px;
  }

  .hero-copy {
    z-index: 4;
    width: 100%;
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 22px;
    font-size: 8px;
  }

  .eyebrow span {
    padding-inline: 9px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(40px, 10.6vw, 46px);
    letter-spacing: -0.065em;
    line-height: 1.03;
  }

  .hero h1 span,
  .hero h1 em,
  .hero-copy > p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero h1 em {
    margin-top: 5px;
  }

  .hero-copy > p {
    width: 100%;
    margin-top: 22px;
    color: #b3c0c8;
    font-size: 15px;
    line-height: 1.8;
    word-break: break-all;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-facts {
    margin-top: 28px;
  }

  .hero-facts div {
    grid-template-columns: 1fr;
    align-content: center;
    min-height: 78px;
    padding: 10px 8px 10px 0;
  }

  .hero-facts div + div {
    padding-left: 10px;
  }

  .hero-facts strong {
    font-size: 28px;
  }

  .hero-facts span {
    margin: 5px 0 0;
    font-size: 9px;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    order: -1;
    width: calc(100vw - 20px);
    aspect-ratio: 4 / 3.8;
    margin: -20px -10px -26%;
    opacity: 0.62;
    transform: none;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 100%, 0 100%);
  }

  .motion-ready .hero-visual.reveal,
  .motion-ready .hero-visual.reveal.is-visible {
    transform: none;
  }

  .hero-visual::before {
    background: linear-gradient(180deg, rgba(5, 10, 15, 0.08), transparent 42%, var(--ink));
  }

  .hero-visual img {
    object-position: center 35%;
  }

  .visual-topline {
    top: 12px;
    right: 14px;
    left: 14px;
  }

  .visual-caption {
    display: none;
  }

  .signal-strip {
    height: 38px;
  }

  .signal-track {
    justify-content: flex-start;
    gap: 22px;
    min-width: max-content;
    padding-inline: 20px;
    font-size: 8px;
  }

  .section {
    padding-block: 72px;
  }

  .section-head {
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-index {
    margin-bottom: 12px;
    font-size: 9px;
  }

  .section-head h2,
  .contact-section h2 {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.12;
  }

  .section-intro {
    font-size: 14px;
    line-height: 1.8;
  }

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

  .product-legend span {
    padding-inline: 9px;
    font-size: 10px;
  }

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

  .product-card {
    min-height: 346px;
    padding: 18px 14px 15px;
  }

  .card-rail {
    margin-bottom: 16px;
  }

  .card-rail b {
    display: none;
  }

  .product-mark {
    width: 46px;
    height: 46px;
    margin-bottom: 15px;
    font-size: 17px;
  }

  .product-meta {
    display: block;
    margin-bottom: 7px;
    font-size: 9px;
  }

  .product-meta b {
    display: none;
  }

  .product-card h3 {
    font-size: 17px;
  }

  .product-en {
    min-height: 24px;
    margin: 2px 0 10px !important;
    font-size: 7px !important;
  }

  .product-card > p {
    display: -webkit-box;
    min-height: 77px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-card ul {
    display: none;
  }

  .product-links a {
    min-height: 34px;
    padding-top: 10px;
    font-size: 11px;
  }

  .product-links a:last-child {
    min-height: 27px;
    padding-top: 3px;
    font-size: 10px;
  }

  .product-note {
    font-size: 10px;
    line-height: 1.7;
  }

  .agent-layout {
    gap: 26px;
  }

  .agent-steps {
    grid-template-columns: 1fr;
  }

  .agent-steps li {
    grid-template-columns: 40px 1fr;
    min-height: 0;
    padding: 15px;
  }

  .agent-steps b {
    font-size: 14px;
  }

  .agent-steps p {
    font-size: 12px;
  }

  .agent-console {
    min-height: 430px;
  }

  .console-bar {
    padding-inline: 12px;
    font-size: 8px;
  }

  .console-main,
  .console-orbit {
    min-height: 326px;
  }

  .console-core {
    width: 88px;
    height: 88px;
  }

  .console-core b {
    font-size: 27px;
  }

  .orbit-a { width: 160px; height: 160px; }
  .orbit-b { width: 224px; height: 224px; }
  .orbit-c { width: 282px; height: 282px; }

  .console-foot {
    min-height: 58px;
    padding-inline: 12px;
  }

  .console-foot span {
    display: none;
  }

  .console-foot a {
    margin-left: auto;
  }

  .agent-outcomes,
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 30px;
  }

  .agent-outcomes article,
  .capability-grid article {
    min-height: 178px;
    padding: 16px;
  }

  .agent-outcomes h3,
  .capability-grid h3 {
    margin-top: 14px;
    font-size: 15px;
  }

  .agent-outcomes p,
  .capability-grid p {
    font-size: 11px;
    line-height: 1.65;
  }

  .stack-board {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .stack-layer,
  .stack-layer:nth-child(1),
  .stack-layer:nth-child(2),
  .stack-layer:nth-child(3) {
    min-height: 0;
    padding: 16px;
  }

  .stack-layer > span {
    float: left;
    margin-right: 14px;
    font-size: 28px;
  }

  .stack-layer > b {
    margin: 2px 0 24px;
    padding-top: 4px;
  }

  .stack-layer h3 {
    font-size: 17px;
  }

  .stack-layer p {
    font-size: 12px;
  }

  .contact-section {
    padding-block: 72px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-link {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 12px;
  }

  .footer-main {
    gap: 42px;
    padding-block: 46px;
  }

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

  .footer-links {
    gap: 18px;
  }

  .footer-links b,
  .footer-links a,
  .footer-links span {
    font-size: 11px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3px;
    min-height: 76px;
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 380px) {
  :root {
    --shell: calc(100% - 32px);
  }

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

  .product-card {
    min-height: 340px;
    padding-inline: 12px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .product-en {
    letter-spacing: 0.05em;
  }

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

@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;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #c8d2d8;
    --dim: #aebcc4;
    --line: rgba(214, 239, 246, 0.34);
  }
}

/* SEO / GEO entity facts: visible source content shared with structured data. */
.entity-section {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 14%, rgba(37, 230, 210, 0.08), transparent 28rem),
    rgba(6, 16, 22, 0.66);
}

.entity-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 7vw, 100px);
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid var(--line-strong);
  background: linear-gradient(125deg, rgba(255, 99, 51, 0.07), rgba(8, 24, 31, 0.84) 55%);
}

.entity-summary p {
  max-width: 900px;
  margin: 0;
  color: #9fb4ba;
  font-size: 15px;
  line-height: 1.95;
}

.entity-summary strong {
  color: var(--paper);
}

.entity-summary a {
  min-width: max-content;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--cyan);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.faq-card {
  min-height: 245px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  background: rgba(4, 13, 18, 0.56);
}

.faq-card > p:first-child {
  margin: 0 0 42px;
  color: var(--orange);
  font-family: "Roboto Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.faq-card h3 {
  margin: 0 0 14px;
  color: #e7f1f2;
  font-size: clamp(19px, 2vw, 25px);
  letter-spacing: -0.04em;
  line-height: 1.35;
}

.faq-card > p:last-child {
  max-width: 620px;
  margin: 0;
  color: #8fa8ae;
  font-size: 13px;
  line-height: 1.85;
}

@media (max-width: 760px) {
  .entity-summary,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .entity-summary {
    align-items: start;
  }

  .entity-summary a {
    min-width: 0;
    width: fit-content;
  }

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