:root {
  --color-c-brand: rgba(1, 47, 167, 1);
  --color-c-brand2: rgba(22, 100, 255, 1);
  --color-c-black: rgba(20, 20, 20, 1);
  --color-c-trans: rgba(255, 255, 255, 0.04);
  --color-c-border: rgba(255, 255, 255, 0.36);
  --color-gray1: rgba(0, 0, 0, 0.72);
  --color-gray2: rgba(88, 88, 88, 1);
  --color-gray3: rgba(121, 121, 121, 1);
  --color-gray4: rgba(222, 222, 222, 1);
  --color-gray5: rgba(241, 241, 241, 1);
  --color-gray6: rgba(160, 174, 192, 1);
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 40px;
  --text-5xl: 48px;
  --text-number: 64px;
  --text-title: 64px;
  --leading-xs: 14px;
  --leading-sm: 18px;
  --leading-base: 20px;
  --leading-lg: 24px;
  --leading-xl: 24px;
  --leading-2xl: 24px;
  --leading-3xl: 30px;
  --leading-4xl: 56px;
  --leading-5xl: 64px;
  --leading-title: 80px;
  --text-s-title: 36px;
  --leading-s-title: 48px;
  --breakpoint-l: 790px;
  --shadow-out-news: 4px 4px 12px var(--color-gray4);
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: var(--color-c-black);
  --muted: var(--color-gray2);
  --line: var(--color-gray4);
  --brand: var(--color-c-brand);
  --brand2: var(--color-c-brand2);
  --shadow: var(--shadow-out-news);
  --radius: 8px;
  --container: 1290px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .44;
  background:
    linear-gradient(90deg, rgba(22,100,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(1,47,167,.04) 1px, transparent 1px),
    linear-gradient(135deg, transparent 0 42%, rgba(0,212,223,.08) 42% 43%, transparent 43% 100%);
  background-size: 78px 78px, 78px 78px, 640px 640px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.92), rgba(0,0,0,.25) 58%, transparent);
  animation: signal-grid-drift 22s linear infinite;
}
body::after {
  content: "";
  position: fixed;
  inset: -18% -10%;
  z-index: 0;
  pointer-events: none;
  opacity: .62;
  background:
    radial-gradient(circle at var(--orb-x, 18%) var(--orb-y, 20%), rgba(22,100,255,.22), rgba(22,100,255,.09) 18%, transparent 34%),
    radial-gradient(circle at 78% 26%, rgba(0,212,223,.18), rgba(0,212,223,.06) 18%, transparent 34%),
    radial-gradient(circle at 46% 72%, rgba(1,47,167,.14), transparent 32%);
  filter: blur(4px);
  mix-blend-mode: multiply;
  animation: glow-field-drift 16s ease-in-out infinite alternate;
}
.site-header,
main,
.site-footer {
  position: relative;
}
main,
.site-footer {
  z-index: 1;
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00d4df, var(--brand2), var(--brand));
  transform: scaleX(0);
  transform-origin: left center;
  pointer-events: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); font-size: var(--text-base); line-height: 1.55; margin: 0; }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: 0; }
h1 { font-size: 58px; line-height: 1.1; max-width: 600px; }
h2 { font-size: clamp(34px, 3.2vw, 48px); line-height: 1.12; }
h3 { font-size: var(--text-2xl); line-height: var(--leading-2xl); }
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #009ba6;
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  font-weight: 860;
  letter-spacing: .12em;
  text-transform: uppercase;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 164px;
}
.brand img {
  width: 164px;
  height: auto;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  color: #2d3135;
}
.site-nav a { padding: 10px 0; }
.nav-cta {
  border: 1px solid var(--color-c-black);
  border-radius: var(--radius);
  padding: 13px 19px !important;
  color: #fff;
  background: var(--color-c-black);
  box-shadow: 0 10px 18px rgba(20,20,20,.16);
}
.nav-cta::after {
  content: "→";
  margin-left: 10px;
}
.nav-toggle { display: none; }

.hero {
  display: flex;
  align-items: flex-start;
  padding: 60px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(1,47,167,.045), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff 72%, #f8f9fb 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(540px, 1fr);
  gap: 46px;
  align-items: center;
  min-width: 0;
}
.hero-copy p {
  max-width: 540px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.55;
}
.hero-copy {
  min-width: 0;
  max-width: 100%;
}
.hero-copy h1,
.hero-copy p {
  overflow-wrap: anywhere;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.button::after {
  content: "→";
  margin-left: 10px;
  line-height: 1;
}
.button.secondary::after,
.button.light::after { margin-left: 10px; }
.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  max-width: 580px;
}
.hero-proof div {
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.hero-proof strong {
  display: block;
  font-size: var(--text-base);
  line-height: 1.2;
}
.hero-proof span {
  display: block;
  color: var(--color-gray3);
  font-size: var(--text-sm);
  line-height: var(--leading-sm);
  margin-top: 6px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: var(--radius);
  padding: 0 20px;
  font-weight: 720;
  font-size: 15px;
  border: 1px solid var(--brand);
}
.button.primary { background: var(--brand); color: #fff; }
.button.primary:hover { background: var(--brand2); border-color: var(--brand2); }
.button.secondary { background: transparent; color: var(--brand); }
.actions .button.primary {
  background: var(--color-c-black);
  border-color: var(--color-c-black);
  box-shadow: 0 10px 18px rgba(20,20,20,.15);
}
.actions .button.primary:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.text-link {
  font-weight: 760;
  color: var(--brand);
}

.hero-collage {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-rows: 158px 188px 132px;
  gap: 10px;
  filter: drop-shadow(0 18px 36px rgba(20, 20, 20, .09));
  min-width: 0;
}
.hero-collage > * {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  min-width: 0;
}
.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.collage-main { grid-column: 1; grid-row: 1; }
.collage-live { position: relative; grid-column: 2; grid-row: 1; }
.collage-live span {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--brand2);
  color: #fff;
  border-radius: 4px;
  padding: 5px 8px;
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  font-weight: 800;
}
.collage-plan {
  grid-column: 1;
  grid-row: 2;
  padding: 20px;
  background: #f7f8fb;
}
.mini-calendar {
  height: 100%;
  display: grid;
  align-content: space-between;
}
.mini-calendar span,
.collage-dashboard span {
  color: var(--color-gray2);
  font-weight: 700;
  font-size: var(--text-sm);
}
.mini-calendar div {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.mini-calendar i {
  height: 76px;
  border-radius: 6px;
  background: linear-gradient(180deg, #ffffff 0%, #dae5ff 34%, var(--brand2) 100%);
  box-shadow: inset 0 0 0 1px rgba(1,47,167,.13);
}
.mini-calendar i:nth-child(even) { opacity: .72; }
.collage-dashboard {
  grid-column: 2;
  grid-row: 2;
  padding: 20px;
  background: var(--color-c-black);
  color: #fff;
  border-color: var(--color-c-black);
}
.collage-dashboard span { color: rgba(255,255,255,.72); }
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}
.metrics strong {
  display: block;
  font-size: 17px;
  line-height: 1.2;
  padding: 10px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
}
.line-chart {
  position: relative;
  height: 58px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent);
}
.line-chart i {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  top: 44px;
  background: var(--brand2);
  transform: skewY(-8deg);
}
.line-chart i:nth-child(2) {
  top: 58px;
  opacity: .62;
  transform: skewY(7deg);
}
.collage-wide { grid-column: 1 / -1; grid-row: 3; }

.brand-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  background: #fff;
}
.brand-strip > .container > span {
  display: block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-gray3);
  font-size: var(--text-xs);
  line-height: var(--leading-xs);
  margin-bottom: 20px;
}
.brand-strip > .container > div:not(.brand-strip-head):not(.brand-logo-wall) {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
  align-items: center;
  text-align: center;
  color: var(--color-gray2);
}
.brand-strip strong {
  font-size: var(--text-xl);
  line-height: var(--leading-xl);
  letter-spacing: .04em;
  font-family: Georgia, "Times New Roman", serif;
}

.section { padding: 96px 0; }
.section { padding: 72px 0; }
.services-strip { background: #fff; }
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 36px;
  align-items: end;
  margin-bottom: 30px;
}
.section-heading p { font-size: 16px; line-height: 1.55; }
.section-heading.with-link {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service-card, .service-detail, .article-card, .contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.service-card {
  min-height: 198px;
  padding: 22px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.service-card:hover {
  border-color: rgba(22,100,255,.35);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.service-icon {
  display: block;
  width: 32px;
  height: 32px;
  min-width: 32px;
  margin-bottom: 22px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-c-black);
}
.service-icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
  line-height: 1.16;
}
.service-card p {
  font-size: var(--text-sm);
  line-height: 1.45;
}
.service-card a {
  display: inline-block;
  margin-top: 20px;
  color: #009ba6;
  font-size: var(--text-sm);
  font-weight: 780;
}
.service-card a::after {
  content: " →";
}

.proof-band {
  background: var(--ink);
  color: #fff;
}
.case-preview {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.case-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.case-card div { padding: 22px; }
.case-card p { margin: 12px 0 20px; font-size: var(--text-base); line-height: var(--leading-lg); }
.case-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.case-metrics span {
  color: var(--color-gray2);
  font-size: var(--text-sm);
}
.case-metrics strong {
  display: block;
  font-size: var(--text-3xl);
  line-height: var(--leading-3xl);
  color: var(--brand);
}
.proof-band.light {
  background: #fff;
  color: var(--ink);
}
.proof-band p, .proof-list span { color: rgba(255,255,255,.72); }
.proof-band.light p, .proof-band.light .proof-list span { color: var(--muted); }
.proof-grid {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 64px;
  align-items: start;
}
.proof-grid p { margin-top: 24px; font-size: 19px; }
.proof-list {
  display: grid;
  gap: 14px;
}
.proof-list div {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.proof-band.light .proof-list div { border-color: var(--line); }
.proof-list strong { color: #9db9ff; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.article-card {
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 4px 4px 12px var(--color-gray4);
}
.article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #e8ecea;
}
.article-card-body {
  padding: 22px;
}
.article-card span, .result-meta, .breadcrumb, .article-meta {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.article-card h2, .article-card h3 {
  margin-top: 10px;
  font-size: 22px;
  line-height: 1.18;
}
.article-card p { margin-top: 12px; font-size: 15px; }

.about-cta { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: .92fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  background: var(--color-gray5);
}
.about-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.about-grid p { font-size: 20px; margin-bottom: 28px; }

.final-cta {
  padding: 42px 0 72px;
  background: #fff;
}
.final-cta-inner {
  border-radius: var(--radius);
  background: var(--color-c-black);
  color: #fff;
  padding: 32px 36px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.final-cta h2 {
  font-size: var(--text-3xl);
  line-height: var(--leading-3xl);
}
.final-cta p { color: rgba(255,255,255,.72); margin-top: 8px; }
.button.light {
  background: #fff;
  color: var(--color-c-black);
  border-color: #fff;
}

.page-hero {
  padding: 108px 0 72px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.page-hero.compact { padding: 82px 0 58px; }
.page-hero p {
  max-width: 760px;
  margin-top: 24px;
  font-size: 21px;
}

.geo-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 76px;
  background:
    radial-gradient(circle at 12% 18%, rgba(22,100,255,.18), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(0,212,223,.16), transparent 28%),
    #05070c;
  color: #fff;
}
.geo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.82), transparent 82%);
  pointer-events: none;
}
.geo-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, .58fr);
  gap: 64px;
  align-items: center;
}
.geo-hero h1 {
  max-width: 880px;
  color: #fff;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.03;
}
.geo-hero p {
  max-width: 780px;
  margin-top: 22px;
  color: rgba(255,255,255,.76);
  font-size: 20px;
  line-height: 1.62;
}
.geo-answer {
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
}
.geo-answer strong {
  display: inline-block;
  color: #00d4df;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.geo-answer p {
  margin-top: 10px;
  font-size: 17px;
}
.geo-hero-panel {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 14%, rgba(0,212,223,.2), transparent 34%),
    rgba(255,255,255,.08);
  padding: 30px;
  box-shadow: 0 30px 80px rgba(0,0,0,.26);
  backdrop-filter: blur(14px);
}
.geo-hero-panel > span,
.geo-section .eyebrow,
.geo-dark-band .eyebrow,
.geo-faq .eyebrow {
  color: #00a6b2;
}
.geo-hero-panel strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 36px;
  line-height: 1.08;
}
.geo-hero-panel ol,
.geo-hero-panel dl {
  margin: 18px 0 0;
  padding-left: 22px;
  color: rgba(255,255,255,.78);
  line-height: 1.72;
}
.geo-mini-metrics {
  display: grid;
  gap: 14px;
  padding-left: 0 !important;
}
.geo-mini-metrics div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 14px;
}
.geo-mini-metrics dt {
  color: #fff;
  font-size: 34px;
  font-weight: 900;
}
.geo-mini-metrics dd {
  margin: 0;
  color: rgba(255,255,255,.7);
}
.geo-section {
  background: #fff;
}
.geo-two-col,
.geo-dark-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}
.geo-two-col h2,
.geo-dark-grid h2 {
  max-width: 680px;
  font-size: clamp(36px, 4vw, 56px);
}
.geo-two-col p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.66;
}
.geo-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.geo-card-grid article,
.geo-faq-grid article,
.geo-market-grid article {
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 8px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 18px 46px rgba(20,20,20,.06);
}
.geo-card-grid h3,
.geo-faq-grid h3,
.geo-market-grid h3 {
  font-size: 21px;
  line-height: 1.2;
}
.geo-card-grid p,
.geo-faq-grid p,
.geo-market-grid p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.58;
}
.geo-dark-band {
  background:
    radial-gradient(circle at 84% 20%, rgba(0,212,223,.18), transparent 28%),
    linear-gradient(135deg, #05070c, #111827);
  color: #fff;
}
.geo-dark-grid h2 {
  color: #fff;
}
.geo-list {
  display: grid;
  gap: 14px;
}
.geo-list div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  padding: 18px;
}
.geo-list strong {
  color: #fff;
}
.geo-list span {
  color: rgba(255,255,255,.72);
  line-height: 1.56;
}
.geo-faq {
  background: #f6f8fb;
}
.geo-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.geo-final {
  padding: 56px 0;
  background: #05070c;
  color: #fff;
}
.geo-final-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.geo-final h2 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
}
.geo-market-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.geo-market-grid article span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
}
.geo-market-grid article strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 32px;
}
.geo-market-grid article i {
  display: block;
  height: 7px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand2) var(--target), rgba(20,20,20,.1) var(--target));
}
.market-signal-card strong {
  color: #fff;
  font-size: 48px;
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  background:
    radial-gradient(circle at 82% 20%, rgba(0,212,223,.14), transparent 28%),
    radial-gradient(circle at 18% 14%, rgba(22,100,255,.16), transparent 32%),
    #05070c;
  color: #fff;
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 80%);
  pointer-events: none;
}
.about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1fr);
  gap: 58px;
  align-items: center;
}
.about-hero-copy h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(46px, 5.3vw, 76px);
  line-height: 1.03;
}
.about-hero-copy p {
  max-width: 670px;
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-size: 19px;
  line-height: 1.62;
}
.about-hero-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 34px 90px rgba(0,0,0,.36);
}
.about-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}
.about-hero-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 5px;
  min-width: min(360px, calc(100% - 36px));
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(5,7,12,.78);
  color: #fff;
  padding: 16px 18px;
  backdrop-filter: blur(16px);
}
.about-hero-card strong {
  font-size: 17px;
}
.about-hero-card span {
  color: rgba(255,255,255,.66);
  font-size: 13px;
}
.about-company {
  background: #fff;
}
.about-company-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1fr);
  gap: 62px;
  align-items: start;
}
.about-company h2,
.about-team-copy h2,
.about-operating-system h2 {
  max-width: 760px;
}
.about-company p,
.about-team-copy p {
  max-width: 680px;
  margin-top: 22px;
  color: var(--color-gray2);
  font-size: 18px;
  line-height: 1.62;
}
.company-info-panel {
  overflow: hidden;
  border: 1px solid rgba(20,20,20,.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(22,100,255,.08), transparent 42%),
    #fff;
  box-shadow: 0 24px 74px rgba(20,20,20,.08);
}
.company-info-panel dl {
  display: grid;
  margin: 0;
}
.company-info-panel div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  padding: 19px 22px;
  border-bottom: 1px solid rgba(20,20,20,.08);
}
.company-info-panel div:last-child {
  border-bottom: 0;
}
.company-info-panel dt {
  color: #009ba6;
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.company-info-panel dd {
  margin: 0;
  color: var(--color-c-black);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 700;
}
.about-team-section {
  background:
    radial-gradient(circle at 10% 18%, rgba(22,100,255,.08), transparent 30%),
    #f7f9fc;
}
.about-team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 58px;
  align-items: center;
}
.about-team-photo {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20,20,20,.1);
  border-radius: 8px;
  background: #05070c;
  box-shadow: 0 34px 84px rgba(20,20,20,.12);
}
.about-team-photo img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}
.about-capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 30px;
}
.about-capability-list div {
  min-height: 150px;
  border: 1px solid rgba(20,20,20,.09);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  padding: 20px;
}
.about-capability-list strong {
  display: block;
  color: var(--color-c-black);
  font-size: 17px;
  line-height: 1.2;
}
.about-capability-list span {
  display: block;
  margin-top: 14px;
  color: var(--color-gray2);
  font-size: 14px;
  line-height: 1.5;
}
.about-operating-system {
  background: #fff;
}
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.about-process-grid article {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(20,20,20,.09);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f7f9fc);
  padding: 24px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.about-process-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(22,100,255,.25);
  box-shadow: 0 26px 70px rgba(20,20,20,.1);
}
.about-process-grid article::before {
  content: "";
  position: absolute;
  inset: auto -20% -34% 18%;
  height: 130px;
  background: radial-gradient(circle, rgba(22,100,255,.15), transparent 68%);
}
.about-process-grid span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}
.about-process-grid h3 {
  margin-top: 44px;
  font-size: 22px;
  line-height: 1.16;
}
.about-process-grid p {
  margin-top: 14px;
  color: var(--color-gray2);
  font-size: 15px;
  line-height: 1.56;
}
.about-proof-band {
  padding: 0 0 84px;
  background: #fff;
}
.about-proof-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 18%, rgba(0,212,223,.16), transparent 32%),
    var(--color-c-black);
  color: #fff;
  padding: 38px 42px;
}
.about-proof-band span {
  display: block;
  color: #66e9ff;
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.about-proof-band strong {
  display: block;
  max-width: 820px;
  margin-top: 12px;
  color: #fff;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.insights-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 32px;
  align-items: start;
}
.category-rail {
  position: sticky;
  top: 102px;
  display: grid;
  gap: 8px;
}
.category-rail a {
  padding: 13px 14px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  color: #343941;
}
.category-rail a.active, .category-rail a:hover {
  background: #fff;
  border-color: var(--line);
}
.result-meta { margin-bottom: 20px; }
.list-grid { grid-template-columns: repeat(2, 1fr); }

.article-page { background: #fff; }
.article-hero {
  position: relative;
  padding: 86px 0 50px;
}
.article-hero::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - var(--container)) / 2));
  right: max(20px, calc((100vw - var(--container)) / 2));
  top: 34px;
  height: 210px;
  border: 1px solid rgba(22,100,255,.16);
  border-radius: 8px;
  background:
    linear-gradient(115deg, rgba(22,100,255,.12), transparent 38%),
    repeating-linear-gradient(90deg, rgba(1,47,167,.08) 0 1px, transparent 1px 44px);
  opacity: .72;
  pointer-events: none;
}
.breadcrumb {
  color: var(--brand);
  display: inline-block;
  margin-bottom: 20px;
}
.article-hero h1 {
  font-size: clamp(40px, 5.4vw, 76px);
  max-width: 1060px;
}
.article-hero p {
  margin-top: 24px;
  max-width: 790px;
  font-size: 20px;
}
.article-meta {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}
.article-cover {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 42px;
  position: relative;
  box-shadow: 0 28px 70px rgba(1,47,167,.14);
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) 280px;
  gap: 84px;
  padding-bottom: 92px;
}
.article-content {
  color: #24272b;
  font-size: 18px;
  line-height: 1.76;
}
.article-content p { color: #24272b; margin: 0 0 22px; font-size: 18px; }
.article-content img {
  margin: 30px auto;
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
}
.article-content h2, .article-content h3, .article-content b {
  color: var(--ink);
}
.article-content ul {
  margin: 0 0 28px;
  padding-left: 24px;
}
.article-content li {
  margin-bottom: 12px;
}
.article-visual-inline {
  margin: 36px 0 38px;
}
.article-visual-inline img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(20,20,20,.12);
}
.article-visual-inline figcaption {
  margin-top: 12px;
  color: var(--color-gray2);
  font-size: 14px;
  line-height: 1.5;
}
.article-content .article-trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-areas:
    "title primary secondary"
    "copy primary secondary";
  gap: 8px 12px;
  align-items: center;
  margin: 38px 0 34px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 92% 16%, rgba(0,212,223,.18), transparent 30%),
    linear-gradient(135deg, #05070c 0%, #0d1424 54%, #111827 100%);
  color: #fff;
  box-shadow: 0 24px 62px rgba(1,47,167,.22);
  overflow: hidden;
}
.article-content .article-trust-panel strong {
  grid-area: title;
  color: #fff;
  font-size: 20px;
  line-height: 1.25;
}
.article-content .article-trust-panel span {
  grid-area: copy;
  display: block;
  max-width: 620px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
}
.article-content .article-trust-panel a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  justify-self: stretch;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  color: #fff;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.article-content .article-trust-panel a:first-of-type {
  grid-area: primary;
  border-color: #fff;
  background: #fff;
  color: #05070c;
}
.article-content .article-trust-panel a:last-of-type {
  grid-area: secondary;
}
.article-content .article-trust-panel a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.52);
}
.article-geo-brief {
  margin: 42px 0 36px;
  padding: 28px;
  border: 1px solid rgba(1,47,167,.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 12%, rgba(0,212,223,.16), transparent 30%),
    linear-gradient(135deg, rgba(22,100,255,.07), rgba(255,255,255,.96) 46%),
    #fff;
  box-shadow: 0 24px 62px rgba(1,47,167,.12);
}
.article-geo-brief > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.article-geo-brief h2 {
  font-size: 30px;
  line-height: 1.15;
}
.article-geo-brief h3 {
  margin-bottom: 12px;
  font-size: 18px;
}
.article-geo-brief p,
.article-geo-brief li {
  font-size: 16px;
  line-height: 1.65;
}
.article-geo-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-top: 24px;
}
.article-geo-grid > div,
.article-geo-faq details {
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  padding: 18px;
}
.article-geo-faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.article-geo-faq summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 820;
}
.article-geo-faq p {
  margin-top: 12px;
}
.article-geo-source {
  margin-top: 18px !important;
  color: var(--color-gray2) !important;
  font-size: 14px !important;
}
.article-aside {
  position: sticky;
  top: 104px;
  align-self: start;
}
.article-aside::before {
  content: attr(data-reading);
  display: block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 780;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-aside[data-reading]::before {
  margin-bottom: 14px;
}
.article-aside h2 {
  font-size: 18px;
  margin-bottom: 16px;
}
.article-aside a {
  display: block;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: #30353a;
  font-weight: 700;
  line-height: 1.32;
}
.article-side-visual {
  margin-bottom: 18px;
  border: 1px solid rgba(1,47,167,.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 44px rgba(20,20,20,.08);
}
.article-side-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.article-side-visual span {
  display: block;
  padding: 12px 14px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.article-contact-card {
  position: relative;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #0a0d13, #101827 58%, #001e72);
  color: #fff;
}
.article-contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .45;
}
.article-contact-card > * {
  position: relative;
}
.article-contact-card span {
  color: #39d5ff;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.article-contact-card h2 {
  margin: 12px 0 10px;
  color: #fff;
  font-size: 23px;
  line-height: 1.08;
}
.article-contact-card p {
  margin-bottom: 14px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
}
.article-contact-card a {
  border-top-color: rgba(255,255,255,.18);
  color: #fff;
}

.newsroom-hero {
  background: var(--color-c-black);
  color: #fff;
  padding: 88px 0 76px;
}
.newsroom-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: end;
}
.newsroom-hero-grid > *,
.news-featured-card a > *,
.news-card > a > * {
  min-width: 0;
}
.newsroom-hero h1 {
  max-width: 980px;
  margin-top: 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.newsroom-hero p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.65;
}
.newsroom-stat-panel {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.055);
  box-shadow: 0 24px 70px rgba(0,0,0,.26);
}
.newsroom-stat-panel div {
  padding: 26px;
}
.newsroom-stat-panel div + div {
  border-top: 1px solid rgba(255,255,255,.14);
}
.newsroom-stat-panel strong {
  display: block;
  font-size: 42px;
  line-height: 1;
}
.newsroom-stat-panel span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.news-category-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.news-category-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 18px 0;
  scrollbar-width: none;
  cursor: grab;
  scroll-snap-type: x proximity;
}
.news-category-scroll.is-dragging {
  cursor: grabbing;
}
.news-category-scroll::-webkit-scrollbar {
  display: none;
}
.news-category-scroll a {
  flex: 0 0 auto;
  min-width: 210px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 15px 16px;
  transition: border-color .22s ease, background-color .22s ease, transform .22s ease;
  scroll-snap-align: start;
}
.news-category-scroll a:hover,
.news-category-scroll a.active {
  border-color: rgba(1,47,167,.34);
  background: #f7f9ff;
  transform: translateY(-2px);
}
.news-category-scroll span {
  display: block;
  max-width: 250px;
  color: #24272b;
  font-weight: 780;
  line-height: 1.22;
}
.news-category-scroll strong {
  display: block;
  margin-top: 10px;
  color: var(--brand);
  font-size: 13px;
}
.newsroom-section {
  background: #f6f7f9;
}
.news-featured-card {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 26px 70px rgba(20,20,20,.08);
  margin-bottom: 58px;
}
.news-featured-card a {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 460px;
  color: inherit;
}
.news-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-featured-card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}
.news-featured-card span,
.news-featured-card time,
.news-card-meta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-featured-card time {
  margin-top: 8px;
}
.news-featured-card h2 {
  margin-top: 22px;
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.news-featured-card p {
  margin-top: 22px;
  max-width: 620px;
  color: #4b5159;
  font-size: 18px;
  line-height: 1.62;
}
.news-list-header {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}
.news-list-header h2 {
  max-width: 780px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
}
.news-list-header p {
  color: var(--muted);
  font-weight: 720;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.news-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.news-card::after,
.refined-service-card::after,
.refined-case-card::after,
.refined-insight-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 0%), rgba(22,100,255,.16), transparent 34%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}
.news-card:hover::after,
.refined-service-card:hover::after,
.refined-case-card:hover::after,
.refined-insight-card:hover::after {
  opacity: 1;
}
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(1,47,167,.22);
  box-shadow: 0 22px 54px rgba(20,20,20,.1);
}
.news-card a {
  position: relative;
  z-index: 1;
  color: inherit;
}
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--color-gray5);
}
.news-card > a > div {
  padding: 24px;
}
.news-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.news-card-meta span {
  color: var(--brand);
}
.news-card h3 {
  margin-top: 16px;
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.news-card p {
  margin-top: 14px;
  color: #4b5159;
  font-size: 15px;
  line-height: 1.56;
  min-height: 70px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  padding: 12px 16px;
  font-weight: 760;
  min-width: 44px;
  text-align: center;
}
.pagination a:hover {
  border-color: var(--brand);
  color: var(--brand);
}
.pagination span.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.pagination span.ellipsis {
  min-width: auto;
  border-color: transparent;
  background: transparent;
  color: var(--muted);
  padding-inline: 4px;
}
.article-breadcrumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-breadcrumbs a {
  color: var(--brand);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-detail { padding: 28px; min-height: 230px; }
.service-detail h2 { font-size: 27px; margin-bottom: 16px; }
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 56px;
}
.contact-grid h2 { font-size: 34px; margin-bottom: 18px; }
.contact-grid a { color: var(--brand); font-weight: 760; }
.contact-details {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.contact-details div {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 16px 18px;
}
.contact-details strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact-details span {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}
.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}
.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
}
.form-status {
  margin-top: 22px;
  border-radius: var(--radius);
  padding: 16px 18px;
  font-weight: 720;
}
.form-status p {
  margin: 0;
}
.form-status p + p {
  margin-top: 8px;
}
.form-status.success {
  border: 1px solid rgba(0,155,166,.22);
  background: rgba(0,155,166,.08);
  color: #006a72;
}
.form-status.prominent {
  display: grid;
  gap: 7px;
  border-width: 2px;
  padding: 22px;
  box-shadow: 0 18px 45px rgba(0,155,166,.14);
}
.form-status.prominent strong {
  color: var(--color-c-black);
  font-size: 24px;
}
.form-status.prominent span {
  line-height: 1.55;
}
.form-status.error {
  border: 1px solid rgba(214, 40, 40, .22);
  background: rgba(214, 40, 40, .08);
  color: #9d1c1c;
}

.admin-shell {
  min-height: 72vh;
  display: grid;
  place-items: center;
  background: #f6f7f9;
  padding: 70px 20px;
}
.admin-login-card {
  width: min(100%, 460px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 34px;
  box-shadow: var(--shadow);
}
.admin-login-card h1,
.admin-dashboard h1 {
  margin-top: 10px;
  font-size: 38px;
}
.admin-login-card p,
.admin-dashboard-head p,
.admin-empty p {
  margin-top: 12px;
  color: var(--muted);
}
.admin-form {
  margin-top: 24px;
  padding: 0;
}
.admin-dashboard {
  background: #f6f7f9;
  padding: 70px 0;
}
.admin-dashboard-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.admin-empty,
.submission-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
}
.submission-list {
  display: grid;
  gap: 18px;
}
.submission-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.2fr);
  gap: 26px;
}
.submission-main span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.submission-main h2 {
  margin-top: 10px;
  font-size: 28px;
}
.submission-main p {
  margin-top: 16px;
  color: var(--color-gray1);
  line-height: 1.65;
  white-space: pre-wrap;
}
.submission-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
}
.submission-meta div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}
.submission-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.submission-meta dd {
  margin: 7px 0 0;
  color: var(--color-c-black);
  font-size: 13px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.submission-meta a {
  color: var(--brand);
}
.submission-actions {
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.button.danger {
  border-color: rgba(214, 40, 40, .26);
  background: #fff;
  color: #9d1c1c;
}
.button.danger:hover {
  background: #9d1c1c;
  color: #fff;
}
.admin-status {
  margin: 0 0 18px;
}

.services-hero {
  background: #05070c;
  color: #fff;
  padding: 88px 0 78px;
}
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1fr);
  gap: 68px;
  align-items: center;
}
.services-hero h1 {
  max-width: 830px;
  color: #fff;
  font-size: clamp(46px, 6vw, 84px);
}
.services-hero p {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.6;
}
.services-command-center {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  box-shadow: 0 34px 88px rgba(0,0,0,.38);
}
.services-command-center img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.03);
}
.command-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(5,7,12,.74);
  padding: 22px;
  backdrop-filter: blur(18px);
}
.command-overlay > span {
  color: #7fb2ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.command-overlay dl,
.services-score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.command-overlay dl {
  margin: 18px 0 0;
}
.command-overlay dt {
  font-size: 34px;
  font-weight: 850;
}
.command-overlay dd {
  margin: 6px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  text-transform: uppercase;
}
.services-scoreboard {
  background: #fff;
  padding: 34px 0;
}
.services-score-grid {
  grid-template-columns: repeat(4, 1fr);
}
.services-score-grid div {
  border-left: 1px solid var(--line);
  padding: 16px 22px;
}
.services-score-grid div:last-child {
  border-right: 1px solid var(--line);
}
.services-score-grid strong {
  display: block;
  color: var(--brand);
  font-size: 44px;
  line-height: 1;
}
.services-score-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 760;
}
.services-systems,
.services-timeline-section {
  background: #f6f7f9;
}
.services-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.services-showcase-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.services-showcase-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22,100,255,.32);
  box-shadow: 0 28px 64px rgba(20,20,20,.12);
}
.services-showcase-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.services-showcase-card > div {
  padding: 24px;
}
.services-showcase-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .12em;
}
.services-showcase-card h3 {
  margin-top: 12px;
  font-size: 25px;
}
.services-showcase-card p {
  margin-top: 12px;
  min-height: 126px;
  color: var(--muted);
  line-height: 1.58;
}
.services-showcase-card b {
  display: inline-block;
  margin-top: 18px;
  color: #009ba6;
  font-size: 14px;
}
.services-showcase-card b::after {
  content: " →";
}
.services-analytics {
  background: #fff;
}
.services-analytics-grid,
.services-timeline-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1fr);
  gap: 56px;
  align-items: start;
}
.services-analytics h2,
.services-timeline-grid h2 {
  margin-top: 12px;
  font-size: 46px;
}
.services-analytics p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.services-radar-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}
.services-timeline {
  display: grid;
  gap: 14px;
  counter-reset: step;
}
.services-timeline div {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px 24px 24px 84px;
}
.services-timeline strong {
  position: absolute;
  left: 24px;
  top: 24px;
  color: var(--brand);
  font-weight: 860;
}
.services-timeline h3 {
  font-size: 24px;
}
.services-timeline p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}
.services-final-cta {
  background: var(--color-c-black);
  color: #fff;
  padding: 52px 0;
}
.services-final-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}
.services-final-inner h2 {
  max-width: 760px;
  color: #fff;
  font-size: 40px;
}

.solution-hero {
  position: relative;
  overflow: hidden;
  padding: 132px 0 88px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(22, 100, 255, .42), transparent 28%),
    radial-gradient(circle at 22% 76%, rgba(0, 217, 255, .18), transparent 26%),
    linear-gradient(135deg, #05070d 0%, #0a1020 48%, #041126 100%);
}

.solution-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,.28), #000 45%, rgba(0,0,0,.18));
}

.solution-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.solution-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.solution-breadcrumb a {
  color: rgba(255,255,255,.78);
}

.solution-breadcrumb span::before {
  content: "/";
  margin-right: 10px;
  color: rgba(255,255,255,.36);
}

.solution-hero h1 {
  max-width: 840px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
}

.solution-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  line-height: 1.7;
}

.solution-intel-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 120px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}

.solution-intel-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.solution-intel-card div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  background: rgba(2,8,18,.72);
  backdrop-filter: blur(14px);
}

.solution-intel-card span {
  display: block;
  margin-bottom: 8px;
  color: #66e9ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.solution-intel-card strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.35;
}

.solution-answer-section {
  background: #f6f8fc;
}

.solution-answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr);
  gap: 24px;
  align-items: stretch;
}

.geo-answer-card,
.solution-proof-stack div,
.solution-step-grid article,
.solution-faq-list details,
.solution-link-grid a {
  border: 1px solid rgba(10, 20, 40, .1);
  background: #fff;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .06);
}

.geo-answer-card {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: clamp(28px, 4vw, 48px);
  border-radius: 24px;
}

.geo-answer-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(22,100,255,.2), transparent 68%);
}

.geo-answer-card.is-priority {
  border-color: rgba(22,100,255,.28);
}

.geo-answer-card span,
.solution-link-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-c-brand2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.geo-answer-card h2 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.geo-answer-card p {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: rgba(20,20,20,.76);
  font-size: 20px;
  line-height: 1.65;
}

.solution-proof-stack {
  display: grid;
  gap: 14px;
}

.solution-proof-stack div {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 18px;
}

.solution-proof-stack strong {
  font-size: 24px;
}

.solution-proof-stack span {
  color: var(--color-gray2);
  line-height: 1.55;
}

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

.solution-step-grid article {
  min-height: 270px;
  padding: 24px;
  border-radius: 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.solution-step-grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 70px rgba(15,23,42,.1);
}

.solution-step-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 999px;
  color: #fff;
  background: var(--color-c-brand2);
  font-weight: 800;
}

.solution-step-grid h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.25;
}

.solution-step-grid p,
.solution-faq-grid p {
  color: var(--color-gray2);
  line-height: 1.7;
}

.solution-faq-section {
  background: #080b12;
  color: #fff;
}

.solution-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.solution-faq-grid h2 {
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.solution-faq-grid p {
  color: rgba(255,255,255,.68);
}

.solution-faq-list {
  display: grid;
  gap: 14px;
}

.solution-faq-list details {
  padding: 22px 24px;
  border-color: rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}

.solution-faq-list summary {
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

.solution-faq-list p {
  margin: 14px 0 0;
}

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

.solution-link-grid a {
  min-height: 150px;
  padding: 20px;
  border-radius: 18px;
  transition: transform .2s ease, border-color .2s ease;
}

.solution-link-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(22,100,255,.36);
}

.solution-link-grid strong {
  display: block;
  color: var(--color-c-black);
  font-size: 18px;
  line-height: 1.3;
}

.seo-hub-section {
  background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
}

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

.seo-hub-grid a {
  display: grid;
  min-height: 140px;
  padding: 18px;
  border: 1px solid rgba(10,20,40,.1);
  border-radius: 18px;
  background: #fff;
}

.seo-hub-grid span {
  color: var(--color-c-brand2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.seo-hub-grid strong {
  align-self: end;
  color: var(--color-c-black);
  font-size: 18px;
  line-height: 1.28;
}

.answer-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 86px;
  color: #fff;
  background:
    radial-gradient(circle at 76% 18%, rgba(0,217,255,.24), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(22,100,255,.35), transparent 30%),
    linear-gradient(135deg, #070910 0%, #081324 52%, #020713 100%);
}

.answer-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.answer-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .55fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.answer-hero h1 {
  max-width: 880px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
}

.answer-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.74);
  font-size: 19px;
  line-height: 1.7;
}

.answer-entity-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 110px rgba(0,0,0,.36);
  backdrop-filter: blur(18px);
}

.answer-entity-card > span {
  color: #66e9ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.answer-entity-card dl {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.answer-entity-card div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(3,8,18,.54);
}

.answer-entity-card dt {
  color: rgba(255,255,255,.55);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.answer-entity-card dd {
  margin: 6px 0 0;
  color: #fff;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.32;
}

.answer-priority-section {
  background: #f6f8fc;
}

.answer-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.answer-card-grid article,
.answer-keyword-table a,
.answer-fact-list div {
  border: 1px solid rgba(10,20,40,.1);
  background: #fff;
  box-shadow: 0 18px 58px rgba(15,23,42,.06);
}

.answer-card-grid article {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 22px;
  border-radius: 20px;
  transition: transform .22s ease, border-color .22s ease;
}

.answer-card-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(22,100,255,.32);
}

.answer-card-grid span,
.answer-keyword-table span {
  color: var(--color-c-brand2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.answer-card-grid h3 {
  margin: 18px 0 12px;
  font-size: 23px;
  line-height: 1.12;
}

.answer-card-grid p {
  color: var(--color-gray2);
  line-height: 1.62;
}

.answer-card-grid a {
  margin-top: auto;
  color: var(--brand);
  font-weight: 800;
}

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

.answer-keyword-table a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 18px;
  align-items: center;
  padding: 20px;
  border-radius: 18px;
}

.answer-keyword-table span,
.answer-keyword-table strong {
  grid-column: 1;
}

.answer-keyword-table strong {
  color: var(--color-c-black);
  font-size: 21px;
  line-height: 1.22;
}

.answer-keyword-table em {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(22,100,255,.08);
  font-size: 12px;
  font-style: normal;
  font-weight: 820;
  white-space: nowrap;
}

.answer-trust-section {
  background: #080b12;
  color: #fff;
}

.answer-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.answer-trust-grid h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.04;
}

.answer-trust-grid p {
  max-width: 620px;
  color: rgba(255,255,255,.66);
  font-size: 18px;
  line-height: 1.7;
}

.answer-fact-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.answer-fact-list div {
  min-height: 130px;
  padding: 20px;
  border-color: rgba(255,255,255,.13);
  border-radius: 18px;
  background: rgba(255,255,255,.06);
}

.answer-fact-list strong {
  display: block;
  color: #66e9ff;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.answer-fact-list span {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 18px;
  font-weight: 780;
  line-height: 1.35;
}

.glossary-hero,
.glossary-term-hero {
  position: relative;
  overflow: hidden;
  padding: 122px 0 84px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 16%, rgba(0,212,223,.22), transparent 28%),
    radial-gradient(circle at 22% 78%, rgba(22,100,255,.34), transparent 30%),
    linear-gradient(135deg, #07080e 0%, #0b1527 54%, #02060f 100%);
}

.glossary-hero::before,
.glossary-term-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
}

.glossary-hero-grid,
.glossary-term-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .58fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.glossary-hero h1,
.glossary-term-hero h1 {
  max-width: 900px;
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1;
}

.glossary-hero p,
.glossary-term-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.75);
  font-size: 19px;
  line-height: 1.7;
}

.glossary-radar,
.glossary-term-visual {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 110px rgba(0,0,0,.36);
  backdrop-filter: blur(18px);
}

.glossary-radar {
  display: grid;
  gap: 22px;
  padding: 30px;
}

.glossary-radar > span,
.glossary-decision-grid aside > span {
  color: #66e9ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.glossary-radar div {
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    radial-gradient(circle, rgba(0,212,223,.2), transparent 58%),
    conic-gradient(from 110deg, rgba(22,100,255,.14), rgba(0,212,223,.24), rgba(255,255,255,.06), rgba(22,100,255,.14));
}

.glossary-radar strong {
  color: #fff;
  font-size: 72px;
  line-height: .9;
}

.glossary-radar small {
  display: block;
  margin-top: -34px;
  color: rgba(255,255,255,.7);
  font-weight: 760;
}

.glossary-radar ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.glossary-radar li {
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  color: rgba(255,255,255,.78);
  background: rgba(3,8,18,.44);
}

.glossary-index-section,
.glossary-answer-section {
  background: #f6f8fc;
}

.glossary-term-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.glossary-term-grid a {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid rgba(10,20,40,.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 58px rgba(15,23,42,.06);
  transition: transform .22s ease, border-color .22s ease;
}

.glossary-term-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(22,100,255,.32);
}

.glossary-term-grid span {
  color: var(--color-c-brand2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.glossary-term-grid strong {
  margin-top: 18px;
  color: var(--color-c-black);
  font-size: 22px;
  line-height: 1.16;
}

.glossary-term-grid small {
  margin-top: auto;
  color: var(--color-gray2);
  font-size: 14px;
  line-height: 1.55;
}

.glossary-method-grid,
.glossary-decision-grid,
.glossary-faq-grid,
.glossary-answer-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.glossary-method-grid h2,
.glossary-decision-grid h2,
.glossary-faq-grid h2 {
  max-width: 720px;
}

.glossary-method-grid p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.7;
}

.glossary-method-list,
.glossary-signal-stack {
  display: grid;
  gap: 14px;
}

.glossary-method-list div,
.glossary-signal-stack div,
.glossary-decision-grid aside {
  padding: 22px;
  border: 1px solid rgba(10,20,40,.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 58px rgba(15,23,42,.06);
}

.glossary-method-list strong,
.glossary-signal-stack strong {
  display: block;
  color: var(--color-c-black);
  font-size: 21px;
  line-height: 1.24;
}

.glossary-method-list span,
.glossary-signal-stack span {
  display: block;
  margin-top: 10px;
  color: var(--color-gray2);
  line-height: 1.58;
}

.glossary-term-hero .breadcrumb {
  color: rgba(255,255,255,.68);
}

.glossary-term-visual {
  position: relative;
  margin: 0;
}

.glossary-term-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.glossary-term-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  color: #fff;
  background: rgba(3,8,18,.72);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.glossary-decision-section {
  background: #080b12;
  color: #fff;
}

.glossary-decision-grid h2 {
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.glossary-decision-grid aside {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.07);
}

.glossary-decision-grid aside p {
  margin: 18px 0 24px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  line-height: 1.65;
}

.glossary-decision-grid aside a {
  color: #66e9ff;
  font-weight: 850;
}

.article-glossary-links {
  background: linear-gradient(135deg, #fff 0%, #f3fbff 100%);
}

.longtail-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 82px;
  color: #fff;
  background:
    radial-gradient(circle at 72% 20%, rgba(22,100,255,.34), transparent 30%),
    linear-gradient(135deg, #05070d 0%, #081426 56%, #030712 100%);
}

.longtail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
}

.longtail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .68fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.longtail-hero .breadcrumb {
  color: rgba(255,255,255,.68);
}

.longtail-hero h1 {
  max-width: 860px;
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 78px);
  line-height: 1;
}

.longtail-hero p {
  max-width: 760px;
  color: rgba(255,255,255,.76);
  font-size: 19px;
  line-height: 1.7;
}

.longtail-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 110px rgba(0,0,0,.35);
}

.longtail-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.longtail-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  color: #fff;
  background: rgba(3,8,18,.72);
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.longtail-answer-section {
  background: #f6f8fc;
}

.longtail-answer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .62fr);
  gap: 22px;
}

.longtail-signal-stack {
  display: grid;
  gap: 14px;
}

.longtail-signal-stack div {
  padding: 22px;
  border: 1px solid rgba(10,20,40,.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 58px rgba(15,23,42,.06);
}

.longtail-signal-stack strong {
  display: block;
  font-size: 21px;
  line-height: 1.24;
}

.longtail-signal-stack span {
  display: block;
  margin-top: 10px;
  color: var(--color-gray2);
  line-height: 1.58;
}

.article-topic-links {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid rgba(10,20,40,.1);
  border-radius: 22px;
  background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
}

.article-topic-links > span {
  color: var(--color-c-brand2);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-topic-links h2 {
  margin: 10px 0 18px;
  font-size: 30px;
  line-height: 1.12;
}

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

.article-topic-grid a {
  display: grid;
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(10,20,40,.1);
  border-radius: 16px;
  background: #fff;
  transition: transform .22s ease, border-color .22s ease;
}

.article-topic-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(22,100,255,.34);
}

.article-topic-grid span {
  color: var(--color-c-brand2);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-topic-grid strong {
  margin-top: 12px;
  color: var(--color-c-black);
  font-size: 18px;
  line-height: 1.24;
}

.article-topic-grid small {
  margin-top: 10px;
  color: var(--color-gray2);
  font-size: 13px;
  line-height: 1.5;
}

.case-hero {
  background: #05070c;
  color: #fff;
  padding: 86px 0;
}
.case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, .7fr);
  gap: 62px;
  align-items: center;
}
.case-hero h1 {
  max-width: 800px;
  color: #fff;
  font-size: clamp(44px, 6vw, 80px);
}
.case-hero p {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.6;
}
.case-hero-panel,
.case-chart-card,
.case-study-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.03));
  box-shadow: 0 30px 80px rgba(0,0,0,.28);
}
.case-hero-panel {
  min-height: 430px;
  padding: 28px;
}
.case-hero-panel > span {
  color: #7fb2ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.case-orbit {
  position: relative;
  height: 220px;
  margin: 30px 0;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(22,100,255,.56), rgba(22,100,255,.08) 42%, transparent 43%);
}
.case-orbit i {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  animation: case-orbit 9s linear infinite;
}
.case-orbit i:nth-child(2) {
  inset: 54px;
  animation-duration: 6s;
  animation-direction: reverse;
}
.case-orbit i:nth-child(3) {
  inset: 88px;
  background: #fff;
  border: 0;
  animation: pulse-dot 1.8s ease-in-out infinite;
}
.case-hero-panel dl,
.case-study-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.case-score-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.case-hero-panel dl {
  margin: 0;
}
.case-hero-panel div,
.case-score-grid div,
.case-study-card dl div {
  min-width: 0;
}
.case-hero-panel dt {
  font-size: 32px;
  line-height: 1;
  font-weight: 850;
}
.case-hero-panel dd {
  margin: 8px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 12px;
  text-transform: uppercase;
}
.case-scoreboard {
  background: #fff;
  padding: 34px 0;
}
.case-score-grid div {
  border-left: 1px solid var(--line);
  padding: 16px 22px;
}
.case-score-grid div:last-child {
  border-right: 1px solid var(--line);
}
.case-score-grid strong {
  display: block;
  color: var(--brand);
  font-size: 44px;
  line-height: 1;
}
.case-score-grid span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 760;
}
.case-dashboard-section,
.case-method-section {
  background: #f6f7f9;
}
.case-dashboard-grid,
.case-method-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1fr);
  gap: 54px;
  align-items: start;
}
.case-dashboard-grid h2,
.case-method-grid h2 {
  margin-top: 12px;
  font-size: 44px;
}
.case-dashboard-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}
.case-chart-card {
  border-color: var(--line);
  background: #fff;
  padding: 28px;
  box-shadow: var(--shadow);
}
.case-bar-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 52px;
  gap: 14px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.case-bar-row:last-child {
  border-bottom: 0;
}
.case-bar-row span {
  color: var(--color-c-black);
  font-weight: 760;
}
.case-bar-row i {
  height: 10px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--brand), #009ba6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(.2,.75,.18,1);
}
.case-chart-card.is-active .case-bar-row i {
  transform: scaleX(calc(var(--target) / 100));
}
.case-bar-row strong {
  text-align: right;
}
.case-study-cards-section {
  background: #fff;
}
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-study-card {
  border-color: var(--line);
  background: #fff;
  color: var(--color-c-black);
  box-shadow: none;
}
.case-study-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.case-study-card > div {
  padding: 24px;
}
.case-study-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.case-study-card h3 {
  margin-top: 12px;
  min-height: 112px;
  font-size: 22px;
  line-height: 1.22;
}
.case-study-card dl {
  margin: 24px 0 0;
}
.case-study-card dt {
  font-size: 28px;
  font-weight: 850;
}
.case-study-card dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.case-method-steps {
  display: grid;
  gap: 14px;
}
.case-method-steps div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
}
.case-method-steps strong {
  color: var(--brand);
  font-size: 12px;
  letter-spacing: .12em;
}
.case-method-steps h3 {
  margin-top: 12px;
  font-size: 24px;
}
.case-method-steps p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  background: var(--color-c-black);
  color: #fff;
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 44px;
}
.footer-grid p { margin-top: 16px; color: rgba(255,255,255,.66); }
.footer-grid h2 {
  font-size: 15px;
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.74);
  margin: 10px 0;
}
.footer-brand { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 44px;
  padding-top: 22px;
  color: rgba(255,255,255,.55);
  font-size: 13px;
}

@media (max-width: 940px) {
  h1 { font-size: 48px; }
  .nav-toggle {
    display: inline-flex !important;
    position: static;
    margin-left: auto;
    z-index: 30;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    min-height: 40px;
    align-items: center;
    padding: 0 14px;
    font-weight: 760;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; gap: 8px; }
  .nav-cta { text-align: center; }
  .hero { padding-top: 44px; }
  .hero-grid, .section-heading, .proof-grid, .about-grid, .insights-layout, .article-shell, .contact-grid,
  .geo-hero-grid, .geo-two-col, .geo-dark-grid {
    grid-template-columns: 1fr;
  }
  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 170px 130px;
    width: 100%;
    overflow: hidden;
  }
  .service-grid, .article-grid, .list-grid, .service-detail-grid, .footer-grid, .case-grid,
  .geo-faq-grid, .geo-market-grid {
    grid-template-columns: 1fr 1fr;
  }
  .geo-hero-grid {
    gap: 34px;
  }
  .geo-hero-panel {
    min-width: 0;
  }
  .brand-strip div div { grid-template-columns: repeat(3, 1fr); }
  .category-rail, .article-aside { position: static; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: 40px; }
  .hero-copy { width: min(100%, 340px); }
  .hero-copy h1 { font-size: var(--text-s-title); line-height: var(--leading-s-title); max-width: 340px; }
  .hero-copy p { max-width: 340px; }
  h2 { font-size: 31px; }
  .hero-copy p, .page-hero p { font-size: 18px; }
  .hero-proof { grid-template-columns: 1fr; gap: 12px; margin-top: 34px; }
  .hero-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 160px 150px 150px 122px;
    max-width: 100%;
  }
  .collage-main, .collage-live, .collage-plan, .collage-dashboard, .collage-wide {
    grid-column: 1;
    grid-row: auto;
  }
  .collage-wide { display: none; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .brand-strip strong { font-size: var(--text-base); }
  .section-heading.with-link {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }
  .section { padding: 66px 0; }
  .service-grid, .article-grid, .list-grid, .service-detail-grid, .footer-grid, .case-grid,
  .geo-card-grid, .geo-faq-grid, .geo-market-grid, .article-geo-grid {
    grid-template-columns: 1fr;
  }
  .geo-hero {
    padding: 56px 0 48px;
  }
  .geo-hero h1 {
    font-size: 36px;
  }
  .geo-hero p {
    font-size: 17px;
  }
  .geo-hero-panel {
    padding: 22px;
  }
  .geo-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .geo-final-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-geo-brief {
    padding: 22px;
  }
  .brand-strip div div { grid-template-columns: repeat(2, 1fr); }
  .final-cta-inner { flex-direction: column; align-items: flex-start; }
  .article-shell { gap: 38px; }
  .article-content, .article-content p { font-size: 17px; }
  .article-hero {
    padding: 46px 0 34px;
  }
  .article-hero::before {
    left: 14px;
    right: 14px;
    top: 34px;
    height: 210px;
  }
  .article-breadcrumbs {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .article-hero h1 {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
  }
  .article-hero p {
    max-width: 100%;
    font-size: 17px;
  }
  .article-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .article-content .article-trust-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "copy"
      "primary"
      "secondary";
    padding: 22px;
  }
  .article-content .article-trust-panel a {
    justify-self: stretch;
    text-align: center;
    white-space: normal;
  }
  .footer-bottom { flex-direction: column; }
}

/* Refined homepage */
.home-hero {
  position: relative;
  isolation: isolate;
  min-height: 810px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 22%, rgba(0,212,223,.18), transparent 30%),
    radial-gradient(circle at 28% 68%, rgba(22,100,255,.2), transparent 34%),
    #05070c;
  color: #fff;
  padding: 116px 0 42px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}
.home-hero::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,7,12,.98) 0%, rgba(5,7,12,.88) 34%, rgba(5,7,12,.2) 66%, rgba(5,7,12,.08) 100%),
    linear-gradient(0deg, rgba(5,7,12,.9), rgba(5,7,12,.18) 46%, rgba(5,7,12,.44)),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
}
.home-hero::after {
  inset: auto -8% -24% 30%;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0,212,223,.34), rgba(22,100,255,.14) 42%, transparent 72%);
  filter: blur(30px);
  animation: hero-wave-flow 13s ease-in-out infinite alternate;
}
.home-hero-network {
  position: absolute;
  inset: 58px -5% 0 auto;
  z-index: -2;
  width: min(76vw, 1080px);
  height: min(64vw, 720px);
  opacity: .98;
  transform: translate3d(calc(var(--hero-pan-x, 0) * 1px), calc(var(--hero-pan-y, 0) * 1px), 0) scale(1.035);
  transition: transform .18s ease-out;
}
.home-hero-network::before,
.home-hero-network::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.home-hero-network::before {
  inset: 0 -6% -12% 10%;
  border-radius: 50%;
  background:
    conic-gradient(from 148deg, transparent, rgba(0,212,223,.42), rgba(22,100,255,.3), transparent 62%),
    radial-gradient(circle, transparent 57%, rgba(255,255,255,.16) 58%, transparent 61%);
  opacity: .62;
  animation: market-ring-flow 26s linear infinite;
}
.home-hero-network::after {
  inset: 18% 8% 10% 4%;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,212,223,.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at center, #000 18%, rgba(0,0,0,.72) 48%, transparent 76%);
}
.hero-network-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 34px 70px rgba(0,0,0,.38));
}
.hero-land {
  fill: rgba(102,233,255,.15);
  stroke: rgba(102,233,255,.54);
  stroke-width: 1.7;
}
.hero-land-soft {
  fill: rgba(22,100,255,.16);
  stroke: rgba(255,255,255,.2);
}
.hero-arc {
  fill: none;
  stroke: url(#heroArc);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 12 18;
  animation: hero-arc-drift 7.4s linear infinite;
}
.hero-arc-two {
  animation-delay: -2.2s;
  opacity: .72;
}
.hero-arc-three {
  animation-delay: -4.6s;
  opacity: .56;
}
.hero-node {
  fill: url(#heroNode);
  filter: drop-shadow(0 0 16px rgba(102,233,255,.95));
  animation: command-node-pulse 2.7s ease-in-out infinite;
  animation-delay: var(--node-delay);
}
.hero-light-field {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.hero-light-field i {
  position: absolute;
  left: 50%;
  right: -12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,212,223,.82), rgba(255,255,255,.7), transparent);
  transform: translate3d(calc(var(--hero-line-x, 0) * 1px), 0, 0) rotate(var(--line-rotate, -8deg));
  opacity: .34;
  animation: hero-line-flow 8s ease-in-out infinite;
}
.hero-light-field i:nth-child(1) { top: 24%; --line-rotate: -12deg; }
.hero-light-field i:nth-child(2) { top: 48%; --line-rotate: 7deg; animation-delay: -2.4s; }
.hero-light-field i:nth-child(3) { top: 72%; --line-rotate: -4deg; animation-delay: -4.2s; }
.home-hero-cinematic {
  --hero-pan-x: 0;
  --hero-pan-y: 0;
  --hero-line-x: 0;
}
.home-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .46fr);
  gap: 56px;
  align-items: center;
  min-height: 600px;
  min-width: 0;
}
.home-hero-grid > * {
  min-width: 0;
}
.home-news-priority {
  position: relative;
  overflow: hidden;
}
.home-news-priority::before {
  content: "";
  position: absolute;
  inset: 20px max(20px, calc((100vw - var(--container)) / 2));
  z-index: -1;
  border: 1px solid rgba(22,100,255,.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 15% 18%, rgba(22,100,255,.1), transparent 28%),
    linear-gradient(90deg, rgba(22,100,255,.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0,212,223,.04) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
}
.market-impact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(22,100,255,.24), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(0,212,223,.16), transparent 30%),
    #05070c;
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.market-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(22,100,255,.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(0,212,223,.14), transparent 30%),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
  animation: signal-grid-drift 24s linear infinite;
}
.market-impact::after {
  content: "";
  position: absolute;
  inset: 8% 4% auto auto;
  width: min(620px, 62vw);
  height: min(620px, 62vw);
  border-radius: 50%;
  background:
    conic-gradient(from 150deg, transparent, rgba(0,212,223,.32), rgba(22,100,255,.5), transparent 62%),
    radial-gradient(circle, transparent 58%, rgba(255,255,255,.18) 59%, transparent 62%);
  filter: blur(.2px);
  opacity: .42;
  animation: market-ring-flow 20s linear infinite;
  pointer-events: none;
}
.market-impact .container,
.market-impact .section-heading {
  position: relative;
  z-index: 2;
}
.market-impact .section-heading h2,
.market-impact .section-heading p {
  color: #fff;
}
.market-impact-heading p {
  max-width: 740px;
  margin-top: 14px;
  color: rgba(255,255,255,.66);
}
.market-impact .text-link {
  color: #66e9ff;
}
.market-impact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .82fr);
  gap: 18px;
}
.market-map-panel,
.market-orbit-panel,
.market-region-panel {
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.042));
  box-shadow: 0 28px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.market-map-panel {
  grid-row: span 2;
  padding: 24px;
}
.market-map-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.market-map-header span,
.market-orbit-copy span {
  color: #66e9ff;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.market-map-header strong {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}
.market-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.market-filter-tabs button {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.72);
  padding: 9px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  transition: background .22s ease, border-color .22s ease, color .22s ease, transform .22s ease;
}
.market-filter-tabs button:hover,
.market-filter-tabs button.is-active {
  border-color: rgba(102,233,255,.62);
  background: rgba(102,233,255,.16);
  color: #fff;
  transform: translateY(-1px);
}
.market-bars {
  display: grid;
  gap: 10px;
}
.market-bar {
  width: 100%;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 14px;
  background: rgba(5,7,12,.32);
  color: inherit;
  cursor: pointer;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr) 76px;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  text-align: left;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}
.market-bar:hover {
  border-color: rgba(102,233,255,.45);
  background: rgba(255,255,255,.08);
  transform: translateX(4px);
}
.market-bar span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  font-weight: 750;
}
.market-bar span em {
  display: grid;
  place-items: center;
  width: 34px;
  height: 24px;
  border-radius: 999px;
  background: rgba(102,233,255,.13);
  color: #66e9ff;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0;
}
.market-bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}
.market-bar-track b {
  display: block;
  width: calc(var(--bar-value, 0) * 1%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00d4df, #1664ff, #fff);
  box-shadow: 0 0 24px rgba(0,212,223,.45);
  transform-origin: left center;
  animation: market-bar-rise .76s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: var(--bar-delay, 0ms);
}
.market-bar strong {
  color: #fff;
  font-size: 14px;
  text-align: right;
}
.market-bar small {
  grid-column: 2 / 4;
  margin-top: -3px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
  font-weight: 700;
}
.market-orbit-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 250px;
  padding: 22px;
}
.market-orbit {
  position: relative;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(102,233,255,.24), rgba(22,100,255,.12) 45%, transparent 70%),
    conic-gradient(from 120deg, rgba(102,233,255,.08), rgba(22,100,255,.22), rgba(255,255,255,.06), rgba(102,233,255,.08));
}
.market-orbit::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(102,233,255,.36);
  border-radius: 50%;
  animation: case-orbit 10s linear infinite;
}
.market-orbit-core {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(5,7,12,.7);
  color: #fff;
  font-size: 13px;
  font-weight: 920;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 22px rgba(102,233,255,.18), 0 18px 40px rgba(0,0,0,.2);
}
.market-node {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--node-size, 28px);
  height: var(--node-size, 28px);
  border: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, #66e9ff 32%, #1664ff 72%);
  box-shadow: 0 0 28px rgba(102,233,255,.6);
  transform: translate(-50%, -50%) rotate(var(--node-angle)) translateX(var(--node-radius)) rotate(calc(var(--node-angle) * -1));
  cursor: pointer;
}
.market-node span {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  color: rgba(255,255,255,.8);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.market-orbit-copy h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
}
.market-orbit-copy p {
  margin-top: 12px;
  color: rgba(255,255,255,.68);
}
.market-kpi-row {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.11);
}
.market-kpi-row strong {
  color: #fff;
  font-size: 18px;
}
.market-kpi-row span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
}
.market-region-panel {
  padding: 22px;
}
.market-region-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.market-region-head span {
  color: #66e9ff;
  font-size: 12px;
  font-weight: 840;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.market-region-head strong {
  color: #fff;
  font-size: 14px;
}
.market-region-chart {
  display: grid;
  gap: 11px;
}
.market-region-row {
  display: grid;
  grid-template-columns: 126px 1fr 54px;
  gap: 12px;
  align-items: center;
}
.market-region-row span {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 740;
}
.market-region-row i {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
}
.market-region-row i b {
  display: block;
  width: calc(var(--region-value, 0) * 1%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1664ff, #00d4df);
  animation: market-bar-rise .76s cubic-bezier(.2,.8,.2,1) both;
  animation-delay: var(--bar-delay, 0ms);
}
.market-region-row strong {
  color: #fff;
  font-size: 13px;
  text-align: right;
}
.market-region-panel p {
  margin-top: 16px;
  color: rgba(255,255,255,.54);
  font-size: 12px;
}
.market-error {
  color: rgba(255,255,255,.7);
}
.home-hero-copy h1 {
  max-width: 780px;
  font-size: 76px;
  line-height: .99;
  letter-spacing: 0;
  overflow-wrap: break-word;
  color: #fff;
  text-wrap: balance;
}
.home-hero-copy h1 span {
  display: block;
}
.home-hero-copy p {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255,255,255,.76);
  font-size: 20px;
  line-height: 1.58;
  overflow-wrap: anywhere;
}
.home-hero-copy .actions {
  margin-top: 38px;
}
.hero-signal-panel {
  position: relative;
  align-self: end;
  justify-self: end;
  width: 100%;
  max-width: 470px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.05)),
    rgba(5,7,12,.52);
  color: #fff;
  padding: 26px;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
  backdrop-filter: blur(18px);
}
.hero-signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--shine-x, 78%) var(--shine-y, 18%), rgba(0,212,223,.24), transparent 34%),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
  opacity: .7;
  pointer-events: none;
}
.hero-signal-panel > * {
  position: relative;
  z-index: 1;
}
.hero-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.hero-panel-head span {
  color: #66e9ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-panel-head strong {
  max-width: 150px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}
.hero-panel-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 30px;
}
.hero-panel-metrics div {
  min-height: 112px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  background: rgba(5,7,12,.46);
  padding: 16px;
}
.hero-panel-metrics strong {
  display: block;
  color: #fff;
  font-size: 34px;
  line-height: 1;
}
.hero-panel-metrics span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.25;
  text-transform: uppercase;
}
.hero-market-strip {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto 1fr auto;
  gap: 9px;
  align-items: center;
  margin-top: 24px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}
.hero-market-strip i {
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.hero-market-strip i::before {
  content: "";
  display: block;
  width: 54%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #00d4df, #1664ff);
  animation: hero-market-flow 2.4s ease-in-out infinite alternate;
}
.hero-market-strip i:nth-of-type(2)::before { animation-delay: -.5s; }
.hero-market-strip i:nth-of-type(3)::before { animation-delay: -1s; }
.hero-market-strip i:nth-of-type(4)::before { animation-delay: -1.5s; }
.hero-signal-panel p {
  margin-top: 24px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.hero-proof-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(16px);
}
.hero-proof-rail div {
  min-height: 104px;
  background: rgba(5,7,12,.54);
  padding: 22px 24px;
}
.hero-proof-rail strong {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}
.hero-proof-rail span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.4;
}
.cred-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 620px;
  margin-top: 46px;
}
.cred-row div {
  min-height: 74px;
  border-left: 1px solid rgba(255,255,255,.22);
  padding-left: 18px;
}
.cred-row strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}
.cred-row span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.35;
}
.home-hero .actions .button.primary {
  background: #fff;
  border-color: #fff;
  color: var(--color-c-black);
  box-shadow: 0 18px 34px rgba(0,0,0,.24);
}
.home-hero .actions .button.secondary {
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.home-hero .actions .button.secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}
.editorial-hero {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: 190px 210px 150px;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
}
.editorial-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  box-shadow: 0 24px 60px rgba(0,0,0,.28);
}
.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-card-large { grid-column: 1; grid-row: 1; }
.editorial-card-live { grid-column: 2; grid-row: 1; }
.command-status {
  position: absolute;
  right: 12px;
  top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 4px;
  background: rgba(5,7,12,.68);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  padding: 6px 8px;
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(12px);
  z-index: 3;
}
.command-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00d4df;
  box-shadow: 0 0 0 0 rgba(0,212,223,.72);
  animation: command-status-pulse 1.55s ease-out infinite;
}
.hero-command-visual {
  position: relative;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22,100,255,.18), transparent 42%),
    radial-gradient(ellipse at var(--command-x, 72%) var(--command-y, 28%), rgba(0,212,223,.22), transparent 36%),
    #05070c;
}
.hero-command-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .54;
  transform: translate3d(calc(var(--command-drift, 0) * 1px), 0, 0);
}
.hero-command-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 6px;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255,255,255,.11) 36% 37%, transparent 37% 100%),
    linear-gradient(165deg, transparent 0 58%, rgba(0,212,223,.22) 58% 59%, transparent 59% 100%);
  opacity: .78;
}
.command-orbit {
  position: absolute;
  inset: 22px 18px 20px;
  z-index: 1;
}
.command-orbit i {
  position: absolute;
  border: 1px solid rgba(0,212,223,.28);
  border-radius: 50%;
  transform: rotate(var(--angle, 0deg));
  animation: command-scan 9s ease-in-out infinite alternate;
}
.command-orbit i:nth-child(1) {
  width: 78%;
  height: 58%;
  left: 10%;
  top: 18%;
  --angle: -18deg;
}
.command-orbit i:nth-child(2) {
  width: 64%;
  height: 44%;
  left: 18%;
  top: 29%;
  --angle: 20deg;
  animation-delay: -.8s;
}
.command-orbit i:nth-child(3) {
  width: 86%;
  height: 34%;
  left: 6%;
  top: 36%;
  --angle: 6deg;
  animation-delay: -1.4s;
}
.command-orbit i:nth-child(4) {
  width: 42%;
  height: 78%;
  left: 28%;
  top: 12%;
  --angle: 54deg;
  animation-delay: -2.1s;
}
.command-map {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.command-map b {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(0,212,223,.95), 0 0 36px rgba(22,100,255,.42);
  animation: command-node-pulse 2.6s ease-in-out infinite;
  animation-delay: var(--delay);
}
.command-map b::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.8), transparent);
  transform-origin: left center;
  transform: rotate(calc((var(--x, 50%) - 45%) * 1deg));
}
.command-metrics {
  position: absolute;
  z-index: 3;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0;
}
.command-metrics div {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  background: rgba(5,7,12,.58);
  padding: 10px;
  backdrop-filter: blur(12px);
}
.command-metrics dt {
  color: #fff;
  font-size: 21px;
  font-weight: 900;
  line-height: 1;
}
.command-metrics dd {
  margin: 5px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.editorial-card-metrics {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 14px;
  padding: 24px;
  background: #05070a;
  color: #fff;
}
.editorial-card-metrics > span {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.editorial-card-metrics div:not(.sparkline) {
  border-radius: 6px;
  background: rgba(255,255,255,.07);
  padding: 14px;
}
.editorial-card-metrics strong {
  display: block;
  font-size: 28px;
  line-height: 1;
}
.editorial-card-metrics small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.64);
  font-size: 12px;
  text-transform: uppercase;
}
.sparkline {
  position: relative;
  grid-column: 1 / -1;
  height: 60px;
  margin-top: 4px;
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,0));
}
.sparkline i {
  position: absolute;
  left: 0;
  right: 0;
  top: 32px;
  height: 3px;
  background: #16d3df;
  transform: skewY(-8deg);
}
.sparkline i:nth-child(2) {
  top: 42px;
  background: var(--brand2);
  transform: skewY(7deg);
}
.editorial-card-wide {
  grid-column: 1 / -1;
  grid-row: 3;
}
.brand-strip.refined {
  padding: 48px 0;
  background:
    linear-gradient(90deg, rgba(22,100,255,.05), transparent 35%, rgba(0,212,223,.06)),
    #fff;
  border-top: 1px solid rgba(20,20,20,.08);
  border-bottom: 1px solid rgba(20,20,20,.08);
}
.brand-strip.refined .container {
  display: grid;
  grid-template-columns: minmax(260px, .44fr) 1fr;
  gap: 34px;
  align-items: center;
}
.brand-strip-head span {
  display: block;
  color: #009ba6;
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.brand-strip-head p {
  margin-top: 12px;
  max-width: 430px;
  color: rgba(20,20,20,.62);
  font-size: 15px;
  line-height: 1.55;
}
.brand-logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  text-align: initial;
  color: inherit;
}
.brand-wordmark {
  display: grid;
  place-items: center;
  min-height: 86px;
  border: 1px solid rgba(20,20,20,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.78);
  color: rgba(20,20,20,.78);
  font-weight: 860;
  line-height: 1;
  text-align: center;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  box-shadow: 0 18px 42px rgba(20,20,20,.06);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.brand-wordmark:hover {
  transform: translateY(-4px);
  border-color: rgba(22,100,255,.28);
  box-shadow: 0 24px 58px rgba(20,20,20,.11);
}
.brand-wordmark.anker {
  color: #00a9e8;
  font-size: 23px;
  letter-spacing: .04em;
}
.brand-wordmark.brex {
  font-size: 21px;
}
.brand-wordmark.bounty {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.05;
}
.brand-wordmark.halara {
  font-size: 24px;
  font-weight: 720;
}
.brand-wordmark.pacsun {
  font-size: 18px;
  letter-spacing: .34em;
}
.brand-wordmark.eufy {
  color: rgba(20,20,20,.58);
  font-size: 25px;
}
.brand-wordmark.eufy span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
}
.home-video-studio {
  background: #f6f7f9;
  padding-top: 96px;
  padding-bottom: 104px;
}
.video-studio-grid {
  display: grid;
  grid-template-columns: minmax(410px, 1.08fr) repeat(4, minmax(150px, .48fr));
  grid-auto-rows: 610px;
  gap: 18px;
}
.video-studio-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111827;
  color: #fff;
  box-shadow: 0 28px 70px rgba(20,20,20,.14);
}
.video-studio-card.featured {
  min-height: 610px;
}
.video-studio-card.portrait {
  border-radius: 20px;
  background: radial-gradient(circle at 50% 20%, rgba(22,100,255,.2), #05070c 62%);
}
.video-studio-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .9;
  transform: scale(1.01);
  transition: transform .55s ease, opacity .32s ease;
}
.video-studio-card:hover video,
.video-studio-card.is-playing video {
  opacity: .98;
  transform: scale(1.045);
}
.video-studio-card.portrait video {
  object-position: center top;
}
.video-studio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,12,.03), rgba(5,7,12,.18) 40%, rgba(5,7,12,.82)),
    radial-gradient(circle at 20% 20%, rgba(22,100,255,.22), transparent 34%);
  pointer-events: none;
}
.video-studio-card > div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
}
.video-studio-card.portrait > div {
  left: 14px;
  right: 14px;
  bottom: 16px;
}
.video-studio-card span {
  color: #7fb2ff;
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .12em;
}
.video-studio-card h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 24px;
}
.video-studio-card.portrait h3 {
  font-size: 20px;
}
.video-studio-card p {
  margin-top: 10px;
  color: rgba(255,255,255,.72);
  line-height: 1.52;
}
.video-studio-card.portrait p {
  font-size: 14px;
}
.video-toggle {
  position: absolute;
  z-index: 2;
  right: 16px;
  top: 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(0,0,0,.42);
  color: #fff;
  padding: 9px 13px;
  font: inherit;
  font-size: 12px;
  font-weight: 820;
  cursor: pointer;
  backdrop-filter: blur(12px);
}
.video-toggle:hover {
  background: rgba(255,255,255,.14);
}
.home-visual-story {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(22,100,255,.06), transparent 38%),
    #f6f7f9;
  padding-top: 96px;
  padding-bottom: 104px;
}
.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, .52fr);
  gap: 22px;
  align-items: stretch;
}
.visual-story-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
  background: #05070c;
  box-shadow: 0 30px 84px rgba(20,20,20,.16);
}
.visual-story-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform .7s ease;
}
.visual-story-image:hover img {
  transform: scale(1.04);
}
.visual-story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(5,7,12,.84)),
    linear-gradient(90deg, rgba(5,7,12,.22), transparent 42%);
  pointer-events: none;
}
.visual-story-image figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
}
.visual-story-image figcaption span,
.visual-story-panel > span {
  display: block;
  color: #00d4df;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.visual-story-image figcaption strong {
  display: block;
  max-width: 720px;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.1;
}
.visual-story-panel {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 12%, rgba(0,212,223,.2), transparent 30%),
    linear-gradient(135deg, #05070c, #111827);
  color: #fff;
  padding: 30px;
  box-shadow: 0 30px 74px rgba(20,20,20,.18);
}
.visual-story-panel h3 {
  margin-top: 18px;
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
}
.visual-story-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.visual-story-points div {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 14px;
}
.visual-story-points strong {
  color: #7fb2ff;
  font-size: 13px;
  font-weight: 900;
}
.visual-story-points p {
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.5;
}
.home-live-intel {
  background:
    radial-gradient(circle at 18% 18%, rgba(22,100,255,.22), transparent 34%),
    linear-gradient(135deg, #05070c 0%, #111827 48%, #05070c 100%);
  color: #fff;
  padding-top: 108px;
  padding-bottom: 112px;
}
.live-intel-shell {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}
.live-intel-copy {
  position: sticky;
  top: 108px;
}
.home-live-intel .eyebrow {
  color: #6fe8ff;
}
.live-intel-copy h2 {
  margin-top: 14px;
  color: #fff;
  font-size: clamp(40px, 5vw, 72px);
  line-height: .96;
  max-width: 620px;
}
.live-intel-copy p {
  margin-top: 22px;
  color: rgba(255,255,255,.7);
  font-size: 18px;
  line-height: 1.58;
  max-width: 560px;
}
.live-intel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.live-intel-stats div {
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  padding: 16px;
  backdrop-filter: blur(18px);
}
.live-intel-stats strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.live-intel-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.live-intel-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 255px;
  gap: 16px;
  min-width: 0;
}
.live-player,
.live-channel-card,
.live-signal-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(20px);
}
.live-player {
  overflow: hidden;
  border-radius: 22px;
}
.live-player-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(22,100,255,.18), rgba(5,7,12,.9)),
    #05070c;
  background-size: auto, auto;
  background-position: center;
}
.live-player-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.55), transparent 70%);
}
.live-player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
}
.live-video-start {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(5,7,12,.72);
  color: #fff;
  padding: 13px 18px;
  font: inherit;
  font-size: 13px;
  font-weight: 840;
  cursor: pointer;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(16px);
}
.live-video-start::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #66e9ff;
}
.live-video-start:hover {
  border-color: rgba(102,233,255,.7);
  background: rgba(5,7,12,.86);
}
.live-player-frame.is-loaded .live-video-start {
  display: none;
}
.live-player-meta {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: rgba(5,7,12,.86);
}
.live-player-meta span,
.live-channel-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-style: normal;
  font-weight: 840;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.live-player-meta span i,
.live-channel-card small i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef2d45;
  box-shadow: 0 0 0 0 rgba(239,45,69,.72);
  animation: live-pulse 1.35s ease-out infinite;
}
.live-player-meta strong {
  color: #fff;
  font-size: 25px;
}
.live-player-meta p {
  color: rgba(255,255,255,.65);
  line-height: 1.52;
}
.live-channel-stack {
  display: grid;
  gap: 12px;
}
.live-channel-card {
  width: 100%;
  min-height: 118px;
  border-radius: 16px;
  color: #fff;
  padding: 17px;
  text-align: left;
  cursor: pointer;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.live-channel-card::after,
.live-signal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 0%), rgba(255,255,255,.18), transparent 38%);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
.live-channel-card:hover::after,
.live-signal-card:hover::after,
.live-channel-card.is-active::after {
  opacity: 1;
}
.live-channel-card.is-active {
  border-color: rgba(111,232,255,.72);
  background: rgba(22,100,255,.23);
}
.live-channel-card span {
  color: #6fe8ff;
  font-size: 11px;
  font-weight: 880;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.live-channel-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 19px;
}
.live-channel-card small {
  margin-top: 15px;
  color: rgba(255,255,255,.56);
}
.live-signal-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.live-signal-card {
  min-height: 205px;
  overflow: hidden;
  border-radius: 18px;
  padding: 20px;
}
.live-signal-card span {
  color: #6fe8ff;
  font-size: 11px;
  font-weight: 880;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.live-signal-card strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 21px;
  line-height: 1.16;
}
.live-signal-card p {
  margin-top: 12px;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.5;
}
.live-signal-card em {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(255,255,255,.2);
  font-size: 38px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -.03em;
}
.refined-heading .eyebrow {
  margin-bottom: 12px;
}
.home-services,
.home-cases,
.home-about {
  background: #fff;
}
.home-intel-runway {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(22,100,255,.1), transparent 24%),
    radial-gradient(circle at 86% 48%, rgba(0,212,223,.1), transparent 28%),
    linear-gradient(180deg, #f7f9fc 0%, #fff 43%, #f6f8fb 100%);
}
.home-intel-runway::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22,100,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(1,47,167,.04) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,.72) 15%, rgba(0,0,0,.42) 78%, transparent);
  pointer-events: none;
}
.home-intel-runway > .section {
  position: relative;
  z-index: 1;
  background: transparent;
}
.home-insights {
  padding-bottom: 42px;
}
.home-latest-news {
  padding-top: 42px;
  padding-bottom: 48px;
}
.home-video-studio {
  padding-top: 50px;
}
.refined-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.refined-service-card {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.refined-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22,100,255,.38);
  box-shadow: var(--shadow);
}
.service-index {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .12em;
}
.refined-service-card h3 {
  font-size: 22px;
  line-height: 1.15;
}
.refined-service-card p {
  margin-top: 12px;
  color: var(--color-gray2);
  font-size: 15px;
  line-height: 1.55;
}
.refined-service-card .service-link {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 22px;
  color: #009ba6;
  font-size: 14px;
  font-weight: 780;
}
.refined-service-card .service-link::after {
  content: " →";
}
.refined-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.refined-case-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.refined-case-card img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}
.refined-case-card > div {
  position: relative;
  z-index: 1;
  padding: 24px;
}
.refined-case-card h3 {
  font-size: 18px;
  line-height: 1.2;
}
.refined-case-card p {
  margin-top: 12px;
  color: var(--color-gray2);
  font-size: 15px;
  line-height: 1.5;
}
.refined-case-card dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 24px 0 0;
}
.refined-case-card dt {
  color: var(--color-c-black);
  font-size: 28px;
  line-height: 1.1;
  font-weight: 780;
}
.refined-case-card dd {
  margin: 6px 0 0;
  color: var(--color-gray3);
  font-size: 12px;
  text-transform: uppercase;
}
.refined-insight-grid {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 20px;
}
.refined-insight-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.84);
  box-shadow: 0 24px 70px rgba(20,20,20,.08);
  backdrop-filter: blur(14px);
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s ease;
}
.refined-insight-card:hover {
  border-color: rgba(22,100,255,.28);
  transform: translateY(-7px);
  box-shadow: 0 28px 80px rgba(20,20,20,.13);
}
.refined-insight-card:first-child {
  grid-row: span 2;
  background: #05070c;
  color: #fff;
}
.refined-insight-card:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 30%, rgba(5,7,12,.92) 100%);
  pointer-events: none;
}
.refined-insight-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.refined-insight-card:first-child img {
  aspect-ratio: 16 / 15;
  min-height: 100%;
}
.refined-insight-card a {
  position: relative;
  z-index: 2;
  display: block;
}
.refined-insight-card:first-child a {
  min-height: 100%;
}
.refined-insight-card:first-child span,
.refined-insight-card:first-child h3,
.refined-insight-card:first-child p {
  position: relative;
  z-index: 3;
  color: #fff;
}
.refined-insight-card:first-child span {
  margin-top: -148px;
  color: #66e9ff;
}
.refined-insight-card:first-child h3 {
  max-width: 430px;
  font-size: 30px;
  line-height: 1.08;
}
.refined-insight-card:first-child p {
  max-width: 470px;
  color: rgba(255,255,255,.72);
}
.refined-insight-card span,
.refined-insight-card h3,
.refined-insight-card p {
  margin-left: 22px;
  margin-right: 22px;
}
.refined-insight-card span {
  display: block;
  margin-top: 22px;
  color: #009ba6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.refined-insight-card h3 {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.18;
}
.refined-insight-card p {
  margin-top: 12px;
  margin-bottom: 24px;
  color: var(--color-gray2);
  font-size: 15px;
  line-height: 1.5;
}

.latest-news-strip {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 14px;
}
.latest-news-strip article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  backdrop-filter: blur(12px);
}
.latest-news-strip article:first-child {
  grid-row: span 3;
}
.latest-news-strip article:hover {
  transform: translateY(-6px);
  border-color: rgba(1,47,167,.22);
  box-shadow: 0 22px 54px rgba(20,20,20,.1);
}
.latest-news-strip img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.latest-news-strip article:not(:first-child) a {
  display: grid;
  grid-template-columns: 152px 1fr;
  min-height: 138px;
}
.latest-news-strip article:not(:first-child) img {
  height: 100%;
  aspect-ratio: auto;
}
.latest-news-strip article:first-child img {
  aspect-ratio: 16 / 11;
}
.latest-news-strip div {
  padding: 20px;
}
.latest-news-strip span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.latest-news-strip h3 {
  margin-top: 12px;
  font-size: 19px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}
.latest-news-strip article:first-child h3 {
  font-size: 28px;
  line-height: 1.08;
}
.latest-news-strip p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-page-hero {
  background: var(--color-c-black);
  color: #fff;
  padding: 86px 0 78px;
}
.service-page-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1fr);
  gap: 68px;
  align-items: center;
}
.service-page-grid > * {
  min-width: 0;
}
.service-page-hero .breadcrumb {
  color: #7fb2ff;
  margin-bottom: 18px;
}
.service-page-hero h1 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(46px, 6vw, 82px);
}
.service-page-hero p {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
  line-height: 1.62;
}
.service-page-media {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,.36);
}
.service-page-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.02);
}
.service-proof-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-proof-grid div {
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}
.service-proof-grid div:last-child {
  border-right: 1px solid var(--line);
}
.service-proof-grid strong {
  display: block;
  color: var(--brand);
  font-size: 36px;
  line-height: 1;
}
.service-proof-grid span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.service-system-section {
  background: #f6f7f9;
}
.service-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-capability-grid article {
  min-height: 240px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 26px;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.service-capability-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(1,47,167,.24);
  box-shadow: 0 22px 54px rgba(20,20,20,.09);
}
.service-capability-grid span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 860;
  letter-spacing: .12em;
}
.service-capability-grid h3 {
  margin-top: 32px;
  font-size: 22px;
  line-height: 1.15;
}
.service-capability-grid p {
  margin-top: 14px;
  font-size: 15px;
}
.service-flow-section {
  background: var(--color-c-black);
  color: #fff;
}
.service-flow-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 70px;
}
.service-flow-grid h2 {
  color: #fff;
}
.service-flow-list {
  display: grid;
}
.service-flow-list div {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.service-flow-list span {
  width: 12px;
  height: 12px;
  margin-top: 8px;
  border-radius: 50%;
  background: #00d4df;
  box-shadow: 0 0 0 8px rgba(0,212,223,.12);
}
.service-flow-list p {
  color: rgba(255,255,255,.78);
  font-size: 22px;
}
.service-related-section {
  background: #fff;
}
.home-about {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 18%, rgba(22,100,255,.08), transparent 28%),
    linear-gradient(180deg, #fff, #f7f9fc);
}
.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  gap: 58px;
  align-items: center;
}
.home-about-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(20,20,20,.1);
  border-radius: 8px;
  background: #05070c;
  box-shadow: 0 30px 90px rgba(20,20,20,.14);
}
.home-about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(5,7,12,.86));
}
.home-about-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.home-about-media figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
}
.home-about-media figcaption span {
  display: block;
  color: #66e9ff;
  font-size: 12px;
  font-weight: 880;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.home-about-media figcaption strong {
  display: block;
  max-width: 520px;
  margin-top: 10px;
  font-size: 25px;
  line-height: 1.12;
}
.home-about h2 {
  max-width: 620px;
}
.home-about p {
  max-width: 660px;
  margin-top: 24px;
  color: var(--color-gray2);
  font-size: 18px;
  line-height: 1.62;
}
.about-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 30px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.about-proof-grid div {
  min-height: 128px;
  background: rgba(255,255,255,.86);
  padding: 22px;
}
.about-proof-grid strong {
  display: block;
  color: var(--brand);
  font-size: 14px;
}
.about-proof-grid span {
  display: block;
  margin-top: 34px;
  color: var(--color-c-black);
  font-size: 18px;
  line-height: 1.25;
  font-weight: 760;
}
.home-final-cta {
  padding: 0 0 84px;
  background: #fff;
}
.home-final-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  border-radius: var(--radius);
  background: var(--color-c-black);
  color: #fff;
  padding: 38px 42px;
}
.home-final-cta h2 {
  font-size: 34px;
  line-height: 1.12;
}
.home-final-cta p {
  margin-top: 10px;
  color: rgba(255,255,255,.7);
  font-size: 16px;
}

@media (max-width: 940px) {
  .home-hero-grid,
  .market-impact-grid,
  .home-about-grid,
  .visual-story-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .home-hero-copy h1 {
    max-width: 720px;
    font-size: 48px;
  }
  .home-hero {
    min-height: auto;
  }
  .home-hero-grid {
    min-height: auto;
  }
  .hero-signal-panel {
    max-width: 620px;
  }
  .hero-proof-rail {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }
  .editorial-hero {
    grid-template-rows: 170px 190px 130px;
  }
  .market-map-panel {
    grid-row: auto;
  }
  .newsroom-hero-grid,
  .news-featured-card a {
    grid-template-columns: 1fr;
  }
  .newsroom-stat-panel {
    grid-template-columns: 1fr 1fr;
  }
  .news-featured-card a {
    min-height: auto;
  }
  .news-featured-card img {
    aspect-ratio: 16 / 9;
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-page-grid,
  .service-flow-grid {
    grid-template-columns: 1fr;
  }
  .service-page-grid {
    gap: 38px;
  }
  .service-proof-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .service-capability-grid,
  .latest-news-strip,
  .case-hero-grid,
  .case-dashboard-grid,
  .case-method-grid,
  .services-hero-grid,
  .services-analytics-grid,
  .services-timeline-grid,
  .submission-card {
    grid-template-columns: 1fr 1fr;
  }
  .solution-hero-grid,
  .solution-answer-grid,
  .solution-faq-grid {
    grid-template-columns: 1fr;
  }
  .solution-step-grid,
  .solution-link-grid,
  .seo-hub-grid,
  .answer-hero-grid,
  .answer-trust-grid,
  .glossary-hero-grid,
  .glossary-term-hero-grid,
  .glossary-method-grid,
  .glossary-decision-grid,
  .glossary-faq-grid,
  .glossary-answer-grid,
  .longtail-hero-grid,
  .longtail-answer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .answer-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .answer-keyword-table,
  .glossary-term-grid,
  .answer-fact-list {
    grid-template-columns: 1fr;
  }
  .case-study-grid,
  .services-showcase-grid {
    grid-template-columns: 1fr;
  }
  .case-hero-grid,
  .case-dashboard-grid,
  .case-method-grid,
  .services-hero-grid,
  .services-analytics-grid,
  .services-timeline-grid,
  .video-studio-grid {
    gap: 38px;
  }
  .live-intel-shell {
    grid-template-columns: 1fr;
  }
  .live-intel-copy {
    position: relative;
    top: auto;
  }
  .live-intel-stage,
  .live-signal-grid {
    grid-column: auto;
  }
  .live-intel-stage {
    grid-template-columns: 1fr;
  }
  .live-channel-stack,
  .live-signal-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-studio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .video-studio-card.featured {
    grid-row: auto;
    min-height: 430px;
  }
  .video-studio-card.portrait {
    min-height: 620px;
  }
  .visual-story-image,
  .visual-story-image img,
  .visual-story-panel {
    min-height: 430px;
  }
  .case-hero-panel {
    min-height: 360px;
  }
  .refined-service-grid,
  .refined-case-grid,
  .refined-insight-grid {
    grid-template-columns: 1fr 1fr;
  }
  .refined-insight-card:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .about-hero-grid,
  .about-company-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }
  .about-hero-grid,
  .about-team-grid {
    gap: 38px;
  }
  .about-process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .solution-hero-grid,
  .solution-faq-grid {
    gap: 38px;
  }
  .brand-strip.refined .container,
  .home-about-grid {
    grid-template-columns: 1fr;
  }
  .brand-logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .home-about-media {
    order: -1;
  }
}

@media (max-width: 620px) {
  .home-hero {
    padding: 54px 0 28px;
  }
  .home-hero-network {
    inset: 110px -270px auto auto;
    width: 720px;
    height: 520px;
    opacity: .62;
  }
  .home-hero-copy h1 {
    width: 100%;
    max-width: 350px;
    font-size: 40px;
    line-height: 1.12;
  }
  .home-hero-copy h1 span {
    display: block;
  }
  .home-hero-copy,
  .home-hero-copy p,
  .home-hero .actions {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .home-hero-copy {
    width: calc(100vw - 28px);
  }
  .home-hero-grid {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    overflow: hidden;
  }
  .home-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 300px);
  }
  .home-hero .button {
    width: 100%;
  }
  .home-hero-copy p {
    width: 100%;
    max-width: 350px;
    font-size: 17px;
  }
  .hero-signal-panel {
    justify-self: stretch;
    width: 100%;
    max-width: calc(100vw - 28px);
    padding: 18px;
  }
  .hero-signal-panel p {
    max-width: calc(100vw - 66px);
  }
  .hero-panel-head {
    display: grid;
  }
  .hero-panel-head strong {
    max-width: none;
    text-align: left;
  }
  .hero-panel-metrics {
    grid-template-columns: 1fr;
  }
  .hero-panel-metrics div {
    min-height: auto;
  }
  .hero-market-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
  }
  .hero-market-strip i {
    display: none;
  }
  .hero-proof-rail div {
    min-height: auto;
    padding: 18px;
  }
  .cred-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 34px;
  }
  .cred-row div {
    min-height: auto;
  }
  .editorial-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 170px 170px 220px 120px;
    width: 100%;
    overflow: hidden;
  }
  .editorial-card {
    max-width: 100%;
  }
  .editorial-card-large,
  .editorial-card-live,
  .editorial-card-metrics,
  .editorial-card-wide {
    grid-column: 1;
    grid-row: auto;
  }
  .editorial-card-metrics {
    grid-template-columns: 1fr;
  }
  .editorial-card-metrics div:not(.sparkline) {
    min-width: 0;
  }
  .command-status {
    left: 12px;
    right: auto;
    max-width: calc(100% - 24px);
    font-size: 10px;
    letter-spacing: .08em;
    white-space: nowrap;
  }
  .hero-command-visual::after {
    inset: 10px;
  }
  .market-map-panel,
  .market-orbit-panel,
  .market-region-panel,
  .market-map-header,
  .market-impact .section-heading {
    min-width: 0;
    max-width: 100%;
  }
  .refined-service-grid,
  .refined-case-grid,
  .refined-insight-grid,
  .market-impact-grid,
  .about-proof-grid,
  .service-proof-grid,
  .service-capability-grid,
  .latest-news-strip,
  .case-hero-grid,
  .case-score-grid,
  .case-dashboard-grid,
  .case-method-grid,
  .case-study-grid,
  .services-hero-grid,
  .services-score-grid,
  .services-showcase-grid,
  .services-analytics-grid,
  .services-timeline-grid,
  .video-studio-grid,
  .live-intel-stage,
  .live-channel-stack,
  .live-signal-grid,
  .solution-hero-grid,
  .solution-answer-grid,
  .solution-step-grid,
  .solution-faq-grid,
  .solution-link-grid,
  .seo-hub-grid,
  .answer-hero-grid,
  .answer-card-grid,
  .answer-keyword-table,
  .answer-trust-grid,
  .answer-fact-list,
  .glossary-hero-grid,
  .glossary-term-hero-grid,
  .glossary-term-grid,
  .glossary-method-grid,
  .glossary-decision-grid,
  .glossary-faq-grid,
  .glossary-answer-grid,
  .longtail-hero-grid,
  .longtail-answer-grid,
  .article-topic-grid,
  .submission-card,
  .submission-meta {
    grid-template-columns: 1fr;
  }
  .solution-hero {
    padding: 92px 0 58px;
  }
  .solution-hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }
  .solution-hero p,
  .geo-answer-card p {
    font-size: 17px;
  }
  .solution-intel-card img {
    aspect-ratio: 16 / 10;
  }
  .solution-step-grid article,
  .solution-link-grid a,
  .seo-hub-grid a {
    min-height: auto;
  }
  .market-map-header,
  .market-orbit-panel {
    grid-template-columns: 1fr;
  }
  .market-impact-heading h2,
  .market-impact-heading p {
    max-width: calc(100vw - 28px);
    overflow-wrap: anywhere;
  }
  .market-impact-heading h2 {
    font-size: 30px;
    line-height: 1.12;
  }
  .market-map-header {
    align-items: start;
  }
  .market-filter-tabs {
    justify-content: flex-start;
  }
  .market-bar {
    grid-template-columns: 1fr 72px;
  }
  .market-bar span,
  .market-bar-track,
  .market-bar small {
    grid-column: 1 / 3;
  }
  .market-orbit {
    margin: 0 auto;
  }
  .home-live-intel {
    padding-top: 74px;
    padding-bottom: 78px;
  }
  .live-intel-copy h2 {
    font-size: 38px;
  }
  .live-intel-copy p {
    font-size: 16px;
  }
  .live-intel-stats {
    grid-template-columns: 1fr;
  }
  .live-player-frame {
    min-height: 220px;
  }
  .live-signal-card {
    min-height: 180px;
  }
  .video-studio-card,
  .video-studio-card.featured {
    min-height: 320px;
  }
  .video-studio-card.portrait {
    min-height: 700px;
  }
  .home-visual-story {
    padding-top: 72px;
    padding-bottom: 78px;
  }
  .visual-story-image,
  .visual-story-image img {
    min-height: 320px;
  }
  .visual-story-panel {
    min-height: auto;
    padding: 24px;
  }
  .visual-story-image figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .visual-story-image figcaption strong,
  .visual-story-panel h3 {
    font-size: 24px;
  }
  .visual-story-points div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .refined-insight-card:first-child {
    grid-column: auto;
  }
  .refined-insight-card:first-child img {
    aspect-ratio: 16 / 10;
  }
  .refined-insight-card:first-child span {
    margin-top: 22px;
  }
  .refined-insight-card:first-child::before {
    display: none;
  }
  .refined-insight-card:first-child {
    background: rgba(255,255,255,.88);
    color: var(--ink);
  }
  .refined-insight-card:first-child span {
    color: #009ba6;
  }
  .refined-insight-card:first-child h3,
  .refined-insight-card:first-child p {
    color: inherit;
  }
  .refined-insight-card:first-child p {
    color: var(--muted);
  }
  .latest-news-strip article:first-child {
    grid-row: auto;
  }
  .latest-news-strip article:not(:first-child) a {
    display: block;
  }
  .latest-news-strip article:not(:first-child) img {
    height: auto;
    aspect-ratio: 16 / 10;
  }
  .latest-news-strip article:first-child h3,
  .refined-insight-card:first-child h3 {
    font-size: 22px;
    line-height: 1.16;
  }
  .brand-strip.refined {
    padding: 36px 0;
  }
  .brand-strip.refined .container {
    gap: 24px;
  }
  .brand-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-wordmark {
    min-height: 72px;
  }
  .home-about-grid {
    gap: 28px;
  }
  .home-about-media img {
    aspect-ratio: 16 / 12;
  }
  .home-about-media figcaption {
    left: 18px;
    right: 18px;
    bottom: 16px;
  }
  .home-about-media figcaption strong {
    font-size: 20px;
  }
  .about-proof-grid {
    grid-template-columns: 1fr;
  }
  .about-hero {
    padding: 54px 0 50px;
  }
  .about-hero-copy h1 {
    max-width: 340px;
    font-size: 36px;
    line-height: 1.08;
  }
  .about-hero-copy p {
    max-width: 340px;
    font-size: 17px;
  }
  .about-hero-media img,
  .about-team-photo img {
    aspect-ratio: 16 / 12;
  }
  .about-hero-card {
    position: static;
    min-width: 0;
    border-radius: 0;
  }
  .company-info-panel div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .about-capability-list,
  .about-process-grid {
    grid-template-columns: 1fr;
  }
  .about-proof-band {
    padding-bottom: 58px;
  }
  .about-proof-band-inner {
    display: grid;
    padding: 28px 22px;
  }
  .video-studio-card > div {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .video-studio-card h3 {
    max-width: 300px;
    font-size: 22px;
  }
  .video-studio-card p {
    max-width: 310px;
    font-size: 15px;
  }
  .submission-actions {
    position: static;
    margin-top: 18px;
  }
  .case-hero {
    padding: 54px 0 46px;
  }
  .services-hero {
    padding: 54px 0 46px;
  }
  .case-hero-grid,
  .case-hero-grid > *,
  .case-dashboard-grid,
  .case-dashboard-grid > *,
  .case-method-grid,
  .case-method-grid > *,
  .services-hero-grid,
  .services-hero-grid > *,
  .services-analytics-grid,
  .services-analytics-grid > *,
  .services-timeline-grid,
  .services-timeline-grid > * {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .case-hero h1,
  .case-dashboard-grid h2,
  .case-method-grid h2,
  .services-hero h1,
  .services-analytics h2,
  .services-timeline-grid h2,
  .services-final-inner h2,
  .admin-dashboard h1 {
    max-width: 330px;
    font-size: 34px;
    overflow-wrap: anywhere;
  }
  .case-hero p,
  .case-dashboard-grid p,
  .services-hero p,
  .services-analytics p {
    max-width: 330px;
    font-size: 17px;
  }
  .services-command-center,
  .services-command-center img {
    min-height: 340px;
  }
  .command-overlay {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }
  .command-overlay dl {
    grid-template-columns: 1fr;
  }
  .services-showcase-card p {
    min-height: auto;
  }
  .services-timeline div {
    padding-left: 24px;
    padding-top: 62px;
  }
  .services-final-inner {
    display: grid;
  }
  .case-hero-panel {
    min-height: 330px;
    padding: 22px;
  }
  .case-orbit {
    height: 170px;
  }
  .case-hero-panel dl,
  .case-study-card dl {
    grid-template-columns: 1fr;
  }
  .case-score-grid div {
    border-right: 1px solid var(--line);
  }
  .case-bar-row {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .case-bar-row strong {
    text-align: left;
  }
  .case-study-card h3 {
    min-height: auto;
  }
  .admin-dashboard-head {
    display: grid;
    align-items: start;
  }
  .service-page-hero {
    padding: 54px 0 46px;
  }
  .service-page-hero .container,
  .service-page-grid,
  .service-page-grid > *,
  .service-flow-grid,
  .service-flow-grid > *,
  .service-page-hero .actions {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .service-page-hero h1 {
    max-width: 330px;
    font-size: 34px;
    overflow-wrap: anywhere;
  }
  .service-page-hero p,
  .service-flow-list p {
    max-width: 330px;
    font-size: 17px;
    overflow-wrap: anywhere;
  }
  .service-page-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 240px);
    max-width: 240px;
  }
  .service-page-hero .button {
    width: 100%;
  }
  .service-page-media {
    max-width: 100%;
  }
  .solution-hero .container,
  .solution-hero-grid,
  .solution-hero-grid > *,
  .solution-answer-grid,
  .solution-answer-grid > *,
  .solution-faq-grid,
  .solution-faq-grid > *,
  .solution-hero .actions {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .solution-hero h1 {
    max-width: 350px;
    font-size: 39px;
    overflow-wrap: anywhere;
  }
  .solution-hero p,
  .solution-intel-card strong,
  .geo-answer-card h2,
  .geo-answer-card p,
  .solution-step-grid h3,
  .solution-step-grid p,
  .solution-link-grid strong,
  .seo-hub-grid strong,
  .solution-faq-list summary,
  .solution-faq-list p {
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }
  .solution-hero p,
  .solution-intel-card strong {
    width: 100%;
    max-width: 350px;
  }
  .solution-intel-card,
  .solution-intel-card div {
    max-width: calc(100vw - 28px);
  }
  .solution-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 280px);
    max-width: 280px;
  }
  .solution-hero .button {
    width: 100%;
  }
  .geo-answer-card {
    min-height: auto;
  }
  .answer-hero {
    padding: 92px 0 58px;
  }
  .answer-hero .container,
  .answer-hero-grid,
  .answer-hero-grid > *,
  .answer-hero .actions,
  .answer-trust-grid,
  .answer-trust-grid > * {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .answer-hero h1 {
    max-width: 350px;
    font-size: 39px;
    line-height: 1.08;
    overflow-wrap: anywhere;
  }
  .answer-hero p,
  .answer-entity-card dd,
  .answer-card-grid h3,
  .answer-card-grid p,
  .answer-keyword-table strong,
  .answer-fact-list span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .answer-hero p,
  .answer-entity-card,
  .answer-entity-card div,
  .answer-entity-card dd {
    width: 100%;
    min-width: 0;
  }
  .answer-hero p {
    max-width: 330px;
    font-size: 17px;
  }
  .answer-entity-card {
    max-width: calc(100vw - 28px);
  }
  .answer-entity-card div {
    max-width: 100%;
  }
  .answer-entity-card dd {
    max-width: 300px;
    font-size: 16px;
    line-height: 1.36;
  }
  .answer-entity-card {
    overflow: hidden;
    padding: 22px;
  }
  .answer-entity-card dd {
    white-space: normal;
  }
  .answer-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 280px);
    max-width: 280px;
  }
  .answer-hero .button {
    width: 100%;
  }
  .answer-card-grid article,
  .answer-fact-list div {
    min-height: auto;
  }
  .glossary-hero,
  .glossary-term-hero {
    padding: 86px 0 56px;
  }
  .glossary-hero .container,
  .glossary-term-hero .container,
  .glossary-hero-grid,
  .glossary-term-hero-grid,
  .glossary-hero-grid > *,
  .glossary-term-hero-grid > *,
  .glossary-method-grid,
  .glossary-method-grid > *,
  .glossary-decision-grid,
  .glossary-decision-grid > *,
  .glossary-faq-grid,
  .glossary-faq-grid > *,
  .glossary-answer-grid,
  .glossary-answer-grid > *,
  .glossary-hero .actions,
  .glossary-term-hero .actions {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .glossary-hero h1,
  .glossary-term-hero h1 {
    max-width: 350px;
    font-size: 38px;
    line-height: 1.08;
  }
  .glossary-hero p,
  .glossary-term-hero p,
  .glossary-radar li,
  .glossary-term-grid strong,
  .glossary-term-grid small,
  .glossary-method-list span,
  .glossary-signal-stack strong,
  .glossary-signal-stack span,
  .glossary-decision-grid h2,
  .glossary-decision-grid aside p {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .glossary-hero p,
  .glossary-term-hero p {
    max-width: 330px;
    font-size: 17px;
  }
  .glossary-radar,
  .glossary-term-visual,
  .glossary-term-visual img,
  .glossary-method-list,
  .glossary-method-list div,
  .glossary-signal-stack,
  .glossary-signal-stack div,
  .glossary-answer-section .geo-answer-card {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .glossary-term-visual img {
    aspect-ratio: 16 / 10;
  }
  .glossary-hero .actions,
  .glossary-term-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 280px);
    max-width: 280px;
  }
  .glossary-hero .button,
  .glossary-term-hero .button {
    width: 100%;
  }
  .glossary-term-grid a,
  .glossary-method-list div,
  .glossary-signal-stack div {
    min-height: auto;
  }
  .longtail-hero {
    padding: 84px 0 54px;
  }
  .longtail-hero .container,
  .longtail-hero-grid,
  .longtail-hero-grid > *,
  .longtail-answer-grid,
  .longtail-answer-grid > *,
  .longtail-hero .actions {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .longtail-hero h1 {
    max-width: 350px;
    font-size: 38px;
    line-height: 1.08;
  }
  .longtail-hero p,
  .longtail-hero .eyebrow,
  .longtail-signal-stack strong,
  .longtail-signal-stack span,
  .article-topic-grid strong,
  .article-topic-grid small {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .longtail-hero p {
    max-width: 330px;
    font-size: 17px;
  }
  .longtail-hero .eyebrow {
    display: block;
    max-width: 330px;
    white-space: normal;
    line-height: 1.35;
  }
  .longtail-visual,
  .longtail-visual img,
  .longtail-signal-stack,
  .longtail-signal-stack div,
  .longtail-answer-section .geo-answer-card {
    max-width: calc(100vw - 28px);
    min-width: 0;
  }
  .longtail-answer-section .geo-answer-card h2,
  .longtail-answer-section .geo-answer-card p {
    max-width: 310px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .longtail-hero .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 280px);
    max-width: 280px;
  }
  .longtail-hero .button {
    width: 100%;
  }
  .longtail-visual img {
    aspect-ratio: 16 / 10;
  }
  .article-topic-links {
    padding: 20px;
  }
  .article-topic-grid a {
    min-height: auto;
  }
  .answer-keyword-table a {
    grid-template-columns: 1fr;
  }
  .answer-keyword-table em {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }
  .service-proof-grid div {
    border-right: 1px solid var(--line);
    min-width: 0;
  }
  .service-proof-grid span,
  .service-capability-grid h3,
  .service-capability-grid p,
  .service-flow-section h2,
  .service-flow-list h3,
  .latest-news-strip h3 {
    overflow-wrap: anywhere;
  }
  .home-final-cta-inner {
    display: grid;
    padding: 30px 24px;
  }
  .home-final-cta h2 {
    font-size: 28px;
  }
  .newsroom-hero {
    padding: 54px 0 46px;
  }
  .newsroom-hero-grid {
    gap: 34px;
  }
  .newsroom-hero h1 {
    font-size: 39px;
  }
  .newsroom-hero p {
    max-width: 320px;
    font-size: 17px;
    overflow-wrap: anywhere;
  }
  .newsroom-stat-panel {
    grid-template-columns: 1fr;
  }
  .newsroom-stat-panel div {
    padding: 20px;
  }
  .news-category-scroll {
    padding: 14px 0;
  }
  .news-category-scroll a {
    min-width: 240px;
  }
  .news-featured-card {
    margin-bottom: 42px;
  }
  .news-featured-card div {
    padding: 28px;
    max-width: 330px;
  }
  .news-featured-card h2 {
    max-width: 310px;
    font-size: 28px;
  }
  .news-featured-card p,
  .news-card p,
  .news-card h3 {
    max-width: 310px;
  }
  .news-list-header {
    display: grid;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-card h3 {
    font-size: 22px;
  }
  .pagination {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

/* Motion system */
.site-header {
  transition: background-color .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.94);
  border-color: rgba(20,20,20,.1);
  box-shadow: 0 14px 36px rgba(20,20,20,.08);
  backdrop-filter: blur(18px);
}
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s ease, transform .72s cubic-bezier(.2,.75,.18,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.editorial-card {
  transition: transform .36s ease, box-shadow .36s ease, border-color .36s ease;
}
.editorial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
}
.editorial-card img {
  transform: scale(1.035);
  transition: transform .45s ease;
  will-change: transform;
}
.refined-service-card,
.refined-case-card,
.refined-insight-card,
.hero-signal-panel,
.home-final-cta-inner {
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.refined-service-card:hover,
.refined-case-card:hover,
.refined-insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(20,20,20,.1);
}
.button,
.nav-cta {
  transition: transform .22s ease, box-shadow .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}
.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}
.sparkline svg path {
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw-line 1.7s ease forwards .45s;
}
@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}
@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(239,45,69,.72); }
  70% { box-shadow: 0 0 0 9px rgba(239,45,69,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,45,69,0); }
}
@keyframes command-status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,212,223,.68); }
  70% { box-shadow: 0 0 0 9px rgba(0,212,223,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,212,223,0); }
}
@keyframes command-scan {
  from { opacity: .42; transform: rotate(var(--angle, 0deg)) scale(.96); }
  to { opacity: .88; transform: rotate(calc(var(--angle, 0deg) + 8deg)) scale(1.04); }
}
@keyframes command-node-pulse {
  0%, 100% { transform: scale(.82); opacity: .72; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes case-orbit {
  to { transform: rotate(360deg); }
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(.88); opacity: .72; }
  50% { transform: scale(1); opacity: 1; }
}
@keyframes signal-grid-drift {
  to { background-position: 78px 78px, -78px -78px, 640px 640px; }
}
@keyframes market-ring-flow {
  to { transform: rotate(360deg) scale(1.04); }
}
@keyframes market-bar-rise {
  from { transform: scaleX(.08); opacity: .35; }
  to { transform: scaleX(1); opacity: 1; }
}
@keyframes glow-field-drift {
  0% { transform: translate3d(-1%, -1%, 0) scale(1); }
  50% { transform: translate3d(2%, 1%, 0) scale(1.04); }
  100% { transform: translate3d(-2%, 2%, 0) scale(1.02); }
}
@keyframes hero-orb-flow {
  from { transform: translate3d(0, 0, 0) scale(.96); opacity: .72; }
  to { transform: translate3d(-80px, 90px, 0) scale(1.12); opacity: .95; }
}
@keyframes hero-wave-flow {
  from { transform: translate3d(-40px, 0, 0) rotate(-8deg); opacity: .55; }
  to { transform: translate3d(70px, -28px, 0) rotate(-2deg); opacity: .82; }
}
@keyframes hero-line-flow {
  0% { opacity: .18; transform: translate3d(-80px, 0, 0) rotate(var(--line-rotate, -8deg)); }
  45% { opacity: .58; }
  100% { opacity: .22; transform: translate3d(120px, 0, 0) rotate(var(--line-rotate, -8deg)); }
}
@keyframes hero-market-flow {
  from { transform: translateX(-8%); opacity: .55; }
  to { transform: translateX(86%); opacity: 1; }
}
@keyframes hero-arc-drift {
  to { stroke-dashoffset: -90; }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
