/* GenOptima: white editorial fields, Tiffany signals, purposeful motion. */
@import url("./fonts.css?v=22.6.7"); /* 自托管字体：本地 assets/fonts/（原为 fonts.googleapis.com 远程 @import，消除外部依赖；详见 css/fonts.css 头部说明） */

:root {
  --p-paper: #ffffff;
  --p-paper-soft: #f6f9f8;
  --p-paper-warm: #fffdf4;
  --p-ink: #071b1a;
  --p-ink-2: #23403e;
  --p-muted: #627573;
  --p-rule: #d8e3e1;
  --p-rule-strong: #afc3c0;
  --p-tiffany: #5FBFBB;
  --p-tiffany-dark: #067e7a;
  --p-yellow: #ffd932;
  --p-night: #061413;
  --p-night-2: #0b2422;
  --p-font-display: "Manrope", "Noto Sans SC", sans-serif;
  --p-font-body: "Noto Sans SC", "Manrope", sans-serif;
  --p-space-1: 4px;
  --p-space-2: 8px;
  --p-space-3: 12px;
  --p-space-4: 16px;
  --p-space-6: 24px;
  --p-space-8: 32px;
  --p-space-12: 48px;
  --p-space-16: 64px;
  --p-space-24: 96px;
  --p-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --p-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --p-shadow: 0 18px 60px rgba(7, 27, 26, 0.1);
}

html,
body {
  overflow-x: clip;
  background: var(--p-paper);
}

body {
  color: var(--p-ink);
  font-family: var(--p-font-body);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: 5000;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--p-tiffany) var(--scroll-progress, 0%),
    transparent 0
  );
}

::selection {
  color: var(--p-ink);
  background: var(--p-yellow);
}

:focus-visible {
  outline: 3px solid var(--p-yellow) !important;
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.contact-title,
.blog-hero h1,
.article-shell h1 {
  min-width: 0;
  overflow-wrap: anywhere;
  color: inherit;
  font-family: var(--p-font-display);
  font-style: normal;
  letter-spacing: 0;
}

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

.site-nav {
  padding-block: 14px;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition:
    padding 0.35s var(--p-ease-out),
    background 0.35s ease,
    border-color 0.35s ease;
}

.site-nav.scrolled {
  padding-block: 8px;
  border-color: var(--p-rule);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
}

.nav-inner {
  width: min(calc(100% - 32px), 1480px);
  max-width: 1480px;
  padding-inline: 0;
}

.nav-logo img {
  height: 42px;
}

.nav-links {
  gap: 20px;
}

.nav-links a {
  padding-block: 10px;
  color: var(--p-ink-2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-links a::after {
  bottom: 4px;
  height: 1px;
  background: var(--p-tiffany);
}

.site-switch,
.btn-primary,
.btn-accent,
.btn-outline,
.lead-submit,
.blog-search button {
  min-height: 44px;
  border-radius: 4px;
  white-space: nowrap;
}

.site-switch {
  border-color: var(--p-rule);
  background: var(--p-paper);
}

.btn-primary,
.lead-submit,
.blog-search button {
  color: var(--p-paper);
  background: var(--p-ink);
  box-shadow: none;
}

.btn-primary:hover,
.lead-submit:hover,
.blog-search button:hover {
  color: var(--p-ink);
  background: var(--p-yellow);
  box-shadow: none;
}

.btn-accent {
  padding: 14px 16px 14px 22px;
  color: var(--p-paper);
  background: var(--p-ink);
  box-shadow: none;
}

.btn-accent .arrow {
  width: 34px;
  height: 34px;
  color: var(--p-ink);
  background: var(--p-tiffany);
  border-radius: 2px;
}

.btn-accent:hover {
  color: var(--p-ink);
  background: var(--p-yellow);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-outline {
  padding: 14px 20px;
  color: var(--p-ink);
  border: 1px solid var(--p-rule-strong);
  background: rgba(255, 255, 255, 0.74);
}

.btn-outline:hover {
  color: var(--p-paper);
  border-color: var(--p-ink);
  background: var(--p-ink);
  box-shadow: none;
}

.hero {
  min-height: calc(100svh - 28px);
  padding: 128px max(28px, calc((100% - 1320px) / 2)) 76px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: 72px;
  text-align: left;
  background: var(--p-paper);
  border-bottom: 1px solid var(--p-rule);
}

.hero::before {
  content: "GENO / 01";
  position: absolute;
  inset: 104px auto auto 28px;
  color: var(--p-muted);
  font-family: var(--p-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--p-tiffany) 0 72%,
    var(--p-yellow) 72% 76%,
    var(--p-ink) 76%
  );
}

.hero-bg {
  inset: 0 0 0 auto;
  width: 48%;
  background: linear-gradient(
    180deg,
    rgba(95, 191, 187, 0.05),
    rgba(95, 191, 187, 0)
  );
  animation: none;
}

.hero-grid {
  opacity: 0.32;
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0 45%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0 45%, #000 100%);
}

.hero-content {
  z-index: 3;
  max-width: 760px;
  padding: 0;
}

.hero-eyebrow {
  margin: 0 0 28px;
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--p-tiffany);
  border-radius: 0;
  color: var(--p-tiffany-dark);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-title {
  margin-bottom: 28px;
  color: var(--p-ink);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-title br {
  display: block;
}

.hero-tagline {
  max-width: 680px;
  margin: 0 0 12px;
  color: var(--p-ink-2);
  font-size: 20px;
  line-height: 1.6;
}

.hero-tagline .hl {
  color: var(--p-tiffany-dark);
}

.hero-sub {
  margin-bottom: 38px;
  color: var(--p-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-proof {
  position: relative;
  z-index: 2;
  align-self: center;
  min-width: 0;
  margin: 0;
}

.hero-proof::before {
  content: "";
  position: absolute;
  inset: -20px 28px 20px -20px;
  z-index: -1;
  border: 1px solid var(--p-rule);
  background: var(--p-paper-soft);
}

.hero-proof img {
  width: 100%;
  aspect-ratio: 1.85 / 1;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--p-rule-strong);
  background: var(--p-paper);
  box-shadow: var(--p-shadow);
}

.hero-proof figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  margin-top: 18px;
  color: var(--p-muted);
  font-size: 12px;
  line-height: 1.6;
}

.hero-proof figcaption strong {
  color: var(--p-tiffany-dark);
  font-family: var(--p-font-display);
  letter-spacing: 0.08em;
}

.hero-scroll {
  right: 28px;
  bottom: 34px;
  left: auto;
  transform: none;
}

.section {
  min-height: auto;
  padding-block: 112px;
  border-bottom: 1px solid var(--p-rule);
}

.section-label {
  width: auto;
  justify-content: flex-start;
  margin-bottom: 18px;
  color: var(--p-tiffany-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.section-label::after {
  display: none;
}

.section-label::before {
  width: 28px;
  height: 2px;
}

.section-title {
  max-width: 920px;
  margin: 0 0 22px;
  text-align: left;
  color: var(--p-ink);
  font-size: 48px;
  font-weight: 650;
  line-height: 1.15;
}

.section-subtitle {
  max-width: 760px;
  margin: 0;
  text-align: left;
  color: var(--p-muted);
  font-size: 17px;
  line-height: 1.8;
}

.section .reveal[style*="text-align:center"] .section-title,
.section .reveal[style*="text-align: center"] .section-title,
.section .reveal[style*="text-align:center"] .section-subtitle,
.section .reveal[style*="text-align: center"] .section-subtitle {
  margin-inline: auto;
  text-align: center;
}

.vision-section,
.testimonial-section,
.section-light,
.section-accent-bg {
  background: var(--p-paper-soft);
}

.vision-grid,
.strategy-grid,
.stats-grid,
.geo-grid,
.service-grid,
.testimonial-grid,
.case-grid,
.geno-agent-grid,
.core-grid,
.blog-grid {
  gap: 0;
  border-top: 1px solid var(--p-rule);
  border-left: 1px solid var(--p-rule);
}

.vision-card,
.strategy-card,
.stat-card,
.geo-card,
.service-card,
.testimonial-card,
.case-card,
.geno-agent-card,
.core-card,
.blog-card {
  border-radius: 0;
  border: 0;
  border-right: 1px solid var(--p-rule);
  border-bottom: 1px solid var(--p-rule);
  box-shadow: none;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.35s var(--p-ease-out);
}

.vision-card:hover,
.strategy-card:hover,
.stat-card:hover,
.geo-card:hover,
.service-card:hover,
.testimonial-card:hover,
.case-card:hover,
.geno-agent-card:hover,
.core-card:hover,
.blog-card:hover {
  border-color: var(--p-tiffany);
  box-shadow: none;
  transform: translateY(-3px);
}

.stat-card {
  text-align: left;
}

.stat-number {
  color: var(--p-ink);
  font-family: var(--p-font-display);
  font-weight: 600;
}

.stat-suffix,
.strategy-num,
.blog-card-tag {
  color: var(--p-tiffany-dark);
}

.geo-card::before {
  color: rgba(95, 191, 187, 0.1);
}

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

.iceberg-image,
.tech-stack-img,
.case-card img,
.article-infographic img {
  border-radius: 2px;
}

.section-dark,
#agent-os,
.global-section,
.contact-section,
.site-footer {
  color: var(--p-paper);
  background: var(--p-night);
}

.section-dark .section-title,
#agent-os .section-title,
.global-section .section-title,
.contact-title {
  color: var(--p-paper);
}

.section-dark .section-subtitle,
#agent-os .section-subtitle,
.global-section .section-subtitle,
.contact-sub {
  color: #a9bcba;
}

.service-card,
.core-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
}

.service-card:hover,
.core-card:hover {
  background: var(--p-night-2);
}

.contact-section {
  text-align: left;
}

.contact-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.contact-section .reveal > * {
  text-align: left;
}

.contact-title {
  font-size: 56px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.lead-modal,
.qr-modal-content {
  border-radius: 6px;
  border: 1px solid var(--p-rule);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.24);
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.blog-search input {
  min-height: 48px;
  border-radius: 3px;
  color: var(--p-ink);
  border-color: var(--p-rule-strong);
  background: var(--p-paper);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.blog-search input:focus {
  border-color: var(--p-tiffany-dark);
  box-shadow: 0 0 0 3px rgba(95, 191, 187, 0.12);
}

.blog-hero {
  padding-top: 148px;
  color: var(--p-paper);
  background: var(--p-night);
  border-bottom: 7px solid var(--p-tiffany);
}

.blog-hero h1 {
  font-size: 56px;
  font-weight: 650;
}

.blog-cat {
  border-bottom: 1px solid var(--p-rule);
}

.blog-cat-head {
  align-items: flex-start;
}

.blog-cat-icon {
  border-radius: 3px !important;
}

.blog-card {
  padding: 28px;
  background: var(--p-paper);
}

.blog-card:hover {
  color: var(--p-paper);
  background: var(--p-ink);
}

.blog-card:hover h3,
.blog-card:hover p,
.blog-card:hover .blog-card-meta {
  color: inherit;
}

.article-shell {
  background: var(--p-paper);
}

.article-shell article {
  max-width: 880px !important;
  padding-top: 44px !important;
}

.article-shell article > h1 {
  color: var(--p-ink) !important;
  font-size: 48px !important;
  font-weight: 650 !important;
  line-height: 1.18 !important;
}

.article-shell article h2,
.article-shell article h3 {
  color: var(--p-ink) !important;
}

.article-shell article p,
.article-shell article li,
.article-shell article td {
  color: var(--p-ink-2) !important;
}

.article-shell article a {
  color: var(--p-tiffany-dark) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.article-shell article table {
  border-top: 2px solid var(--p-ink);
}

.article-shell article td,
.article-shell article th {
  border-color: var(--p-rule) !important;
}

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

/* 2026-09-12：移除 `.js-premium .reveal { will-change: transform, opacity }`。
   该规则会给页面上每一个 .reveal 元素（实测首页 41 个）永久提升为独立 GPU 合成层，
   属公认反模式：长期占用显存、并可能出现"肉眼可见但布局数据不变"的合成层位移。
   入场动画仍由 GSAP 自动按需设置 will-change，无需常驻。 */

@media (max-width: 1320px) {
  .hero-title {
    font-size: 60px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 12px;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 40px;
  }

  .hero-title {
    font-size: 50px;
  }
}

@media (min-width: 1025px) {
  html.density-compact .hero,
  html.density-ultra-compact .hero {
    min-height: min(920px, 100svh);
    padding: 108px max(28px, calc((100% - 1320px) / 2)) 64px;
  }

  html.density-compact .hero-content,
  html.density-ultra-compact .hero-content {
    max-width: 760px;
  }

  html.density-compact .hero-eyebrow,
  html.density-ultra-compact .hero-eyebrow {
    margin-bottom: 30px;
    padding: 8px 0 12px;
  }

  html.density-compact .hero-title,
  html.density-ultra-compact .hero-title {
    font-size: clamp(54px, 5.05vw, 78px);
    line-height: 1.01;
  }
}

@media (max-width: 1024px) {
  .site-nav {
    background: rgba(255, 255, 255, 0.96);
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    font-size: 16px;
  }

  .hero {
    min-height: auto;
    padding: 116px 28px 80px;
    grid-template-columns: minmax(0, 1fr);
    gap: 56px;
  }

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

  .hero-proof {
    width: min(100%, 780px);
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding-block: 88px;
  }

  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-inline: 20px;
  }

  .hero {
    padding: 104px 20px 64px;
    gap: 44px;
  }

  .hero::before {
    inset: 82px auto auto 20px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 1.08;
  }

  .hero-tagline {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-proof::before {
    inset: -12px 16px 12px -12px;
  }

  .hero-proof figcaption {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .section {
    padding-block: 72px;
  }

  .section-title,
  .contact-title,
  .blog-hero h1,
  .article-shell article > h1 {
    font-size: 34px !important;
  }

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

  .vision-grid,
  .strategy-grid,
  .stats-grid,
  .geo-grid,
  .service-grid,
  .testimonial-grid,
  .case-grid,
  .geno-agent-grid,
  .core-grid,
  .blog-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .contact-section .container {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 28px;
  }

  .contact-section .reveal > *,
  .contact-section .contact-title,
  .contact-section .contact-sub {
    text-align: left !important;
  }

  .article-shell article {
    padding: 116px 20px 48px !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    gap: 34px;
    padding: 98px 28px 52px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-os {
    min-height: 410px;
  }

  .hero-os-canvas {
    min-height: 260px;
    padding-block: 8px 16px;
  }

  .hero-os-head {
    min-height: 52px;
  }

  .hero-os-rings {
    width: 176px;
  }

  .hero-os-signal {
    min-height: 44px;
  }

  .hero-os figcaption {
    min-height: 54px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-eyebrow {
    font-size: 10px;
  }

  .site-switch-current,
  .site-switch-separator {
    display: none;
  }

  .site-switch-target::before {
    content: "全球站";
    font-size: 0;
  }
}

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

/* GEM is a primary business line: one uninterrupted system, two acquisition paths. */
.gem-section {
  color: var(--p-paper);
  background: var(--p-night);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.gem-section .container {
  position: relative;
}

.gem-section .container::before {
  content: "GEM";
  position: absolute;
  top: -92px;
  right: 28px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--p-font-display);
  font-size: 220px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.gem-section .section-label {
  color: var(--p-yellow);
}

.gem-section .section-label::before {
  background: var(--p-yellow);
}

.gem-section .section-title {
  color: var(--p-paper);
}

.gem-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 72px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.gem-definition {
  padding-left: 24px;
  border-left: 1px solid var(--p-tiffany);
}

.gem-definition strong {
  display: block;
  margin-bottom: 16px;
  color: var(--p-tiffany);
  font-family: var(--p-font-display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gem-definition p {
  color: #b5c6c4;
  font-size: 16px;
  line-height: 1.8;
}

.gem-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.gem-path {
  min-height: 300px;
  padding: 38px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.gem-path > span,
.gem-capabilities article > span {
  color: #86a09d;
  font-family: var(--p-font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.gem-path h3 {
  margin: 44px 0 6px;
  color: var(--p-paper);
  font-size: 18px;
  font-weight: 600;
}

.gem-path > strong {
  display: block;
  margin-bottom: 30px;
  color: var(--p-tiffany);
  font-family: var(--p-font-display);
  font-size: 42px;
  line-height: 1.15;
}

.gem-path-paid > strong {
  max-width: 560px;
  color: var(--p-paper);
  font-size: 34px;
}

.gem-path-paid > strong::after {
  content: "";
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 18px;
  background: var(--p-yellow);
}

.gem-path p {
  max-width: 560px;
  color: #b5c6c4;
  line-height: 1.75;
}

.gem-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.gem-capabilities article {
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.gem-capabilities h3 {
  min-height: 58px;
  margin: 28px 0 18px;
  color: var(--p-paper);
  font-size: 20px;
  line-height: 1.45;
}

.gem-capabilities p {
  color: #9fb3b0;
  font-size: 14px;
  line-height: 1.75;
}

.gem-flow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 42px;
  color: #c7d5d3;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.gem-flow i {
  width: 26px;
  height: 1px;
  background: var(--p-tiffany);
}

.gem-flow a {
  margin-left: auto;
  padding: 14px 18px;
  color: var(--p-ink);
  background: var(--p-yellow);
  border-radius: 3px;
  transition:
    transform 0.3s var(--p-ease-out),
    background 0.25s ease;
}

.gem-flow a:hover {
  background: var(--p-tiffany);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .gem-section .container::before {
    top: -70px;
    font-size: 150px;
  }

  .gem-intro {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 32px;
  }

  .gem-flow {
    flex-wrap: wrap;
  }

  .gem-flow a {
    margin-left: 0;
  }
}

/* Premium v2: a continuous generative field with a native AgentOS interface. */
.hero {
  min-height: min(920px, 100svh);
  background: linear-gradient(
    125deg,
    #ffffff 0%,
    #f8fdfc 35%,
    #e8f8f6 68%,
    #f6fbfa 100%
  );
  border-bottom: 0;
  isolation: isolate;
}

.hero::after {
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--p-ink) 0 18%,
    var(--p-tiffany) 18% 82%,
    var(--p-yellow) 82% 86%,
    var(--p-ink) 86%
  );
}

.hero-bg {
  inset: 0;
  width: 100%;
  opacity: 1;
  background:
    linear-gradient(
      110deg,
      transparent 0 43%,
      rgba(95, 191, 187, 0.08) 43% 67%,
      transparent 67%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), transparent 48%);
}

.hero-grid {
  opacity: 0.22;
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 0 38%, #000 60%, #000 100%);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0 38%,
    #000 60%,
    #000 100%
  );
}

.hero-content {
  align-self: center;
}

.hero-eyebrow {
  width: fit-content;
  margin-bottom: 30px;
  padding: 8px 0 12px;
  color: var(--p-tiffany-dark);
  border-bottom-color: rgba(6, 126, 122, 0.48);
}

.hero-title {
  max-width: 720px;
  font-size: clamp(54px, 5.05vw, 78px);
  line-height: 1.01;
}

.hero-os {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  color: #edfffc;
  border: 1px solid rgba(131, 244, 231, 0.32);
  background: linear-gradient(
    145deg,
    rgba(14, 52, 49, 0.98),
    rgba(3, 25, 24, 0.98) 52%,
    rgba(2, 16, 15, 0.99)
  );
  box-shadow:
    0 42px 100px rgba(4, 56, 53, 0.22),
    0 8px 28px rgba(4, 56, 53, 0.16);
}

.hero-os::before {
  display: none;
}

.hero-os::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 0 44%,
    rgba(56, 230, 211, 0.09) 51%,
    transparent 58%
  );
  animation: hero-os-scan 5.8s linear infinite;
}

.hero-proof.hero-os::before {
  display: none;
}

.hero-os-head,
.hero-os-canvas,
.hero-os-signal,
.hero-os figcaption {
  position: relative;
  z-index: 2;
}

.hero-os-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(143, 225, 215, 0.18);
}

.hero-os-head > div:first-child {
  display: grid;
  gap: 5px;
}

.hero-os-head span,
.hero-os-sources > span,
.hero-os-surfaces > span {
  color: #75dcd1;
  font-family: var(--p-font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.hero-os-head strong {
  color: #f4fffd;
  font-size: 15px;
  font-weight: 600;
}

.hero-os-status {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9ccc9;
  font-size: 10px;
}

.hero-os-status i,
.hero-os-signal i {
  width: 6px;
  height: 6px;
  background: var(--p-tiffany);
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(95, 191, 187, 0.11),
    0 0 16px rgba(95, 191, 187, 0.65);
}

.hero-os-canvas {
  display: grid;
  grid-template-columns: minmax(116px, 0.78fr) minmax(190px, 1.1fr) minmax(
      120px,
      0.82fr
    );
  align-items: center;
  gap: 18px;
  min-height: 334px;
  padding: 30px 24px;
}

.hero-os-sources,
.hero-os-surfaces {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.hero-os-sources strong {
  margin-bottom: 3px;
  color: #ffffff;
  font-size: 15px;
}

.hero-os-sources em {
  position: relative;
  padding: 9px 0 9px 14px;
  color: #a8bfbc;
  border-left: 1px solid rgba(90, 223, 208, 0.38);
  font-size: 11px;
  font-style: normal;
}

.hero-os-sources em::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(95, 191, 187, 0.28),
    var(--p-tiffany)
  );
}

.hero-os-core {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.hero-os-rings {
  position: relative;
  width: 188px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.hero-os-rings > i {
  position: absolute;
  border: 1px solid rgba(76, 224, 208, 0.2);
  border-radius: 50%;
}

.hero-os-rings > i:nth-child(1) {
  inset: 0;
  border-style: dashed;
  animation: hero-os-rotate 18s linear infinite;
}

.hero-os-rings > i:nth-child(2) {
  inset: 20px;
  border-color: rgba(255, 217, 50, 0.22);
  animation: hero-os-rotate 12s linear infinite reverse;
}

.hero-os-rings > i:nth-child(3) {
  inset: 40px;
  background: rgba(95, 191, 187, 0.08);
  box-shadow:
    inset 0 0 46px rgba(95, 191, 187, 0.18),
    0 0 46px rgba(95, 191, 187, 0.08);
}

.hero-os-rings > div {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.hero-os-rings span {
  color: #f4fffd;
  font-family: var(--p-font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.hero-os-rings strong {
  margin-top: 7px;
  color: var(--p-yellow);
  font-family: var(--p-font-display);
  font-size: 9px;
  letter-spacing: 0.2em;
}

.hero-os-core small {
  color: #6fa09b;
  font-family: var(--p-font-display);
  font-size: 8px;
  letter-spacing: 0.12em;
  text-align: center;
}

.hero-os-surfaces > div {
  display: grid;
}

.hero-os-surfaces b {
  position: relative;
  padding: 12px 4px;
  color: #d8e9e6;
  border-bottom: 1px solid rgba(143, 225, 215, 0.16);
  font-size: 11px;
  font-weight: 500;
}

.hero-os-surfaces b::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  background: var(--p-tiffany);
  border-radius: 50%;
}

.hero-os-signal {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-top: 1px solid rgba(143, 225, 215, 0.18);
  border-bottom: 1px solid rgba(143, 225, 215, 0.18);
}

.hero-os-signal span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a8bfbc;
  font-size: 9px;
  white-space: nowrap;
}

.hero-os-signal strong {
  color: var(--p-yellow);
  font-family: var(--p-font-display);
  font-size: 8px;
  letter-spacing: 0.12em;
}

.hero-os figcaption {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 72px;
  margin: 0;
  padding: 15px 22px;
  color: #8ea7a3;
  font-size: 10px;
}

.hero-os figcaption > span {
  max-width: 360px;
}

.hero-os figcaption a {
  flex: 0 0 auto;
  color: #d9ece8;
  font-family: var(--p-font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero-os figcaption a b {
  color: var(--p-tiffany);
}

.vision-section {
  background: linear-gradient(180deg, #f6fbfa 0%, #ffffff 72%);
}

.gem-section {
  background: linear-gradient(
    138deg,
    #061413 0%,
    #082522 46%,
    #06302c 72%,
    #061413 100%
  );
}

.gem-paths {
  position: relative;
  gap: clamp(42px, 6vw, 88px);
  margin-top: 18px;
  border-left: 0;
}

.gem-paths::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    var(--p-tiffany),
    rgba(95, 191, 187, 0.08) 42%,
    var(--p-yellow) 64%,
    rgba(255, 217, 50, 0.08)
  );
}

.gem-path {
  min-height: 270px;
  padding: 42px 0 48px;
  border: 0;
}

.gem-path-earned {
  padding-left: 38px;
}

.gem-path-paid {
  padding-right: 38px;
}

.gem-capabilities {
  position: relative;
  gap: clamp(30px, 4vw, 64px);
  padding: 42px 38px 34px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    90deg,
    rgba(95, 191, 187, 0.035),
    transparent 48%,
    rgba(255, 217, 50, 0.025)
  );
}

.gem-capabilities article {
  position: relative;
  padding: 0;
  border: 0;
}

.gem-capabilities article + article::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(clamp(30px, 4vw, 64px) / -2);
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.gem-flow {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.vision-grid,
.strategy-grid,
.stats-grid,
.geo-grid {
  gap: clamp(20px, 3vw, 44px);
  border: 0;
}

.vision-card,
.strategy-card,
.stat-card,
.geo-card {
  border: 0;
  border-top: 1px solid var(--p-rule-strong);
  background: transparent;
}

.vision-card:hover,
.strategy-card:hover,
.stat-card:hover,
.geo-card:hover {
  border-color: var(--p-tiffany);
  background: linear-gradient(
    180deg,
    rgba(95, 191, 187, 0.055),
    transparent 72%
  );
}

@keyframes hero-os-rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-os-scan {
  from {
    transform: translateX(-75%);
  }
  to {
    transform: translateX(75%);
  }
}

@media (max-width: 1120px) {
  .hero-os {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .hero {
    background: linear-gradient(155deg, #ffffff 0%, #effaf8 58%, #dff6f2 100%);
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-os {
    min-height: 0;
  }

  .hero-os-canvas {
    grid-template-columns: minmax(0, 1fr) minmax(145px, 1fr);
    gap: 22px;
    min-height: 300px;
    padding: 24px 18px;
  }

  .hero-os-sources {
    display: none;
  }

  .hero-os-rings {
    width: 148px;
  }

  .hero-os-rings span {
    font-size: 38px;
  }

  .hero-os-signal {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-block: 16px;
  }

  .hero-os-signal strong {
    grid-column: 1 / -1;
  }

  .hero-os figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 17px;
  }

  .gem-paths {
    gap: 0;
  }

  .gem-path-earned,
  .gem-path-paid {
    padding-inline: 6px;
  }

  .gem-capabilities {
    gap: 0;
    padding: 14px 6px 26px;
  }

  .gem-capabilities article {
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .gem-capabilities article + article::before {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-os-head {
    padding-inline: 16px;
  }

  .hero-os-head > div:first-child span {
    font-size: 8px;
  }

  .hero-os-canvas {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-os-surfaces {
    display: none;
  }

  .hero-os-signal,
  .hero-os figcaption {
    padding-inline: 16px;
  }
}

/* AgentOS is a spatial system, not an app screenshot. */
.hero-bg {
  background: linear-gradient(
    116deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(95, 191, 187, 0.09) 72%,
    rgba(255, 255, 255, 0.42) 100%
  );
}

.hero-os {
  overflow: visible;
  color: var(--p-ink);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-os::before {
  display: block;
  inset: 3% 7% 4% 10%;
  background: radial-gradient(
    ellipse at center,
    rgba(95, 191, 187, 0.18),
    rgba(95, 191, 187, 0.055) 38%,
    transparent 72%
  );
  mask-image: none;
  -webkit-mask-image: none;
  filter: blur(4px);
}

.hero-os::after {
  opacity: 0.8;
  background: linear-gradient(
    118deg,
    transparent 0 46%,
    rgba(95, 191, 187, 0.12) 50%,
    transparent 54%
  );
}

.hero-os-head {
  min-height: 66px;
  padding: 8px 14px 14px 34px;
  border-bottom: 0;
}

.hero-os-head span,
.hero-os-sources > span,
.hero-os-surfaces > span {
  color: var(--p-tiffany-dark);
}

.hero-os-head strong,
.hero-os-sources strong {
  color: var(--p-ink);
}

.hero-os-status {
  color: var(--p-muted);
}

.hero-os-canvas {
  min-height: 352px;
  padding: 24px 14px 26px 34px;
}

.hero-os-sources em {
  color: var(--p-ink-2);
  border-left-color: rgba(6, 126, 122, 0.32);
}

.hero-os-rings {
  width: 214px;
}

.hero-os-rings > i {
  border-color: rgba(6, 126, 122, 0.24);
}

.hero-os-rings > i:nth-child(2) {
  border-color: rgba(255, 190, 0, 0.44);
}

.hero-os-rings > i:nth-child(3) {
  background: rgba(255, 255, 255, 0.54);
  box-shadow:
    inset 0 0 56px rgba(95, 191, 187, 0.22),
    0 0 72px rgba(95, 191, 187, 0.2);
}

.hero-os-rings span,
.hero-os-surfaces b,
.hero-os figcaption a {
  color: var(--p-ink);
}

.hero-os-core small {
  color: var(--p-tiffany-dark);
}

.hero-os-surfaces b {
  border-bottom-color: rgba(6, 126, 122, 0.16);
}

.hero-os-signal {
  margin-inline: 20px 0;
  border-top-color: rgba(6, 126, 122, 0.2);
  border-bottom-color: rgba(6, 126, 122, 0.2);
}

.hero-os-signal span,
.hero-os figcaption {
  color: var(--p-muted);
}

.hero-os figcaption {
  padding-right: 4px;
  padding-left: 42px;
}

@media (max-width: 768px) {
  .hero {
    gap: 24px;
    padding-top: 92px;
    padding-bottom: 38px;
  }

  .hero-content {
    width: 100%;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
  }

  .hero-title {
    margin-bottom: 18px;
    font-size: 40px;
  }

  .hero-tagline {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .hero-sub {
    margin-bottom: 22px;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-actions .btn-accent,
  .hero-actions .btn-outline {
    min-width: 0;
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero-actions .btn-accent .arrow {
    width: 28px;
    height: 28px;
  }

  .hero-os-head {
    min-height: 48px;
    padding: 0 2px 8px;
  }

  .hero-os-canvas {
    grid-template-columns: minmax(128px, 0.9fr) minmax(0, 1fr);
    min-height: 228px;
    padding: 8px 2px 14px;
  }

  .hero-os-rings {
    width: 128px;
  }

  .hero-os-rings > i:nth-child(2) {
    inset: 14px;
  }

  .hero-os-rings > i:nth-child(3) {
    inset: 28px;
  }

  .hero-os-rings span {
    font-size: 34px;
  }

  .hero-os-core small {
    font-size: 6px;
  }

  .hero-os-surfaces b {
    padding-block: 8px;
    font-size: 9px;
  }

  .hero-os-signal {
    min-height: 44px;
    margin: 0;
    gap: 8px;
    padding: 10px 2px;
  }

  .hero-os-signal span {
    font-size: 8px;
  }

  .hero-os figcaption {
    min-height: 42px;
    padding: 10px 2px 0;
  }

  .hero-os figcaption > span {
    display: none;
  }

  .floating-action-stack {
    right: 8px !important;
    bottom: 8px !important;
    gap: 7px !important;
  }

  .floating-action-stack > div {
    width: 48px !important;
    height: 48px !important;
    box-shadow: 0 8px 24px rgba(7, 27, 26, 0.12) !important;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-os-canvas {
    grid-template-columns: minmax(120px, 0.9fr) minmax(0, 1fr);
  }

  .hero-os-surfaces {
    display: grid;
  }
}

@media (max-width: 340px) {
  .hero-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-os-canvas {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-os-surfaces {
    display: none;
  }
}

@media (max-width: 768px) {
  .gem-section .container::before {
    top: -36px;
    right: 20px;
    font-size: 92px;
  }

  .gem-paths,
  .gem-capabilities {
    grid-template-columns: minmax(0, 1fr);
  }

  .gem-path {
    min-height: 0;
    padding: 28px 22px;
  }

  .gem-path h3 {
    margin-top: 30px;
  }

  .gem-path > strong,
  .gem-path-paid > strong {
    font-size: 28px;
  }

  .gem-capabilities article {
    padding: 28px 22px;
  }

  .gem-capabilities h3 {
    min-height: 0;
  }

  .gem-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    white-space: normal;
  }

  .gem-flow i {
    width: 14px;
  }

  .gem-flow a {
    grid-column: 1 / -1;
    margin-top: 12px;
    text-align: center;
    white-space: nowrap;
  }
}

/* 2026-09 craft pass: one system, distinct chapter compositions. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  min-height: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a,
button,
input,
select,
textarea {
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(95, 191, 187, 0.14);
}

button {
  font: inherit;
}

[id] {
  scroll-margin-top: 84px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 16px;
  z-index: 10000;
  padding: 10px 14px;
  color: var(--p-paper);
  background: var(--p-ink);
  transform: translateY(-160%);
  transition: transform 0.2s var(--p-ease-out);
}

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

.site-nav {
  padding-block: 12px;
  border-bottom-color: rgba(7, 27, 26, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.site-nav.scrolled {
  padding-block: 7px;
  box-shadow: 0 10px 32px rgba(7, 27, 26, 0.055);
}

.nav-logo img {
  height: 44px;
}

.nav-links a {
  position: relative;
  color: #173330;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--p-tiffany-dark);
}

.btn-primary,
.btn-accent,
.btn-outline,
.lead-submit,
.contact-section button {
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition:
    color 0.24s ease,
    background-color 0.24s ease,
    border-color 0.24s ease,
    transform 0.24s var(--p-ease-out);
}

.hero {
  min-height: min(900px, 100svh);
  padding-top: 104px;
  padding-bottom: 56px;
  grid-template-columns: minmax(0, 1fr) minmax(500px, 0.96fr);
  gap: 56px;
  background: linear-gradient(
    115deg,
    #fff 18%,
    #f5fcfb 44%,
    #d8f4f1 75%,
    #f4fbfa 100%
  );
}

.hero::before {
  display: none;
}

.hero::after {
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--p-ink) 0 18%,
    var(--p-tiffany) 18% 82%,
    var(--p-yellow) 82% 86%,
    var(--p-ink) 86%
  );
}

.hero-bg {
  inset: 72px 0 0 44%;
  width: auto;
  opacity: 0.65;
  background: radial-gradient(
    ellipse at 72% 32%,
    rgba(95, 191, 187, 0.16),
    transparent 66%
  );
  mask-image: none;
  -webkit-mask-image: none;
}

.hero-grid {
  display: none;
}

.hero-content {
  max-width: 700px;
}

.hero-eyebrow {
  width: fit-content;
  margin-bottom: 24px;
  padding-bottom: 10px;
  color: var(--p-tiffany-dark);
  border-bottom-color: rgba(6, 126, 122, 0.45);
  font-size: 12px;
}

.hero-title {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: 68px;
  font-weight: 720;
  line-height: 1.04;
  text-wrap: balance;
}

.hero-tagline {
  max-width: 590px;
  font-size: 19px;
  line-height: 1.65;
  text-wrap: pretty;
}

.hero-sub {
  margin-top: 12px;
  margin-bottom: 34px;
  font-size: 12px;
  font-weight: 650;
}

.hero-actions {
  gap: 10px;
}

.hero-actions .btn-accent,
.hero-actions .btn-outline {
  min-height: 52px;
}

.hero-proof.hero-os {
  align-self: center;
  min-height: 548px;
}

.hero-os::before {
  display: none;
}

.hero-os::after {
  opacity: 0.44;
  background: linear-gradient(
    116deg,
    transparent 0 45%,
    rgba(95, 191, 187, 0.16) 49%,
    transparent 53%
  );
}

.hero-os-head {
  padding-left: 22px;
}

.hero-os-canvas {
  padding-left: 22px;
}

.hero-os-rings span,
.stat-number,
.stat-suffix,
.about-stat .num,
.iceberg-peak-stat .val,
.service-num {
  font-variant-numeric: tabular-nums;
}

.hero-os-status i,
.hero-os-signal i {
  animation: signal-breathe 2.8s ease-in-out infinite;
}

.motion-paused *,
.motion-paused::before,
.motion-paused::after,
.motion-reduced * {
  animation-play-state: paused !important;
}

@keyframes signal-breathe {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(0.86);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

main > section {
  position: relative;
  isolation: isolate;
}

.section,
.iceberg-section {
  padding-block: 128px;
}

.section-label {
  gap: 12px;
  margin-bottom: 20px;
  color: var(--p-tiffany-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.section-label::before {
  width: 20px;
  height: 1px;
}

.section-title {
  max-width: 900px;
  font-size: 52px;
  font-weight: 680;
  line-height: 1.12;
  text-wrap: balance;
}

.section-subtitle {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.85;
  text-wrap: pretty;
}

.section .reveal[style*="text-align:center"] .section-title,
.section .reveal[style*="text-align: center"] .section-title,
.section .reveal[style*="text-align:center"] .section-subtitle,
.section .reveal[style*="text-align: center"] .section-subtitle,
.iceberg-section .reveal .section-title,
.iceberg-section .reveal .section-subtitle {
  margin-inline: 0 !important;
  text-align: left !important;
}

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

.vision-section > .container > .reveal:first-child {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.48fr);
  column-gap: 72px;
  align-items: end;
}

.vision-section > .container > .reveal:first-child .section-label,
.vision-section > .container > .reveal:first-child .section-title {
  grid-column: 1;
}

.vision-section > .container > .reveal:first-child .section-subtitle {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.vision-grid {
  grid-template-columns: minmax(0, 1fr) 104px minmax(0, 1.08fr);
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--p-rule-strong);
  border-bottom: 1px solid var(--p-rule);
}

.vision-card {
  min-height: 350px;
  padding: 50px 42px;
  border: 0;
  background: transparent;
  text-align: left;
}

.vision-card.next-gen {
  border: 0;
  background: linear-gradient(
    135deg,
    rgba(95, 191, 187, 0.1),
    rgba(95, 191, 187, 0.025)
  );
}

.vision-card:hover,
.vision-card.next-gen:hover {
  border-color: transparent;
  background-color: transparent;
  transform: none;
}

.vision-icon {
  width: 48px;
  height: 48px;
  margin: 0 0 42px;
  border: 1px solid var(--p-rule-strong);
  border-radius: 2px;
  background: transparent !important;
}

.vision-card h3,
.vision-card .vision-en,
.vision-card p {
  text-align: left;
}

.vision-card h3 {
  font-size: 34px;
  font-weight: 650;
}

.vision-card .vision-core {
  margin-inline: 0;
  border-radius: 2px;
}

.vision-badge {
  top: 24px;
  right: 28px;
  border-radius: 2px;
  color: var(--p-ink);
  background: var(--p-yellow);
}

.vision-arrow {
  align-self: stretch;
  justify-content: center;
  border-inline: 1px solid var(--p-rule);
}

.vision-strategy {
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--p-rule-strong);
}

.strategy-card {
  min-height: 214px;
  padding: 32px 36px 24px 0;
  border: 0;
  border-right: 1px solid var(--p-rule);
  background: transparent;
}

.strategy-card + .strategy-card {
  padding-left: 36px;
}

.strategy-card:last-child {
  border-right: 0;
}

.strategy-card:hover {
  background: transparent;
  box-shadow: none;
  transform: none;
}

#insight {
  background:
    linear-gradient(
      180deg,
      rgba(95, 191, 187, 0.08),
      rgba(95, 191, 187, 0.02) 54%,
      transparent
    ),
    var(--p-paper);
}

#insight > .container > .reveal:first-child {
  max-width: 840px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  border-block: 1px solid var(--p-rule-strong);
}

.stat-card {
  min-height: 260px;
  padding: 44px 30px 34px;
  border: 0;
  border-right: 1px solid var(--p-rule);
  background: transparent;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-card:hover {
  border-color: var(--p-rule);
  background: rgba(255, 255, 255, 0.6);
  transform: none;
}

.stat-number {
  font-size: 72px;
  line-height: 1;
}

.stat-suffix {
  color: var(--p-tiffany-dark);
  font-size: 20px;
}

.stat-unit {
  margin-top: 30px;
  font-weight: 700;
}

#insight .container > .reveal[style*="max-width"] {
  max-width: none !important;
  margin-top: 34px !important;
  padding: 24px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid var(--p-tiffany) !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

.stat-source-note {
  max-width: 960px;
  margin-top: 22px;
  color: var(--p-muted);
  font-size: 11px;
  line-height: 1.75;
  text-align: left;
}

.gem-section {
  overflow: hidden;
  background: linear-gradient(124deg, #061413 0 44%, #07302c 74%, #061413 100%);
}

.gem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    118deg,
    transparent 0 61%,
    rgba(95, 191, 187, 0.08) 61.15% 61.3%,
    transparent 61.5%
  );
  mask-image: linear-gradient(90deg, transparent, #000 45%, transparent);
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent,
    #000 45%,
    transparent
  );
}

.gem-section .container::before {
  top: -104px;
  right: -10px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 280px;
  font-weight: 800;
}

.gem-intro {
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: 90px;
  align-items: end;
}

.gem-intro .section-title {
  font-size: 50px;
}

.gem-definition {
  padding: 0 0 8px 24px;
  border-left: 1px solid var(--p-tiffany);
}

.gem-paths {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 96px;
  margin-top: 76px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.gem-paths::before {
  top: -1px;
  width: 54%;
  background: linear-gradient(90deg, var(--p-tiffany), transparent);
}

.gem-paths::after {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid var(--p-yellow);
  background: var(--p-night);
  transform: translateX(-50%) rotate(45deg);
}

.gem-path {
  min-height: 300px;
  padding: 46px 40px 56px 0;
  border: 0;
  background: transparent;
}

.gem-path-paid {
  padding-right: 0;
  padding-left: 40px;
}

.gem-path h3 {
  margin-top: 52px;
}

.gem-path > strong {
  font-size: 48px;
}

.gem-path-paid > strong {
  max-width: 560px;
  color: var(--p-yellow);
  font-size: 38px;
}

.gem-capabilities {
  gap: 0;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}

.gem-capabilities article {
  min-height: 270px;
  padding: 42px 40px 34px 0;
  border: 0;
}

.gem-capabilities article + article {
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.gem-capabilities article + article::before {
  display: none;
}

.gem-capabilities h3 {
  min-height: 54px;
}

.gem-flow {
  min-height: 84px;
  margin-top: 0;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.gem-flow a {
  border-radius: 2px;
}

#geo {
  background: var(--p-paper);
}

#geo > .container > .reveal:first-child {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.5fr);
  gap: 80px;
  align-items: end;
}

#geo > .container > .reveal:first-child .section-subtitle {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.geo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid var(--p-ink);
}

.geo-card {
  min-height: 300px;
  padding: 42px 42px 42px 92px;
  border: 0;
  border-bottom: 1px solid var(--p-rule);
  background: transparent;
}

.geo-card:nth-child(odd) {
  border-right: 1px solid var(--p-rule);
}

.geo-card::before {
  top: 46px;
  right: auto;
  left: 24px;
  color: var(--p-tiffany-dark);
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.geo-card:hover {
  border-color: var(--p-rule);
  background: linear-gradient(
    135deg,
    rgba(95, 191, 187, 0.06),
    transparent 62%
  );
  transform: none;
}

.geo-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--p-rule);
  border-radius: 2px;
  background: transparent;
}

.iceberg-section {
  background: linear-gradient(180deg, #f4faf9 0%, #ffffff 52%, #f5faf9 100%);
}

.iceberg-section .container > .reveal:first-child {
  max-width: 820px;
}

.iceberg-visual-wrapper {
  max-width: 760px;
  margin-top: 72px;
}

.iceberg-glow-bg {
  opacity: 0.55;
  animation: none;
}

.iceberg-img {
  filter: saturate(0.82) contrast(1.03);
  transition: transform 0.5s var(--p-ease-out);
}

.iceberg-visual-wrapper:hover .iceberg-img {
  transform: translateY(-3px);
}

.iceberg-container {
  max-width: 1060px;
  margin-top: 68px;
}

.iceberg-peak,
.iceberg-depth {
  border-radius: 2px;
  box-shadow: none;
}

.iceberg-peak {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.5fr);
  column-gap: 70px;
  padding: 44px;
  background: rgba(255, 255, 255, 0.78);
}

.iceberg-peak-label,
.iceberg-peak h3,
.iceberg-peak p {
  grid-column: 1;
}

.iceberg-peak-stats {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-content: center;
  margin: 0;
}

.iceberg-depth {
  padding: 48px;
  border-color: rgba(95, 191, 187, 0.3);
  background: linear-gradient(145deg, rgba(95, 191, 187, 0.075), #ffffff 62%);
}

.iceberg-feature {
  border: 0;
  border-top: 1px solid var(--p-rule);
  border-radius: 0;
  background: transparent;
}

#technology {
  padding-block: 128px !important;
  background: #f7faf9 !important;
}

#technology > .container {
  max-width: 1320px !important;
}

.tech-cap-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 72px !important;
  border-top: 1px solid var(--p-ink);
}

.tech-cap-grid > div {
  min-height: 260px;
  padding: 36px 28px !important;
  border: 0 !important;
  border-right: 1px solid var(--p-rule) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: left !important;
}

.tech-cap-grid > div:last-child {
  border-right: 0 !important;
}

.tech-cap-grid > div > div:first-child,
.tech-agent-grid > div > div:first-child {
  width: 44px !important;
  height: 44px !important;
  margin: 0 0 36px !important;
  border: 1px solid var(--p-rule-strong);
  border-radius: 2px !important;
  background: transparent !important;
}

.tech-cap-grid svg,
.tech-agent-grid svg {
  color: var(--p-tiffany-dark);
  stroke: currentColor;
}

.tech-cap-grid h4,
.tech-cap-grid p {
  color: var(--p-ink) !important;
}

.tech-cap-grid p {
  color: var(--p-muted) !important;
}

.tech-agent-grid {
  gap: 0 !important;
  padding: 1px;
  background: var(--p-night);
}

.tech-agent-grid > div {
  min-height: 250px;
  padding: 34px 26px !important;
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, 0.13) !important;
  border-radius: 0 !important;
  background: transparent !important;
  text-align: left !important;
}

.tech-agent-grid > div:last-child {
  border-right: 0 !important;
}

.tech-agent-grid > div > div:first-child {
  border-color: rgba(95, 191, 187, 0.35);
}

#service-tiers {
  padding-block: 128px !important;
}

.section-dark,
#services {
  background: var(--p-night);
}

.services-grid {
  gap: 0;
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-card {
  min-height: 310px;
  padding: 40px 28px !important;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  border-color: rgba(255, 255, 255, 0.13);
  background: linear-gradient(180deg, rgba(95, 191, 187, 0.12), transparent);
  transform: none;
}

.service-num {
  margin-bottom: 52px;
  color: rgba(95, 191, 187, 0.38);
  font-size: 50px;
}

.card-arrow {
  border-radius: 2px;
}

#platforms .platforms-flex {
  gap: 10px;
}

.pf-chip {
  min-height: 48px;
  border-radius: 3px;
  box-shadow: none;
}

.cmp-grid {
  gap: 0;
  margin-top: 68px;
  border-top: 1px solid var(--p-ink);
  border-left: 1px solid var(--p-rule);
}

.cmp-cell {
  border-right: 1px solid var(--p-rule);
  border-bottom: 1px solid var(--p-rule);
  border-radius: 0 !important;
}

.about-layout {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: 88px;
  margin-top: 68px;
}

.about-visual {
  min-height: 410px;
  display: grid;
  align-content: end;
  border: 1px solid var(--p-rule);
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(95, 191, 187, 0.14), transparent 56%),
    var(--p-paper);
  text-align: left;
}

.about-visual .brand-mark {
  position: absolute;
  top: 28px;
  right: 32px;
  opacity: 0.09;
}

.about-stats {
  border-top: 1px solid var(--p-rule-strong);
}

.about-stat {
  padding-top: 24px;
  text-align: left;
}

.about-tag {
  border: 1px solid var(--p-rule);
  border-radius: 2px;
  background: transparent;
}

.brand-wall-section {
  min-height: auto;
  padding-block: 104px;
  background: #f7faf9;
}

.logo-grid-item,
.logo-marquee-noscript img {
  border-radius: 2px !important;
  box-shadow: none !important;
}

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

.testimonial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 68px;
  border-top: 1px solid var(--p-ink);
  border-left: 1px solid var(--p-rule);
}

.testimonial-card {
  min-height: 260px;
  padding: 34px 30px 26px;
  border: 0;
  border-right: 1px solid var(--p-rule);
  border-bottom: 1px solid var(--p-rule);
  background: transparent;
}

.testimonial-card:first-child {
  grid-column: span 2;
  color: var(--p-paper);
  background: var(--p-ink);
}

.testimonial-card:nth-child(6) {
  grid-column: span 2;
  background: rgba(95, 191, 187, 0.08);
}

.testimonial-card:hover {
  border-color: var(--p-rule);
  box-shadow: none;
  transform: none;
}

.testimonial-card:first-child .tm-quote,
.testimonial-card:first-child .tm-client {
  color: var(--p-paper);
}

.testimonial-card:first-child .tm-industry {
  color: #a9bcba;
}

.global-section {
  background: linear-gradient(150deg, #061413 0%, #092b28 62%, #061413 100%);
}

.world-map-container {
  margin-top: 72px;
}

.contact-section {
  padding-block: 120px;
  background: var(--p-tiffany);
}

.contact-section .container {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.contact-title {
  color: var(--p-ink);
  font-size: 58px;
  line-height: 1.08;
  text-wrap: balance;
}

.contact-title .accent-text {
  color: var(--p-paper);
}

.contact-sub {
  color: #103b38;
}

.contact-section .btn-accent {
  color: var(--p-paper);
  background: var(--p-ink);
}

.contact-section button {
  min-height: 52px;
  padding: 14px 22px;
  color: var(--p-ink);
  border-color: rgba(7, 27, 26, 0.42);
  background: transparent;
}

.contact-section button:hover {
  color: var(--p-paper);
  border-color: var(--p-ink);
  background: var(--p-ink);
}

.floating-action-stack {
  right: max(14px, env(safe-area-inset-right)) !important;
  bottom: max(18px, env(safe-area-inset-bottom)) !important;
  gap: 6px !important;
}

.floating-action-stack > button,
.floating-action-stack > div {
  width: 52px !important;
  height: 52px !important;
  margin: 0;
  padding: 0;
  border-radius: 3px !important;
  box-shadow: 0 10px 28px rgba(7, 27, 26, 0.14) !important;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s var(--p-ease-out) !important;
}

.floating-action-stack > button:hover,
.floating-action-stack > div:hover {
  transform: translateX(-3px) !important;
}

.lead-modal-overlay,
.qr-modal {
  overscroll-behavior: contain;
}

.lead-modal,
.qr-modal-content {
  border-radius: 4px;
}

.lead-modal-close,
.qr-close {
  border: 0;
  background: transparent;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border-radius: 2px;
}

.case-strategy h4::before,
.case-result h4::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--p-tiffany);
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    gap: 38px;
  }

  .hero-title {
    font-size: 56px;
  }

  .nav-links {
    gap: 9px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 72px;
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-proof.hero-os {
    width: 100%;
    min-height: 500px;
  }

  .section,
  .iceberg-section,
  #technology,
  #service-tiers {
    padding-block: 96px !important;
  }

  .section-title {
    font-size: 44px;
  }

  .vision-section > .container > .reveal:first-child,
  #geo > .container > .reveal:first-child {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .vision-section > .container > .reveal:first-child .section-subtitle,
  #geo > .container > .reveal:first-child .section-subtitle {
    grid-column: 1;
    grid-row: auto;
  }

  .tech-cap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tech-cap-grid > div:nth-child(2) {
    border-right: 0 !important;
  }

  .tech-cap-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--p-rule) !important;
  }

  .tech-agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .tech-agent-grid > div:nth-child(2) {
    border-right: 0 !important;
  }

  .tech-agent-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13) !important;
  }

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

@media (max-width: 768px) {
  html {
    scroll-padding-top: 0;
  }

  [id] {
    scroll-margin-top: 76px;
  }

  .container {
    padding-right: max(20px, env(safe-area-inset-right));
    padding-left: max(20px, env(safe-area-inset-left));
  }

  .site-nav {
    padding-top: max(10px, env(safe-area-inset-top));
  }

  .nav-logo img {
    height: 42px;
  }

  .hero {
    gap: 28px;
    padding: 92px 20px 48px;
    background: linear-gradient(
      155deg,
      #ffffff 0 46%,
      #e6f8f5 76%,
      #ffffff 100%
    );
  }

  .hero-bg {
    inset: 72px 0 0 34%;
    background-size: cover;
    background-repeat: no-repeat;
  }

  .hero-title {
    margin-bottom: 18px;
    font-size: 40px;
    line-height: 1.07;
  }

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

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

  .hero-proof.hero-os {
    min-height: 0;
  }

  .hero-os::before {
    inset: 0;
  }

  .hero-os-canvas {
    min-height: 236px;
  }

  .section,
  .iceberg-section,
  #technology,
  #service-tiers {
    padding-block: 76px !important;
  }

  .section-title {
    font-size: 36px;
    line-height: 1.16;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 1.75;
  }

  .vision-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 48px;
  }

  .vision-card {
    min-height: 0;
    padding: 38px 24px;
  }

  .vision-card h3 {
    font-size: 28px;
  }

  .vision-icon {
    margin-bottom: 28px;
  }

  .vision-arrow {
    min-height: 84px;
    border: 0;
    border-block: 1px solid var(--p-rule);
    transform: rotate(90deg);
  }

  .vision-strategy {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 48px;
  }

  .strategy-card,
  .strategy-card + .strategy-card {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--p-rule);
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 48px;
  }

  .stat-card {
    min-height: 220px;
    padding: 30px 18px;
  }

  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--p-rule);
  }

  .stat-number {
    font-size: 50px;
  }

  .gem-section .container::before {
    top: -10px;
    right: 12px;
    font-size: 96px;
  }

  .gem-intro,
  .gem-paths,
  .gem-capabilities {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .gem-intro {
    gap: 34px;
  }

  .gem-intro .section-title {
    font-size: 36px;
  }

  .gem-paths {
    margin-top: 50px;
  }

  .gem-paths::after {
    display: none;
  }

  .gem-path,
  .gem-path-paid {
    min-height: 0;
    padding: 34px 4px;
  }

  .gem-path + .gem-path {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .gem-path h3 {
    margin-top: 30px;
  }

  .gem-path > strong,
  .gem-path-paid > strong {
    font-size: 30px;
  }

  .gem-capabilities article,
  .gem-capabilities article + article {
    min-height: 0;
    padding: 30px 4px;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .gem-capabilities h3 {
    min-height: 0;
  }

  .gem-flow {
    grid-template-columns: 1fr auto 1fr;
  }

  .geo-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 48px;
  }

  .geo-card,
  .geo-card:nth-child(odd) {
    min-height: 0;
    padding: 32px 12px 32px 64px;
    border-right: 0;
  }

  .geo-card::before {
    top: 36px;
    left: 12px;
  }

  .iceberg-visual-wrapper,
  .iceberg-container {
    margin-top: 48px;
  }

  .iceberg-peak {
    grid-template-columns: minmax(0, 1fr);
    padding: 30px 24px;
  }

  .iceberg-peak-stats {
    grid-column: 1;
    grid-row: auto;
    margin-top: 28px;
  }

  .iceberg-depth {
    padding: 32px 24px;
  }

  .iceberg-depth-features {
    grid-template-columns: minmax(0, 1fr);
  }

  .tech-cap-grid,
  .tech-agent-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    margin-top: 48px !important;
  }

  .tech-cap-grid > div,
  .tech-agent-grid > div {
    min-height: 0;
    padding: 28px 20px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--p-rule) !important;
  }

  .tech-agent-grid > div {
    border-bottom-color: rgba(255, 255, 255, 0.13) !important;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 48px;
  }

  .service-card {
    min-height: 0;
    padding: 30px 12px !important;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .service-num {
    margin-bottom: 26px;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 46px;
    margin-top: 48px;
  }

  .about-visual {
    min-height: 330px;
  }

  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 48px;
  }

  .testimonial-card,
  .testimonial-card:first-child,
  .testimonial-card:nth-child(6) {
    grid-column: auto;
    min-height: 0;
  }

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

  .contact-section .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .contact-title {
    font-size: 42px;
  }

  .contact-section .container > .reveal:last-child {
    justify-content: flex-start !important;
    margin-top: 0 !important;
  }

  .floating-action-stack {
    right: max(8px, env(safe-area-inset-right)) !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
  }

  .floating-action-stack > button,
  .floating-action-stack > div {
    width: 46px !important;
    height: 46px !important;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-actions {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .stat-card,
  .stat-card:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--p-rule);
  }

  .hero-os-canvas {
    grid-template-columns: minmax(116px, 0.88fr) minmax(0, 1fr);
  }

  .contact-title {
    font-size: 36px;
  }
}

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

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

/* Service choices use an open comparison layout at every breakpoint. */
.service-tier-grid {
  display: grid;
  margin-top: 64px;
  border-top: 1px solid var(--p-ink);
}
.service-tier {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 190px;
  gap: 10px 40px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--p-rule);
}
.tier-audience {
  grid-column: 1;
  grid-row: 1;
  color: var(--p-tiffany-dark);
  font-size: 12px;
  font-weight: 700;
}
.tier-name {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--p-ink);
  font-size: 25px;
  line-height: 1.4;
}
.tier-name span {
  color: var(--p-tiffany-dark);
}
.tier-english {
  grid-column: 1;
  grid-row: 2;
  color: var(--p-muted);
  font-size: 12px;
  margin: 0;
}
.tier-description {
  grid-column: 2;
  grid-row: 2 / span 3;
  color: var(--p-ink-2);
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}
.tier-price {
  grid-column: 3;
  grid-row: 1;
  font-size: 25px;
  font-weight: 750;
  color: var(--p-ink);
}
.tier-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--p-muted);
}
.tier-detail {
  grid-column: 3;
  grid-row: 2;
  font-size: 12px;
  color: var(--p-muted);
  line-height: 1.7;
}
.tier-link {
  grid-column: 3;
  grid-row: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 10px;
  padding: 12px 16px;
  border: 1px solid var(--p-ink);
  border-radius: 3px;
  background: var(--p-ink);
  color: #fff;
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}
.tier-link:hover {
  background: var(--p-tiffany-dark);
  border-color: var(--p-tiffany-dark);
  color: #fff;
}
.service-tier:first-child .tier-link {
  background: var(--p-tiffany);
  color: var(--p-ink);
  border-color: var(--p-tiffany);
}
.service-tier:last-child .tier-link {
  background: var(--p-yellow);
  color: var(--p-ink);
  border-color: var(--p-yellow);
}
.service-tier:first-child .tier-link:hover,
.service-tier:last-child .tier-link:hover {
  background: var(--p-ink);
  border-color: var(--p-ink);
  color: #fff;
}
.hero-os-rings > i:nth-child(3) {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.4);
}
.hero-os-rings strong,
.hero-os-signal strong {
  color: var(--p-tiffany-dark);
}
.contact-section .contact-consult {
  color: var(--p-ink);
  border: 1px solid rgba(7, 27, 26, 0.5);
  border-radius: 3px;
  background: transparent;
  font-weight: 600;
}
.contact-section .btn-accent {
  color: #fff;
  background: var(--p-ink);
}
.contact-title .accent-text {
  color: var(--p-ink);
}
body.dialog-open {
  overflow: hidden;
}
:root {
  scrollbar-color: #8da9a6 #f6f9f8;
}
input,
textarea {
  caret-color: var(--p-tiffany-dark);
}
a {
  text-underline-offset: 0.2em;
}
@media (max-width: 1024px) {
  .service-tier {
    grid-template-columns: 120px minmax(0, 1fr) 170px;
    column-gap: 24px;
  }
}
@media (max-width: 768px) {
  .service-tier-grid {
    margin-top: 40px;
  }
  .service-tier {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px 16px;
    padding: 32px 0;
  }
  .tier-audience {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .tier-name {
    grid-column: 1 / -1;
    grid-row: 2;
    font-size: 25px;
  }
  .tier-english {
    grid-column: 1 / -1;
    grid-row: 3;
  }
  .tier-description {
    grid-column: 1 / -1;
    grid-row: 4;
    padding-block: 12px;
  }
  .tier-price {
    grid-column: 1;
    grid-row: 5;
    font-size: 24px;
  }
  .tier-detail {
    grid-column: 1 / -1;
    grid-row: 6;
  }
  .tier-link {
    grid-column: 1 / -1;
    grid-row: 7;
    justify-self: stretch;
  }
  .hero-os-canvas {
    grid-template-columns: minmax(116px, 0.88fr) minmax(0, 1fr);
  }
  .hero-os-surfaces {
    display: grid;
  }
  .hero-os-head,
  .hero-os-canvas {
    padding-left: 2px;
  }
  .hero-os-core small {
    font-size: 8px;
    line-height: 1.6;
    max-width: 120px;
    text-align: center;
  }
}

.document-hidden *,
.document-hidden *::before,
.document-hidden *::after {
  animation-play-state: paused !important;
}

/* Final accessibility and responsive corrections from browser inspection. */
.hero-eyebrow,
.section-label {
  display: none;
}
.vision-section > .container > .reveal:first-child .section-title,
#geo > .container > .reveal:first-child .section-title {
  grid-row: 1;
}
.vision-section > .container > .reveal:first-child .section-subtitle,
#geo > .container > .reveal:first-child .section-subtitle {
  grid-row: 1;
}
#service-tiers .section-subtitle {
  margin-left: 0 !important;
}
.contact-sub {
  margin-left: 0;
  text-align: left;
}
.blog-hero {
  color: var(--p-ink);
  background: linear-gradient(130deg, #fff 35%, #e9f8f5) !important;
  border-bottom: 1px solid var(--p-rule);
  text-align: left;
}
.blog-hero h1.section-title {
  color: var(--p-ink);
  max-width: 920px;
}
.blog-hero .section-subtitle {
  margin-left: 0 !important;
}
.blog-search {
  margin-left: 0 !important;
}
.blog-search button {
  color: var(--p-ink);
  border-radius: 3px;
}
.blog-grid .blog-card {
  border-radius: 2px;
  box-shadow: none;
}
.blog-grid .blog-card:hover {
  background: var(--p-ink);
  box-shadow: none;
}
.blog-card:hover h3,
.blog-card:hover p,
.blog-card:hover .blog-card-meta {
  color: #fff !important;
}
.blog-cat-icon {
  background: #e4f5f2 !important;
}
.blog-cat-icon svg {
  stroke: var(--p-tiffany-dark);
}
.tech-agent-grid > div > div:nth-child(n + 3) {
  color: #b8cbc7 !important;
}
.tech-agent-grid svg {
  color: var(--p-tiffany);
}
.vision-card .vision-en,
.vision-card .vision-core {
  color: #526966;
}
.global-section > .container > .reveal {
  max-width: 1320px;
  padding-inline: 28px;
  margin-inline: auto;
}
.office-row-title,
.office-chip,
.site-footer .footer-desc,
.site-footer .footer-col p,
.site-footer .footer-col a,
.site-footer .footer-social-group h6,
.footer-bottom {
  color: #adbfbb;
}
.site-footer .footer-logo {
  background: transparent;
}
.office-chip {
  border-radius: 3px;
}
.iceberg-visual-wrapper {
  overflow: clip;
}
.water-surface {
  width: 100%;
  max-width: 100%;
  left: 0;
}
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
}
@media (max-width: 1024px) {
  .vision-section > .container > .reveal:first-child .section-subtitle,
  #geo > .container > .reveal:first-child .section-subtitle {
    grid-row: auto;
  }
}
@media (max-width: 768px) {
  .global-section > .container > .reveal {
    padding-inline: 20px;
  }
  .article-shell article {
    padding-top: 32px !important;
  }
  .blog-hero h1.section-title {
    font-size: 36px;
  }
  .hero-bg {
    background-size: cover;
    background-repeat: no-repeat;
  }
}

/* Readable supporting text and native form hints on light surfaces. */
.blog-hero .blog-search button {
  color: var(--p-ink);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder,
.blog-search input::placeholder {
  color: #627573;
  opacity: 1;
}
.lead-modal h2 .hl,
.site-switch-current {
  color: var(--p-tiffany-dark);
}
.lead-modal-close,
.qr-close {
  color: #627573;
}
.vision-card .vision-core {
  color: #526966 !important;
}

/* Diagnostic is the primary conversion entry on both language sites. */
:is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 13px 20px;
  color: #071b1a !important;
  background: linear-gradient(115deg, #5FBFBB, #60d2c5) !important;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(7, 27, 26, 0.09);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-position 0.35s ease;
  background-size: 140% 100% !important;
}
:is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta) .arrow {
  width: 34px;
  height: 34px;
  margin: 0;
  color: #071b1a;
  background: rgba(255, 255, 255, 0.38);
  border-radius: 4px;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease;
}
:is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta):hover {
  transform: translateY(-2px);
  background-position: 100% 0 !important;
  box-shadow: 0 12px 26px rgba(7, 27, 26, 0.14);
}
:is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta):hover .arrow,
:is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta):hover .cta-arrow {
  transform: translate(2px, -2px);
}
:is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta):active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(7, 27, 26, 0.12);
}
.cta-arrow {
  transition: transform 0.22s ease;
}
.hero-actions .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 16px 22px;
  color: var(--p-ink);
  border: 1px solid rgba(7, 27, 26, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.hero-actions .btn-outline:hover {
  color: #fff;
  border-color: var(--p-ink);
  background: var(--p-ink);
}
.nav-right :is(.brand-test-cta, .lead-plan-cta) {
  min-height: 44px;
  padding: 10px 14px;
  gap: 10px;
  font-size: 12px;
}
@media (min-width: 1100px) and (min-height: 680px) {
  .screen-home #technology,
  .screen-home #service-tiers {
    padding-block: var(--screen-gap) !important;
  }
  .screen-home .nav-links {
    gap: clamp(8px, 1vw, 16px);
  }
  .screen-home .nav-links a {
    font-size: 12px;
  }
}
@media (max-width: 1024px) {
  .nav-right :is(.brand-test-cta, .lead-plan-cta) {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-actions :is(.brand-test-cta, .lead-plan-cta),
  .hero-actions .btn-outline {
    min-height: 52px;
    font-size: 14px;
    padding: 12px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta), :is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta) .arrow, .cta-arrow,
  .hero-actions .btn-outline { transition: none; }
  :is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta):hover, :is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta):hover .arrow,
  :is(a.brand-test-cta, a.lead-plan-cta, button.lead-plan-cta):hover .cta-arrow { transform: none; }
}
