:root {
  --bg: #eef3f9;
  --bg-soft: #f8fbff;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --surface-alt: #f4f8fd;
  --line: rgba(22, 45, 82, 0.1);
  --line-strong: rgba(22, 45, 82, 0.18);
  --text: #10233f;
  --text-soft: #4f6486;
  --accent: #0fa6ff;
  --accent-2: #22c39a;
  --accent-3: #7f8fff;
  --accent-4: #ffb85c;
  --shadow-lg: 0 36px 90px rgba(16, 35, 63, 0.12);
  --shadow-md: 0 18px 45px rgba(16, 35, 63, 0.08);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Avenir Next", "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 166, 255, 0.14), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(34, 195, 154, 0.12), transparent 24%),
    linear-gradient(180deg, #f4f8fc, #eef4fa 60%, #ecf2f8);
}

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

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

.page {
  position: relative;
  overflow: hidden;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(16, 35, 63, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 35, 63, 0.03) 1px, transparent 1px);
  background-size: 90px 90px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 92%);
}

.shell {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 60px;
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  position: sticky;
  top: 16px;
  z-index: 20;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-image {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background:
    linear-gradient(145deg, rgba(15, 166, 255, 0.12), rgba(34, 195, 154, 0.06)),
    var(--surface-strong);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 9px 11px 10px 11px;
  border: 2px solid var(--accent);
  border-radius: 14px 14px 8px 8px;
  transform: rotate(45deg) scale(0.72);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 10px;
  width: 2px;
  height: 21px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.nav-links,
.nav-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.nav-links a,
.nav-meta span,
.nav-group summary {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  justify-content: flex-start;
  min-width: 0;
}

.nav-links a,
.nav-group summary {
  padding: 10px 12px;
  border-radius: 14px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav-group {
  position: relative;
}

.nav-group summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

.nav-group summary::-webkit-details-marker {
  display: none;
}

.nav-group summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  padding: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 6px;
  z-index: 30;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}

.nav-dropdown a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 16px;
  background: transparent;
}

.nav-dropdown a strong {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-dropdown a span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #10233f, #1b3f68);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(16, 35, 63, 0.16);
}

.nav-links a:hover,
.nav-links a.is-current,
.nav-group summary:hover,
.nav-group.is-current > summary,
.nav-group[open] > summary,
.footer-links a:hover,
.footer-links a.is-current {
  color: var(--text);
  background: rgba(244, 248, 253, 0.92);
  transform: translateY(-1px);
}

.nav-dropdown a:hover,
.nav-dropdown a.is-current {
  background: rgba(244, 248, 253, 0.92);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  padding: 58px 0 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px rgba(15, 166, 255, 0.3);
}

.hero-copy h1,
.page-hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(58px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-copy p,
.page-hero-copy p,
.section-intro {
  margin: 0;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.7;
}

.hero-copy p {
  max-width: 650px;
}

.hero-note {
  margin-top: 14px;
  color: var(--accent-2);
  font-weight: 700;
}

.trust-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trust-strip span {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), #2fb4ff 58%, var(--accent-2));
  box-shadow: 0 20px 40px rgba(15, 166, 255, 0.2);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

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

.hero-stats-compact .stat-card strong {
  margin-bottom: 8px;
  font-size: 44px;
  line-height: 0.95;
}

.hero-stats-compact .stat-card span {
  display: block;
  max-width: 150px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-card,
.card,
.info-panel,
.section-panel,
.banner,
.timeline-card,
.table-card,
.contact-card,
.tech-card,
.portfolio-card,
.process-card,
.leadership-card {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.82));
  box-shadow: var(--shadow-md);
}

.stat-card {
  padding: 18px 18px 20px;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 34px;
  letter-spacing: -0.05em;
}

.stat-card span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  padding: 18px;
  border-radius: 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.82)),
    radial-gradient(circle at 65% 18%, rgba(15, 166, 255, 0.16), transparent 20%);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(16, 35, 63, 0.06);
}

.capability-board {
  position: absolute;
  inset: 36px 32px 34px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 0.65fr 1fr 0.8fr;
  gap: 16px;
}

.board-card {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.88)),
    rgba(255, 255, 255, 0.88);
}

.board-card h3,
.board-card h4 {
  margin: 0 0 8px;
  letter-spacing: -0.04em;
}

.board-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}

.board-card.hero-core {
  grid-row: 1 / span 2;
  overflow: hidden;
}

.hero-core::before {
  content: "";
  position: absolute;
  right: -20px;
  top: 30px;
  width: 280px;
  height: 280px;
  border-radius: 50% 50% 42% 58%;
  background:
    radial-gradient(circle at 30% 30%, rgba(15, 166, 255, 0.2), transparent 30%),
    radial-gradient(circle at 65% 55%, rgba(34, 195, 154, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(127, 143, 255, 0.16), rgba(15, 166, 255, 0.08), rgba(34, 195, 154, 0.14));
  filter: blur(0.2px);
}

.hero-core::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(15, 166, 255, 0.7), rgba(34, 195, 154, 0.4), transparent);
}

.core-copy {
  position: relative;
  z-index: 1;
  max-width: 310px;
}

.core-copy h2 {
  margin: 12px 0 10px;
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

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

.core-tags span,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(244, 248, 253, 0.84);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.core-tags span::before,
.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.hero-mini-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.hero-mini-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(244, 248, 253, 0.84);
  border: 1px solid rgba(16, 35, 63, 0.08);
  font-size: 13px;
}

.hero-mini-item span:first-child {
  font-weight: 800;
}

.hero-mini-item span:last-child {
  color: var(--text-soft);
}

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

.metric-box {
  padding: 16px;
  border-radius: 18px;
  background: rgba(244, 248, 253, 0.9);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.metric-box strong {
  display: block;
  font-size: 28px;
  margin-bottom: 4px;
}

.metric-box span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.section {
  padding: 30px 0 0;
}

.section-dense {
  padding-top: 20px;
}

.intro-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 251, 255, 0.76));
  box-shadow: var(--shadow-md);
}

.intro-ribbon-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(244, 248, 253, 0.72);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.intro-ribbon-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.intro-ribbon-item span {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

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

.section-head p {
  max-width: 620px;
  color: var(--text-soft);
  line-height: 1.7;
}

.grid-4,
.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

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

.card,
.info-panel,
.section-panel,
.timeline-card,
.table-card,
.contact-card,
.tech-card,
.portfolio-card,
.process-card,
.leadership-card,
.banner {
  border-radius: var(--radius-lg);
}

.card,
.info-panel,
.section-panel,
.timeline-card,
.table-card,
.contact-card,
.tech-card,
.portfolio-card,
.process-card,
.leadership-card {
  padding: 24px;
}

.tone-blue {
  background: linear-gradient(180deg, #edf7ff, #e4f2ff);
  border-color: rgba(15, 166, 255, 0.16);
}

.tone-green {
  background: linear-gradient(180deg, #edf9f4, #e3f5ec);
  border-color: rgba(34, 195, 154, 0.16);
}

.tone-gold {
  background: linear-gradient(180deg, #fff8ec, #fff1dc);
  border-color: rgba(255, 184, 92, 0.22);
}

.tone-slate {
  background: linear-gradient(180deg, #f2f6fb, #e7eef6);
  border-color: rgba(16, 35, 63, 0.12);
}

.tone-dark {
  background: linear-gradient(135deg, #112643, #17365e);
  border-color: rgba(17, 38, 67, 0.24);
  color: #f8fbff;
}

.tone-dark p,
.tone-dark span,
.tone-dark li {
  color: rgba(240, 248, 255, 0.8);
}

.card h3,
.info-panel h3,
.section-panel h3,
.table-card h3,
.contact-card h3,
.tech-card h3,
.portfolio-card h3,
.process-card h3,
.leadership-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.card p,
.info-panel p,
.section-panel p,
.timeline-card p,
.table-card p,
.contact-card p,
.tech-card p,
.portfolio-card p,
.process-card p,
.leadership-card p,
.list-note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.stack-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.stack-list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(244, 248, 253, 0.86);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.stack-list strong {
  font-size: 14px;
}

.stack-list span {
  color: var(--text-soft);
  font-size: 13px;
}

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

.service-icon,
.small-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(15, 166, 255, 0.12), rgba(34, 195, 154, 0.14)),
    var(--surface-strong);
  border: 1px solid rgba(16, 35, 63, 0.08);
  display: grid;
  place-items: center;
  font-size: 18px;
  margin-bottom: 16px;
}

.service-icon img,
.small-icon img {
  width: 100%;
  height: 100%;
}

.service-card p,
.portfolio-card p {
  min-height: 84px;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 166, 255, 0.8), rgba(34, 195, 154, 0.45), transparent);
}

.family-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  box-shadow: var(--shadow-md);
}

.family-card h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.family-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.family-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.family-links a,
.anchor-bar a,
.platform-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 35, 63, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.family-grid,
.provider-grid,
.split-card-grid,
.service-split-grid,
.platform-offer-grid,
.flow-grid,
.story-grid {
  display: grid;
  gap: 18px;
}

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

.provider-grid,
.split-card-grid,
.service-split-grid,
.flow-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.anchor-bar,
.platform-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-capability-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-capability-links a {
  display: inline-flex;
  align-items: center;
  padding: 11px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stage {
  position: relative;
  height: 100%;
  min-height: 620px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 253, 0.88));
  box-shadow: var(--shadow-lg);
}

.hero-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  max-width: 240px;
}

.hero-float strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: -0.03em;
}

.hero-float span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.hero-float-a {
  left: 24px;
  bottom: 24px;
}

.hero-float-b {
  right: 24px;
  top: 24px;
}

.navigator-shell,
.band-shell {
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
}

.navigator-shell {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 253, 0.82));
}

.band-shell {
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 166, 255, 0.18), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(34, 195, 154, 0.16), transparent 24%),
    linear-gradient(135deg, #112643 0%, #17365e 45%, #0d2641 100%);
  border-color: rgba(17, 38, 67, 0.28);
  color: #f8fbff;
  box-shadow: 0 32px 72px rgba(8, 18, 35, 0.24);
}

.band-shell h2,
.band-shell h3,
.band-shell strong {
  color: #f8fbff;
}

.band-shell p,
.band-shell span {
  color: rgba(240, 248, 255, 0.8);
}

.provider-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  box-shadow: var(--shadow-md);
}

.provider-card h3,
.split-feature-card h3,
.platform-offer-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.provider-card p,
.split-feature-card p,
.platform-offer-card p {
  margin: 0;
  line-height: 1.7;
}

.provider-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--text);
}

.split-feature-card,
.platform-offer-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  box-shadow: var(--shadow-md);
}

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

.offer-list,
.detail-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.offer-list div,
.detail-list div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.offer-list strong,
.detail-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.offer-list span,
.detail-list span {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: center;
}

.service-scene {
  min-height: 380px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 253, 0.9));
  box-shadow: var(--shadow-md);
}

.service-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content-card {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(243, 248, 253, 0.86));
  box-shadow: var(--shadow-md);
}

.photo-banner {
  position: relative;
  min-height: 360px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: var(--shadow-lg);
}

.photo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(16, 35, 63, 0.86), rgba(23, 54, 94, 0.7) 50%, rgba(16, 35, 63, 0.45)),
    linear-gradient(180deg, transparent, rgba(16, 35, 63, 0.4));
}

.photo-banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
  align-items: end;
  min-height: 360px;
  padding: 34px;
  color: #f8fbff;
}

.photo-banner-content h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.photo-banner-content p {
  margin: 0;
  color: rgba(240, 248, 255, 0.84);
  line-height: 1.75;
}

.photo-banner-panel {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.photo-banner-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.photo-banner-panel span,
.photo-banner-panel p {
  color: rgba(240, 248, 255, 0.8);
  line-height: 1.65;
}

.flow-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  box-shadow: var(--shadow-md);
}

.flow-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.flow-step-list {
  display: grid;
  gap: 14px;
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.flow-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(15, 166, 255, 0.12);
  color: var(--accent);
  font-size: 14px;
}

.flow-step h4 {
  margin: 0 0 6px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.flow-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: var(--shadow-md);
}

.story-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 35, 63, 0.08), rgba(16, 35, 63, 0.78));
}

.story-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 280px;
  padding: 24px;
}

.story-card-copy h3 {
  margin: 0 0 10px;
  color: #f8fbff;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.story-card-copy p {
  margin: 0;
  color: rgba(240, 248, 255, 0.84);
  line-height: 1.7;
}

.service-content-card h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.05em;
}

.service-content-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.78;
}

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(244, 248, 253, 0.88);
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.banner {
  padding: 30px;
  background: linear-gradient(135deg, #112643 0%, #17365e 42%, #0f2848 100%);
  border-color: rgba(18, 38, 67, 0.25);
  color: #f8fbff;
}

.section-shell {
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 249, 255, 0.74));
  box-shadow: var(--shadow-md);
}

.section-shell-dark {
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 166, 255, 0.18), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(34, 195, 154, 0.16), transparent 24%),
    linear-gradient(135deg, #112643 0%, #17365e 45%, #0d2641 100%);
  border-color: rgba(20, 44, 76, 0.25);
  box-shadow: 0 32px 72px rgba(8, 18, 35, 0.24);
}

.section-head-inverse h2,
.section-head-inverse p,
.section-head-inverse .section-kicker,
.section-head-inverse .section-kicker::before {
  color: #f7fbff;
}

.section-head-inverse p {
  color: rgba(240, 248, 255, 0.78);
}

.section-head-inverse .section-kicker::before {
  background: linear-gradient(135deg, #7bd3ff, #73ebc7);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.showcase-panel {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(244, 248, 253, 0.78);
}

.showcase-panel h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.05em;
}

.showcase-panel p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.showcase-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.showcase-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.showcase-list strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  letter-spacing: -0.03em;
}

.showcase-list span {
  color: var(--text-soft);
  line-height: 1.6;
  font-size: 14px;
}

.list-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(15, 166, 255, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-shell-dark .showcase-panel,
.section-shell-dark .impact-card,
.section-shell-dark .compact-step,
.section-shell-dark .signal-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-shell-dark .showcase-panel h3,
.section-shell-dark .impact-card h3,
.section-shell-dark .compact-step h3,
.section-shell-dark .signal-card strong,
.section-shell-dark .signal-card h3 {
  color: #f7fbff;
}

.section-shell-dark .showcase-panel p,
.section-shell-dark .impact-card p,
.section-shell-dark .compact-step p,
.section-shell-dark .signal-card span,
.section-shell-dark .signal-card p {
  color: rgba(240, 248, 255, 0.76);
}

.showcase-art-shell {
  position: relative;
  min-height: 440px;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(240, 247, 255, 0.82));
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.showcase-art-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-signal {
  position: absolute;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.floating-signal strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.floating-signal span {
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 12px;
}

.floating-signal.signal-a {
  left: 22px;
  top: 24px;
}

.floating-signal.signal-b {
  right: 24px;
  bottom: 26px;
}

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

.impact-card {
  padding: 24px;
  border-radius: 24px;
}

.impact-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.sector-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.sector-chips span {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f7fbff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compact-steps {
  display: grid;
  gap: 14px;
}

.compact-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: 22px;
}

.compact-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(123, 211, 255, 0.16);
  color: #ffffff;
  font-size: 14px;
}

.compact-step h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.compact-step p {
  margin: 0;
  line-height: 1.6;
}

.tech-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.tech-spotlight {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #112643 0%, #17365e 56%, #0d2641 100%);
  border: 1px solid rgba(17, 38, 67, 0.25);
  color: #f7fbff;
  box-shadow: 0 28px 60px rgba(10, 22, 42, 0.24);
}

.tech-spotlight h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.05em;
}

.tech-spotlight p {
  margin: 0;
  color: rgba(240, 248, 255, 0.8);
  line-height: 1.75;
}

.tech-pillars {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.tech-pillars div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.tech-pillars strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.tech-pillars span {
  color: rgba(240, 248, 255, 0.76);
  line-height: 1.6;
  font-size: 14px;
}

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

.signal-grid {
  display: grid;
  gap: 16px;
}

.signal-card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.signal-card h3 {
  margin: 12px 0 10px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.signal-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.portfolio-visual {
  min-height: 170px;
  margin: -24px -24px 18px;
  border-radius: 26px 26px 18px 18px;
  border-bottom: 1px solid rgba(16, 35, 63, 0.08);
  background-size: cover;
  background-position: center;
}

.visual-commerce {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8), transparent 16%),
    linear-gradient(135deg, rgba(15, 166, 255, 0.18), rgba(34, 195, 154, 0.22)),
    linear-gradient(120deg, #eaf7ff, #eef4ff);
}

.visual-ai {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 255, 255, 0.8), transparent 16%),
    linear-gradient(135deg, rgba(127, 143, 255, 0.22), rgba(15, 166, 255, 0.18)),
    linear-gradient(120deg, #eef3ff, #eaf7ff);
}

.visual-finance {
  background:
    radial-gradient(circle at 50% 24%, rgba(255, 255, 255, 0.8), transparent 14%),
    linear-gradient(135deg, rgba(34, 195, 154, 0.18), rgba(255, 184, 92, 0.22)),
    linear-gradient(120deg, #edf8f4, #f6fbff);
}

.visual-cloud {
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, 0.76), transparent 16%),
    linear-gradient(135deg, rgba(15, 166, 255, 0.16), rgba(127, 143, 255, 0.22)),
    linear-gradient(120deg, #ecf4ff, #f5f8ff);
}

.visual-data {
  background:
    radial-gradient(circle at 76% 30%, rgba(255, 255, 255, 0.76), transparent 16%),
    linear-gradient(135deg, rgba(34, 195, 154, 0.2), rgba(15, 166, 255, 0.16)),
    linear-gradient(120deg, #edf9f6, #f3fbff);
}

.visual-workflow {
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.8), transparent 14%),
    linear-gradient(135deg, rgba(255, 184, 92, 0.22), rgba(15, 166, 255, 0.16)),
    linear-gradient(120deg, #fff7eb, #f5fbff);
}

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

.profile-mini {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.profile-mini img,
.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-mini h3 {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.profile-mini p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.leader-headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.leader-role {
  margin: -4px 0 12px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.leader-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  padding: 0 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(15, 166, 255, 0.12), rgba(34, 195, 154, 0.12));
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.leader-summary {
  margin-top: 8px;
}

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

.leader-signal-grid div {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(244, 248, 253, 0.9);
}

.leader-signal-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.leader-signal-grid span {
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

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

.director-focus-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 20px 48px rgba(6, 15, 29, 0.18);
}

.director-focus-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}

.director-focus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  padding: 0 14px;
  border-radius: 18px;
  color: #f8fbff;
  background: linear-gradient(135deg, rgba(123, 211, 255, 0.2), rgba(115, 235, 199, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.director-focus-top h3 {
  margin: 0 0 8px;
  color: #f8fbff;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.director-focus-top p {
  margin: 0;
  color: rgba(240, 248, 255, 0.76);
  line-height: 1.7;
}

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

.director-focus-list div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 19, 33, 0.22);
}

.director-focus-list strong {
  color: #f8fbff;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.director-focus-list span {
  color: rgba(240, 248, 255, 0.76);
  line-height: 1.7;
}

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

.quick-info-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.quick-info-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.quick-info-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.banner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: center;
}

.banner h3 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.05em;
}

.banner p {
  margin: 0;
  color: rgba(240, 248, 255, 0.8);
  line-height: 1.7;
}

.banner-points {
  display: grid;
  gap: 12px;
}

.banner-points div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.banner-points strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.banner-points span {
  color: rgba(240, 248, 255, 0.78);
  line-height: 1.6;
}

.portfolio-meta,
.contact-list,
.mini-table,
.timeline,
.ir-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.mini-table div,
.contact-list div,
.timeline div,
.ir-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(244, 248, 253, 0.9);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.mini-table span:first-child,
.contact-list span:first-child,
.timeline span:first-child,
.ir-list span:first-child {
  font-weight: 800;
}

.mini-table span:last-child,
.contact-list span:last-child,
.timeline span:last-child,
.ir-list span:last-child {
  color: var(--text-soft);
  text-align: right;
}

.portfolio-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.portfolio-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(15, 166, 255, 0.1);
  color: var(--accent);
  font-weight: 800;
}

.case-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.case-strip span {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(244, 248, 253, 0.9);
  border: 1px solid rgba(16, 35, 63, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.page-hero {
  padding: 32px 0 22px;
}

.page-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  padding: 32px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 248, 253, 0.9)),
    var(--surface-strong);
  box-shadow: var(--shadow-lg);
}

.page-hero-copy h1 {
  font-size: clamp(48px, 6vw, 76px);
}

.page-hero-side {
  display: grid;
  gap: 16px;
}

.side-note {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(16, 35, 63, 0.08);
  background: rgba(244, 248, 253, 0.88);
}

.side-note-art {
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 248, 253, 0.82)),
    var(--surface-strong);
}

.page-hero-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.page-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.page-links a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(244, 248, 253, 0.88);
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.tech-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.tech-list span {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(244, 248, 253, 0.88);
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--text-soft);
  font-size: 13px;
}

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

.process-card strong {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(15, 166, 255, 0.1);
  color: var(--accent);
  font-size: 18px;
}

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

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

.portrait {
  aspect-ratio: 4 / 4.8;
  border-radius: 22px;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #f4f8fd, #e7eff7);
  border: 1px solid rgba(16, 35, 63, 0.08);
  display: grid;
  place-items: center;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ir-table {
  display: grid;
  gap: 14px;
}

.ir-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.7fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(244, 248, 253, 0.9);
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.ir-row strong,
.ir-row span {
  display: block;
}

.ir-row span {
  color: var(--text-soft);
  line-height: 1.6;
}

.map-box {
  position: relative;
  min-height: 460px;
  border-radius: 26px;
  background: linear-gradient(180deg, #f8fbff, #e9f1f8);
  border: 1px solid rgba(16, 35, 63, 0.08);
  overflow: hidden;
}

.map-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(16, 35, 63, 0.04));
  pointer-events: none;
  z-index: 1;
}

.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(1.03) contrast(1.01);
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(15, 166, 255, 0.12);
}

.pin-1 {
  left: 48%;
  top: 42%;
}

.pin-2 {
  left: 62%;
  top: 30%;
  background: var(--accent-2);
  box-shadow: 0 0 0 8px rgba(34, 195, 154, 0.12);
}

.map-card {
  position: absolute;
  left: 26px;
  bottom: 26px;
  max-width: 270px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 35, 63, 0.08);
  box-shadow: var(--shadow-md);
  z-index: 2;
  backdrop-filter: blur(16px);
}

.map-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.map-card p {
  margin: 0;
}

.map-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-md);
}

.hero-art-card,
.feature-art-card {
  position: relative;
  height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(242, 248, 255, 0.82));
  border: 1px solid rgba(16, 35, 63, 0.08);
}

.hero-art,
.feature-art {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge-card {
  position: absolute;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-md);
  max-width: 220px;
}

.hero-badge-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.hero-badge-card span {
  color: var(--text-soft);
  line-height: 1.5;
  font-size: 13px;
}

.hero-badge-a {
  left: 26px;
  bottom: 26px;
}

.hero-badge-b {
  top: 24px;
  right: 24px;
}

.hero-badge-c {
  right: 34px;
  bottom: 54px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
}

.feature-copy {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-md);
}

.feature-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.05em;
}

.feature-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.feature-copy .stack-list {
  margin-top: 18px;
}

.section-tint {
  padding: 24px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.42));
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.footer p,
.footer span {
  color: var(--text-soft);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-links a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(244, 248, 253, 0.88);
  border: 1px solid rgba(16, 35, 63, 0.08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

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

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

.site-index-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-md);
}

.site-index-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.site-index-card span {
  color: var(--text-soft);
  line-height: 1.7;
}

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

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

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

.field label {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 35, 63, 0.1);
  background: rgba(248, 251, 255, 0.9);
  font: inherit;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(15, 166, 255, 0.5);
  box-shadow: 0 0 0 4px rgba(15, 166, 255, 0.1);
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field-full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.form-status {
  min-height: 24px;
  color: var(--text-soft);
  font-size: 14px;
}

.form-status[data-state="success"] {
  color: #13855f;
}

.form-status[data-state="error"] {
  color: #b44d2a;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
}

.hero-refresh {
  align-items: start;
  gap: 52px;
}

.hero-refresh .hero-copy {
  padding-top: 14px;
}

.hero-visual-refresh {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-visual-refresh::before {
  content: none;
}

.hero-stage-illustrated {
  min-height: 680px;
}

.modern-lane-grid,
.stack-domain-grid,
.signal-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.modern-lane-card,
.signal-card,
.stack-domain-card {
  padding: 28px;
  border-radius: 30px;
}

.modern-lane-card,
.signal-card {
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 254, 0.86));
  box-shadow: var(--shadow-md);
}

.stack-domain-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.modern-lane-card h3,
.signal-card h3,
.stack-domain-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.modern-lane-card p,
.signal-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.stack-domain-card p {
  margin: 0;
  color: rgba(240, 248, 255, 0.82);
  line-height: 1.75;
}

.stack-domain-card .service-icon {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

.stack-domain-card .tag {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: #f8fbff;
}

.signal-card .offer-list div,
.modern-lane-card .offer-list div {
  background: rgba(255, 255, 255, 0.72);
}

.signal-card.tone-dark {
  border-color: rgba(17, 38, 67, 0.28);
}

.signal-card.tone-dark p,
.signal-card.tone-dark span {
  color: rgba(240, 248, 255, 0.82);
}

.signal-card .tag-row {
  margin-top: 18px;
}

.address-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(244, 248, 253, 0.86);
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--text-soft);
  line-height: 1.7;
}

.contact-form-note {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.7;
}

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

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

.announcement-card time {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(244, 248, 253, 0.92);
  border: 1px solid rgba(16, 35, 63, 0.08);
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-reveal].reveal-ready {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal].reveal-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 320ms ease, transform 320ms ease;
}

@media (max-width: 1200px) {
  .hero,
  .page-hero-panel,
  .photo-banner-content,
  .banner-grid,
  .footer,
  .contact-layout,
  .split-feature,
  .showcase-grid,
  .tech-stage,
  .service-split {
    grid-template-columns: 1fr;
  }

  .capability-grid,
  .grid-4,
  .site-index-grid,
  .process-flow,
  .leadership-grid,
  .intro-ribbon,
  .quick-info-grid,
  .profile-strip,
  .modern-lane-grid,
  .stack-domain-grid,
  .signal-grid,
  .family-grid,
  .provider-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .topbar {
    border-radius: 28px;
    position: static;
  }

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

  .nav-meta span:first-child {
    display: none;
  }

  .tech-stage-grid,
  .impact-grid,
  .provider-grid,
  .split-card-grid,
  .service-split-grid,
  .platform-offer-grid,
  .story-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .hero-stats,
  .capability-grid,
  .grid-3,
  .grid-2,
  .grid-4,
  .modern-lane-grid,
  .stack-domain-grid,
  .signal-grid,
  .process-flow,
  .leadership-grid,
  .site-index-grid,
  .announcement-grid,
  .callout-grid,
  .form-grid,
  .intro-ribbon,
  .profile-strip,
  .quick-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 860px;
  }

  .capability-board {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .topbar {
    border-radius: 26px;
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }

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

  .nav-panel {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 4px;
  }

  .topbar.is-open .nav-panel {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .nav-group summary {
    text-align: center;
  }

  .nav-group {
    width: 100%;
  }

  .nav-group summary {
    justify-content: center;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(244, 248, 253, 0.72);
  }

  .nav-dropdown::before {
    content: none;
  }

  .nav-dropdown a {
    align-items: center;
    text-align: center;
  }

  .nav-action {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .hero-badge-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .section-shell,
  .page-hero-panel,
  .photo-banner-content,
  .feature-copy,
  .banner,
  .footer,
  .showcase-panel,
  .tech-spotlight,
  .navigator-shell,
  .band-shell,
  .service-content-card {
    padding: 24px;
  }

  .showcase-art-shell {
    min-height: 360px;
  }

  .hero-stage {
    min-height: 460px;
  }

  .hero-stage-illustrated {
    min-height: 520px;
  }

  .photo-banner,
  .photo-banner-content {
    min-height: 300px;
  }

  .family-grid,
  .provider-summary-grid {
    grid-template-columns: 1fr;
  }

  .hero-float {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .quick-info-card,
  .profile-mini {
    grid-template-columns: 1fr;
  }

  .profile-mini {
    text-align: center;
  }

  .leader-headline {
    flex-direction: column;
  }

  .leader-signal-grid,
  .director-focus-grid,
  .director-focus-top {
    grid-template-columns: 1fr;
  }
}
