/*
 * =========================================================
 * OLYTIC SOLUTIONS - AI Fluency & Growth Service Page Styles
 * fluency.css  /  Route: /fluency
 *
 * Standalone, one-pager style outreach page for the ongoing
 * partnership that manages Claude Code adoption (access,
 * guardrails, usage insight) and keeps the whole team's AI
 * fluency growing (training, champions, coaching). Built on
 * the same global primitives as every other page (.section,
 * .container, .callout, .btn, .label), following the
 * /roadmapping standalone pattern: no engagement-model
 * eyebrow numbering, no cross-referencing of the other two
 * services, no process timeline (this offer has no sequence
 * of steps, just what's included every month). Section 3
 * lists what's included as two labeled groups of teal cards
 * instead. Section 4 (FIT) closes on a full-bleed case photo.
 *
 * CSS load order (must follow):
 *   tokens → typography → buttons → nav → footer → layout → fluency
 * =========================================================
 */

/* ─────────────────────────────────────────────────────── */
/* SEAM - angled color transition between bands             */
/* ─────────────────────────────────────────────────────── */

.fl-seam-top {
  position: relative;
}

.fl-seam-top::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 60px;
  border-bottom: 4px solid var(--color-teal);
  transform-origin: 0 0;
  transform: skewY(-1.25deg);
  z-index: 1;
}

.fl-seam-top--white::before  { background-color: #FFFFFF; }

@media (max-width: 640px) {
  .fl-seam-top::before {
    top: -24px;
    height: 36px;
  }
}


/* ─────────────────────────────────────────────────────── */
/* SECTION 1: HERO                                          */
/* ─────────────────────────────────────────────────────── */

.fl-hero {
  background-color: var(--color-obsidian);
  color: #FFFFFF;
  padding-top: var(--space-12);
  padding-bottom: var(--space-24);
  position: relative;
}

.fl-hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  gap: var(--space-16);
}

.fl-hero__lockup {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.fl-hero__wordmark {
  font-family: var(--font-sans);
  font-weight: var(--weight-bold);
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1;
}

.fl-hero__wordmark em {
  font-style: normal;
  color: var(--color-gold);
}

.fl-hero__headline {
  font-size: clamp(2.5rem, 5.2vw, 4.1rem);
  font-weight: var(--weight-bold);
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-5);
  max-width: 720px;
}

.fl-hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.76);
  line-height: var(--leading-body);
  max-width: 560px;
  margin-bottom: var(--space-8);
}

.fl-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

/* Locked shape composition shared by the service pages (teal-led,
   mirror of the home hero grammar): circle-family radii, flat brand
   colors, 8pt grid, every shape anchored to a photo edge. */
.fl-hero__composition {
  position: relative;
  width: 448px;
  height: 448px;
}

.fl-hero__shape {
  position: absolute;
}

/* Gold half-disc rising from the bottom edge like a hill, echoing the
   ascending-growth theme (the Fluency family variation: a dome instead
   of the shared quarter-disc, paired with a small teal quarter-disc
   swapped up to the shoulder position). */
.fl-hero__shape--gold {
  bottom: 0;
  left: -30px;
  width: 170px;
  height: 85px;
  background-color: var(--color-gold);
  border-radius: 85px 85px 0 0;
}

/* Teal quarter-disc tucked behind the photo's shoulder (swapped from
   gold to teal, and scaled down, since the gold role moved to the
   dome below). */
.fl-hero__shape--teal {
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  background-color: var(--color-teal);
  border-radius: 140px 0 0 0;
}

/* Three ascending discs on the photo's bottom edge line, growing toward
   its squared corner: the fluency signature, echoing the bar-chart mark
   (adoption and fluency both compounding, not just holding steady). */
.fl-hero__shape--asc1 {
  left: 100px;
  bottom: 88px;
  width: 14px;
  height: 14px;
  background-color: var(--color-teal);
  border-radius: 50%;
}

.fl-hero__shape--asc2 {
  left: 122px;
  bottom: 98px;
  width: 20px;
  height: 20px;
  background-color: var(--color-teal);
  border-radius: 50%;
}

.fl-hero__shape--asc3 {
  left: 148px;
  bottom: 112px;
  width: 28px;
  height: 28px;
  background-color: var(--color-teal);
  border-radius: 50%;
}

/* Thin brand ring peeking from behind the photo's top-right curve. */
.fl-hero__shape--ring {
  right: -8px;
  top: 0;
  width: 96px;
  height: 96px;
  border: 2px solid var(--color-teal);
  border-radius: 50%;
  opacity: 0.8;
}

/* Photo petal: three corners on the ring radius, one squared. */
.fl-hero__photo-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 304px;
  height: 360px;
  border-radius: 152px 152px 152px 24px;
  overflow: hidden;
  background-color: var(--color-obsidian);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.fl-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Narrow desktops: scale the whole composition, never reflow it. */
@media (max-width: 1160px) {
  .fl-hero__composition {
    transform: scale(0.82);
    transform-origin: center;
  }
}

@media (max-width: 900px) {
  .fl-hero__inner {
    grid-template-columns: 1fr;
  }

  .fl-hero__visual {
    display: none;
  }
}

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


/* ─────────────────────────────────────────────────────── */
/* SECTION 2: OVERVIEW (problem summary + outcomes + stats)  */
/* ─────────────────────────────────────────────────────── */

.fl-overview {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  position: relative;
}

.fl-overview__headline {
  text-align: right;
  margin-bottom: var(--space-8);
}

.fl-overview__headline::after {
  left: auto;
  right: 0;
}

.fl-overview__intro {
  max-width: 640px;
  margin-bottom: var(--space-6);
}

.fl-overview__intro p {
  font-size: var(--text-md);
  color: var(--color-body-steel);
  line-height: var(--leading-body);
}

.fl-overview__tee {
  font-weight: var(--weight-bold);
  color: var(--color-obsidian);
}

.fl-overview__row {
  align-items: center;
}

/* ── Outcomes list ── */

.fl-outcomes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.fl-outcomes li {
  font-size: var(--text-md);
  font-weight: var(--weight-bold);
  color: var(--color-obsidian);
  line-height: var(--leading-body);
  padding-left: var(--space-6);
  position: relative;
  margin-bottom: 0;
}

.fl-outcomes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 10px;
  height: 2px;
  background-color: var(--color-gold);
}

/* ── Statistic card: two short findings on why adoption left to chance
   stalls out. Narrow, bordered light-surface card, matching the pattern
   on /roadmapping and /workstream. */
.fl-stats {
  background-color: var(--color-surface);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: var(--space-8);
  max-width: 320px;
  justify-self: start;
}

.fl-stats__narrative {
  font-size: var(--text-base);
  color: rgba(26, 26, 26, 0.76);
  line-height: var(--leading-body);
  margin-bottom: var(--space-5);
}

.fl-stats__narrative:last-child {
  margin-bottom: 0;
}

.fl-stats__narrative strong {
  color: var(--color-obsidian);
  font-weight: var(--weight-bold);
}

.fl-stats__cite {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: var(--weight-bold);
  color: rgba(26, 26, 26, 0.55);
  margin-left: 1px;
}

@media (max-width: 768px) {
  .fl-stats {
    max-width: none;
    padding: var(--space-6);
  }
}


/* ─────────────────────────────────────────────────────── */
/* SECTION 3: WHAT'S INCLUDED                               */
/* No process timeline: this offer runs the same way every   */
/* month, so it's shown as two labeled groups of teal cards, */
/* one for the adoption half and one for the fluency half.   */
/* ─────────────────────────────────────────────────────── */

.fl-how {
  position: relative;
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

.fl-how__intro {
  max-width: 640px;
  margin-bottom: var(--space-10);
}

.fl-how__intro .section-title {
  margin-bottom: var(--space-4);
}

.fl-how__intro p {
  font-size: var(--text-md);
  color: var(--color-body-steel);
  line-height: var(--leading-body);
}

.fl-gets__group {
  margin-bottom: var(--space-10);
}

.fl-gets__group:last-child {
  margin-bottom: 0;
}

.fl-gets__group-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  margin-bottom: var(--space-5);
}

.fl-gets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}

.fl-get {
  background-color: var(--color-teal);
  border-radius: 24px 24px 0 24px;
  padding: var(--space-8);
}

.fl-get h3 {
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: #FFFFFF;
  margin: 0 0 var(--space-2);
}

.fl-get p {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--leading-body);
  margin: 0;
}

@media (max-width: 768px) {
  .fl-gets__grid {
    grid-template-columns: 1fr;
  }
}


/* ─────────────────────────────────────────────────────── */
/* SECTION: ADD-ON (Executive AI Advisory)                  */
/* ─────────────────────────────────────────────────────── */

.fl-addon {
  padding-top: 0;
  padding-bottom: var(--space-20);
}

.fl-addon__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-8);
  background-color: var(--color-surface);
  border: var(--border-default);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-10);
}

.fl-addon__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  white-space: nowrap;
  padding-top: var(--space-1);
}

.fl-addon__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-obsidian);
  margin-bottom: var(--space-2);
}

.fl-addon__desc {
  font-size: var(--text-md);
  color: var(--color-body-steel);
  line-height: var(--leading-body);
  margin: 0;
  max-width: 62ch;
}

@media (max-width: 640px) {
  .fl-addon__card {
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-5);
  }
}


/* ─────────────────────────────────────────────────────── */
/* SECTION 4: FIT (full-bleed photo backdrop: photo bleeds  */
/* in from the right, mask-fades into the section's own      */
/* surface color, text column sits directly on it. Standalone */
/* pattern, no cross-reference to the other services.)       */
/* ─────────────────────────────────────────────────────── */

.fl-case {
  position: relative;
  overflow: hidden;
  background-color: var(--color-surface);
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.fl-case .container {
  position: relative;
  z-index: 1;
}

.fl-case__main {
  max-width: 54%;
}

.fl-case__head {
  max-width: 760px;
  margin-bottom: var(--space-6);
}

.fl-case__headline {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: var(--weight-bold);
  color: var(--color-obsidian);
  line-height: 1.2;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0;
}

.fl-case__story {
  max-width: 760px;
}

.fl-case__problem {
  font-size: var(--text-md);
  color: var(--color-body-steel);
  line-height: var(--leading-normal);
  margin: 0 0 var(--space-5);
}

.fl-case__solutions-intro {
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--color-obsidian);
  margin: 0 0 var(--space-3);
}

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

.fl-case__solutions li {
  font-size: var(--text-md);
  color: var(--color-body-steel);
  line-height: var(--leading-normal);
  padding-left: var(--space-6);
  position: relative;
  margin: 0;
}

.fl-case__solutions li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: var(--weight-bold);
}

.fl-case__outcome {
  font-size: var(--text-md);
  font-weight: var(--weight-medium);
  color: var(--color-obsidian);
  line-height: var(--leading-normal);
  margin: var(--space-5) 0 0;
}

.fl-case__photo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  margin: 0;
  z-index: 0;
}

.fl-case__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-mask-image: linear-gradient(to left, #000 42%, transparent 100%);
  mask-image: linear-gradient(to left, #000 42%, transparent 100%);
}

@media (max-width: 860px) {
  .fl-case {
    overflow: visible;
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .fl-case__main {
    max-width: none;
  }

  .fl-case__photo {
    position: static;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: var(--space-8);
  }

  .fl-case__photo img {
    -webkit-mask-image: none;
    mask-image: none;
    border-radius: 12px;
  }
}


/* ─────────────────────────────────────────────────────── */
/* SECTION 5: CTA                                           */
/* ─────────────────────────────────────────────────────── */

.fl-cta {
  padding-top: var(--space-12);
  padding-bottom: var(--space-10);
  position: relative;
}

.fl-cta__mark {
  display: block;
  margin-bottom: var(--space-5);
}

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

.fl-cta__inner h2 {
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: var(--weight-bold);
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-5);
}

.fl-cta__inner p {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--leading-body);
  max-width: 52ch;
  margin-bottom: 0;
}

/* Fine-print references for the numbered citations on the OVERVIEW
   section's stats card (.fl-stats__cite), kept out of that card. */
.fl-cta__inner .fl-cta__refs {
  margin-top: var(--space-4);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: var(--tracking-wide);
  color: rgba(255, 255, 255, 0.4);
  max-width: none;
}

.fl-cta__refs sup {
  margin-right: 2px;
}

.fl-cta__inner .btn {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .fl-cta__inner {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .fl-cta__inner .btn {
    width: 100%;
    justify-content: center;
  }
}



/* ── Mobile lockup: smaller mark + wordmark so long names breathe ── */

@media (max-width: 560px) {
  .fl-hero__lockup svg {
    width: 52px;
    height: 52px;
  }

  .fl-hero__lockup {
    gap: var(--space-3);
    margin-bottom: var(--space-6);
  }

  .fl-hero__wordmark {
    font-size: 1.4rem;
  }
}
