:root {
  --hue-primary: #72b6dd;
  --hue-primary-dark: #4d99c6;
  --hue-primary-light: #eef7fc;
  --hue-bg-soft: #f8fafc;
  --hue-text: #0f172a;
  --hue-text-muted: #64748b;
  --hue-border: rgba(114, 182, 221, 0.25);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px -10px rgba(114, 182, 221, 0.22);
  --transition: all 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: var(--hue-text);
  line-height: 1.65;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

/* Header & Nav */
.scalar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hue-border);
  box-shadow: var(--shadow-sm);
}

.vortex {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.glyph {
  display: flex;
  align-items: center;
  min-width: 0;
}

.glyph img {
  height: 36px;
  width: auto;
  display: block;
}

.axis {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.vortex-trace {
  padding: 8px 16px;
  color: var(--hue-text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.vortex-trace:hover {
  color: var(--hue-primary-dark);
  background-color: var(--hue-primary-light);
}

.vortex-trace.active {
  color: var(--hue-text);
  background-color: var(--hue-primary-light);
  font-weight: 600;
  border-bottom: 2px solid var(--hue-primary);
}

.prism {
  display: flex;
  align-items: center;
  min-width: 0;
}

.pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hue-text);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.pulse:hover {
  background-color: var(--hue-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Main Container */
.vault {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section 1: Intro / Editorial Header (offset_overlap concept) */
.focal {
  padding: 64px 0 80px;
  background: linear-gradient(145deg, #f8fafc 0%, #eef6fc 50%, #ffffff 100%);
  border-radius: var(--radius-lg);
  margin-top: 24px;
  border: 1px solid var(--hue-border);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.focal::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(114,182,221,0.18) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}

.orbit {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  padding: 0 44px;
}

.anchor {
  flex: 1 1 500px;
  min-width: 0;
}

.signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--hue-primary-light);
  color: var(--hue-primary-dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(114,182,221,0.3);
}

.index {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--hue-text);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.metric {
  font-size: 16px;
  line-height: 1.75;
  color: var(--hue-text-muted);
  margin-bottom: 28px;
}

.strand {
  flex: 1 1 420px;
  min-width: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--hue-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  transform: translateY(12px);
}

.spark {
  height: 4px;
  background: linear-gradient(90deg, var(--hue-primary) 0%, #0f172a 100%);
  border-radius: 2px;
  margin: 16px 0;
}

/* Vector Graphic Box inside Strand */
.vector {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section 2: Capability / Featured Insights */
.zenith {
  padding: 80px 0;
  display: block;
}

.glare {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}

.glare .index {
  font-size: 30px;
  margin-bottom: 12px;
}

.shard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.shard {
  flex: 1 1 340px;
  min-width: 0;
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--hue-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.shard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--hue-primary);
}

.node {
  margin-bottom: 20px;
}

.node-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--hue-text-muted);
  margin-bottom: 14px;
}

.trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--hue-primary-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  margin-top: 16px;
}

.trigger:hover {
  color: var(--hue-text);
  transform: translateX(4px);
}

/* Section 3: Market Analysis Trends (Proof) */
.sphere {
  padding: 64px 44px;
  background: var(--hue-bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(114, 182, 221, 0.2);
  margin-bottom: 80px;
}

.facet-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 36px;
}

.facet {
  flex: 1 1 450px;
  min-width: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--hue-border);
  box-shadow: var(--shadow-md);
}

.facet-scalar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.vision-vector {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--hue-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hue-primary-dark);
  flex-shrink: 0;
}

/* Section 4: Whitepapers / Knowledge Hub */
.layer {
  padding: 0 0 80px;
  display: block;
}

.datum-shard {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, #ffffff 0%, var(--hue-primary-light) 100%);
  border: 1px solid var(--hue-border);
  border-radius: var(--radius-lg);
  padding: 32px 40px;
  margin-top: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.datum-shard:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--hue-primary);
}

.datum-info {
  flex: 1 1 500px;
  min-width: 0;
}

/* Footer Section */
.bedrock {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 64px 0 32px;
  border-top: 1px solid #1e293b;
}

.bedrock-layer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.bedrock-brand {
  flex: 1 1 300px;
  min-width: 0;
}

.bedrock-brand-name {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bedrock-links {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  flex: 2 1 500px;
  min-width: 0;
  justify-content: flex-end;
}

.bedrock-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 140px;
}

.bedrock-col-index {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.bedrock-trace {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.bedrock-trace:hover {
  color: var(--hue-primary);
}

.bedrock-bottom {
  max-width: 1200px;
  margin: 48px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid #1e293b;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .vortex {
    height: auto;
    padding: 16px 20px;
    flex-direction: column;
    gap: 16px;
  }
  
  .axis {
    justify-content: center;
    width: 100%;
  }

  .prism {
    width: 100%;
    justify-content: center;
  }
  
  .orbit {
    padding: 0 20px;
  }
  
  .index {
    font-size: 26px;
  }
  
  .sphere {
    padding: 40px 20px;
  }

  .datum-shard {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .bedrock-links {
    justify-content: flex-start;
  }
}

.vortex-scalar {
    font-family: var(--font-main);
    line-height: 1.65;
    word-break: break-word;
    color: var(--hue-slate);
}
.vortex-scalar,
.vortex-scalar *,
.vortex-scalar *::before,
.vortex-scalar *::after {
    box-sizing: border-box;
}

.vortex-scalar nav,
.vortex-scalar div,
.vortex-scalar section,
.vortex-scalar article,
.vortex-scalar aside,
.vortex-scalar p,
.vortex-scalar h1,
.vortex-scalar h2,
.vortex-scalar h3,
.vortex-scalar h4,
.vortex-scalar h5,
.vortex-scalar h6,
.vortex-scalar a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.vortex-scalar p,
.vortex-scalar h1,
.vortex-scalar h2,
.vortex-scalar h3,
.vortex-scalar h4,
.vortex-scalar h5,
.vortex-scalar h6 {
    text-decoration: none;
}

.vortex-scalar img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.vortex-scalar {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.vortex-scalar a.vortex-vortex-trace {
    --aisite-shell-nav-padding: 8px 16px;
    --aisite-shell-nav-margin: 0;
    --aisite-shell-nav-line-height: normal;
    --aisite-shell-nav-display: inline;
    --aisite-shell-nav-height: auto;
    --aisite-shell-nav-min-height: auto;
}

.vortex-scalar a.vortex-vortex-trace,
.vortex-scalar a.vortex-vortex-trace:hover,
.vortex-scalar a.vortex-vortex-trace:focus,
.vortex-scalar a.vortex-vortex-trace:active,
.vortex-scalar a.vortex-vortex-trace.active,
.vortex-scalar a.vortex-vortex-trace[aria-current="page"] {
    background: transparent;
    border: none;
    border-bottom: none;
    box-shadow: none;
    outline: none;
    text-decoration: none;
    padding: var(--aisite-shell-nav-padding, 0);
    margin: var(--aisite-shell-nav-margin, 0);
    line-height: var(--aisite-shell-nav-line-height, normal);
    display: var(--aisite-shell-nav-display, inline);
    height: var(--aisite-shell-nav-height, auto);
    min-height: var(--aisite-shell-nav-min-height, auto);
}

.vortex-scalar{
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.94);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid #e2e8f0;
            box-shadow: 0 2px 4px rgba(15, 23, 42, 0.04);
        }

.vortex-scalar .vortex-vortex{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

.vortex-scalar .vortex-glyph{
            display: flex;
            align-items: center;
            gap: 12px;
        }

.vortex-scalar .vortex-glyph img{
            height: 34px;
            width: auto;
            display: block;
        }

.vortex-scalar .vortex-axis{
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

.vortex-scalar .vortex-vortex-trace{
            text-decoration: none;
            color: #475569;
            font-size: 15px;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            transition: all 0.35s ease;
        }

.vortex-scalar .vortex-vortex-trace:hover, .vortex-scalar .vortex-vortex-trace.active{
            color: #4d99c6;
            background-color: #eef7fc;
        }

.vortex-scalar .vortex-prism{
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

.vortex-scalar .vortex-pulse{
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 13px 28px;
            background-color: #0f172a;
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            border-radius: 8px;
            transition: all 0.35s ease;
            box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
        }

.vortex-scalar .vortex-pulse:hover{
            background-color: #4d99c6;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(77, 153, 198, 0.3);
        }

@media (max-width: 768px){.vortex-scalar .vortex-vortex{
                height: auto;
                padding: 16px;
                flex-direction: column;
                gap: 16px;
            }

.vortex-scalar .vortex-axis{
                width: 100%;
                justify-content: center;
            }}

.vortex-scalar {
    background: rgb(255, 255, 255);
    background-image: none;
}

.bedrock-pivot {
    font-family: var(--font-main);
    line-height: 1.65;
    word-break: break-word;
    color: var(--hue-slate);
}
.bedrock-pivot,
.bedrock-pivot *,
.bedrock-pivot *::before,
.bedrock-pivot *::after {
    box-sizing: border-box;
}

.bedrock-pivot nav,
.bedrock-pivot div,
.bedrock-pivot section,
.bedrock-pivot article,
.bedrock-pivot aside,
.bedrock-pivot p,
.bedrock-pivot h1,
.bedrock-pivot h2,
.bedrock-pivot h3,
.bedrock-pivot h4,
.bedrock-pivot h5,
.bedrock-pivot h6,
.bedrock-pivot a {
    margin: 0;
    padding: 0;
    font: inherit;
    color: inherit;
    letter-spacing: inherit;
    line-height: inherit;
}

.bedrock-pivot p,
.bedrock-pivot h1,
.bedrock-pivot h2,
.bedrock-pivot h3,
.bedrock-pivot h4,
.bedrock-pivot h5,
.bedrock-pivot h6 {
    text-decoration: none;
}

.bedrock-pivot img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

.bedrock-pivot {
    box-shadow: none;
    filter: none;
    text-shadow: none;
    background-image: none;
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
}

.bedrock-pivot a,
.bedrock-pivot a:hover,
.bedrock-pivot a:focus,
.bedrock-pivot a:active {
    background: transparent;
    box-shadow: none;
    outline: none;
    text-decoration: none;
}

.bedrock-pivot .bedrock-vault{
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
            width: 100%;
        }

.bedrock-pivot h1.bedrock-index{
            font-size: 38px;
            line-height: 1.25;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 18px;
            letter-spacing: -0.02em;
        }

.bedrock-pivot p.bedrock-metric{
            font-size: 16px;
            color: #475569;
            margin-bottom: 28px;
            line-height: 1.7;
        }

.bedrock-pivot h2.bedrock-index{
            font-size: 30px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 14px;
            letter-spacing: -0.01em;
        }

.bedrock-pivot h3.bedrock-index{
            font-size: 22px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
        }

.bedrock-pivot{
            background-color: #0b1120;
            color: #94a3b8;
            border-top: 1px solid #1e293b;
            padding: 60px 0 40px;
            font-size: 14px;
        }

.bedrock-pivot .bedrock-bedrock{
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
            margin-bottom: 40px;
        }

.bedrock-pivot .bedrock-datum{
            flex: 1 1 300px;
            min-width: 0;
        }

.bedrock-pivot .bedrock-brand-name{
            font-size: 22px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

.bedrock-pivot .bedrock-pivot-links{
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

.bedrock-pivot .bedrock-pivot-links a{
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.35s ease;
        }

.bedrock-pivot .bedrock-pivot-links a:hover{
            color: #72b6dd;
        }

.bedrock-pivot .bedrock-bottom-metric{
            border-top: 1px solid #1e293b;
            padding-top: 28px;
            text-align: center;
            font-size: 13px;
            color: #64748b;
        }

@media (max-width: 992px){.bedrock-pivot h1.bedrock-index{
                font-size: 32px;
            }}