/*
 * =========================================================
 * OLYTIC SOLUTIONS - Services Page Styles
 * services.css  /  Route: /services
 *
 * Components:
 *   - Page hero (light/surface, ICP-mirror)
 *   - Evidence section (3-stat grid, navy bg)
 *   - Product card (logomark + card overview)
 *   - Product logomarks (Blueprint Gold, Evergreen Teal)
 *   - Product card alignment (left / right)
 *
 * No position:sticky used anywhere on this page.
 *
 * Load order:
 *   tokens → typography → buttons → nav → footer → layout → services
 * =========================================================
 */


/* ─────────────────────────────────────────────────────── */
/* HERO                                                    */
/* ─────────────────────────────────────────────────────── */

.services-hero {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  border-bottom: var(--border-default);
}

.services-hero__layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-16);
  align-items: center;
}

.services-hero__inner {
  max-width: 580px;
}

.services-hero__proof {
  border-left: 1px solid rgba(26, 26, 26, 0.12);
  padding-left: var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  align-self: center;
}

.services-hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.services-hero__proof-stat {
  font-family: var(--font-sans);
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  color: var(--color-obsidian);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}

.services-hero__proof-label {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: var(--leading-snug);
  max-width: 28ch;
}

.services-hero__proof-divider {
  width: 40px;
  height: 1px;
  background-color: rgba(200, 169, 110, 0.45);
}

@media (max-width: 960px) {
  .services-hero__layout {
    grid-template-columns: 1fr;
  }
  .services-hero__proof {
    border-left: none;
    border-top: 1px solid rgba(26, 26, 26, 0.10);
    padding-left: 0;
    padding-top: var(--space-8);
    flex-direction: row;
    gap: var(--space-10);
    align-items: flex-start;
  }
  .services-hero__proof-divider {
    display: none;
  }
}

.services-hero__accent-rule {
  width: 48px;
  height: 2px;
  background-color: var(--color-gold);
  margin-bottom: var(--space-6);
}

.services-hero__headline {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--weight-bold);
  color: var(--color-obsidian);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-6);
  max-width: 640px;
}

.services-hero__sub {
  font-size: var(--text-lg);
  color: var(--color-body-steel);
  line-height: var(--leading-body);
  max-width: 540px;
  margin-bottom: var(--space-10);
}

@media (max-width: 900px) {
  .services-hero {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
  .services-hero__layout   { gap: var(--space-10); }
  .services-hero__headline { font-size: var(--text-4xl); }
}

@media (max-width: 640px) {
  .services-hero__headline { font-size: var(--text-3xl); }
  .services-hero__sub      { font-size: var(--text-base); }
}


/* ─────────────────────────────────────────────────────── */
/* EVIDENCE SECTION                                        */
/* ─────────────────────────────────────────────────────── */

/*
 * Two research-backed stats. Obsidian background.
 * Each card: large stat number + finding + cited source.
 * Argument: gap is real (EY) → firms that solve it win big (Accenture).
 */

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.evidence-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  background-color: rgba(255, 255, 255, 0.04);
}

/* Large stat number */
.evidence-card__stat {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: var(--weight-bold);
  color: var(--color-gold);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
}

/* Finding copy */
.evidence-card__finding {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--leading-body);
  margin-bottom: 0;
  flex: 1;
}

/* Citation link - small, muted, inline */
.evidence-card__source {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
  line-height: var(--leading-normal);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
  margin-top: auto;
  align-self: flex-start;
}

.evidence-card__source:hover {
  color: rgba(255, 255, 255, 0.65);
  border-bottom-color: rgba(255, 255, 255, 0.40);
}

@media (max-width: 640px) {
  .evidence-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}


/* ─────────────────────────────────────────────────────── */
/* BRIDGE                                                  */
/* ─────────────────────────────────────────────────────── */

/*
 * Short connector between the evidence section and the
 * product cards. Pull-quote scale. Full container width.
 * Visually distinct from body copy - larger, italic, spaced.
 */

.services-bridge.section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
  border-bottom: var(--border-default);
}

/* No max-width cap - spans full container width */
.services-bridge__inner {
  max-width: none;
}

.services-bridge__copy {
  font-size: clamp(calc(var(--text-xl) * 0.72), 1.8vw, calc(var(--text-3xl) * 0.72));
  font-style: italic;
  font-weight: var(--weight-normal);
  color: var(--color-obsidian);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .services-bridge.section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
  .services-bridge__copy {
    font-size: calc(var(--text-2xl) * 0.72);
  }
}

@media (max-width: 640px) {
  .services-bridge__copy {
    font-size: calc(var(--text-xl) * 0.72);
  }
}


/* ─────────────────────────────────────────────────────── */
/* PRODUCT SECTION WRAPPER + ALIGNMENT                     */
/* ─────────────────────────────────────────────────────── */

.product-section {
  /* Uses .section--surface or .section--white from layout.css */
}

/* Left-aligned: card flush to left edge of container */
.product-section--left .product-card {
  margin-left: 0;
  margin-right: auto;
}

/* Right-aligned: card flush to right edge of container */
.product-section--right .product-card {
  margin-left: auto;
  margin-right: 0;
}


/* ─────────────────────────────────────────────────────── */
/* PRODUCT CARD                                            */
/* ─────────────────────────────────────────────────────── */

/*
 * Matches the homepage signpost card visual language.
 * White bg, top border accent, logomark + meta in header.
 * Max-width constrained to feel like a card, not full bleed.
 */

.product-card {
  border-radius: var(--radius-lg);
  padding: var(--space-10) var(--space-10);
  max-width: 820px;
  position: relative;
}

/* Blueprint: deep Navy dark card with gold accent top */
.product-card--blueprint {
  background-color: var(--color-navy);
  border: 1px solid rgba(200, 169, 110, 0.20);
  border-top: 3px solid var(--color-gold);
}

/* Compass: deep dark card with white accent top */
.product-card--compass {
  background-color: #0D1117;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-top: 3px solid rgba(255, 255, 255, 0.75);
}

/* Evergreen: deep teal-dark card with teal accent top */
.product-card--evergreen {
  background-color: #0B2A2B;
  border: 1px solid rgba(13, 107, 110, 0.40);
  border-top: 3px solid var(--color-teal);
}

/* Header row: logomark + label + type */
.product-card__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

/* Logomark container */
.product-logomark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}

.product-logomark--compass {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-logomark--blueprint {
  background-color: rgba(200, 169, 110, 0.08);
  border: 1px solid rgba(200, 169, 110, 0.20);
}

.product-logomark--evergreen {
  background-color: rgba(13, 107, 110, 0.07);
  border: 1px solid rgba(13, 107, 110, 0.18);
}

/* Meta: label + type stacked */
.product-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.product-card__type {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* Product name - white on dark cards */
.product-card__name {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: var(--weight-bold);
  color: #FFFFFF;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-5);
}

/* Description */
.product-card__desc {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.72);
  line-height: var(--leading-body);
  max-width: 62ch;
  margin-bottom: var(--space-6);
}

/* Feature list */
.product-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-card__features li {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.60);
  line-height: var(--leading-normal);
  padding-left: var(--space-5);
  position: relative;
  margin-bottom: 0;
}

.product-card--compass .product-card__features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.50);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  line-height: 1.1;
}

.product-card--blueprint .product-card__features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  line-height: 1.1;
}

.product-card--evergreen .product-card__features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--color-teal);
  font-weight: var(--weight-bold);
  font-size: var(--text-xl);
  line-height: 1.1;
}

/* Footer: price + CTA */
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
}

.product-card__price {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* Compass price in white */
.product-card__price--white {
  color: rgba(255, 255, 255, 0.65);
}

/* Evergreen price in teal */
.product-card__price--teal {
  color: #4DB8BB;
}

@media (max-width: 640px) {
  .product-card {
    padding: var(--space-8) var(--space-6);
  }
  .product-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-4);
  }
}




/* ─────────────────────────────────────────────────────── */
/* KIT INTERSTITIAL                                        */
/* ─────────────────────────────────────────────────────── */

/*
 * Self-serve product card between Evergreen and Roadmap CTA.
 * Horizontal two-column layout. Dark navy card on surface bg.
 * Visually distinct from the engagement service cards above.
 */

.kit-interstitial.section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.kit-interstitial__card {
  background-color: var(--color-navy);
  border: 1px solid rgba(200, 169, 110, 0.20);
  border-top: 3px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-12) var(--space-12);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-14);
  align-items: center;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.12);
}

.kit-interstitial__badge-row {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
}

.kit-interstitial__new-badge {
  background-color: var(--color-gold);
  color: var(--color-obsidian);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.kit-interstitial__deadline {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(200, 169, 110, 0.75);
  letter-spacing: 0.04em;
}

.kit-interstitial__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.kit-interstitial__heading {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: var(--weight-bold);
  color: #FFFFFF;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-4);
  max-width: 48ch;
}

.kit-interstitial__body {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.60);
  line-height: var(--leading-body);
  max-width: 54ch;
  margin-bottom: 0;
}

/* Right column: numbered doc list + price + CTA */
.kit-interstitial__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-left: var(--space-10);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.kit-interstitial__docs {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.kit-interstitial__docs li {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  list-style: none;
}

.kit-interstitial__docs li .doc-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  color: var(--color-gold);
  background: rgba(200, 169, 110, 0.12);
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}

.kit-interstitial__docs li .doc-label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.kit-interstitial__action {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.kit-interstitial__price {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-gold);
  letter-spacing: 0.03em;
  font-weight: var(--weight-medium);
}

@media (max-width: 960px) {
  .kit-interstitial__card {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .kit-interstitial__right {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: var(--space-8);
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--space-8);
  }
  .kit-interstitial__action {
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 640px) {
  .kit-interstitial.section {
    padding-top: var(--space-16);
    padding-bottom: var(--space-16);
  }
  .kit-interstitial__card {
    padding: var(--space-8) var(--space-6);
  }
  .kit-interstitial__right {
    flex-direction: column;
    align-items: flex-start;
  }
  .kit-interstitial__action .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ─────────────────────────────────────────────────────── */
/* ROADMAP BLOCK (shared - also used in home.css)          */
/* ─────────────────────────────────────────────────────── */

/*
 * Used inside .verdict-block (layout.css).
 * Two-column: copy left, CTA right.
 * Obsidian bg, white text, gold accent handled by parent.
 */

.roadmap-block__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-12);
  align-items: center;
}

.roadmap-block__text h2 {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: #FFFFFF;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-6);
}

.roadmap-block__text p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--leading-body);
  max-width: 56ch;
  margin-bottom: var(--space-4);
}

.roadmap-block__text p:last-child {
  font-style: italic;
  color: rgba(255, 255, 255, 0.50);
  font-size: var(--text-sm);
  margin-bottom: 0;
}

.roadmap-block__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  min-width: 220px;
}

.roadmap-block__note {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.02em;
  line-height: var(--leading-normal);
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .roadmap-block__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .roadmap-block__action {
    min-width: auto;
  }
  .roadmap-block__action .btn {
    width: 100%;
    justify-content: center;
  }
}


