:root {
  --black:      #080808;
  --c2:         #111111;
  --c3:         #1A1A1A;
  --c4:         #242424;
  --white:      #F4F1EC;
  --white-55:   rgba(244,241,236,0.55);
  --white-40:   rgba(244,241,236,0.40);
  --white-20:   rgba(244,241,236,0.20);
  --orange:     #FF5500;
  --orange-30:  rgba(255,85,0,0.30);
  --orange-15:  rgba(255,85,0,0.15);
  --orange-03:  rgba(255,85,0,0.03);
  --cobalt:     #0052FF;
  --cobalt-15:  rgba(0,82,255,0.15);
  --green:      #00A86B;
  --gray:       #E0E0;
  --gray2:      #C0C0;
  --gray3:      #999;
  --gray4:      #555555;
  --rule:       #1E1E1E;
  --blue:       #0052FF;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height:700px;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 50px 78px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(14, 11, 7, 0.97) 0%, rgba(14, 11, 7, 0.65) 45%, rgba(14, 11, 7, 0.5) 100%);
  z-index: 1;
}
.hero-img {
  position: absolute; inset: 0;
  background: var(--c3);
}
.hero-placeholder {
  position: absolute;
  inset: 60px;
  border: 1px dashed var(--gray3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 1.32px;
  text-transform: uppercase; color: var(--gray3);
  text-align: center; line-height: 1.8;
  padding: 20px;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 860px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 12px; height: 12px; border-radius: 6px;
  background: var(--cobalt); flex-shrink: 0;
}
.hero-eyebrow span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 2.42px;
  text-transform: uppercase; color: var(--cobalt);
}
.hero-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-size: clamp(36px, 6vw, 72px);
  line-height: 1.05; letter-spacing: -0.72px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-headline .accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(15px, 2vw, 17px); line-height: 1.7;
  color: var(--white); max-width: 560px; margin-bottom: 32px;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--orange); color: var(--black);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px; letter-spacing: 1.3px;
  text-transform: uppercase; text-decoration: none;
  padding: 15px 36px; transition: background 0.2s;
}
.hero-cta:hover { background: #FF7733; }
.hero-geo {
  position: absolute; bottom: 32px; right: 49px; z-index: 2;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white-40);
  text-align: right; line-height: 2;
}

/* ── PAGE TOC STRIP ── */
.toc-strip {
  position: sticky; top: 73px; z-index: 998;
  background: var(--carbon);
  border-bottom: 1px solid var(--rule);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.toc-strip::-webkit-scrollbar { display: none; }
.toc-inner {
  display: flex; align-items: stretch;
  min-width: max-content;
  padding: 0 32px;
}
.toc-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 8px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray4);
  padding: 16px 20px 16px 0;
  margin-right: 16px;
  border-right: 1px solid var(--rule);
  display: flex; align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.toc-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray1);
  padding: 16px 18px;
  white-space: nowrap;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.toc-link:hover {
  color: var(--white);
  border-bottom-color: var(--blue);
}
.toc-link .arrow {
  font-size: 8px;
  opacity: 0.5;
  transform: rotate(90deg);
  display: inline-block;
}

/* ── SECTION PATTERNS ── */
section { border-top: 1px solid var(--rule); }
.section-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 48px;
}
.section-eyebrow::before {
  content: ''; width: 12px; height: 12px; border-radius: 6px; flex-shrink: 0;
}
.section-eyebrow.orange::before { background: var(--orange); }
.section-eyebrow.cobalt::before { background: var(--cobalt); }
.section-eyebrow.green::before  { background: var(--green); }
.section-eyebrow span {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 2.42px; text-transform: uppercase;
}
.section-eyebrow.orange span { color: var(--orange); }
.section-eyebrow.cobalt span  { color: var(--cobalt); }
.section-eyebrow.green span   { color: var(--green); }
.section-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.1; text-transform: uppercase;
}
.section-headline .accent { color: var(--orange); }
.section-headline .cobalt { color: var(--cobalt); }
.body-text {
  font-size: 15px; line-height: 1.7;
  color: var(--white-55); max-width: 640px;
}

/* ── PROOF ── */
.proof-section { padding: clamp(60px,8vw,120px) clamp(20px,5vw,78px); }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top: 48px;
}
.proof-stat {
  background: var(--c2); padding: clamp(28px,4vw,48px) clamp(20px,3vw,40px);
  text-align: center;
}
.proof-num {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-size: clamp(28px,4vw,48px);
  color: var(--orange); line-height: 1.7;
}
.proof-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(9px,1.2vw,10px); letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--white-55); margin-top: 8px;
}

/* ── TECH STACK ── */
.stack-section { padding: clamp(60px,8vw,120px) clamp(20px,5vw,78px); }
.stack-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 48px;
}
.stack-card { background: var(--c2); padding: clamp(28px,4vw,48px) clamp(20px,3vw,40px); }
.stack-card-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.stack-card-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-size: clamp(16px,2vw,20px);
  text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px;
}
.stack-card-desc {
  font-size: 14px; line-height: 1.7; color: var(--white-55);
}
.stack-card-spec {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange); margin-top: 16px; line-height: 2;
}

/* ── MEDIA ── */
.media-section { border-top: 1px solid var(--rule); }
.media-grid { display: flex; min-height: 400px; }
.media-panel {
  flex: 1; background: var(--c3);
  position: relative; overflow: hidden;
}
.media-panel + .media-panel { border-left: 2px solid var(--black); }
.media-placeholder {
  position: absolute; inset: 24px;
  border: 1px dashed var(--gray3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 1.32px;
  text-transform: uppercase; color: var(--gray3);
  text-align: center; line-height: 1.8; padding: 20px;
}
.media-label {
  position: absolute; top: 24px; left: 24px;
  background: var(--orange);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--black); padding: 6px 14px;
}
.video-section {
  border-top: 1px solid var(--rule);
  background: var(--c2); min-height: 300px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; position: relative;
}
.video-play { font-size: 48px; color: var(--orange); opacity: 0.3; margin-bottom: 16px; }
.video-placeholder-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 1.32px;
  text-transform: uppercase; color: var(--gray3);
  text-align: center; line-height: 1.8; padding: 0 20px;
}

/* ── WORKFLOW ── */
.workflow-section { padding: clamp(60px,8vw,120px) clamp(20px,5vw,78px); }
.workflow-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; margin-top: 48px;
}
.workflow-step {
  background: var(--c2); padding: clamp(20px,3vw,36px) clamp(16px,2vw,28px);
  position: relative; border-right: 1px solid var(--black);
}
.workflow-step:last-child { border-right: none; }
.workflow-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px; color: var(--cobalt); margin-bottom: 16px;
}
.workflow-title {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600; font-size: 15px;
  text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px;
}
.workflow-desc { font-size: 13px; line-height: 1.6; color: var(--white-55); }
.workflow-arrow {
  position: absolute; right: -8px; top: 50%;
  transform: translateY(-50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px; color: var(--orange); z-index: 2;
}

/* ── PHASE SECTION ── */
.phase-intro { padding: clamp(40px,5vw,56px) clamp(20px,5vw,78px) 48px; }
.phase-intro-small {
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
}
.phase-intro-small::before {
  content: ''; width: 12px; height: 12px; border-radius: 6px;
  background: var(--orange); flex-shrink: 0;
}
.phase-intro-small span {
  font-family: 'IBM Plex Mono', monospace; font-size: 18px; color: var(--white-55);
}
.phase-intro-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 500; font-size: clamp(24px,3.5vw,40px); line-height: 1.2;
}
.phase-intro-headline .accent { color: var(--orange); }
.phase-row {
  display: flex; border-top: 1px solid var(--rule); min-height: 540px;
}
.phase-left {
  width: 452px; flex-shrink: 0; background: var(--black);
  padding: 28px 65px 40px; position: relative; display: flex; flex-direction: column;
}
.phase-category {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px; letter-spacing: 1.32px;
  text-transform: uppercase; color: var(--white-40); margin-bottom: 20px;
}
.phase-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 15px; color: var(--white-55); margin-bottom: 20px;
}
.phase-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-size: clamp(26px,3vw,40px);
  line-height: 1.15; text-transform: uppercase; margin-bottom: 20px;
}
.phase-headline .accent { color: var(--orange); }
.phase-body {
  font-size: 15px; line-height: 1.6; color: var(--white-55);
  max-width: 320px; flex: 1;
}
.phase-specs {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0; line-height: 1.5;
  text-transform: uppercase; color: var(--orange);
  max-width: 340px; margin-top: 20px;
}
.phase-indicator {
  position: absolute; left: 1.5px; top: 32px; bottom: 32px; width: 40px;
}
.phase-track {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--white-20);
}
.phase-track-active {
  position: absolute; left: 0; width: 3px; height: 91px; background: var(--orange);
}
.phase-num {
  position: absolute; left: 20px;
  font-family: 'Chakra Petch', sans-serif; font-weight: 500; font-size: 12px; color: var(--orange);
}
.phase-right {
  flex: 1; background: var(--c3); position: relative; min-height: 400px;
}
.phase-right-placeholder {
  position: absolute; inset: 20px;
  border: 1px dashed var(--gray3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gray3);
  text-align: center; line-height: 2; padding: 20px;
}

/* ── DELIVERABLES ── */
.deliverables-section { padding: clamp(60px,8vw,120px) clamp(20px,5vw,78px); }
.deliverables-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; margin-top: 48px;
}
.deliverable-card { background: var(--c2); padding: clamp(24px,3vw,40px); }
.deliverable-icon {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 28px; color: var(--orange); margin-bottom: 20px; opacity: 0.6;
}
.deliverable-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 10px;
}
.deliverable-desc {
  font-size: 14px; line-height: 1.7; color: var(--white-55); margin-bottom: 16px;
}
.deliverable-format {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 1.35px;
  text-transform: uppercase; color: var(--cobalt); line-height: 2;
}

/* ── SPEC TABLE ── */
.spec-section { padding: clamp(60px,8vw,120px) clamp(20px,5vw,78px); }
.spec-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 48px; }
.spec-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.spec-table th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange);
  padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--gray3);
}
.spec-table td {
  font-size: 14px; line-height: 1.6; color: var(--white-55);
  padding: 16px 20px; border-bottom: 1px solid #141414; vertical-align: top;
}
.spec-table td:first-child {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px; letter-spacing: 0.5px;
  color: var(--white); font-weight: 500; white-space: nowrap;
}

/* ── OWNERSHIP ── */
.ownership-section { padding: clamp(60px,8vw,120px) clamp(20px,5vw,78px); }
.ownership-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 48px;
}
.ownership-card { background: var(--c2); padding: clamp(24px,3vw,40px); }
.ownership-card.highlight { border-left: 3px solid var(--cobalt); }
.ownership-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cobalt); margin-bottom: 12px;
}
.ownership-text { font-size: 14px; line-height: 1.7; color: var(--white-55); }
.ownership-text strong { color: var(--white); font-weight: 500; }

/* ── AUDIENCE ── */
.audience-section { padding: clamp(60px,8vw,120px) clamp(20px,5vw,78px); }
.audience-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top: 48px;
}
.audience-card {
  background: var(--c2); padding: clamp(24px,3vw,40px);
  border-top: 3px solid transparent; transition: border-color 0.2s;
}
.audience-card:hover { border-top-color: var(--orange); }
.audience-card-icp {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 1.35px;
  text-transform: uppercase; margin-bottom: 12px;
}
.audience-card-icp.p1 { color: var(--orange); }
.audience-card-icp.p2 { color: var(--green); }
.audience-card-icp.p3 { color: var(--orange); }
.audience-card-icp.p4 { color: var(--cobalt); }
.audience-card-name {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 600; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px;
}
.audience-card-text {
  font-size: 14px; line-height: 1.7; color: var(--white-55); margin-bottom: 16px;
}
.audience-card-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; color: var(--orange);
  text-decoration: none; border-bottom: 1px solid var(--orange-30);
  padding-bottom: 1px; transition: color 0.2s;
}
.audience-card-link:hover { color: var(--white); }

/* ── CTA ── */
.cta-section { padding: clamp(60px,8vw,120px) clamp(20px,5vw,78px); text-align: center; }
.cta-headline {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-size: clamp(28px,4vw,48px);
  line-height: 1.1; text-transform: uppercase; margin-bottom: 24px;
}
.cta-headline .accent { color: var(--orange); }
.cta-sub {
  font-size: 17px; line-height: 1.7; color: var(--white-55);
  max-width: 540px; margin: 0 auto 32px;
}
.cta-button {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--orange); color: var(--black);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px; letter-spacing: 1.4px;
  text-transform: uppercase; text-decoration: none;
  padding: 19px 48px; transition: background 0.2s;
}
.cta-button:hover { background: #FF7733; }
.cta-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gray2); margin-top: 24px;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--rule);
  display: flex; align-items: flex-end;
  justify-content: space-between;
  padding: clamp(32px,4vw,49px) clamp(20px,5vw,78px) clamp(32px,4vw,48px);
  flex-wrap: wrap; gap: 24px;
}
.footer-brand {
  font-family: 'Chakra Petch', sans-serif;
  font-weight: 700; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.64px; text-decoration: none;
}
.footer-brand .w { color: var(--white); }
.footer-brand .o { color: var(--orange); }
.footer-tagline {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 9px; letter-spacing: 1.98px;
  text-transform: uppercase; color: var(--gray2); margin-top: 6px;
}
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--gray2);
  text-decoration: none; transition: color 0.2s;
}
.footer-link:hover { color: var(--white); }

/* ══════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════ */

/* ── Tablet landscape and below (1024px) ── */
@media (max-width: 1024px) {
  .nav { padding: 0 32px; }
  .nav-links { gap: 24px; }
  .hero { padding: 40px 40px; }
  .hero-placeholder { inset: 40px; }
  .hero-geo { right: 32px; }

  .stack-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: repeat(3,1fr); }
  .workflow-step:nth-child(3) .workflow-arrow,
  .workflow-step:last-child .workflow-arrow { display: none; }

  .phase-left { width: 360px; padding: 28px 40px 40px 50px; }

  .deliverables-grid { grid-template-columns: 1fr 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .ownership-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
}

/* ── Tablet portrait (768px) ── */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 30px 24px 40px; min-height: max-content; }
  .hero-placeholder { inset: 20px; font-size: 9px; }
  .hero-geo { display: none; }

  .phase-intro-small span { font-size: 14px; }
  .phase-intro { padding: 40px 24px 32px; }

  .phase-row { flex-direction: column; min-height: auto; }
  .phase-left { width: 100%; padding: 28px 24px 32px 52px; }
  .phase-body { max-width: 100%; }
  .phase-right { min-height: 260px; }
  .phase-right-placeholder { inset: 12px; }

  .media-grid { flex-direction: column; min-height: auto; }
  .media-panel { min-height: 260px; }
  .media-panel + .media-panel { border-left: none; border-top: 2px solid var(--black); }

  .workflow-grid { grid-template-columns: 1fr 1fr; }
  .workflow-step { border-right: none; border-bottom: 1px solid var(--black); }
  .workflow-step:last-child { border-bottom: none; }
  .workflow-arrow { display: none; }

  .deliverables-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }

  .footer { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 16px; }
}

/* ── Mobile (480px) ── */
@media (max-width: 480px) {
  .hero { padding: 30px 16px 40px; }
  .hero-cta { padding: 13px 24px; font-size: 11px; }

  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-num { font-size: 32px; }

  .stack-card { padding: 24px 20px; }
  .workflow-grid { grid-template-columns: 1fr; }

  .deliverable-card { padding: 24px 20px; }
  .ownership-card { padding: 24px 20px; }
  .audience-card { padding: 24px 20px; }

  .cta-button { padding: 15px 28px; font-size: 12px; }

  .footer-links { flex-direction: column; gap: 12px; }

  .phase-indicator { display: none; }
  .phase-left { padding: 24px 16px 28px; }
}


span.accent {
    color: #0052FF !important;
}

.hero-cta {background: #0052FF !important;color: white !important;}

.section-eyebrow.orange::before{
    background: #0052FF !important;
}

.section-eyebrow.orange span{
    color: #0052FF !important;
}
.proof-num{
    color: #fff !important;
}

.media-label { background : #0052FF !important;
color:white !important}

.workflow-arrow{
    color: #0052FF !important;
}
.c-m4__title span{color : #0052FF !important;}
table.spec-table th {
    color: #0052FF;
}

a.cta-button {background : #0052FF !important;
color:white !important}

.phase-intro-small::before{background : #0052FF !important;
}
.stack-card-label, .stack-card-spec {color : #0052FF !important;}
.deliverable-icon {color : #0052FF !important;}