:root {
  --bg: #060d19;
  --bg-soft: #0b1525;
  --bg-card: rgba(10, 18, 32, 0.78);
  --bg-card-strong: rgba(12, 20, 36, 0.92);
  --surface-light: rgba(255, 255, 255, 0.88);
  --surface-light-2: rgba(255, 255, 255, 0.64);
  --surface-dark: rgba(255, 255, 255, 0.06);
  --surface-dark-2: rgba(255, 255, 255, 0.1);
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(8, 18, 32, 0.08);
  --text: #f2f8ff;
  --text-muted: rgba(229, 239, 255, 0.72);
  --text-dark: #0d1a29;
  --text-dark-muted: rgba(13, 26, 41, 0.66);
  --accent: #3de1b4;
  --accent-strong: #12bf8a;
  --accent-blue: #4d87ff;
  --accent-cyan: #78d6ff;
  --accent-gold: #ffd27a;
  --shadow-xl: 0 40px 120px rgba(2, 8, 18, 0.45);
  --shadow-lg: 0 26px 70px rgba(3, 10, 20, 0.28);
  --shadow-md: 0 18px 36px rgba(9, 18, 30, 0.16);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(77, 135, 255, 0.18), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(61, 225, 180, 0.16), transparent 24%),
    radial-gradient(circle at 50% 85%, rgba(120, 214, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #050b15 0%, #071120 26%, #091626 100%);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 90%);
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.035), transparent 36%),
    radial-gradient(circle at 70% 65%, rgba(255, 255, 255, 0.03), transparent 34%);
  mix-blend-mode: screen;
  z-index: -1;
}

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

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

button {
  font: inherit;
}

.site-shell {
  position: relative;
}

.container {
  width: min(1280px, calc(100vw - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 20px;
  top: 16px;
  z-index: 120;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #071120;
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-140%);
  transition: transform 0.24s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: linear-gradient(180deg, rgba(7, 14, 26, 0.86), rgba(7, 14, 26, 0.58));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(7, 14, 26, 0.96), rgba(7, 14, 26, 0.84));
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 44px rgba(3, 10, 20, 0.28);
}

.header-inner {
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(77, 135, 255, 0.26);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.brand-copy span {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  min-width: 0;
}

.site-nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: rgba(242, 248, 255, 0.86);
  transition: color 0.25s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
  transition: transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #ffffff;
}

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

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 20px;
  min-height: 48px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-large {
  min-height: 54px;
  padding: 0 24px;
  font-size: 15px;
}

.btn-solid {
  color: #03111a;
  background: linear-gradient(135deg, #dffcf4 0%, var(--accent) 48%, var(--accent-blue) 140%);
  box-shadow: 0 18px 46px rgba(61, 225, 180, 0.28);
}

.btn-solid:hover {
  box-shadow: 0 26px 56px rgba(61, 225, 180, 0.34);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-scroll-progress {
  position: sticky;
  top: var(--header-height);
  z-index: 49;
  height: 2px;
  margin-top: -2px;
  background: rgba(255, 255, 255, 0.05);
}

.site-scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
}

.hero-section {
  position: relative;
  padding: 36px 0 56px;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.8;
  pointer-events: none;
}

.hero-orb-a {
  width: 320px;
  height: 320px;
  left: -90px;
  top: 110px;
  background: rgba(61, 225, 180, 0.16);
}

.hero-orb-b {
  width: 380px;
  height: 380px;
  right: -120px;
  top: 160px;
  background: rgba(77, 135, 255, 0.16);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.28;
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 1;
}

.hero-slider {
  position: relative;
  min-height: min(820px, calc(100vh - var(--header-height) - 28px));
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(10, 18, 33, 0.9), rgba(7, 15, 29, 0.96));
  box-shadow: var(--shadow-xl);
}

.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(61, 225, 180, 0.16), transparent 25%),
    radial-gradient(circle at 80% 24%, rgba(77, 135, 255, 0.16), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(120, 214, 255, 0.08), transparent 36%);
  pointer-events: none;
}

.hero-progress {
  position: absolute;
  left: 32px;
  right: 32px;
  top: 24px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  z-index: 3;
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
}

.hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slide {
  position: relative;
  min-width: 100%;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
  padding: clamp(68px, 7vw, 92px) clamp(28px, 4vw, 48px) clamp(34px, 4vw, 44px);
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 16, 30, 0.92) 0%, rgba(7, 16, 30, 0.82) 42%, rgba(7, 16, 30, 0.66) 100%),
    var(--hero-scene, none) center / cover no-repeat;
  opacity: 0.32;
  pointer-events: none;
}

.slide-theme-primary::after,
.slide-theme-secondary::after,
.slide-theme-tertiary::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.9;
}

.slide-theme-primary::after {
  background:
    radial-gradient(circle at 22% 24%, rgba(61, 225, 180, 0.12), transparent 18%),
    radial-gradient(circle at 78% 28%, rgba(77, 135, 255, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(7, 16, 30, 0.36), rgba(7, 16, 30, 0));
}

.slide-theme-secondary::after {
  background:
    radial-gradient(circle at 18% 22%, rgba(120, 214, 255, 0.12), transparent 16%),
    radial-gradient(circle at 82% 18%, rgba(61, 225, 180, 0.14), transparent 22%),
    linear-gradient(135deg, rgba(7, 16, 30, 0.32), rgba(7, 16, 30, 0));
}

.slide-theme-tertiary::after {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 210, 122, 0.1), transparent 18%),
    radial-gradient(circle at 82% 24%, rgba(77, 135, 255, 0.16), transparent 20%),
    linear-gradient(135deg, rgba(7, 16, 30, 0.34), rgba(7, 16, 30, 0));
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(242, 248, 255, 0.74);
  text-transform: uppercase;
}

.section-kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 248, 255, 0.72));
}

.section-kicker-dark {
  color: rgba(13, 26, 41, 0.56);
}

.section-kicker-dark::before {
  background: linear-gradient(90deg, transparent, rgba(13, 26, 41, 0.48));
}

.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.hero-copy h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.98);
  background: linear-gradient(90deg, #ffffff 0%, #d5eaff 44%, #9af2d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 660px;
  margin: 0;
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.82;
  color: var(--text-muted);
}

.hero-chips,
.module-meta,
.arch-pills,
.hero-metrics,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
}

.hero-chips {
  gap: 10px;
  margin-top: 26px;
}

.hero-chips span,
.module-meta em,
.arch-pills em,
.board-pill,
.board-badge,
.stat-tag,
.contact-panel article span,
.board-label,
.quote-tag {
  font-style: normal;
}

.hero-chips span,
.module-meta em,
.arch-pills em,
.board-pill,
.board-badge,
.stat-tag,
.quote-tag,
.contact-panel article span,
.board-label,
.flow-step span,
.pillar-card span,
.module-card span,
.scenario-card span,
.agent-card span,
.agent-core span,
.timeline-card span,
.metric-card span,
.arch-layer > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-chips span {
  color: #eff7ff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.hero-actions {
  gap: 14px;
  margin-top: 28px;
}

.hero-metrics {
  gap: 14px;
  margin-top: 30px;
}

.hero-metrics > div {
  flex: 1 1 180px;
  min-width: 0;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.hero-metrics strong {
  display: block;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.visual-board {
  position: relative;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
}

.board-badge {
  margin-bottom: 18px;
  color: rgba(230, 240, 255, 0.74);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.board-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}

.board-title-row h2 {
  margin: 4px 0 0;
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.board-label,
.quote-tag {
  color: rgba(230, 240, 255, 0.56);
  background: rgba(255, 255, 255, 0.05);
  margin: 0;
}

.board-pill {
  color: #081521;
  background: linear-gradient(135deg, rgba(224, 255, 246, 0.92), rgba(120, 214, 255, 0.88));
}

.board-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.board-node,
.matrix-grid article,
.scenario-mini-grid article,
.matrix-side-card,
.floating-card,
.scenario-note {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
}

.board-node.active {
  border-color: rgba(61, 225, 180, 0.4);
  background: linear-gradient(135deg, rgba(61, 225, 180, 0.12), rgba(77, 135, 255, 0.06));
  box-shadow: 0 18px 46px rgba(61, 225, 180, 0.12);
}

.board-node small,
.matrix-grid small,
.scenario-mini-grid small,
.floating-card span,
.matrix-side-card span,
.scenario-note span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(230, 240, 255, 0.6);
  text-transform: uppercase;
}

.board-node strong,
.matrix-grid strong,
.scenario-mini-grid strong,
.floating-card strong,
.matrix-side-card strong,
.scenario-note strong {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.4;
}

.board-node p,
.matrix-grid p,
.scenario-mini-grid p,
.floating-card p,
.matrix-side-card p,
.scenario-note p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
}

.flow-board {
  padding-bottom: 114px;
}

.floating-card {
  position: absolute;
  width: clamp(180px, 30%, 230px);
  backdrop-filter: blur(20px);
}

.floating-card-top {
  right: -18px;
  top: 92px;
}

.floating-card-bottom {
  left: -24px;
  bottom: 28px;
}

.matrix-grid,
.scenario-mini-grid {
  display: grid;
  gap: 14px;
}

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

.matrix-side-card,
.scenario-note {
  margin-top: 18px;
}

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

.hero-controls {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-slide-rail {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(708px, calc(100% - 248px));
}

.hero-slide-marker {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: 6px;
  min-height: 108px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  color: rgba(242, 248, 255, 0.84);
  text-align: left;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.hero-slide-marker::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(61, 225, 180, 0.06), transparent 44%, rgba(77, 135, 255, 0.07));
}

.hero-slide-marker > * {
  position: relative;
  z-index: 1;
}

.hero-slide-marker small {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 248, 255, 0.56);
}

.hero-slide-marker strong {
  display: block;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.hero-slide-marker span {
  display: block;
  font-size: 11px;
  line-height: 1.65;
  color: rgba(229, 239, 255, 0.66);
}

.hero-slide-marker:hover,
.hero-slide-marker.is-active {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(3, 10, 20, 0.24);
  border-color: rgba(61, 225, 180, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.hero-slide-marker.is-active {
  background: linear-gradient(135deg, rgba(61, 225, 180, 0.14), rgba(77, 135, 255, 0.1));
}

.slider-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  cursor: pointer;
}

.slider-arrow span,
.slider-arrow-next span {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
}

.slider-arrow span::before,
.slider-arrow-next span::before {
  content: '';
  position: absolute;
  inset: 0;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(-45deg);
}

.slider-arrow-next span::before {
  transform: rotate(135deg);
}

.slider-dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots button.is-active {
  width: 32px;
  background: linear-gradient(90deg, var(--accent), var(--accent-blue));
}

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

.hero-scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: rgba(242, 248, 255, 0.74);
}

.hero-scroll-cue span {
  position: relative;
  width: 24px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-scroll-cue span::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 7px;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transform: translateX(-50%);
  animation: cue-drop 1.8s ease-in-out infinite;
}

.hero-scroll-cue strong {
  font-size: 13px;
  letter-spacing: 0.06em;
}

.hero-summary article,
.quote-panel,
.pillar-card,
.stat-card,
.opportunity-note,
.module-card,
.scenario-card,
.strategy-panel,
.agent-core,
.agent-card,
.architecture-board,
.metric-card,
.timeline-card,
.contact-panel,
.contact-copy {
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.hero-summary article,
.quote-panel,
.pillar-card,
.stat-card,
.module-card,
.scenario-card,
.metric-card,
.timeline-card,
.contact-copy,
.contact-value-grid article {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-summary article::after,
.quote-panel::after,
.pillar-card::after,
.stat-card::after,
.module-card::after,
.scenario-card::after,
.metric-card::after,
.timeline-card::after,
.contact-copy::after,
.contact-value-grid article::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(61, 225, 180, 0.05), transparent 42%, rgba(77, 135, 255, 0.05));
}

.hero-summary article > *,
.quote-panel > *,
.pillar-card > *,
.stat-card > *,
.module-card > *,
.scenario-card > *,
.metric-card > *,
.timeline-card > *,
.contact-copy > *,
.contact-value-grid article > * {
  position: relative;
  z-index: 1;
}

.hero-summary article:hover,
.quote-panel:hover,
.pillar-card:hover,
.stat-card:hover,
.module-card:hover,
.scenario-card:hover,
.metric-card:hover,
.timeline-card:hover,
.contact-copy:hover,
.contact-value-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(9, 18, 30, 0.14);
  border-color: rgba(61, 225, 180, 0.18);
}

.hero-summary article {
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.hero-summary span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(242, 248, 255, 0.56);
  text-transform: uppercase;
}

.hero-summary strong {
  display: block;
  margin-top: 12px;
  font-size: 22px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.hero-summary p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-light {
  background: linear-gradient(180deg, #f2f7fd 0%, #f7fbff 100%);
  color: var(--text-dark);
}

.section-soft {
  background: linear-gradient(180deg, #eef5fb 0%, #f4f8fc 100%);
  color: var(--text-dark);
}

.section-dark {
  background:
    radial-gradient(circle at 20% 10%, rgba(61, 225, 180, 0.08), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(77, 135, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #071120 0%, #091626 100%);
  color: var(--text);
}

.section-flowband {
  overflow: hidden;
}

.section-head {
  max-width: 900px;
  margin-bottom: 48px;
}

.section-head h2 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-dark-muted);
}

.section-head-dark p {
  color: var(--text-muted);
}

.vision-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.quote-panel {
  padding: 32px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 251, 255, 0.96));
}

.quote-panel h3 {
  margin: 18px 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.quote-panel p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark-muted);
}

.quote-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.quote-matrix div {
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(240, 247, 255, 0.88), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(13, 26, 41, 0.07);
}

.quote-matrix strong {
  display: block;
  font-size: 18px;
}

.quote-matrix span {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark-muted);
}

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

.pillar-card {
  padding: 28px 24px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.94));
}

.pillar-card span,
.module-card span,
.timeline-card span,
.metric-card span,
.arch-layer > span,
.scenario-card span,
.agent-card span,
.agent-core span,
.flow-step span,
.contact-panel article span,
.stat-tag,
.quote-tag {
  color: rgba(9, 21, 34, 0.58);
  background: rgba(9, 21, 34, 0.06);
}

.pillar-card strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.04em;
}

.pillar-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark-muted);
}

.stat-grid,
.module-grid,
.metric-grid-advanced,
.timeline-grid,
.scenario-grid-large {
  display: grid;
  gap: 18px;
}

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

.stat-card {
  padding: 26px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.95));
}

.stat-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(28px, 2.4vw, 38px);
  letter-spacing: -0.05em;
}

.stat-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark-muted);
}

.opportunity-note {
  margin-top: 22px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(135deg, rgba(9, 21, 34, 0.96), rgba(17, 35, 59, 0.92));
  color: var(--text);
}

.opportunity-note span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(242, 248, 255, 0.54);
  text-transform: uppercase;
}

.opportunity-note strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.3;
  letter-spacing: -0.05em;
}

.opportunity-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
}

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

.module-card {
  padding: 26px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.95));
}

.module-card h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.module-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-dark-muted);
}

.module-meta {
  gap: 10px;
  margin-top: 18px;
}

.module-meta em,
.arch-pills em {
  color: var(--text-dark);
  border: 1px solid rgba(9, 21, 34, 0.08);
  background: rgba(9, 21, 34, 0.04);
}

.flow-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 16px;
}

.flow-steps::before {
  content: '';
  position: absolute;
  left: 5%;
  right: 5%;
  top: 58px;
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 225, 180, 0.4), rgba(77, 135, 255, 0.4));
  z-index: 0;
}

.flow-step {
  position: relative;
  z-index: 1;
  padding: 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.flow-step span {
  color: rgba(242, 248, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.flow-step h3 {
  margin: 18px 0 12px;
  font-size: 20px;
  line-height: 1.4;
}

.flow-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

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

.scenario-card {
  padding: 28px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.95));
}

.scenario-card h3 {
  margin: 18px 0 14px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.scenario-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-dark-muted);
}

.scenario-card ul,
.timeline-card ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.scenario-card li,
.timeline-card li {
  position: relative;
  padding-left: 18px;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dark-muted);
}

.scenario-card li::before,
.timeline-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-blue));
}

.strategy-panel {
  margin-top: 24px;
  padding: 28px 30px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(135deg, rgba(9, 21, 34, 0.98), rgba(16, 34, 58, 0.94));
  color: var(--text);
}

.strategy-panel h3 {
  margin: 14px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

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

.strategy-columns strong {
  display: block;
  font-size: 20px;
}

.strategy-columns p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.agent-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: start;
}

.agent-core {
  padding: 32px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(135deg, rgba(9, 21, 34, 0.96), rgba(18, 34, 55, 0.92));
  color: var(--text);
}

.agent-core span {
  color: rgba(242, 248, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

.agent-core h3 {
  margin: 20px 0 12px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.agent-core p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
}

.agent-core-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.agent-core-list div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.agent-core-list strong {
  display: block;
  font-size: 18px;
}

.agent-core-list p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.75;
}

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

.agent-card {
  padding: 26px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.95));
}

.agent-card h3 {
  margin: 18px 0 12px;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.agent-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-dark-muted);
}

.architecture-board {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
}

.arch-layer {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.arch-layer + .arch-columns,
.arch-columns + .arch-layer,
.arch-layer + .arch-layer {
  margin-top: 18px;
}

.arch-layer > span {
  color: rgba(242, 248, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

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

.arch-card {
  padding: 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.arch-card span {
  display: inline-flex;
  padding: 0 12px;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 248, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

.arch-card h3 {
  margin: 18px 0 10px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.arch-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
}

.arch-pills {
  gap: 10px;
  margin-top: 18px;
}

.arch-pills em {
  color: rgba(242, 248, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.arch-pills.large em {
  min-height: 40px;
  padding-inline: 14px;
}

.metric-grid-advanced {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-card {
  padding: 28px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.95));
}

.metric-card strong {
  display: block;
  margin-top: 20px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.metric-card p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dark-muted);
}

.section-signature {
  overflow: hidden;
}

.signature-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 24px;
  align-items: stretch;
}

.signature-intro,
.signature-story-card,
.signature-proof-strip article {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.signature-intro {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top right, rgba(61, 225, 180, 0.14), transparent 26%),
    radial-gradient(circle at left bottom, rgba(77, 135, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(9, 21, 34, 0.98), rgba(16, 34, 58, 0.94));
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.signature-intro::after,
.signature-story-card::after,
.signature-proof-strip article::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 42%, rgba(120, 214, 255, 0.06));
}

.signature-intro > *,
.signature-story-card > *,
.signature-proof-strip article > * {
  position: relative;
  z-index: 1;
}

.signature-intro h2 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 3.7vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.signature-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

.signature-highlight-grid {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.signature-highlight-grid article {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
}

.signature-highlight-grid small,
.signature-proof-strip small,
.contact-assurance-strip small,
.contact-trust-grid small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.signature-highlight-grid small,
.contact-assurance-strip small,
.contact-trust-grid small {
  color: rgba(242, 248, 255, 0.58);
}

.signature-highlight-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.7;
}

.signature-highlight-grid p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.8;
}

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

.signature-story-card {
  min-height: 260px;
  padding: 30px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.08) 0%, rgba(7, 17, 32, 0.42) 44%, rgba(7, 17, 32, 0.92) 100%),
    var(--signature-cover, none) center / cover no-repeat;
  box-shadow: var(--shadow-lg);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.signature-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 80px rgba(3, 10, 20, 0.34);
}

.signature-story-card--feature {
  min-height: 540px;
  grid-row: span 2;
}

.signature-story-card__content {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.signature-story-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 248, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.signature-story-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 2vw, 38px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.signature-story-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
}

.signature-story-card strong {
  display: inline-flex;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  color: #dffcf4;
}

.signature-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.signature-proof-strip article {
  padding: 24px 24px 22px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  box-shadow: var(--shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.signature-proof-strip article:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(9, 18, 30, 0.14);
  border-color: rgba(61, 225, 180, 0.18);
}

.signature-proof-strip small {
  color: rgba(9, 21, 34, 0.48);
}

.signature-proof-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.signature-proof-strip p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-dark-muted);
}

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

.timeline-card {
  padding: 26px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.95));
}

.timeline-card.highlight {
  background: linear-gradient(180deg, rgba(223, 252, 244, 0.98), rgba(228, 241, 255, 0.96));
  border-color: rgba(61, 225, 180, 0.24);
  box-shadow: 0 24px 56px rgba(61, 225, 180, 0.12);
}

.timeline-card h3 {
  margin: 18px 0 8px;
  font-size: 24px;
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.timeline-card > p {
  margin: 0;
  font-size: 14px;
  color: var(--text-dark-muted);
}

.section-contact {
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.contact-copy,
.contact-panel {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.contact-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.contact-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.contact-panel {
  display: grid;
  gap: 16px;
}

.contact-panel article {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.contact-panel article span {
  color: rgba(242, 248, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

.contact-panel article strong {
  display: block;
  margin-top: 16px;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: -0.04em;
}

.contact-assurance-strip,
.contact-trust-grid {
  display: grid;
  gap: 16px;
}

.contact-assurance-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.contact-assurance-strip article,
.contact-trust-grid article {
  position: relative;
  overflow: hidden;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.contact-assurance-strip article::after,
.contact-trust-grid article::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(61, 225, 180, 0.05), transparent 40%, rgba(77, 135, 255, 0.06));
}

.contact-assurance-strip article > *,
.contact-trust-grid article > * {
  position: relative;
  z-index: 1;
}

.contact-assurance-strip strong,
.contact-trust-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.7;
}

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

.contact-trust-grid p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}

.site-footer {
  padding: 26px 0 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 10%, rgba(61, 225, 180, 0.08), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(77, 135, 255, 0.1), transparent 24%),
    rgba(6, 13, 25, 0.94);
}

.footer-panel {
  padding: 28px 0 0;
}

.footer-topbar,
.footer-grid,
.footer-bottomline {
  display: grid;
  gap: 24px;
}

.footer-topbar {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-wrap {
  display: grid;
  gap: 16px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  font-size: 16px;
}

.footer-brand span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-intro {
  margin: 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
}

.footer-badge-wall {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-badge-wall span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(242, 248, 255, 0.84);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 26px 0;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-column h4 {
  margin: 0 0 4px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.footer-column a,
.footer-column p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(242, 248, 255, 0.76);
}

.footer-column a:hover,
.footer-bottom-actions a:hover {
  color: #ffffff;
}

.footer-column strong {
  color: #ffffff;
}

.footer-column--contact {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.footer-bottomline {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottomline p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(242, 248, 255, 0.54);
}

.footer-bottom-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.footer-bottom-actions a {
  font-size: 13px;
  font-weight: 700;
  color: rgba(242, 248, 255, 0.76);
}

.floating-utility {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: grid;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-utility.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.floating-utility__action,
.floating-utility__top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
  font-size: 13px;
  font-weight: 800;
}

.floating-utility__action {
  color: #03111a;
  background: linear-gradient(135deg, #dffcf4 0%, var(--accent) 52%, var(--accent-blue) 150%);
}

.floating-utility__top {
  width: 48px;
  padding: 0;
  color: #ffffff;
  background: rgba(7, 17, 32, 0.82);
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

body.motion-ready .reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

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

  .hero-track,
  .reveal,
  .btn,
  .site-nav a::after,
  .slider-dots button,
  .hero-scroll-cue span::after {
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 1240px) {
  .module-grid,
  .metric-grid-advanced {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .flow-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .flow-steps::before {
    display: none;
  }
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 10px);
    display: grid;
    gap: 10px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 16, 28, 0.95);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-header.is-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a::after {
    bottom: -4px;
  }

  .hero-slide,
  .vision-layout,
  .agent-layout,
  .contact-layout,
  .opportunity-note,
  .arch-columns {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: auto;
  }

  .hero-summary,
  .stat-grid,
  .scenario-grid-large,
  .strategy-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-matrix,
  .pillar-grid,
  .agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-board {
    padding-bottom: 28px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 14px;
  }

  .hero-slide-rail {
    display: none;
  }

  .hero-controls {
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100vw - 28px, 1280px);
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
    gap: 14px;
  }

  .header-actions {
    display: none;
  }

  .hero-section {
    padding: 16px 0 44px;
  }

  .hero-slider {
    min-height: auto;
    border-radius: 28px;
  }

  .hero-slide {
    gap: 22px;
    padding: 70px 18px 72px;
  }

  .hero-copy h1 {
    margin: 16px 0;
    font-size: clamp(34px, 10.4vw, 48px);
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.82;
  }

  .hero-chips {
    gap: 8px;
    margin-top: 20px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-metrics {
    gap: 12px;
    margin-top: 24px;
  }

  .hero-metrics > div {
    padding: 18px 18px 16px;
    border-radius: 18px;
  }

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

  .hero-metrics span {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.65;
  }

  .hero-controls {
    left: 18px;
    right: 18px;
    bottom: 16px;
    justify-content: space-between;
  }

  .hero-slide-rail {
    display: none;
  }

  .visual-board {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .board-title-row h2 {
    font-size: 24px;
  }

  .board-node strong,
  .matrix-grid strong,
  .scenario-mini-grid strong,
  .floating-card strong,
  .matrix-side-card strong,
  .scenario-note strong {
    font-size: 16px;
  }

  .board-node p,
  .matrix-grid p,
  .scenario-mini-grid p,
  .floating-card p,
  .matrix-side-card p,
  .scenario-note p {
    font-size: 12px;
    line-height: 1.7;
  }

  .floating-card {
    display: none;
  }

  .flow-board {
    padding-bottom: 0;
  }

  .hero-summary {
    gap: 14px;
    margin-top: 16px;
  }

  .hero-summary article {
    padding: 20px 20px 18px;
  }

  .hero-summary strong {
    margin-top: 10px;
    font-size: 20px;
  }

  .hero-summary p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.75;
  }

  .visual-board,
  .quote-panel,
  .pillar-card,
  .stat-card,
  .module-card,
  .scenario-card,
  .strategy-panel,
  .agent-core,
  .agent-card,
  .architecture-board,
  .metric-card,
  .timeline-card,
  .contact-copy,
  .contact-panel {
    padding-inline: 22px;
  }

  .hero-summary,
  .stat-grid,
  .module-grid,
  .metric-grid-advanced,
  .timeline-grid,
  .scenario-grid-large,
  .quote-matrix,
  .pillar-grid,
  .strategy-columns,
  .agent-grid,
  .matrix-grid,
  .scenario-mini-grid,
  .flow-steps {
    grid-template-columns: 1fr;
  }

  .footer-topbar,
  .footer-bottomline {
    grid-template-columns: 1fr;
  }

  .footer-badge-wall {
    justify-content: flex-start;
  }

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


.message-section {
  padding: 18px 0 0;
}

.site-messages {
  display: grid;
  gap: 12px;
}

.site-message {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.site-message strong {
  display: block;
  font-size: 14px;
  line-height: 1.7;
}

.site-message.success {
  border-color: rgba(61, 225, 180, 0.28);
  background: linear-gradient(135deg, rgba(61, 225, 180, 0.16), rgba(77, 135, 255, 0.08));
}

.site-message.error {
  border-color: rgba(255, 120, 120, 0.32);
  background: linear-gradient(135deg, rgba(255, 120, 120, 0.14), rgba(255, 179, 71, 0.08));
}

.site-message.warning {
  border-color: rgba(255, 210, 122, 0.32);
  background: linear-gradient(135deg, rgba(255, 210, 122, 0.16), rgba(255, 255, 255, 0.05));
}

.subhero-section {
  position: relative;
  overflow: hidden;
  padding: 74px 0 88px;
}

.subhero-section--dark {
  background:
    radial-gradient(circle at 14% 20%, rgba(61, 225, 180, 0.1), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(77, 135, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(7, 17, 32, 0.96), rgba(9, 22, 38, 0.98));
}

.subhero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: start;
}

.subhero-copy,
.subhero-card,
.premium-card,
.solution-feature-card,
.scene-showcase-card,
.sticky-card,
.insight-feature-card,
.contact-form-card,
.premium-timeline-card {
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.subhero-copy,
.subhero-card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.subhero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.subhero-copy p,
.subhero-card > p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

.subhero-card {
  display: grid;
  gap: 18px;
}

.subhero-card > span,
.premium-card > span,
.solution-feature-copy > span,
.scene-showcase-card > span,
.sticky-card > span,
.insight-feature-card > span,
.contact-form-head > span,
.premium-timeline-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subhero-card > span,
.contact-form-head > span {
  color: rgba(242, 248, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
}

.subhero-card > strong {
  display: block;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.35;
  letter-spacing: -0.05em;
}

.info-list-premium,
.contact-value-grid,
.premium-timeline {
  display: grid;
  gap: 16px;
}

.info-list-premium article,
.contact-value-grid article,
.inner-card,
.premium-timeline-card {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.info-list-premium small,
.contact-value-grid span,
.mini-timeline strong small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242, 248, 255, 0.6);
}

.info-list-premium strong,
.contact-value-grid strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.7;
}

.premium-grid {
  display: grid;
  gap: 20px;
}

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

.premium-grid--3,
.contact-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.compact-gap {
  gap: 16px;
}

.premium-card,
.solution-feature-card,
.scene-showcase-card,
.insight-feature-card,
.contact-form-card,
.sticky-card,
.premium-timeline-card {
  position: relative;
  overflow: hidden;
}

.premium-card {
  padding: 30px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  color: var(--text-dark);
}

.premium-card::after,
.solution-feature-card::after,
.scene-showcase-card::after,
.insight-feature-card::after,
.contact-form-card::after,
.sticky-card::after,
.premium-timeline-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(61, 225, 180, 0.05), transparent 36%, rgba(77, 135, 255, 0.05));
}

.premium-card > * ,
.solution-feature-card > *,
.scene-showcase-card > *,
.insight-feature-card > *,
.contact-form-card > *,
.sticky-card > *,
.premium-timeline-card > * {
  position: relative;
  z-index: 1;
}

.premium-card > span,
.solution-feature-copy > span,
.scene-showcase-card > span,
.insight-feature-card > span,
.premium-timeline-card > span {
  color: rgba(9, 21, 34, 0.58);
  background: rgba(9, 21, 34, 0.06);
}

.premium-card h3,
.solution-feature-copy h3,
.scene-showcase-card h3,
.insight-feature-card h3,
.premium-timeline-card h3,
.contact-form-head h3,
.sticky-card h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.premium-card p,
.solution-feature-copy p,
.scene-showcase-card p,
.insight-feature-card p,
.contact-form-head p,
.inner-card p,
.sticky-card p,
.premium-timeline-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dark-muted);
}

.premium-card--accent {
  background: linear-gradient(135deg, rgba(9, 21, 34, 0.96), rgba(17, 35, 59, 0.92));
  color: var(--text);
}

.premium-card--accent > span {
  color: rgba(242, 248, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

.premium-card--accent p,
.premium-card--accent h3,
.premium-card--accent h4,
.sticky-card p,
.sticky-card strong,
.sticky-card h3 {
  color: inherit;
}

.premium-card--link,
.solution-feature-card,
.scene-showcase-card,
.insight-feature-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.premium-card--link:hover,
.solution-feature-card:hover,
.scene-showcase-card:hover,
.insight-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(9, 18, 30, 0.16);
  border-color: rgba(61, 225, 180, 0.22);
}

.solution-stack,
.article-cluster {
  display: grid;
  gap: 20px;
}

.solution-feature-card,
.scene-showcase-card,
.insight-feature-card,
.sticky-card,
.contact-form-card,
.premium-timeline-card {
  padding: 30px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  color: var(--text-dark);
}

.solution-feature-card {
  display: block;
}

.solution-feature-copy ul,
.text-list,
.text-list--compact {
  margin: 18px 0 0;
  padding-left: 18px;
}

.solution-feature-copy ul li,
.text-list li,
.text-list--compact li,
.timeline-card ul li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark-muted);
}

.scene-showcase-card,
.insight-feature-card {
  display: block;
}

.chip-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip-wall em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: rgba(9, 21, 34, 0.62);
  background: rgba(9, 21, 34, 0.06);
}

.immersive-showcase-grid,
.immersive-case-stack,
.logo-wall,
.team-studio-grid {
  display: grid;
  gap: 20px;
}

.immersive-showcase-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.immersive-showcase-grid--split {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  align-items: stretch;
}

.immersive-case-card,
.team-studio-card,
.team-role-card,
.logo-wall-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.immersive-case-card,
.team-studio-card {
  display: block;
  min-height: 320px;
  padding: 30px;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.08) 0%, rgba(7, 17, 32, 0.42) 42%, rgba(7, 17, 32, 0.9) 100%),
    var(--case-cover, none) center / cover no-repeat;
  box-shadow: var(--shadow-lg);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.team-studio-card {
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.08) 0%, rgba(7, 17, 32, 0.42) 42%, rgba(7, 17, 32, 0.9) 100%),
    var(--team-story, none) center / cover no-repeat;
}

.immersive-case-card::before,
.team-studio-card::before,
.team-role-card::before,
.logo-wall-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(61, 225, 180, 0.14), transparent 28%),
    radial-gradient(circle at left bottom, rgba(77, 135, 255, 0.14), transparent 26%);
}

.immersive-case-card::after,
.team-studio-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.immersive-case-card:hover,
.team-studio-card:hover,
.team-role-card:hover,
.logo-wall-card:hover {
  transform: translateY(-6px);
}

.immersive-case-card:hover,
.team-studio-card:hover {
  box-shadow: 0 36px 80px rgba(3, 10, 20, 0.36);
}

.immersive-case-card__content,
.team-studio-card__content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.immersive-case-card span,
.team-studio-card span,
.team-role-card__head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.immersive-case-card span,
.team-studio-card span {
  color: rgba(242, 248, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.immersive-case-card h3,
.team-studio-card h3,
.team-role-card__head h3,
.ecosystem-mini-strip__intro h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 2vw, 36px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.immersive-case-card p,
.team-studio-card p,
.logo-wall-card p,
.team-role-card p,
.ecosystem-mini-strip__intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.immersive-case-card p,
.team-studio-card p,
.logo-wall-card p {
  color: var(--text-muted);
}

.immersive-case-card strong {
  display: inline-flex;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 800;
  color: #dffcf4;
}

.immersive-case-card--feature {
  min-height: 500px;
}

.immersive-case-card--compact {
  min-height: 154px;
}

.immersive-case-card--compact h3 {
  font-size: 24px;
}

.immersive-case-card--compact .chip-wall,
.immersive-case-card--compact strong {
  display: none;
}

.ecosystem-mini-strip {
  margin-top: 28px;
  padding: 28px 30px;
  border-radius: 30px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: center;
}

.ecosystem-pill-wall {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ecosystem-pill-wall span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(9, 21, 34, 0.68);
  background: rgba(9, 21, 34, 0.06);
}

.logo-wall {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.logo-wall-card {
  min-height: 190px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.logo-wall-card:hover {
  box-shadow: 0 30px 62px rgba(2, 8, 18, 0.28);
  border-color: rgba(61, 225, 180, 0.24);
}

.logo-wall-card small {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 248, 255, 0.58);
}

.logo-wall-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: -0.03em;
}

.logo-wall--light .logo-wall-card,
.logo-wall-card--light {
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  color: var(--text-dark);
}

.logo-wall--light .logo-wall-card small,
.logo-wall-card--light small {
  color: rgba(9, 21, 34, 0.5);
}

.logo-wall--light .logo-wall-card p,
.logo-wall-card--light p {
  color: var(--text-dark-muted);
}

.team-studio-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-studio-card {
  min-height: 340px;
}

.team-role-card {
  padding: 28px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.team-role-card:hover {
  box-shadow: 0 28px 56px rgba(9, 18, 30, 0.16);
  border-color: rgba(61, 225, 180, 0.2);
}

.team-role-card__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.team-role-avatar {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #ffffff;
  background: linear-gradient(135deg, #071120 0%, #12335a 56%, #3de1b4 140%);
  box-shadow: 0 18px 36px rgba(9, 18, 30, 0.18);
}

.team-role-card__head span {
  color: rgba(9, 21, 34, 0.58);
  background: rgba(9, 21, 34, 0.06);
}

.team-role-card__head h3 {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.4;
}

.team-role-card p {
  position: relative;
  z-index: 1;
  color: var(--text-dark-muted);
}

.team-role-card .chip-wall {
  position: relative;
  z-index: 1;
  margin-top: 22px;
}

.newsroom-shell,
.editorial-spotlight {
  display: grid;
  gap: 24px;
}

.newsroom-shell {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: stretch;
}

.newsroom-board,
.newsroom-signal-card,
.case-outcome-card,
.editorial-summary-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.newsroom-board {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(61, 225, 180, 0.12), transparent 24%),
    radial-gradient(circle at left bottom, rgba(77, 135, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(10, 18, 32, 0.96), rgba(13, 26, 44, 0.94));
  box-shadow: var(--shadow-lg);
}

.newsroom-board > *,
.newsroom-signal-card > *,
.case-outcome-card > *,
.editorial-summary-card > * {
  position: relative;
  z-index: 1;
}

.newsroom-board > span,
.newsroom-signal-card > span,
.case-outcome-card > span,
.editorial-summary-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.newsroom-board > span,
.newsroom-signal-card > span {
  color: rgba(242, 248, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
}

.newsroom-board h2 {
  margin: 18px 0 14px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.newsroom-board p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-muted);
}

.newsroom-board__grid,
.newsroom-signal-grid,
.case-outcome-grid,
.editorial-summary-strip {
  display: grid;
  gap: 18px;
}

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

.newsroom-board__grid article,
.newsroom-signal-card {
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.newsroom-board__grid small,
.case-cover-hero__metrics small,
.news-ledger-card__date small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(242, 248, 255, 0.56);
}

.newsroom-board__grid strong,
.case-cover-hero__metrics strong,
.news-ledger-card__date strong {
  display: block;
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.7;
}

.newsroom-signal-grid {
  grid-template-columns: 1fr;
}

.newsroom-signal-card {
  min-height: 0;
  box-shadow: var(--shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.newsroom-signal-card:hover,
.editorial-summary-card:hover,
.case-outcome-card:hover,
.faq-group-card:hover,
.faq-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(9, 18, 30, 0.14);
  border-color: rgba(61, 225, 180, 0.18);
}

.newsroom-signal-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.newsroom-signal-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-muted);
}

.newsroom-feature-grid,
.news-ledger {
  display: grid;
  gap: 20px;
}

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

.newsroom-feature-card {
  min-height: 100%;
}

.news-ledger-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  box-shadow: var(--shadow-md);
}

.news-ledger-card__date,
.news-ledger-card__content {
  position: relative;
  z-index: 1;
}

.news-ledger-card__date {
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #071120 0%, #0e2945 56%, #1c4f76 140%);
  color: var(--text);
}

.news-ledger-card__content > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(9, 21, 34, 0.58);
  background: rgba(9, 21, 34, 0.06);
}

.news-ledger-card__content h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.32;
  letter-spacing: -0.04em;
}

.news-ledger-card__content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dark-muted);
}

.editorial-spotlight {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
}

.editorial-cover-card,
.editorial-mini-card {
  position: relative;
  overflow: hidden;
  display: block;
  color: var(--text);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.editorial-cover-card {
  min-height: 520px;
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.06) 0%, rgba(7, 17, 32, 0.38) 44%, rgba(7, 17, 32, 0.9) 100%),
    var(--editorial-cover, none) center / cover no-repeat;
}

.editorial-cover-card--detail {
  min-height: 100%;
}

.editorial-cover-card::after,
.editorial-mini-card::after,
.insight-media-card::after,
.case-cover-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.editorial-cover-card:hover,
.editorial-mini-card:hover,
.insight-media-card:hover,
.case-cover-hero:hover {
  transform: translateY(-6px);
}

.editorial-cover-card:hover,
.editorial-mini-card:hover,
.case-cover-hero:hover {
  box-shadow: 0 36px 80px rgba(3, 10, 20, 0.36);
}

.editorial-cover-card__content,
.editorial-mini-card__content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.editorial-cover-card span,
.editorial-mini-card span,
.insight-media-card__body > span,
.case-cover-hero__content > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.editorial-cover-card span,
.editorial-mini-card span,
.case-cover-hero__content > span {
  color: rgba(242, 248, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
}

.editorial-cover-card h3,
.editorial-mini-card h3,
.insight-media-card__body h3,
.case-cover-hero__content h3 {
  margin: 18px 0 12px;
  font-size: clamp(24px, 2.1vw, 36px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.editorial-cover-card p,
.editorial-mini-card p,
.insight-media-card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

.editorial-cover-card p,
.editorial-mini-card p {
  color: var(--text-muted);
}

.editorial-cover-card strong,
.editorial-mini-card strong {
  display: inline-flex;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  color: #dffcf4;
}

.editorial-side-stack {
  display: grid;
  gap: 20px;
}

.editorial-mini-card {
  min-height: 250px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.08) 0%, rgba(7, 17, 32, 0.48) 50%, rgba(7, 17, 32, 0.88) 100%),
    var(--editorial-cover, none) center / cover no-repeat;
}

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

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

.insight-media-card {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 30px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.insight-media-card:hover {
  box-shadow: 0 28px 56px rgba(9, 18, 30, 0.16);
  border-color: rgba(61, 225, 180, 0.2);
}

.insight-media-card__cover {
  height: 220px;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.06) 0%, rgba(7, 17, 32, 0.2) 100%),
    var(--insight-cover, none) center / cover no-repeat;
}

.insight-media-card__body {
  position: relative;
  z-index: 1;
  padding: 28px;
}

.insight-media-card__body > span {
  color: rgba(9, 21, 34, 0.58);
  background: rgba(9, 21, 34, 0.06);
}

.insight-media-card__body p {
  color: var(--text-dark-muted);
}

.insight-media-card strong {
  display: inline-flex;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-strong);
}

.editorial-summary-strip,
.case-outcome-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.editorial-summary-card,
.case-outcome-card {
  padding: 26px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  box-shadow: var(--shadow-md);
  color: var(--text-dark);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.editorial-summary-card > span,
.case-outcome-card > span {
  color: rgba(9, 21, 34, 0.58);
  background: rgba(9, 21, 34, 0.06);
}

.editorial-summary-card strong,
.case-outcome-card strong {
  display: block;
  margin-top: 18px;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.04em;
}

.editorial-summary-card p,
.case-outcome-card p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dark-muted);
}

.case-cover-hero {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 32px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(7, 17, 32, 0.08) 0%, rgba(7, 17, 32, 0.42) 42%, rgba(7, 17, 32, 0.92) 100%),
    var(--case-cover, none) center / cover no-repeat;
  box-shadow: var(--shadow-lg);
  color: var(--text);
}

.case-cover-hero__content {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

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

.case-cover-hero__metrics article {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.premium-card p + p {
  margin-top: 14px;
}

.faq-group-grid,
.faq-item-grid {
  display: grid;
  gap: 20px;
}

.faq-group-card,
.faq-item-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
}

.faq-group-card {
  padding: 30px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  box-shadow: var(--shadow-md);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.faq-group-card::after,
.faq-item-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(61, 225, 180, 0.05), transparent 40%, rgba(77, 135, 255, 0.05));
}

.faq-group-card > *,
.faq-item-card > * {
  position: relative;
  z-index: 1;
}

.faq-group-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(9, 21, 34, 0.58);
  background: rgba(9, 21, 34, 0.06);
}

.faq-group-card h3 {
  margin: 18px 0 0;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

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

.faq-item-card {
  padding: 24px 22px;
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: rgba(9, 21, 34, 0.03);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.faq-item-card h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.faq-item-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text-dark-muted);
}

.detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.detail-shell--single {
  grid-template-columns: 1fr;
}

.detail-main,
.detail-sidebar {
  display: grid;
  gap: 20px;
}

.detail-main--wide {
  max-width: 960px;
}

.inner-card h4 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.inner-card ul {
  margin: 0;
}

.sticky-card {
  position: sticky;
  top: calc(var(--header-height) + 22px);
  border: 1px solid rgba(61, 225, 180, 0.18);
  background: linear-gradient(135deg, rgba(9, 21, 34, 0.96), rgba(17, 35, 59, 0.92));
  color: var(--text);
}

.sticky-card > span {
  color: rgba(242, 248, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

.mini-timeline {
  display: grid;
  gap: 16px;
  margin: 20px 0 24px;
}

.mini-timeline > div {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.mini-timeline strong {
  display: block;
  font-size: 15px;
  line-height: 1.7;
}

.mini-timeline p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-muted);
}

.article-cluster {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-feature-card strong,
.solution-feature-copy strong,
.scene-showcase-card strong {
  display: inline-flex;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-strong);
}

.premium-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.premium-timeline-card {
  border: 1px solid rgba(11, 20, 36, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.95));
  color: var(--text-dark);
}

.contact-layout--form {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.contact-form-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  color: var(--text);
}

.contact-form-head h3 {
  color: var(--text);
}

.contact-form-head p,
.contact-submit-row p,
.contact-form label span {
  color: var(--text-muted);
}

.contact-form-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.contact-form-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: rgba(242, 248, 255, 0.82);
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

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

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

.contact-form label span {
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(61, 225, 180, 0.42);
  box-shadow: 0 0 0 4px rgba(61, 225, 180, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.contact-form option {
  color: #081521;
}

.contact-form-block {
  display: grid;
  gap: 10px;
}

.contact-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-submit-row p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.contact-submit-copy {
  display: grid;
  gap: 6px;
}

.contact-submit-copy small {
  color: rgba(229, 239, 255, 0.52);
  font-size: 12px;
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .subhero-layout,
  .detail-shell,
  .contact-layout--form,
  .premium-timeline,
  .immersive-showcase-grid--split,
  .ecosystem-mini-strip,
  .newsroom-shell,
  .editorial-spotlight,
  .signature-shell {
    grid-template-columns: 1fr;
  }

  .premium-grid--3,
  .article-cluster,
  .contact-value-grid,
  .immersive-showcase-grid--3,
  .logo-wall,
  .team-studio-grid,
  .insight-library-grid,
  .editorial-summary-strip,
  .case-outcome-grid,
  .signature-proof-strip,
  .contact-assurance-strip,
  .contact-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsroom-board__grid,
  .case-cover-hero__metrics,
  .newsroom-feature-grid,
  .signature-story-grid {
    grid-template-columns: 1fr;
  }

  .detail-main--wide {
    max-width: none;
  }

  .sticky-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 820px) {
  .subhero-section {
    padding: 46px 0 64px;
  }

  .subhero-copy,
  .subhero-card,
  .premium-card,
  .solution-feature-card,
  .scene-showcase-card,
  .sticky-card,
  .insight-feature-card,
  .contact-form-card,
  .premium-timeline-card {
    padding: 24px 22px;
  }

  .premium-grid--2,
  .premium-grid--3,
  .article-cluster,
  .contact-form-grid,
  .contact-value-grid,
  .premium-timeline,
  .immersive-showcase-grid--3,
  .logo-wall,
  .team-studio-grid,
  .insight-library-grid,
  .insight-library-grid--2,
  .editorial-summary-strip,
  .case-outcome-grid,
  .footer-grid,
  .faq-item-grid {
    grid-template-columns: 1fr;
  }

  .team-role-card {
    padding: 24px 22px;
  }

  .immersive-case-card,
  .team-studio-card,
  .ecosystem-mini-strip,
  .editorial-cover-card,
  .editorial-mini-card,
  .newsroom-board,
  .news-ledger-card,
  .case-cover-hero,
  .signature-intro,
  .signature-story-card {
    padding: 24px 22px;
  }

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

  .signature-proof-strip,
  .contact-assurance-strip,
  .contact-trust-grid {
    grid-template-columns: 1fr;
  }

  .signature-story-card--feature {
    min-height: 320px;
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  .brand-copy span {
    display: none;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .contact-actions {
    flex-direction: column;
  }

  .hero-section {
    padding: 10px 0 30px;
  }

  .hero-slider {
    border-radius: 24px;
  }

  .hero-slide {
    gap: 14px;
    padding: 56px 14px 60px;
  }

  .section-kicker {
    gap: 6px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .section-kicker::before {
    width: 18px;
  }

  .hero-copy h1 {
    margin: 10px 0 12px;
    font-size: clamp(27px, 8.8vw, 38px);
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.68;
  }

  .hero-chips {
    gap: 6px;
    margin-top: 14px;
  }

  .hero-chips span {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

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

  .hero-actions .btn,
  .hero-actions .btn-large {
    min-height: 46px;
    padding-inline: 12px;
    font-size: 13px;
  }

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

  .hero-metrics > div {
    min-height: 0;
    padding: 12px 13px 10px;
    border-radius: 16px;
  }

  .hero-metrics > div:last-child {
    grid-column: 1 / -1;
  }

  .hero-metrics strong {
    font-size: 22px;
  }

  .hero-metrics span {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.55;
  }

  .visual-board {
    padding: 16px 14px;
    border-radius: 22px;
  }

  .board-badge,
  .board-pill,
  .board-label {
    min-height: 28px;
    padding: 0 10px;
    font-size: 10px;
  }

  .board-badge {
    margin-bottom: 10px;
  }

  .board-title-row {
    gap: 10px;
  }

  .board-title-row h2 {
    margin-top: 2px;
    font-size: 18px;
    line-height: 1.28;
  }

  .board-flow,
  .matrix-grid,
  .scenario-mini-grid {
    gap: 10px;
    margin-top: 16px;
  }

  .flow-board .board-flow,
  .matrix-grid,
  .scenario-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .board-node,
  .matrix-grid article,
  .scenario-mini-grid article,
  .matrix-side-card,
  .scenario-note {
    padding: 13px 12px 11px;
    border-radius: 18px;
  }

  .board-node small,
  .matrix-grid small,
  .scenario-mini-grid small,
  .matrix-side-card span,
  .scenario-note span {
    font-size: 10px;
  }

  .board-node strong,
  .matrix-grid strong,
  .scenario-mini-grid strong,
  .matrix-side-card strong,
  .scenario-note strong {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
  }

  .board-node p,
  .matrix-grid p,
  .scenario-mini-grid p,
  .matrix-side-card p,
  .scenario-note p {
    display: none;
  }

  .matrix-side-card,
  .scenario-note {
    margin-top: 10px;
  }

  .hero-summary article,
  .contact-panel article {
    flex-basis: 100%;
  }

  .team-role-card__head {
    align-items: flex-start;
  }

  .footer-bottom-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-progress {
    left: 18px;
    right: 18px;
  }

  .slider-dots {
    flex: 1;
    justify-content: center;
  }

  .floating-utility {
    right: 14px;
    bottom: 14px;
  }
}


@media (max-width: 560px) {
  .site-message {
    padding: 14px 16px;
  }

  .subhero-copy h1 {
    font-size: 34px;
  }

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

  .contact-submit-row,
  .chip-wall {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-submit-row .btn,
  .sticky-card .btn {
    width: 100%;
  }
}

@keyframes cue-drop {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateX(-50%) translateY(12px);
    opacity: 0.2;
  }
}
