:root {
  --font-ui: "Noto Sans SC", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --font-display: "Outfit", "Noto Sans SC", sans-serif;
  --bg: #07143e;
  --bg-deep: #0a1c57;
  --bg-panel: #10286f;
  --bg-soft: #1c3d94;
  --line: rgba(138, 172, 255, 0.16);
  --line-strong: rgba(138, 172, 255, 0.28);
  --text: #f5f8ff;
  --muted: rgba(223, 233, 239, 0.72);
  --muted-strong: rgba(223, 233, 239, 0.86);
  --brand: #4d7fff;
  --brand-cyan: #2ec5d3;
  --shadow: 0 24px 54px rgba(3, 12, 44, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-ui);
  color: var(--text);
  background:
    radial-gradient(circle at 14% 12%, rgba(77, 127, 255, 0.2), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(46, 197, 211, 0.1), transparent 18%),
    linear-gradient(180deg, #050c24 0%, #08164a 38%, #0d2570 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(145, 177, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(145, 177, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  z-index: -1;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(146, 185, 246, 0.16);
  border-radius: 18px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.96);
  color: #0b1630;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

input:focus {
  border-color: rgba(109, 159, 199, 0.36);
  box-shadow: 0 0 0 4px rgba(109, 159, 199, 0.1);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 20px 28px;
}

.header-inner {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 0 24px;
  border: 1px solid rgba(153, 192, 247, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(77, 127, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(9, 24, 79, 0.9), rgba(7, 18, 56, 0.78));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(2, 8, 22, 0.26);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 52px;
  min-height: 52px;
}

.brand-mark-core {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 17px;
  background:
    linear-gradient(135deg, rgba(77, 127, 255, 0.96), rgba(46, 197, 211, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  color: #fbfdff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 36px rgba(22, 60, 176, 0.3);
}

.brand-mark-empty {
  min-width: 52px;
  min-height: 52px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  align-items: center;
}

.site-nav a {
  position: relative;
  color: rgba(227, 237, 255, 0.8);
  font-size: 1rem;
  font-weight: 700;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-dropdown-label {
  position: relative;
  color: rgba(227, 237, 255, 0.8);
  font-size: 1rem;
  font-weight: 700;
}

.nav-dropdown-label::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-label::after,
.nav-dropdown:focus-within .nav-dropdown-label::after,
.nav-dropdown.is-open .nav-dropdown-label::after,
.nav-dropdown-label:hover::after,
.nav-dropdown-label:focus-visible::after {
  transform: scaleX(1);
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(227, 237, 255, 0.7);
  border-bottom: 2px solid rgba(227, 237, 255, 0.7);
  transform: rotate(45deg) translateY(-1px);
  transition: transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after {
  transform: rotate(-135deg) translateY(-1px);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  gap: 6px;
  min-width: 156px;
  padding: 12px;
  border: 1px solid rgba(153, 192, 247, 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(77, 127, 255, 0.2), transparent 28%),
    linear-gradient(180deg, rgba(10, 28, 92, 0.96), rgba(7, 20, 63, 0.98));
  box-shadow: 0 22px 44px rgba(6, 20, 76, 0.32);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-submenu a {
  padding: 10px 12px;
  border-radius: 12px;
  color: rgba(232, 241, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 600;
  transition: background 160ms ease, color 160ms ease;
}

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

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu,
.nav-dropdown.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown.is-open {
  z-index: 8;
}

.header-cta,
.primary-link,
.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #4d7fff 0%, #2ec5d3 100%);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 20px 36px rgba(20, 58, 177, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid rgba(145, 185, 245, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.primary-link:hover,
.contact-submit:hover,
.secondary-link:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(145, 185, 245, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(10, 27, 91, 0.98), rgba(7, 20, 63, 0.98));
  box-shadow: 0 14px 28px rgba(8, 24, 82, 0.24);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: #eef4ff;
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
}

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

.nav-toggle:hover,
.nav-toggle:focus-visible,
.nav-toggle[aria-expanded="true"] {
  border-color: rgba(109, 159, 199, 0.3);
  box-shadow: 0 16px 32px rgba(18, 55, 150, 0.28);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  overflow: hidden;
}

.geo-page-main {
  padding-bottom: 52px;
}

.nav-anchor {
  width: min(1480px, 100%);
  height: 1px;
  margin: 0 auto;
}

.first-business-story {
  margin-top: 124px;
}

.geo-page-heading {
  padding-top: 156px;
}

.geo-page-heading h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.geo-page-intro,
.geo-page-grid,
.geo-page-cta {
  width: min(1480px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.geo-page-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.geo-page-panel,
.geo-page-card,
.geo-page-cta-panel {
  border-radius: 30px;
  border: 1px solid rgba(146, 188, 245, 0.12);
  box-shadow: var(--shadow);
}

.geo-page-panel,
.geo-page-cta-panel {
  padding: 34px 30px;
  background:
    radial-gradient(circle at top right, rgba(46, 197, 211, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(8, 24, 79, 0.96), rgba(7, 18, 56, 0.98));
}

.geo-page-panel span,
.geo-page-card span {
  color: #8dc3ff;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.geo-page-panel h2,
.geo-page-card h3,
.geo-page-cta-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(1.5rem, 2vw, 2.05rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

.geo-page-panel p,
.geo-page-card p,
.geo-page-cta-panel p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.8;
}

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

.geo-page-card {
  min-height: 100%;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(10, 28, 88, 0.94), rgba(7, 21, 65, 0.98)),
    radial-gradient(circle at top right, rgba(77, 127, 255, 0.12), transparent 28%);
}

.geo-page-cta {
  margin-top: 18px;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 124px 28px 40px;
  display: grid;
  align-items: end;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grid,
.story-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(133, 167, 223, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 167, 223, 0.07) 1px, transparent 1px);
  background-size: 68px 68px;
}

.hero-beam {
  position: absolute;
  inset: auto -10% -8% -10%;
  height: 38%;
  background: radial-gradient(circle at center, rgba(46, 197, 211, 0.22), transparent 56%);
  filter: blur(18px);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
}

.hero-glow-a {
  top: 12%;
  right: 8%;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(77, 127, 255, 0.24), transparent 72%);
}

.hero-glow-b {
  left: 14%;
  bottom: 18%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(46, 197, 211, 0.12), transparent 74%);
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(132, 182, 255, 0.14);
}

.hero-orbit-a {
  width: 680px;
  height: 680px;
  right: -40px;
  top: 10%;
}

.hero-orbit-b {
  width: 460px;
  height: 460px;
  right: 120px;
  top: 22%;
  border-color: rgba(88, 180, 170, 0.16);
}

.story-index,
.solution-panel span,
.company-profile-main span,
.company-profile-card span,
.team-highlight span,
.team-card span,
.faq-card span,
.eyebrow {
  color: #8dc3ff;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-content,
.hero-metrics,
.section-heading,
.business-story,
.solution-stage,
.company-profile-section,
.team-section,
.faq-section,
.contact-section {
  position: relative;
  z-index: 1;
  width: min(1480px, 100%);
  margin: 0 auto;
}

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

.eyebrow {
  margin: 0 0 18px;
}

.hero-content h1 {
  margin: 0;
  max-width: 11ch;
  font-family: var(--font-ui);
  font-size: clamp(3.8rem, 6vw, 6.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-lead,
.section-heading p,
.story-copy p,
.solution-panel p,
.company-profile-main p,
.company-profile-card p,
.team-highlight p,
.team-card p,
.faq-card p,
.contact-copy p,
.geo-mini-card p {
  color: var(--muted);
  line-height: 1.9;
}

.hero-lead {
  max-width: 520px;
  margin-top: 20px;
  font-size: 1rem;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: -38px;
}

.metric-card {
  min-height: 190px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(13, 28, 37, 0.92), rgba(10, 23, 31, 0.94)),
    radial-gradient(circle at top right, rgba(100, 178, 255, 0.1), transparent 30%);
  box-shadow: var(--shadow);
}

.metric-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.metric-card span {
  display: block;
  margin-top: 14px;
  color: rgba(242, 247, 255, 0.94);
  font-size: 1rem;
  font-weight: 700;
}

.metric-card em {
  display: block;
  margin-top: 10px;
  color: rgba(223, 232, 251, 0.62);
  font-style: normal;
  line-height: 1.6;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-heading {
  padding: 120px 0 34px;
  max-width: 980px;
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4vw, 4.6rem);
  letter-spacing: -0.05em;
}

.section-heading p {
  margin: 18px 0 0;
  max-width: 620px;
}

.section-heading-left {
  max-width: 820px;
  margin-left: clamp(16px, 4vw, 56px);
}

.business-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 0;
  align-items: stretch;
  min-height: 720px;
  margin-top: 24px;
  border: 1px solid rgba(146, 188, 245, 0.12);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(77, 127, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(8, 24, 79, 0.96), rgba(7, 18, 56, 0.98));
  box-shadow: var(--shadow);
}

.business-story-light {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}

.business-story-focus {
  display: block;
  min-height: 620px;
  margin-top: 24px;
  padding: 0;
  border-top: 1px solid rgba(144, 180, 198, 0.08);
  border-radius: 34px;
  border: 1px solid rgba(144, 180, 198, 0.1);
  background:
    radial-gradient(circle at 72% 24%, rgba(77, 127, 255, 0.28), transparent 18%),
    radial-gradient(circle at 28% 74%, rgba(46, 197, 211, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(9, 26, 90, 0.98), rgba(7, 18, 58, 0.98));
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.business-story-focus::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(133, 167, 183, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 167, 183, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

.business-story-focus-alt {
  background:
    radial-gradient(circle at 78% 20%, rgba(96, 138, 255, 0.28), transparent 18%),
    radial-gradient(circle at 22% 78%, rgba(46, 197, 211, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(10, 28, 94, 0.98), rgba(7, 19, 60, 0.98));
}

.story-visual,
.story-copy {
  min-height: 100%;
}

.story-visual {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  border: none;
  border-right: 1px solid rgba(146, 188, 245, 0.1);
  background: linear-gradient(180deg, rgba(8, 24, 79, 0.86), rgba(7, 18, 56, 0.9));
  box-shadow: none;
}

.story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.04), transparent 38%, transparent 62%, rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.story-visual-text {
  position: absolute;
  left: 42px;
  right: 42px;
  bottom: 38px;
  display: grid;
  gap: 10px;
}

.story-visual-text span {
  color: rgba(150, 205, 255, 0.92);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.story-visual-text strong {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

.story-visual-text p {
  margin: 0;
  color: rgba(223, 232, 251, 0.74);
  font-size: 0.98rem;
  line-height: 1.7;
}

.story-visual-text-emphasis {
  gap: 14px;
}

.story-visual-text-emphasis strong {
  font-size: clamp(2.8rem, 4.6vw, 4.8rem);
  line-height: 0.98;
}

.story-visual-text-top {
  top: 42px;
  bottom: auto;
}

.business-story-simple .story-visual::after {
  content: "";
  position: absolute;
  inset: auto 12% 14% 12%;
  height: 22%;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(33, 219, 210, 0.2), transparent 68%);
  filter: blur(16px);
}

.story-visual-marketing {
  background:
    radial-gradient(circle at 72% 26%, rgba(77, 127, 255, 0.2), transparent 22%),
    radial-gradient(circle at 34% 70%, rgba(46, 197, 211, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(8, 24, 79, 0.9), rgba(7, 18, 56, 0.94));
}

.story-visual-ad {
  background:
    radial-gradient(circle at 76% 24%, rgba(96, 138, 255, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(8, 24, 79, 0.9), rgba(7, 18, 56, 0.94));
}

.story-visual-geo {
  background:
    radial-gradient(circle at 50% 45%, rgba(77, 127, 255, 0.18), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(46, 197, 211, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(8, 24, 79, 0.9), rgba(7, 18, 56, 0.94));
}

.story-visual-bars {
  position: absolute;
  right: 44px;
  bottom: 110px;
  display: grid;
  gap: 16px;
  width: min(56%, 360px);
}

.story-visual-bars span {
  display: block;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(33, 219, 210, 0.94), rgba(83, 165, 255, 0.92));
  box-shadow: 0 10px 20px rgba(42, 126, 255, 0.14);
}

.story-visual-bars span:nth-child(1) {
  width: 100%;
}

.story-visual-bars span:nth-child(2) {
  width: 84%;
}

.story-visual-bars span:nth-child(3) {
  width: 92%;
}

.story-visual-bars span:nth-child(4) {
  width: 70%;
}

.geo-ring {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.geo-ring-a {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(77, 127, 255, 0.22);
  box-shadow: 0 0 0 22px rgba(15, 45, 128, 0.16);
}

.geo-ring-b {
  width: 252px;
  height: 252px;
  border: 1px solid rgba(46, 197, 211, 0.24);
  box-shadow: 0 0 0 14px rgba(10, 31, 95, 0.22);
}

.geo-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(151, 191, 248, 0.16);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(36, 88, 209, 0.96), rgba(10, 39, 111, 0.96));
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow:
    0 30px 58px rgba(7, 20, 76, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.story-copy {
  display: grid;
  align-content: center;
  gap: 0;
  padding: 78px 56px;
}

.story-copy-centered {
  justify-items: center;
  text-align: center;
}

.story-copy-centered p,
.story-copy-centered .story-brief-en {
  max-width: 30rem;
}

.story-copy-centered .story-link {
  justify-self: center;
}

.story-copy-focus {
  position: relative;
  z-index: 1;
  min-height: 620px;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 56px;
  place-content: center;
}

.story-copy-focus h3 {
  margin-top: 0;
}

.story-copy-focus p,
.story-copy-focus .story-brief-en {
  max-width: 34rem;
}

.story-copy h3,
.solution-panel h3,
.team-highlight h3,
.team-card strong {
  margin: 14px 0 0;
  font-size: clamp(2rem, 3vw, 3.25rem);
  letter-spacing: -0.05em;
}

.story-copy p,
.solution-panel p,
.team-highlight p,
.team-card p {
  margin-top: 18px;
  max-width: 34rem;
}

.story-brief-en {
  color: rgba(207, 222, 246, 0.56);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

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

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-cyan));
}

.story-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: #f3f7ff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.solution-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 20px;
}

.solution-panel {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  min-height: min(88vh, 860px);
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(146, 188, 245, 0.12);
  box-shadow: var(--shadow);
}

.solution-panel-growth {
  background:
    radial-gradient(circle at top right, rgba(77, 127, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(9, 25, 86, 0.96), rgba(7, 18, 58, 0.98));
}

.solution-panel-brand {
  background:
    radial-gradient(circle at top right, rgba(46, 197, 211, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(9, 25, 86, 0.96), rgba(7, 18, 58, 0.98));
}

.solution-copy,
.solution-visual {
  min-height: 100%;
}

.solution-copy {
  display: grid;
  align-content: center;
  padding: 56px 46px;
}

.solution-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.solution-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(146, 188, 245, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(237, 244, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
}

.solution-visual {
  position: relative;
  overflow: hidden;
  border-left: 1px solid rgba(146, 188, 245, 0.08);
  background:
    radial-gradient(circle at 68% 24%, rgba(77, 127, 255, 0.26), transparent 18%),
    linear-gradient(180deg, rgba(8, 24, 79, 0.82), rgba(7, 18, 56, 0.9));
}

.solution-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(133, 167, 223, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 167, 223, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}

.solution-bars {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 118px;
  display: grid;
  gap: 18px;
}

.solution-bars span {
  display: block;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(46, 197, 211, 0.96), rgba(77, 127, 255, 0.94));
  box-shadow: 0 14px 28px rgba(19, 56, 169, 0.18);
}

.solution-bars span:nth-child(1) {
  width: 100%;
}

.solution-bars span:nth-child(2) {
  width: 82%;
}

.solution-bars span:nth-child(3) {
  width: 92%;
}

.solution-bars span:nth-child(4) {
  width: 70%;
}

.solution-rings {
  position: absolute;
  inset: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -54%);
}

.solution-rings span {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.solution-rings span:nth-child(1) {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(77, 127, 255, 0.22);
}

.solution-rings span:nth-child(2) {
  width: 290px;
  height: 290px;
  border: 1px solid rgba(46, 197, 211, 0.22);
}

.solution-rings span:nth-child(3) {
  width: 170px;
  height: 170px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(41, 88, 221, 0.96), rgba(8, 35, 121, 0.96));
  box-shadow: 0 24px 48px rgba(7, 22, 76, 0.3);
}

.solution-caption {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 46px;
  display: grid;
  gap: 8px;
}

.solution-caption strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.solution-caption span {
  color: rgba(220, 233, 255, 0.66);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-section {
  padding-top: 88px;
}

.company-profile-section,
.faq-section {
  padding-top: 88px;
}

.company-heading,
.faq-heading {
  margin-left: clamp(16px, 4vw, 56px);
  max-width: 760px;
  text-align: left;
}

.company-heading p:last-child,
.faq-heading p:last-child {
  max-width: 40rem;
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.company-profile-main,
.company-profile-card,
.faq-card {
  border-radius: 30px;
  border: 1px solid rgba(146, 188, 245, 0.12);
  box-shadow: var(--shadow);
}

.company-profile-main {
  padding: 34px 30px;
  background:
    radial-gradient(circle at top right, rgba(46, 197, 211, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(9, 26, 90, 0.96), rgba(7, 19, 60, 0.98));
}

.company-profile-main h3 {
  margin-top: 12px;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.company-profile-main p {
  margin-top: 14px;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.7;
}

.company-profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.company-profile-tags span,
.contact-info span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(146, 188, 245, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.company-profile-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.company-profile-card,
.faq-card {
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(11, 30, 96, 0.94), rgba(7, 22, 69, 0.98)),
    radial-gradient(circle at top right, rgba(77, 127, 255, 0.14), transparent 28%);
}

.company-profile-card strong,
.faq-card h3 {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.36;
  letter-spacing: -0.03em;
}

.company-profile-card p,
.faq-card p {
  max-width: none;
  margin-top: 10px;
  font-size: 0.84rem;
  line-height: 1.65;
}

.faq-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.faq-card span {
  color: rgba(224, 234, 251, 0.62);
  font-size: 0.76rem;
  font-family: var(--font-display);
  letter-spacing: 0.12em;
}

.team-stage {
  display: grid;
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  margin-top: 18px;
  align-items: stretch;
}

.team-highlight,
.team-card,
.contact-form,
.contact-copy {
  border-radius: 30px;
  border: 1px solid rgba(146, 188, 245, 0.12);
  box-shadow: var(--shadow);
}

.team-highlight {
  min-height: 100%;
  padding: 34px 30px;
  background:
    radial-gradient(circle at top right, rgba(77, 127, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(9, 26, 92, 0.96), rgba(7, 19, 60, 0.98));
}

.team-section .section-heading {
  margin-bottom: 0;
  margin-left: clamp(16px, 4vw, 56px);
  max-width: 760px;
  text-align: left;
}

.team-section .section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

.team-section .section-heading p:last-child {
  max-width: 40rem;
  margin-top: 0;
  font-size: 0.98rem;
  line-height: 1.7;
}

.team-highlight h3 {
  margin-top: 12px;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.team-highlight p {
  margin-top: 14px;
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.65;
}

.team-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.team-card {
  min-height: 100%;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(11, 30, 96, 0.94), rgba(7, 22, 69, 0.98)),
    radial-gradient(circle at top right, rgba(77, 127, 255, 0.14), transparent 28%);
}

.team-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.team-card p {
  max-width: none;
  margin-top: 10px;
  font-size: 0.84rem;
  line-height: 1.55;
}

.team-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.team-metric {
  padding: 14px 12px;
  border: 1px solid rgba(146, 188, 245, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.team-metric strong {
  display: block;
  color: #f6f9ff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.team-metric span {
  display: block;
  margin-top: 6px;
  color: rgba(224, 234, 251, 0.72);
  font-size: 0.74rem;
  line-height: 1.45;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 22px;
  align-items: center;
  padding: 120px 0 72px;
}

.contact-tools {
  display: grid;
  gap: 18px;
  max-width: 460px;
  width: 100%;
}

.contact-copy {
  padding: 42px 38px;
  background:
    radial-gradient(circle at top right, rgba(46, 197, 211, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(9, 26, 90, 0.96), rgba(7, 19, 60, 0.98));
}

.contact-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 2.8vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-info span {
  color: rgba(224, 234, 251, 0.78);
}

.chat-card,
.contact-form {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(77, 127, 255, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(9, 26, 88, 0.96), rgba(7, 19, 60, 0.98));
}

.chat-card {
  display: grid;
  gap: 16px;
}

.chat-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(146, 188, 245, 0.1);
}

.chat-agent {
  display: flex;
  align-items: center;
  gap: 16px;
}

.chat-agent-avatar {
  position: relative;
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, rgba(77, 127, 255, 0.96), rgba(46, 197, 211, 0.9));
  box-shadow: 0 16px 30px rgba(20, 58, 177, 0.28), 0 0 0 5px rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.chat-agent-avatar img,
.chat-message-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.chat-agent-meta h3 {
  margin: 0;
  font-size: 1.42rem;
  letter-spacing: -0.03em;
}

.chat-agent-meta p,
.contact-form-note,
.chat-form-note {
  margin: 4px 0 0;
  color: rgba(224, 234, 251, 0.72);
  line-height: 1.7;
}

.chat-agent-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(146, 188, 245, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(235, 244, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 600;
}

.chat-agent-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ec5d3;
  box-shadow: 0 0 12px rgba(46, 197, 211, 0.56);
}

.contact-form-head .eyebrow {
  margin: 0;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
  padding-bottom: 4px;
}

.chat-message {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.chat-message.user {
  justify-content: flex-end;
}

.chat-message-avatar {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgba(77, 127, 255, 0.96), rgba(46, 197, 211, 0.9));
  box-shadow: 0 10px 18px rgba(20, 58, 177, 0.18);
  overflow: hidden;
}

.chat-message-content {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.chat-message.user .chat-message-content {
  justify-items: end;
}

.chat-message-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(224, 234, 251, 0.58);
  font-size: 0.76rem;
  line-height: 1;
}

.chat-message-meta span {
  color: rgba(232, 241, 255, 0.86);
  font-weight: 600;
}

.chat-bubble {
  max-width: min(88%, 340px);
  padding: 12px 15px;
  border-radius: 16px;
  line-height: 1.62;
  font-size: 0.9rem;
  width: fit-content;
  word-break: break-word;
}

.chat-bubble.assistant {
  border: 1px solid rgba(146, 188, 245, 0.14);
  background:
    radial-gradient(circle at top left, rgba(77, 127, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  color: rgba(236, 243, 255, 0.92);
  border-top-left-radius: 8px;
}

.chat-bubble.user {
  min-width: 88px;
  background: linear-gradient(135deg, rgba(77, 127, 255, 0.94), rgba(46, 197, 211, 0.9));
  color: #fff;
  border-top-right-radius: 8px;
  white-space: normal;
}

.chat-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 12px;
  align-items: center;
}

.chat-form #chat-input {
  min-height: 52px;
  height: 52px;
  margin: 0;
}

.chat-form-note {
  grid-column: 1 / -1;
  font-size: 0.88rem;
}

.chat-form-note.success {
  color: #7ef0c8;
}

.chat-form-note.error {
  color: #ff9d9d;
}

.site-footer {
  padding: 0 0 32px;
}

.site-footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(112, 154, 255, 0.14);
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer-item {
  color: rgba(210, 225, 255, 0.62);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.site-footer-item:hover {
  color: rgba(233, 243, 255, 0.9);
}

.contact-form-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.contact-form-head h3 {
  margin: 0;
  font-size: 1.34rem;
  letter-spacing: -0.03em;
}

.chat-form .chat-submit {
  width: 104px;
  min-width: 104px;
  min-height: 52px;
  height: 52px;
  margin-top: 0;
  padding: 0 18px;
  align-self: center;
  justify-self: end;
  line-height: 1;
  white-space: nowrap;
}

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

.anti-bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field span {
  color: #edf3ff;
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-submit {
  width: 100%;
  margin-top: 18px;
}

.contact-status {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-status.success {
  color: #7ef0c8;
}

.contact-status.error {
  color: #ff9d9d;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

[data-reveal="left"] {
  transform: translateX(22px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1220px) {
  .hero-metrics,
  .solution-stage,
  .team-grid,
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }

  .team-metrics {
    grid-template-columns: 1fr;
  }

  .business-story,
  .business-story-light,
  .team-stage,
  .company-profile,
  .geo-page-intro,
  .geo-page-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 88px;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 14px;
  }

  .header-inner {
    position: relative;
    width: fit-content;
    min-width: 0;
    margin: 0 0 0 auto;
    grid-template-columns: auto;
    justify-content: end;
    align-items: center;
    min-height: 58px;
    padding: 8px;
    border-radius: 20px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .brand-mark-empty {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 28px));
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 4px;
    padding: 14px 12px 12px;
    border: 1px solid rgba(145, 185, 245, 0.12);
    border-radius: 20px;
    background:
      radial-gradient(circle at top right, rgba(77, 127, 255, 0.2), transparent 26%),
      linear-gradient(180deg, rgba(10, 27, 91, 0.995), rgba(7, 20, 63, 0.995));
    box-shadow:
      0 22px 42px rgba(6, 20, 76, 0.32),
      inset 0 1px 0 rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(18px);
  }

  .site-nav.nav-open {
    display: grid;
  }

  .faq-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-head {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 2px;
  }

  .nav-dropdown-label::after {
    display: none;
  }

  .nav-dropdown-label {
    flex: 1;
    font-size: 1.12rem;
  }

  .site-nav > a,
  .nav-dropdown-label {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .nav-submenu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 4px;
    padding: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
    border: 1px solid rgba(145, 185, 245, 0.08);
    border-radius: 16px;
    background:
      radial-gradient(circle at top right, rgba(77, 127, 255, 0.14), transparent 26%),
      rgba(255, 255, 255, 0.05);
  }

  .nav-dropdown.is-open .nav-submenu {
    display: grid;
  }

  .nav-submenu a {
    min-height: 42px;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .header-cta {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 108px 16px 28px;
  }

  .first-business-story {
    margin-top: 96px;
  }

  .hero-content,
  .hero-metrics,
  .section-heading,
  .business-story,
  .solution-stage,
  .geo-page-intro,
  .geo-page-grid,
  .geo-page-cta,
  .company-profile-section,
  .team-section,
  .faq-section,
  .contact-section {
    width: 100%;
  }

  .hero-content h1 {
    max-width: none;
    font-size: clamp(2.7rem, 12vw, 4.3rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-metrics,
  .team-grid,
  .faq-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .chat-form {
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 10px;
  }

  .chat-form #chat-input {
    min-height: 50px;
    height: 50px;
  }

  .chat-form .chat-submit {
    width: 92px;
    min-width: 92px;
    min-height: 50px;
    height: 50px;
  }

  .chat-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-metrics {
    margin-top: 10px;
  }

  .metric-card,
  .story-copy,
  .solution-panel,
  .company-profile-main,
  .company-profile-card,
  .team-highlight,
  .team-card,
  .faq-card,
  .contact-copy,
  .contact-form {
    border-radius: 24px;
  }

  .business-story {
    min-height: auto;
    gap: 18px;
    margin-top: 18px;
  }

  .business-story-focus {
    min-height: auto;
  }

  .story-visual {
    min-height: 360px;
  }

  .story-copy {
    padding: 20px 14px 8px;
  }

  .story-copy-focus {
    min-height: 0;
    padding: 56px 24px 48px;
  }

  .solution-panel {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .solution-copy {
    padding: 30px 24px 22px;
  }

  .solution-visual {
    min-height: 320px;
    border-left: none;
    border-top: 1px solid rgba(146, 188, 245, 0.08);
  }

  .solution-bars,
  .solution-caption {
    left: 24px;
    right: 24px;
  }

  .story-visual-text-emphasis {
    left: 24px;
    right: 24px;
  }

  .story-visual-text-emphasis strong {
    font-size: clamp(2.4rem, 9vw, 3.4rem);
  }

  .story-visual-text-top {
    top: 24px;
  }

  .solution-bars {
    bottom: 92px;
  }

  .solution-caption {
    bottom: 24px;
  }

  .solution-rings {
    width: 300px;
    height: 300px;
  }

  .solution-rings span:nth-child(1) {
    width: 300px;
    height: 300px;
  }

  .solution-rings span:nth-child(2) {
    width: 210px;
    height: 210px;
  }

  .solution-rings span:nth-child(3) {
    width: 130px;
    height: 130px;
  }

  .story-copy h3,
  .solution-panel h3,
  .geo-page-panel h2,
  .geo-page-card h3,
  .company-profile-main h3,
  .team-highlight h3,
  .team-card strong {
    font-size: 1.75rem;
  }

  .contact-section {
    padding: 76px 0 40px;
  }

  .contact-copy,
  .chat-card {
    padding: 24px 20px;
  }

  .contact-copy p,
  .story-copy p,
  .solution-panel p,
  .geo-page-panel p,
  .geo-page-card p,
  .company-profile-main p,
  .company-profile-card p,
  .team-highlight p,
  .team-card p,
  .faq-card p {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .company-profile-main {
    padding: 28px 24px;
  }

  .geo-page-panel,
  .geo-page-cta-panel {
    padding: 28px 24px;
  }

  .geo-page-card {
    padding: 20px 18px;
  }

  .company-profile-card,
  .faq-card {
    padding: 20px 18px;
  }

  .team-highlight {
    padding: 28px 24px;
  }

  .team-card {
    padding: 20px 18px;
  }

  .site-footer {
    padding-bottom: 26px;
  }

}

@media (max-width: 640px) {
  .site-header {
    padding: 10px 12px;
  }

  .header-inner {
    gap: 0;
    min-height: 56px;
    padding: 8px;
  }

  .hero-content {
    padding-bottom: 42px;
  }

  .site-nav {
    gap: 4px;
    padding: 12px 10px 10px;
    top: calc(100% + 8px);
  }

  .site-nav a,
  .nav-dropdown-label,
  .nav-submenu a {
    font-size: 0.94rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .nav-toggle span {
    width: 16px;
  }

  .hero-orbit-a {
    width: 460px;
    height: 460px;
    right: -80px;
  }

  .hero-orbit-b {
    width: 320px;
    height: 320px;
    right: 10px;
  }

  .section-heading {
    padding: 86px 0 24px;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .section-heading {
    padding: 70px 0 20px;
  }

  .section-heading p {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.74;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .first-business-story {
    margin-top: 84px;
  }

  .geo-page-heading {
    padding-top: 124px;
  }

  .geo-page-heading h1 {
    font-size: clamp(2.4rem, 10vw, 3.4rem);
  }

  .business-story-focus {
    border-radius: 24px;
  }

  .story-copy-focus {
    padding: 46px 18px 38px;
  }

  .story-copy h3,
  .solution-panel h3,
  .geo-page-panel h2,
  .geo-page-card h3,
  .company-profile-main h3,
  .team-highlight h3 {
    font-size: 1.58rem;
    line-height: 1.18;
  }

  .story-brief-en {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .story-link {
    margin-top: 20px;
    font-size: 0.94rem;
  }

  .story-visual-text {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }

  .story-visual-text strong {
    font-size: 2rem;
  }

  .story-visual-bars {
    right: 24px;
    left: 24px;
    width: auto;
  }

  .geo-ring-a {
    width: 238px;
    height: 238px;
  }

  .geo-ring-b {
    width: 164px;
    height: 164px;
  }

  .geo-core {
    width: 118px;
    height: 118px;
    font-size: 1.18rem;
  }

  .solution-copy {
    padding: 24px 18px 18px;
  }

  .solution-points {
    gap: 8px;
    margin-top: 18px;
  }

  .solution-points span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.82rem;
  }

  .solution-visual {
    min-height: 260px;
  }

  .solution-bars,
  .solution-caption {
    left: 18px;
    right: 18px;
  }

  .solution-bars {
    bottom: 78px;
    gap: 12px;
  }

  .solution-bars span {
    height: 12px;
  }

  .solution-caption {
    bottom: 18px;
  }

  .solution-caption strong {
    font-size: 1.5rem;
  }

  .solution-caption span {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .solution-rings {
    width: 232px;
    height: 232px;
  }

  .solution-rings span:nth-child(1) {
    width: 232px;
    height: 232px;
  }

  .solution-rings span:nth-child(2) {
    width: 164px;
    height: 164px;
  }

  .solution-rings span:nth-child(3) {
    width: 102px;
    height: 102px;
  }

  .team-section {
    padding-top: 64px;
  }

  .company-profile-section,
  .faq-section {
    padding-top: 64px;
  }

  .team-stage {
    gap: 14px;
    margin-top: 14px;
  }

  .company-profile {
    gap: 14px;
    margin-top: 14px;
  }

  .company-profile-main {
    padding: 22px 18px;
  }

  .geo-page-panel,
  .geo-page-cta-panel {
    padding: 22px 18px;
  }

  .company-profile-card,
  .faq-card,
  .geo-page-card {
    padding: 18px 16px;
  }

  .company-profile-tags {
    gap: 8px;
    margin-top: 18px;
  }

  .company-profile-tags span,
  .contact-info span {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.8rem;
  }

  .team-highlight {
    padding: 22px 18px;
  }

  .team-grid {
    gap: 12px;
  }

  .team-card {
    padding: 18px 16px;
  }

  .team-metrics {
    gap: 10px;
    margin-top: 18px;
  }

  .team-metric {
    padding: 12px 10px;
  }

  .contact-section {
    gap: 16px;
    padding: 64px 0 32px;
  }

  .contact-copy,
  .chat-card {
    border-radius: 22px;
    padding: 20px 16px;
  }

  .contact-info {
    gap: 8px;
    margin-top: 16px;
  }

  .chat-agent {
    gap: 12px;
  }

  .chat-agent-avatar {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .chat-agent-meta h3 {
    font-size: 1.2rem;
  }

  .chat-thread {
    max-height: 280px;
  }

  .chat-bubble {
    max-width: min(92%, 100%);
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .chat-form {
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 8px;
  }

  .chat-form #chat-input {
    min-height: 48px;
    height: 48px;
    padding: 0 14px;
    border-radius: 16px;
  }

  .chat-form .chat-submit {
    width: 84px;
    min-width: 84px;
    min-height: 48px;
    height: 48px;
    padding: 0 12px;
    border-radius: 16px;
    font-size: 0.92rem;
  }

  .chat-form-note {
    font-size: 0.8rem;
    line-height: 1.6;
  }

  .site-footer-inner {
    width: calc(100% - 24px);
    gap: 10px;
    padding-top: 14px;
  }

  .site-footer-item {
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    text-align: center;
  }
}

@media (max-width: 460px) {
  .site-header {
    padding: 10px 10px;
  }

  .header-inner {
    min-height: 54px;
    padding: 7px;
    border-radius: 20px;
  }

  .site-nav {
    width: min(308px, calc(100vw - 20px));
    padding: 12px 10px 10px;
    border-radius: 18px;
  }

  .nav-dropdown-head,
  .site-nav > a,
  .nav-dropdown-label {
    min-height: 46px;
  }
}

@media (max-width: 420px) {
  .header-inner {
    border-radius: 18px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-dropdown-head {
    min-height: 44px;
  }

  .story-copy-focus {
    padding: 40px 16px 34px;
  }

  .story-copy h3,
  .solution-panel h3,
  .company-profile-main h3,
  .team-highlight h3,
  .contact-copy h2 {
    letter-spacing: -0.04em;
  }

  .solution-copy,
  .geo-page-panel,
  .geo-page-cta-panel,
  .company-profile-main,
  .company-profile-card,
  .contact-copy,
  .chat-card,
  .team-highlight,
  .team-card,
  .geo-page-card,
  .faq-card {
    padding-left: 14px;
    padding-right: 14px;
  }

  .chat-bubble.user {
    min-width: 72px;
  }

  .contact-copy p,
  .story-copy p,
  .solution-panel p,
  .geo-page-panel p,
  .geo-page-card p,
  .company-profile-main p,
  .company-profile-card p,
  .team-highlight p,
  .team-card p,
  .faq-card p {
    font-size: 0.9rem;
  }
}
