/* ═══════════════════════════════════════════════════════════
   EDGE — "Precision Command Center" Design System
   Typography: DM Serif Display (headlines) + JetBrains Mono (data)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=JetBrains+Mono:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --edge-navy: #0a1628;
  --edge-navy-mid: #0f1f38;
  --edge-navy-light: #162a4a;
  --edge-ink: #1a2b45;
  --edge-orange: #F47621;
  --edge-orange-glow: rgba(244, 118, 33, 0.15);
  --edge-orange-hot: #ff8a3a;
  --edge-blue-accent: #3b7ddd;
  --edge-slate: #8494a7;
  --edge-mist: #c2ccd8;
  --edge-bone: #e8ecf1;
  --edge-surface: #f4f6f9;
  --edge-white: #ffffff;
  --edge-serif: 'DM Serif Display', Georgia, serif;
  --edge-sans: 'Outfit', -apple-system, sans-serif;
  --edge-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --edge-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --edge-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --noise: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ── Page wrapper ── */
.edge-page {
  background: var(--edge-surface);
  font-family: var(--edge-sans);
  overflow-x: hidden;
}

/* ── Noise texture overlay ── */
.edge-noise::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.edge-hero {
  position: relative;
  background: var(--edge-navy);
  padding: 200px 0 48px;
  overflow: hidden;
}

/* Geometric grid pattern background */
.edge-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 125, 221, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 125, 221, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 40%, black 30%, transparent 70%);
}

/* Orange accent glow */
.edge-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244, 118, 33, 0.08), transparent 70%);
  pointer-events: none;
}

.edge-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

.edge-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 28px;
  opacity: 0;
  animation: edgeFadeUp 0.8s var(--edge-ease) 0.2s forwards;
}

.edge-hero__badge::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--edge-orange);
}

.edge-hero h1 {
  font-family: var(--edge-serif);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--edge-white);
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  opacity: 0;
  animation: edgeFadeUp 0.8s var(--edge-ease) 0.35s forwards;
}

.edge-hero h1 em {
  font-style: italic;
  color: var(--edge-orange);
}

.edge-hero__subhead {
  font-family: var(--edge-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: var(--edge-orange);
  line-height: 1.3;
  max-width: 600px;
  margin-bottom: 16px;
  opacity: 0;
  animation: edgeFadeUp 0.8s var(--edge-ease) 0.45s forwards;
}
.edge-hero__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--edge-mist);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
  opacity: 0;
  animation: edgeFadeUp 0.8s var(--edge-ease) 0.5s forwards;
}

.edge-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: edgeFadeUp 0.8s var(--edge-ease) 0.65s forwards;
}

.edge-hero__actions--centered {
  justify-content: center;
  margin-top: 48px;
}

/* Graphic variant */
.edge-hero__inner--graphic {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.edge-hero__graphic {
  opacity: 0;
  animation: edgeFadeUp 0.8s var(--edge-ease) 0.8s forwards;
}

.edge-hero__graphic svg {
  width: 100%;
  height: auto;
}

/* Stats sidebar */
.edge-hero__stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 40px;
  opacity: 0;
  animation: edgeFadeUp 0.8s var(--edge-ease) 0.8s forwards;
}

.edge-hero__stat {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.edge-hero__stat:last-child {
  border-bottom: none;
}

.edge-hero__stat-value {
  font-family: var(--edge-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--edge-white);
  line-height: 1;
  margin-bottom: 6px;
}

.edge-hero__stat-label {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--edge-slate);
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.edge-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--edge-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 28px;
  min-height: 48px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s var(--edge-ease);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.edge-btn--primary {
  background: var(--edge-orange);
  color: var(--edge-white);
  box-shadow: 0 4px 20px rgba(244, 118, 33, 0.3);
}

.edge-btn--primary:hover {
  background: var(--edge-orange-hot);
  box-shadow: 0 8px 32px rgba(244, 118, 33, 0.4);
  transform: translateY(-2px);
  color: var(--edge-white);
  text-decoration: none;
}

.edge-btn--ghost {
  background: transparent;
  color: var(--edge-mist);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.edge-btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--edge-white);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.edge-btn__arrow {
  transition: transform 0.3s var(--edge-ease);
  font-size: 12px;
}

.edge-btn:hover .edge-btn__arrow {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════
   PROBLEM SECTION
   ═══════════════════════════════════════════ */
.edge-problem {
  position: relative;
  background: var(--edge-white);
  padding: 100px 0;
}

.edge-problem__header {
  max-width: 640px;
  margin-bottom: 64px;
}

.edge-problem__kicker {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 16px;
}

.edge-problem h2 {
  font-family: var(--edge-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--edge-ink);
  margin-bottom: 20px;
}

.edge-problem__desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--edge-slate);
  line-height: 1.7;
}

.edge-problem__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.edge-problem__card {
  position: relative;
  padding: 40px 36px;
  border-right: 1px solid var(--edge-bone);
  transition: background 0.4s var(--edge-ease);
}

.edge-problem__card:last-child {
  border-right: none;
}

.edge-problem__card:hover {
  background: var(--edge-surface);
}

.edge-problem__card-num {
  font-family: var(--edge-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--edge-bone);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s var(--edge-ease);
}

.edge-problem__card:hover .edge-problem__card-num {
  color: var(--edge-orange);
}

.edge-problem__card h3 {
  font-family: var(--edge-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--edge-ink);
  margin-bottom: 10px;
}

.edge-problem__card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--edge-slate);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
   ═══════════════════════════════════════════ */
.edge-products {
  position: relative;
  background: var(--edge-navy);
  padding: 48px 0 120px;
  overflow: hidden;
}

.edge-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 125, 221, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 125, 221, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.edge-products__header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 2;
}

.edge-products__kicker {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 16px;
}

.edge-products h2 {
  font-family: var(--edge-serif);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--edge-white);
  line-height: 1.15;
}

.edge-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.edge-product-card {
  position: relative;
  background: var(--edge-navy-mid);
  padding: 40px 32px 36px;
  text-decoration: none;
  color: var(--edge-white);
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--edge-ease);
  overflow: hidden;
}

.edge-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--edge-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--edge-ease);
}

.edge-product-card:hover {
  background: var(--edge-navy-light);
  text-decoration: none;
  color: var(--edge-white);
}

.edge-product-card:hover::before {
  transform: scaleX(1);
}

.edge-product-card__number {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--edge-slate);
  margin-bottom: 24px;
}

.edge-product-card__name {
  font-family: var(--edge-serif);
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 6px;
  line-height: 1.2;
}

.edge-product-card__tagline {
  font-size: 14px;
  font-weight: 400;
  color: var(--edge-orange);
  margin-bottom: 20px;
  min-height: 2.8em;
}

.edge-product-card__meta {
  font-family: var(--edge-mono);
  font-size: 11px;
  color: var(--edge-slate);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.edge-product-card__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--edge-mist);
  line-height: 1.7;
  flex: 1;
}

.edge-product-card__arrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--edge-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--edge-orange);
  margin-top: 24px;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s var(--edge-ease);
}

.edge-product-card:hover .edge-product-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════ */
.edge-timeline {
  position: relative;
  background: var(--edge-white);
  padding: 100px 0 120px;
  overflow: hidden;
}

.edge-timeline__header {
  text-align: center;
  margin-bottom: 80px;
}

.edge-timeline__kicker {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 16px;
}

.edge-timeline h2 {
  font-family: var(--edge-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--edge-ink);
  line-height: 1.15;
  margin-bottom: 16px;
}

.edge-timeline__subtitle {
  font-size: 16px;
  font-weight: 300;
  color: var(--edge-slate);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Track container */
.edge-timeline__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* Connecting line */
.edge-timeline__track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: var(--edge-line-start, 32px);
  width: var(--edge-line-span, calc(100% - 64px));
  height: 2px;
  background: var(--edge-bone);
  z-index: 0;
}

.edge-timeline__track::after {
  content: '';
  position: absolute;
  top: 32px;
  left: var(--edge-line-start, 32px);
  height: 2px;
  width: var(--edge-progress-width, calc((100% - 64px) / 3));
  background: var(--edge-orange);
  transition: width 0.35s var(--edge-ease);
  z-index: 1;
}

.edge-timeline__phase {
  position: relative;
  padding: 0 24px;
  text-align: left;
  z-index: 2;
}

/* Phase node */
.edge-timeline__node {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--edge-white);
  border: 2px solid var(--edge-bone);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.4s var(--edge-ease);
  z-index: 2;
}

.edge-timeline__node-inner {
  font-family: var(--edge-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--edge-slate);
  transition: color 0.4s var(--edge-ease);
}

.edge-timeline__phase:hover .edge-timeline__node {
  border-color: var(--edge-orange);
  box-shadow: 0 0 0 8px var(--edge-orange-glow);
}

.edge-timeline__phase:hover .edge-timeline__node-inner {
  color: var(--edge-orange);
}

.edge-timeline__days {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 8px;
}

.edge-timeline__phase-label {
  font-family: var(--edge-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--edge-ink);
  margin-bottom: 16px;
}

.edge-timeline__items {
  list-style: none;
  padding: 0 !important;
  margin: 0;
}

.edge-timeline__items li {
  position: relative;
  font-size: 13px;
  font-weight: 300;
  color: var(--edge-slate);
  line-height: 1.6;
  list-style: none !important;
  padding-left: 16px !important;
  margin-bottom: 8px !important;
}

.edge-timeline__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--edge-bone);
  transition: background 0.3s ease;
}

.edge-timeline__phase:hover .edge-timeline__items li::before {
  background: var(--edge-orange);
}

/* ═══════════════════════════════════════════
   CONTENT NETWORK
   ═══════════════════════════════════════════ */
.edge-content-network {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(circle at top right, rgba(244, 118, 33, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.edge-content-network__header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.edge-content-network__kicker,
.edge-content-network__group-kicker {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--edge-orange);
}

.edge-content-network__kicker {
  margin-bottom: 16px;
}

.edge-content-network__header h2 {
  font-family: var(--edge-serif);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 400;
  color: var(--edge-ink);
  line-height: 1.12;
  margin-bottom: 16px;
}

.edge-content-network__header p,
.edge-content-network__group-head p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--edge-slate);
  margin: 0;
}

.edge-content-network__group + .edge-content-network__group {
  margin-top: 56px;
}

.edge-content-network__group-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.edge-content-network__group-head h3 {
  font-family: var(--edge-sans);
  font-size: 28px;
  font-weight: 700;
  color: var(--edge-ink);
  margin: 10px 0 12px;
}

.edge-content-network__grid {
  display: grid;
  gap: 20px;
}

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

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

.edge-content-network__card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(194, 204, 216, 0.65);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 40px rgba(10, 22, 40, 0.05);
  text-decoration: none;
  transition:
    border-color 0.35s var(--edge-ease),
    box-shadow 0.35s var(--edge-ease);
}

.edge-content-network__card:hover {
  border-color: rgba(244, 118, 33, 0.35);
}

.edge-content-network__card-label {
  font-family: var(--edge-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 14px;
}

.edge-content-network__card-title {
  font-family: var(--edge-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--edge-ink);
  line-height: 1.25;
  margin-bottom: 10px;
}

.edge-content-network__card-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--edge-slate);
  margin-bottom: 18px;
}

.edge-content-network__card-list {
  list-style: none !important;
  list-style-type: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
}

.edge-content-network__card-list li {
  position: relative;
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 16px !important;
  margin-bottom: 10px !important;
  font-size: 13px;
  line-height: 1.6;
  color: var(--edge-ink);
}

.edge-content-network__card-list li::marker {
  content: '';
}

.edge-content-network__card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--edge-orange);
}

.edge-content-network__card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--edge-ink);
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    gap 0.25s ease;
}

.edge-content-network__card-arrow {
  color: var(--edge-orange);
  transition: transform 0.25s ease;
}

.edge-content-network__card:hover .edge-content-network__card-cta {
  color: var(--edge-orange);
  border-color: rgba(244, 118, 33, 0.35);
  gap: 14px;
}

.edge-content-network__card:hover .edge-content-network__card-arrow {
  transform: translateX(4px);
}

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

.edge-content-network__subsector-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(194, 204, 216, 0.65);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(10, 22, 40, 0.04);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.edge-content-network__subsector-card:hover {
  border-color: rgba(244, 118, 33, 0.4);
  box-shadow: 0 18px 36px rgba(10, 22, 40, 0.08);
}

.edge-content-network__subsector-audience {
  font-family: var(--edge-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 12px;
}

.edge-content-network__subsector-title {
  font-family: var(--edge-sans);
  font-size: 19px;
  font-weight: 700;
  color: var(--edge-ink);
  line-height: 1.2;
}

.edge-content-network__subsector-subtitle {
  font-size: 13px;
  line-height: 1.55;
  color: var(--edge-slate);
  margin-top: 6px;
}

.edge-content-network__subsector-cta {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-size: 13px;
  font-weight: 700;
  color: var(--edge-ink);
  border-bottom: 1px solid transparent;
  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    gap 0.25s ease;
}

.edge-content-network__subsector-arrow {
  color: var(--edge-orange);
  transition: transform 0.25s ease;
}

.edge-content-network__subsector-card:hover .edge-content-network__subsector-cta {
  color: var(--edge-orange);
  border-color: rgba(244, 118, 33, 0.35);
  gap: 14px;
}

.edge-content-network__subsector-card:hover .edge-content-network__subsector-arrow {
  transform: translateX(4px);
}

/* ── Compact subsector rows ── */
.edge-subsector-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.edge-subsector-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(194, 204, 216, 0.5);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.25s ease;
}

.edge-subsector-row:hover {
  border-color: rgba(244, 118, 33, 0.35);
}

.edge-subsector-row__info {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.edge-subsector-row__title {
  font-family: var(--edge-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--edge-ink);
  white-space: nowrap;
}

.edge-subsector-row__subtitle {
  font-size: 12px;
  color: var(--edge-slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.edge-subsector-row__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.edge-subsector-row__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  border: 1px solid var(--edge-bone);
  background: transparent;
  color: var(--edge-slate);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

.edge-subsector-row__copy:hover {
  border-color: var(--edge-orange);
  color: var(--edge-orange);
}

.edge-subsector-row__copy[data-copied="true"] {
  border-color: #22C55E;
  color: #22C55E;
}

.edge-subsector-row__open {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--edge-orange);
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.2s ease;
}

.edge-subsector-row__open:hover {
  gap: 10px;
  text-decoration: none;
  color: var(--edge-orange);
}

@media (max-width: 991px) {
  .edge-subsector-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .edge-subsector-list {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   AUDIENCE SECTION
   ═══════════════════════════════════════════ */
.edge-audience {
  position: relative;
  padding: 100px 0 120px;
  background: var(--edge-surface);
}

.edge-audience__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.edge-audience__header {
  position: sticky;
  top: 120px;
}

.edge-audience__kicker {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 16px;
}

.edge-audience h2 {
  font-family: var(--edge-serif);
  font-size: 36px;
  font-weight: 400;
  color: var(--edge-ink);
  line-height: 1.15;
  margin-bottom: 24px;
}

.edge-audience__cta {
  margin-top: 32px;
}

.edge-audience__cards {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.edge-audience__card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 36px;
  background: var(--edge-white);
  border-radius: 8px;
  transition: all 0.3s var(--edge-ease);
}

.edge-audience__card:hover {
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.06);
  transform: translateY(-2px);
}

.edge-audience__card-icon {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  background: var(--edge-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--edge-orange);
}

.edge-audience__card h3 {
  font-family: var(--edge-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--edge-ink);
  margin-bottom: 8px;
}

.edge-audience__card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--edge-slate);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.edge-trust {
  position: relative;
  background: var(--edge-navy);
  padding: 60px 0;
  overflow: hidden;
}

.edge-trust::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--noise);
  pointer-events: none;
  opacity: 0.3;
}

.edge-trust__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.edge-trust__item {
  text-align: center;
  position: relative;
}

.edge-trust__item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.edge-trust__item:last-child::after {
  display: none;
}

.edge-trust__value {
  font-family: var(--edge-mono);
  font-size: 32px;
  font-weight: 700;
  color: var(--edge-white);
  line-height: 1;
  margin-bottom: 8px;
}

.edge-trust__label {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--edge-slate);
}

/* ═══════════════════════════════════════════
   CLIENT LOGO BANNER (inside edge page)
   The original styles are nested inside .banner_sec
   so we must provide them standalone here.
   ═══════════════════════════════════════════ */
.edge-page .banner_logos_wraper {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  gap: 0.75rem;
  margin-top: 0 !important;
  padding: 20px 0 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(242, 246, 249, 0.75) 100%);
}

.edge-page .banner_logos_wraper .client--wrapper {
  display: flex;
  gap: 0.75rem;
  flex: none;
  animation: platformCarousel 60s linear infinite;
}

.edge-page .banner_logos_wraper .client--wrapper .item {
  flex: none;
  height: 44px;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.edge-page .banner_logos_wraper .client--wrapper .item img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.45) contrast(1.08);
  opacity: 0.84;
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.edge-page .banner_logos_wraper .client--wrapper .item img:hover {
  filter: grayscale(15%) brightness(0.85) contrast(1.02);
  opacity: 1;
}

.edge-page .banner_logos_wraper + .get__started {
  padding-top: 20px;
  padding-bottom: 56px;
}

.edge-page .banner_logos_wraper + .get__started .sec__bg {
  padding: 64px 16%;
}

.edge-page .banner_logos_wraper + .get__started .sec_title {
  margin-bottom: 24px;
}

.edge-page .banner_logos_wraper + .get__started .sec_title p {
  max-width: 760px;
  margin: 16px auto 0;
}

.edge-page .get__started {
  padding-top: 20px;
  padding-bottom: 48px;
}

.edge-page .get__started .sec__bg {
  padding: 56px 16%;
}

.edge-page .get__started .sec_title {
  margin-bottom: 24px;
}

.edge-page .get__started .sec_title p {
  max-width: 760px;
  margin: 16px auto 0;
}

/* ═══════════════════════════════════════════
   FOOTER CTA
   ═══════════════════════════════════════════ */
.edge-footer-cta {
  position: relative;
  background: var(--edge-navy);
  padding: 80px 0;
  overflow: hidden;
}

.edge-footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 125, 221, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 125, 221, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 80% 50%, black 20%, transparent 70%);
}

.edge-footer-cta::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 118, 33, 0.08), transparent 70%);
  pointer-events: none;
}

.edge-footer-cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: center;
}

.edge-footer-cta__text h2 {
  font-family: var(--edge-serif);
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 400;
  color: var(--edge-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.edge-footer-cta__text p {
  font-size: 16px;
  color: var(--edge-mist);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 32px;
}

.edge-footer-cta__inner--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.edge-footer-cta__text--centered p {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.edge-footer-cta__graphic {
  opacity: 0.85;
}

.edge-footer-cta__graphic svg {
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .edge-footer-cta__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .edge-footer-cta__graphic {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 575px) {
  .edge-footer-cta {
    padding: 56px 0;
  }
  .edge-footer-cta__graphic {
    max-width: 300px;
  }
}

/* ═══════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════ */
.edge-pricing {
  position: relative;
  background: var(--edge-navy);
  padding: 80px 0;
  color: var(--edge-white);
  overflow: hidden;
}

.edge-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 125, 221, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 125, 221, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.edge-pricing__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.edge-pricing__heading {
  font-family: var(--edge-serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--edge-white);
  margin-bottom: 12px;
}

.edge-pricing__label {
  font-family: var(--edge-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--edge-slate);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.edge-pricing__value {
  font-family: var(--edge-mono);
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 700;
  color: var(--edge-orange);
  line-height: 1;
  margin-bottom: 16px;
}

.edge-pricing__context {
  font-size: 15px;
  color: var(--edge-mist);
  line-height: 1.7;
  margin-bottom: 32px;
}

.edge-pricing__guarantee {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 118, 33, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
}

.edge-pricing__guarantee p {
  margin: 0;
}

.edge-pricing__guarantee-title {
  font-family: var(--edge-sans);
  font-size: 16px;
  font-weight: 600;
  color: var(--edge-orange);
  margin-bottom: 4px;
}

.edge-pricing__guarantee-desc {
  font-size: 14px;
  color: var(--edge-mist);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   SUBPAGE SECTIONS (shared patterns)
   ═══════════════════════════════════════════ */
.edge-subpage-section {
  padding: 80px 0;
  background: var(--edge-white);
}

.edge-subpage-section--surface {
  background: var(--edge-surface);
}

.edge-section-header {
  text-align: center;
  margin-bottom: 16px;
}

.edge-section-header .edge-kicker {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 16px;
}

.edge-section-header h2 {
  font-family: var(--edge-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--edge-ink);
  line-height: 1.15;
}

.edge-section-header p {
  font-size: 16px;
  color: var(--edge-slate);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* Navy subpage sections (pod model, timelines) */
.edge-subpage-navy {
  background: var(--edge-navy);
  padding: 80px 0;
  color: var(--edge-white);
  position: relative;
  overflow: hidden;
}

.edge-subpage-navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 125, 221, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 125, 221, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}

.edge-subpage-navy .container-xxl {
  position: relative;
  z-index: 2;
}

.edge-subpage-navy h2 {
  font-family: var(--edge-serif);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 12px;
}

.edge-subpage-navy p {
  color: var(--edge-mist);
}

/* Card grid for subpage content */
.edge-card-grid {
  display: grid;
  gap: 24px;
}

.edge-card-grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.edge-card-grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.edge-navy-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px 28px;
  border-top: none;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.edge-navy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--edge-orange), rgba(244,118,33,0.3));
  border-radius: 0 0 3px 3px;
}

.edge-navy-card:hover {
  border-color: rgba(244, 118, 33, 0.25);
  transform: translateY(-2px);
}

.edge-navy-card h3 {
  font-family: var(--edge-sans);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--edge-white);
  line-height: 1.3;
}

.edge-navy-card p {
  font-size: 14px;
  color: var(--edge-mist);
  line-height: 1.7;
}

.edge-navy-card__label {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--edge-orange);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.edge-navy-card__label::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--edge-orange);
  opacity: 0.6;
}

.edge-navy-card:hover .edge-navy-card__label::before {
  opacity: 1;
}

/* ── Illustration containers ── */
.edge-illustration {
  display: flex;
  justify-content: center;
  margin: 48px auto 0;
  max-width: 760px;
}

.edge-illustration svg {
  width: 100%;
  height: auto;
}

.edge-illustration--inline {
  margin: 0;
}

.edge-pod-visual {
  display: flex;
  justify-content: center;
  margin: 0 auto 48px;
  max-width: 700px;
}

.edge-pod-visual svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.15));
}

/* ── Pod role cards ── */
.edge-pod-role-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 28px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.edge-pod-role-card:hover {
  border-color: rgba(244, 118, 33, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.edge-pod-role-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.edge-pod-role-card__headshot {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  max-width: 56px;
  max-height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.edge-pod-role-card:hover .edge-pod-role-card__headshot {
  border-color: rgba(244, 118, 33, 0.4);
}

.edge-pod-role-card__kicker {
  font-family: var(--edge-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--edge-orange);
  margin-bottom: 4px;
}

.edge-pod-role-card__title {
  font-family: var(--edge-sans);
  font-size: 20px;
  font-weight: 700;
  color: var(--edge-white);
  margin-bottom: 0;
}

.edge-pod-role-card__desc {
  font-size: 14px;
  color: var(--edge-mist);
  line-height: 1.6;
  margin-bottom: 20px;
}

.edge-pod-role-card__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px !important;
}

.edge-pod-role-card__list li {
  position: relative;
  list-style: none !important;
  padding-left: 18px !important;
  margin-bottom: 10px !important;
  font-size: 13px;
  color: var(--edge-slate);
  line-height: 1.5;
}

.edge-pod-role-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--edge-orange);
  opacity: 0.5;
}

.edge-pod-role-card:hover .edge-pod-role-card__list li::before {
  opacity: 0.8;
}

/* ── Investment detail cards ── */
.edge-invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  text-align: left;
}

.edge-invest-card {
  position: relative;
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.edge-invest-card:hover {
  border-color: rgba(244, 118, 33, 0.3);
  transform: translateY(-2px);
}

.edge-invest-card__icon {
  font-size: 20px;
  margin-bottom: 14px;
  opacity: 0.8;
}

.edge-invest-card__kicker {
  font-family: var(--edge-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.edge-invest-card__title {
  font-family: var(--edge-sans);
  font-size: 18px;
  font-weight: 700;
  color: var(--edge-white);
  margin-bottom: 8px;
}

.edge-invest-card__desc {
  font-size: 14px;
  color: var(--edge-mist);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  .edge-invest-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Deploy promo card (6th grid slot) ── */
.edge-deploy-promo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  background: var(--edge-navy);
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.edge-deploy-promo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 118, 33, 0.12);
  text-decoration: none;
}

/* ── Journey progress bar ── */
.edge-journey {
  padding: 48px 0;
}

.edge-journey__track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.edge-journey__step-wrapper {
  display: flex;
  align-items: flex-start;
  flex: 1;
  max-width: 220px;
}

.edge-journey__connector {
  flex-shrink: 0;
  width: 40px;
  height: 2px;
  background: var(--edge-bone);
  margin-top: 20px;
}

.edge-journey__connector--active {
  background: var(--edge-orange);
}

.edge-journey__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex: 1;
  transition: transform 0.2s ease;
}

.edge-journey__step:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.edge-journey__node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 10px;
  transition: all 0.25s ease;
}

.edge-journey__step--complete .edge-journey__node {
  background: var(--edge-orange);
  color: #fff;
}

.edge-journey__step--current .edge-journey__node {
  background: #fff;
  border: 2px solid var(--edge-orange);
  color: var(--edge-orange);
  box-shadow: 0 0 0 6px rgba(244, 118, 33, 0.12);
}

.edge-journey__step--upcoming .edge-journey__node {
  background: var(--edge-surface);
  border: 2px solid var(--edge-bone);
  color: var(--edge-slate);
}

.edge-journey__num {
  font-family: var(--edge-mono);
  font-size: 11px;
  font-weight: 600;
}

.edge-journey__label {
  font-family: var(--edge-sans);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.edge-journey__step--complete .edge-journey__label {
  color: var(--edge-orange);
}

.edge-journey__step--current .edge-journey__label {
  color: var(--edge-ink);
  font-weight: 700;
}

.edge-journey__step--upcoming .edge-journey__label {
  color: var(--edge-slate);
}

.edge-journey__badge {
  font-family: var(--edge-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  background: var(--edge-orange);
  padding: 3px 10px;
  border-radius: 10px;
  margin-top: 6px;
}

@media (max-width: 575px) {
  .edge-journey__connector {
    width: 20px;
  }
  .edge-journey__node {
    width: 34px;
    height: 34px;
    font-size: 11px;
  }
  .edge-journey__label {
    font-size: 11px;
  }
}

/* ── Assess deliverables layout ── */
.edge-deliverables-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 40px;
}

.edge-deliverables-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.edge-deliverable {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--edge-bone);
}

.edge-deliverable:last-child {
  border-bottom: none;
}

.edge-deliverable__num {
  font-family: var(--edge-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--edge-orange);
  flex-shrink: 0;
  padding-top: 2px;
}

.edge-deliverable__title {
  font-family: var(--edge-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--edge-ink);
  margin-bottom: 4px;
}

.edge-deliverable__desc {
  font-size: 13px;
  color: var(--edge-slate);
  line-height: 1.6;
  margin: 0;
}

.edge-deliverables-graphic {
  position: sticky;
  top: 120px;
}

.edge-deliverables-graphic svg {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .edge-deliverables-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .edge-deliverables-graphic {
    position: static;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ── "Why BOD" credibility bullets ── */
.edge-credibility {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 32px auto 0;
}

.edge-credibility__item {
  display: flex;
  gap: 16px;
  align-items: start;
}

.edge-credibility__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--edge-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--edge-orange);
}

.edge-credibility__text h3 {
  font-family: var(--edge-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--edge-ink);
  margin-bottom: 4px;
}

.edge-credibility__text p {
  font-size: 14px;
  color: var(--edge-slate);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes edgeFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes edgePulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Scroll reveal utility */
.edge-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--edge-ease), transform 0.8s var(--edge-ease);
}

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

.edge-reveal[data-delay="1"] { transition-delay: 0.1s; }
.edge-reveal[data-delay="2"] { transition-delay: 0.2s; }
.edge-reveal[data-delay="3"] { transition-delay: 0.3s; }
.edge-reveal[data-delay="4"] { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1199px) {
  .edge-hero__inner {
    grid-template-columns: 1fr 320px;
    gap: 48px;
  }
  .edge-hero__inner--graphic {
    grid-template-columns: 1fr 1fr;
  }
  .edge-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .edge-problem > .container-xxl > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column;
    gap: 40px;
  }
  .edge-credibility {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .edge-hero {
    padding: 180px 0 80px;
  }
  .edge-hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .edge-hero__inner--graphic {
    grid-template-columns: 1fr;
  }
  .edge-hero__graphic {
    max-width: 400px;
    margin: 0 auto;
  }
  .edge-hero__stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 32px;
  }
  .edge-hero__stat {
    flex: 1;
    min-width: 140px;
    padding: 16px 0;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
  .edge-hero__stat:last-child {
    border-right: none;
  }
  .edge-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .edge-content-network {
    padding: 72px 0;
  }
  .edge-page .banner_logos_wraper {
    padding: 18px 0 8px;
  }
  .edge-page .banner_logos_wraper + .get__started {
    padding-top: 16px;
    padding-bottom: 48px;
  }
  .edge-page .banner_logos_wraper + .get__started .sec__bg {
    padding: 56px 10%;
  }
  .edge-content-network__grid--three,
  .edge-content-network__grid--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .edge-content-network__subsector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .edge-timeline__track {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .edge-timeline__track::before {
    display: none;
  }
  .edge-timeline__track::after {
    display: none;
  }
  .edge-audience__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .edge-audience__header {
    position: static;
  }
}

@media (max-width: 767px) {
  .edge-pricing__inner {
    padding: 0 16px;
  }
  .edge-illustration {
    max-width: 400px;
  }
  .edge-card-grid--3,
  .edge-card-grid--4 {
    grid-template-columns: 1fr;
  }
  .edge-hero {
    padding: 160px 0 60px;
  }
  .edge-page .banner_logos_wraper {
    padding: 14px 0 6px;
  }
  .edge-page .banner_logos_wraper .client--wrapper .item {
    height: 36px;
    padding: 0 0.9rem;
  }
  .edge-page .banner_logos_wraper + .get__started {
    padding-top: 12px;
    padding-bottom: 40px;
  }
  .edge-page .banner_logos_wraper + .get__started .sec__bg {
    padding: 40px 24px;
  }
  .edge-hero__stats {
    flex-direction: column;
  }
  .edge-hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
  }
  .edge-problem__grid {
    grid-template-columns: 1fr;
  }
  .edge-problem__card {
    border-right: none;
    border-bottom: 1px solid var(--edge-bone);
    padding: 32px 0;
  }
  .edge-problem__card:last-child {
    border-bottom: none;
  }
  .edge-products__grid {
    grid-template-columns: 1fr;
  }
  .edge-content-network__header {
    margin-bottom: 40px;
  }
  .edge-content-network__group-head h3 {
    font-size: 24px;
  }
  .edge-content-network__grid--three,
  .edge-content-network__grid--five {
    grid-template-columns: 1fr;
  }
  .edge-content-network__subsector-grid {
    grid-template-columns: 1fr;
  }
  .edge-timeline__track {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .edge-trust__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .edge-trust__item::after {
    display: none;
  }
  .edge-audience__card {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 24px;
  }
  .edge-audience__card-icon {
    width: 56px;
    height: 56px;
    font-size: 10px;
  }
}

/* ── Assess page inline grids → single column on mobile ── */
@media (max-width: 991px) {
  .edge-subpage-section > .container-xxl > div[style*="grid-template-columns"] {
    display: flex !important;
    flex-direction: column;
    gap: 32px !important;
  }
  .edge-invest-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .edge-hero h1 {
    font-size: 32px;
  }
  .edge-trust__inner {
    grid-template-columns: 1fr 1fr;
  }
}
