/* ─── ENTERPRISE-AI-STRATEGY.HTML — PAGE-SPECIFIC STYLES ──────────────────── */

/* Hero Section */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--void);
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.2) contrast(1.15);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    var(--black) 0%,
    rgba(10,10,11,0.5) 40%,
    rgba(10,10,11,0.1) 75%,
    rgba(10,10,11,0.7) 100%
  );
}
.hero-ghost-num {
  position: absolute;
  right: -0.1em;
  bottom: -0.15em;
  font-family: var(--font-display);
  font-size: clamp(16rem, 28vw, 28rem);
  font-weight: 700;
  color: rgba(201,168,76,0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.05em;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 4rem 6rem;
  max-width: 900px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 6.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--gold);
  font-weight: 300;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-ctas {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 4rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  text-transform: uppercase;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Manifesto Section */
.manifesto {
  padding: 7rem 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}
.manifesto-left {
  position: sticky;
  top: 7rem;
}
.manifesto-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0.5rem 0;
}
.manifesto-right {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.manifesto-right p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.9;
}
.manifesto-right p strong {
  color: var(--text);
  font-style: normal;
}

/* Strategic Questions Section */
.strategic {
  padding: 8rem 0;
  background: var(--black);
}
.strategic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.strategic-visual {
  position: relative;
}
.strategic-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
}
.strategic-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.3);
}
.float-card {
  position: absolute;
  top: -2rem;
  right: -2.5rem;
  background: var(--gold);
  padding: 2rem;
  width: 200px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.float-card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.float-card-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  line-height: 1.4;
}
.strategic-qs {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.s-q {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  border: 1px solid var(--border);
  transition: border-color 0.25s, background 0.25s;
}
.s-q:hover {
  border-color: var(--gold-dim);
  background: var(--surface);
}
.s-q-arrow {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
.s-q p {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Foundation Pillars Section */
.foundation {
  padding: 8rem 0;
  background: var(--void);
  overflow: hidden;
}
.foundation-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}
.pillar-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}
.f-pillar {
  background: var(--surface);
  padding: 3rem 2.2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.f-pillar:hover {
  background: var(--surface2);
}
.f-pillar-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s;
}
.f-pillar:hover .f-pillar-accent {
  background: var(--gold);
}
.f-pillar-icon {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: rgba(201,168,76,0.2);
  margin-bottom: 1.5rem;
  line-height: 1;
}
.f-pillar-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 1rem;
}
.f-pillar-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Cinematic Block */
.cinematic-block {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.cinematic-block .bg-img {
  position: absolute;
  inset: 0;
  background: var(--surface2);
}
.cinematic-block .bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: saturate(0.2) hue-rotate(320deg);
}
.cinematic-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,10,11,0.95) 0%,
    rgba(10,10,11,0.4) 60%,
    rgba(139,26,26,0.15) 100%
  );
  display: flex;
  align-items: center;
}
.cinematic-text {
  padding: 0 4rem;
  max-width: 700px;
}
.cinematic-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: #fff;
  line-height: 1.45;
  margin-bottom: 2rem;
}
.cinematic-quote span {
  color: var(--gold);
}
.cinematic-attr {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Roadmap Section */
.roadmap {
  padding: 8rem 0;
  background: var(--black);
}
.roadmap-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
  align-items: end;
}
.roadmap-header-img {
  width: 100%;
  aspect-ratio: 21/9;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
.roadmap-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.2);
}
.roadmap-header-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
}
.roadmap-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.roadmap-phases::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.66% + 1px);
  right: calc(16.66% + 1px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-dim));
}
.rm-phase {
  padding: 0 2.5rem 3.5rem;
  position: relative;
}
.rm-phase::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: var(--border);
}
.rm-phase:last-child::after {
  display: none;
}
.rm-dot {
  width: 4rem;
  height: 4rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 2.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.rm-phase-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.8rem;
}
.rm-phase-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.25;
}
.rm-phase-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.rm-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rm-bullets li {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  gap: 0.6rem;
}
.rm-bullets li::before {
  content: '·';
  color: var(--gold);
}
.rm-phase-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
}
.rm-phase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.2);
}

/* Data Readiness Section */
.data-ready {
  padding: 8rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.data-ready-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
}
.dr-left {
  padding-right: 4rem;
}
.dr-sliver {
  width: 80px;
  position: relative;
  overflow: hidden;
  background: var(--crimson);
  flex-shrink: 0;
}
.dr-sliver img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0);
}
.dr-sliver::after {
  content: 'DATA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.dr-right {
  padding-left: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dr-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.dr-item {
  padding: 1.6rem 1.8rem;
  background: var(--black);
  border: 1px solid var(--border);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: border-color 0.25s;
}
.dr-item:hover {
  border-color: var(--gold-dim);
}
.dr-item-icon {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 0.2rem;
}
.dr-item-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}
.dr-item-body {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.dr-right-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
  margin-top: 2.5rem;
}
.dr-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.25);
}

/* Human Centered Section */
.human-centered {
  padding: 8rem 0;
  background: var(--black);
  overflow: hidden;
  position: relative;
}
.human-centered::before {
  content: 'PEOPLE';
  position: absolute;
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(255,255,255,0.012);
  left: -2rem;
  top: 50%;
  transform: translateY(-50%);
  letter-spacing: 0.05em;
  pointer-events: none;
}
.hc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.hc-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hc-list-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.2rem;
  align-items: start;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--border);
}
.hc-list-item:first-child {
  border-top: 1px solid var(--border);
}
.hc-num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gold-dim);
  letter-spacing: 0.1em;
  padding-top: 0.25rem;
}
.hc-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}
.hc-text span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.hc-visual {
  position: relative;
}
.hc-main-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.hc-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  filter: saturate(0.3);
}
.hc-offset-img {
  position: absolute;
  bottom: -3rem;
  right: -3rem;
  width: 65%;
  aspect-ratio: 16/10;
  background: var(--surface2);
  border: 3px solid var(--black);
  overflow: hidden;
}
.hc-offset-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: saturate(0.25);
}

/* Strategic Capability Section */
.strategic-cap {
  padding: 8rem 0;
  background: var(--void);
  border-top: 1px solid var(--border);
}
.sc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.sc-drivers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc-driver {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem 2rem;
  background: var(--surface);
  border-left: 0px solid var(--gold);
  transition: border-left-width 0.25s, background 0.25s;
  cursor: default;
}
.sc-driver:hover {
  border-left-width: 4px;
  background: var(--surface2);
}
.sc-driver-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  flex: 1;
}
.sc-driver-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  text-transform: uppercase;
  white-space: nowrap;
}
.sc-right-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--surface2);
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}
.sc-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: saturate(0.25) hue-rotate(320deg);
}
.sc-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.sc-outcome {
  background: var(--surface);
  padding: 1.4rem 1.6rem;
  border-top: 2px solid var(--gold);
}
.sc-outcome-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.3rem;
}
.sc-outcome-body {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* CTA Section (page-specific) */
.cta-section {
  padding: 10rem 0;
  background: var(--surface);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(201,168,76,0.06) 0%, transparent 70%),
              repeating-linear-gradient(90deg, transparent, transparent 119px, rgba(255,255,255,0.015) 120px);
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section .section-title {
  font-size: clamp(2.5rem, 5vw, 5rem);
  margin-bottom: 1.5rem;
}
.cta-section .lead {
  margin: 0 auto 3.5rem;
  text-align: center;
  max-width: 560px;
}
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.cta-phone a {
  color: var(--gold);
  transition: color 0.2s;
}
.cta-phone a:hover {
  color: #e0bc58;
}

/* Page-specific Responsive */
@media (max-width: 1024px) {
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .manifesto-left {
    position: static;
  }
  .strategic-grid {
    grid-template-columns: 1fr;
  }
  .float-card {
    top: 1rem;
    right: 1rem;
  }
  .pillar-track {
    grid-template-columns: 1fr 1fr;
  }
  .roadmap-head {
    grid-template-columns: 1fr;
  }
  .roadmap-phases {
    grid-template-columns: 1fr;
  }
  .roadmap-phases::before {
    display: none;
  }
  .rm-phase::after {
    width: 100%;
    height: 1px;
    top: auto;
    bottom: 0;
    right: auto;
    left: 0;
  }
  .data-ready-grid {
    grid-template-columns: 1fr;
  }
  .dr-sliver {
    display: none;
  }
  .dr-left {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  .dr-right {
    padding-left: 0;
  }
  .hc-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .hc-offset-img {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
  .hc-main-img {
    aspect-ratio: 16/9;
  }
  .sc-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .sc-outcomes {
    grid-template-columns: 1fr 1fr;
  }
  .foundation-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .hero-content {
    padding: 0 2.5rem 5rem;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 0 1.5rem 4rem;
  }
  .hero-ghost-num {
    display: none;
  }
  .pillar-track {
    grid-template-columns: 1fr;
  }
  .sc-outcomes {
    grid-template-columns: 1fr;
  }
  .cinematic-text {
    padding: 0 1.5rem;
  }
  .roadmap-phases {
    gap: 2rem;
  }
  .scroll-hint {
    display: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}