/* ==========================================================================
   AXDAR — AI Automation Agency
   Shared stylesheet (homepage + case studies)
   Palette: ink #06080F · panel #0B0E1A · text #F6EFE6 · muted #9AA0B4
            orange #FFB866 · violet #7A6FE0 · blue #56B0E6
   ========================================================================== */

/* ---- Fonts ---------------------------------------------------------------- */
/* Dune Rise (SIL OFL 1.1) — used for the AXDAR wordmark. See Dune_Rise-OFL.txt */
@font-face {
  font-family: 'Dune Rise';
  src: url('../fonts/Dune_Rise.woff2') format('woff2'),
       url('../fonts/Dune_Rise.woff') format('woff'),
       url('../fonts/Dune_Rise.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens --------------------------------------------------------------- */
:root {
  --ink: #06080F;
  --ink-2: #000215;
  --panel: #0B0E1A;
  --panel-2: #0E1220;
  --text: #F6EFE6;
  --text-soft: #C7CBDA;
  --muted: #9AA0B4;
  --muted-2: #8A90A6;
  --faint: #6C7391;
  --faintest: #4F5674;
  --orange: #FFB866;
  --orange-bright: #FFDCB3;
  --orange-deep: #FF9D3D;
  --violet: #7A6FE0;
  --violet-light: #8F84EC;
  --blue: #56B0E6;
  --blue-light: #7FC7F0;
  --green: #5FD79A;

  --border: rgba(255, 255, 255, 0.10);
  --border-soft: rgba(255, 255, 255, 0.07);

  --sans: 'IBM Plex Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --display: 'Space Grotesk', var(--sans);
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --shell: 1200px;
  --shell-narrow: 1160px;
  --shell-wide: 1440px;
  --pad-x: 48px;
}

/* ---- Reset / base --------------------------------------------------------- */
* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--ink);
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}

a { color: var(--orange); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--orange-bright); }

::selection { background: rgba(255, 184, 102, 0.30); color: var(--text); }

img { max-width: 100%; display: block; }

h1, h2, h3, p { margin: 0; }

input, textarea { outline: none; font-family: var(--sans); }
input::placeholder, textarea::placeholder { color: var(--faintest); }

/* ---- Layout helpers ------------------------------------------------------- */
.shell { max-width: var(--shell); margin: 0 auto; padding: 0 var(--pad-x); }
.shell--narrow { max-width: var(--shell-narrow); }

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FFC985;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  flex: none;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
}
.eyebrow::after { background: linear-gradient(90deg, var(--orange), var(--orange-deep)); }
.eyebrow--center { margin-bottom: 14px; }

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 38px;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 52px;
}
.section-title--tight { margin-bottom: 12px; }
.section-lead {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  max-width: 56ch;
  margin: 0 auto 52px;
}
.measure-20 { max-width: 20ch; margin-left: auto; margin-right: auto; }
.measure-22 { max-width: 22ch; margin-left: auto; margin-right: auto; }

.section { padding: 110px 0 20px; }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--display);
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .12s ease;
  border: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }
.btn--primary {
  font-size: 16px;
  color: var(--ink-2);
  background: var(--orange);
  padding: 16px 36px;
  box-shadow: 0 8px 40px rgba(255, 184, 102, 0.30);
}
.btn--primary:hover { background: var(--orange-bright); color: var(--ink-2); }
.btn--ghost {
  font-weight: 500;
  font-size: 16px;
  color: var(--text);
  padding: 16px 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
}
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.40); color: var(--text); }
.btn--sm {
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-2);
  background: var(--orange);
  padding: 10px 22px;
}
.btn--sm:hover { background: var(--orange-bright); color: var(--ink-2); }
.btn--block { width: 100%; padding: 16px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 50;
  background: linear-gradient(180deg, rgba(6, 8, 15, 0.55), rgba(6, 8, 15, 0));
}
.site-header__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  font-family: 'Dune Rise', var(--display);
  letter-spacing: 0.28em;
  color: var(--text);
  display: inline-flex;
  align-items: center;
}
.site-header__logo .wordmark { font-size: 17px; padding-left: 6px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav__link:not(.btn) {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}
.nav__link:not(.btn):hover { color: var(--orange); }

/* ==========================================================================
   HERO (homepage)
   ========================================================================== */
.hero { position: relative; overflow: hidden; margin-top: -72px; }
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
}
.hero__fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(6, 8, 15, 0), var(--ink));
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 236px var(--pad-x) 170px;
}
.hero__content {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
}
/* Hero eyebrow is left-aligned with the headline; section eyebrows stay centered */
.hero__content > .eyebrow { justify-content: flex-start; }
.hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 5.4vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 44ch;
}
.hero__actions { display: flex; gap: 14px; align-items: center; margin-top: 8px; flex-wrap: wrap; }
.hero__note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how { display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.how__lead {
  margin: 0 0 40px;
  max-width: 56ch;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.how-flow-fit { width: 100%; overflow: hidden; }
.how-flow-stage {
  position: relative;
  width: 1240px;
  height: 440px;
  transform-origin: top left;
  border-radius: 24px;
  overflow: hidden;
  background: var(--ink);
}
.how-node { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.how-node:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -12px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}
@keyframes how-comet { 100% { stroke-dashoffset: -940; } }
@keyframes how-comet-short { 100% { stroke-dashoffset: -330; } }
@keyframes how-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.35; transform: scale(0.55); } }
@keyframes how-breathe { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ==========================================================================
   CASE STUDY CARDS (homepage)
   ========================================================================== */
.tag {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid transparent;
}
.tag--blue { color: var(--blue-light); border-color: rgba(86, 176, 230, 0.30); }
.tag--orange { color: var(--orange); border-color: rgba(255, 184, 102, 0.30); }
.tag--violet { color: #9FB0E8; border-color: rgba(122, 111, 224, 0.35); }

.case-feature {
  display: block;
  color: inherit;
  border-radius: 20px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--orange), var(--violet), var(--blue));
  margin-bottom: 20px;
  transition: transform .2s ease;
}
.case-feature:hover { color: inherit; transform: translateY(-2px); }
.case-feature__inner {
  border-radius: 19px;
  background: var(--panel);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 44px;
}
.case-feature__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
}
.case-feature__body { font-size: 15px; color: var(--muted); line-height: 1.65; margin: 0 0 28px; }
.case-feature__stats { display: flex; gap: 36px; align-items: flex-end; }
.case-feature__visual {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
}

.stat__num { font-family: var(--display); font-size: 40px; line-height: 1; }
.stat__num--sm { font-size: 34px; }
.stat__label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-top: 8px;
}
.c-orange { color: var(--orange); }
.c-violet { color: var(--violet-light); }
.c-blue { color: var(--blue-light); }
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.case-card {
  display: block;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px;
  background: var(--panel);
  transition: border-color .2s ease, transform .2s ease;
}
.case-card:hover { color: inherit; transform: translateY(-2px); }
.case-card--orange:hover { border-color: rgba(255, 184, 102, 0.40); }
.case-card--violet:hover { border-color: rgba(122, 111, 224, 0.50); }
.case-card--blue:hover { border-color: rgba(86, 176, 230, 0.45); }
.case-card__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--text);
}
.case-card__body { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0 0 24px; }
.case-card__stats { display: flex; gap: 32px; align-items: flex-end; }

/* Decorative diagonal-hatch placeholder used where a bespoke visual would go */
.hatch {
  background: repeating-linear-gradient(135deg, var(--panel-2), var(--panel-2) 11px, #12162A 11px, #12162A 22px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hatch__label { font-family: var(--mono); font-size: 11px; color: var(--faint); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.quote-hero {
  position: relative;
  border: 1.5px solid transparent;
  border-radius: 20px;
  padding: 52px;
  margin-bottom: 20px;
  overflow: hidden;
  background:
    linear-gradient(var(--panel), var(--panel)) padding-box,
    linear-gradient(135deg, var(--orange), var(--violet), var(--blue)) border-box;
  text-align: center;
}
.quote-hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(255, 184, 102, 0.12), rgba(6, 8, 15, 0) 60%);
  pointer-events: none;
}
.quote-hero {
  transition: transform .2s ease;
}
.quote-hero:hover { transform: translateY(-2px); }
.quote-hero:active { transform: translateY(-1px); }
.quote-hero__inner { position: relative; }
.quote-mark { font-family: var(--display); font-size: 60px; color: var(--orange); line-height: 0.5; margin-bottom: 8px; }
.quote-hero__text {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0 auto 30px;
  max-width: 40ch;
}
.byline { display: flex; align-items: center; justify-content: center; gap: 14px; }
.byline__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: repeating-linear-gradient(135deg, var(--panel), var(--panel) 8px, #12162A 8px, #12162A 16px);
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.byline__avatar--initials {
  background: linear-gradient(135deg, var(--panel), #12162A);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--text);
}
.byline__meta { text-align: left; }
.byline__name { font-family: var(--display); font-size: 16px; }
.byline__role { font-family: var(--mono); font-size: 12px; color: var(--muted-2); }

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.quote-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px;
  background: var(--panel);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px -12px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}
.quote-card--orange:hover { border-color: rgba(255, 184, 102, 0.40); }
.quote-card--violet:hover { border-color: rgba(122, 111, 224, 0.50); }
.quote-card:active { transform: translateY(-1px); }
.quote-card__text { font-size: 17px; line-height: 1.6; color: #E4E1DA; margin: 0 0 26px; }
.byline--sm .byline__avatar { width: 42px; height: 42px; }
.byline--sm { justify-content: flex-start; gap: 12px; }
.byline--sm .byline__name { font-size: 15px; }
.byline--sm .byline__role { font-size: 11px; }

/* ==========================================================================
   BOOKING
   ========================================================================== */
.booking { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.panel__step {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.24em;
  color: var(--orange);
  text-transform: uppercase;
}
/* "01 — What to expect" overlaid on the artwork panel, matching the
   "02 — Pick a time" step label (the label is no longer baked into the image). */
.panel__step--over {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 1;
}
/* what-to-expect list */
.book-list { list-style: none; display: flex; flex-direction: column; gap: 20px; flex: 1; }
.book-list__item { display: flex; gap: 14px; align-items: flex-start; }
.book-list__dot {
  flex: none;
  width: 9px; height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 184, 102, 0.15);
}
.book-list__title { font-family: var(--display); font-size: 16px; color: var(--text); margin-bottom: 4px; }
.book-list__body { font-size: 14px; color: var(--muted); line-height: 1.55; }

.form-fine {
  text-align: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--faintest);
  text-transform: uppercase;
}

/* Cal.com inline embed
   Cal.com themes natively via the embed API (theme:"dark" + cal-brand set
   to our orange), so unlike Calendly's free widget no invert/hue-rotate
   hack is needed — the embed renders dark and on-brand out of the box. */
.panel--flush { padding: 0; gap: 0; overflow: hidden; background: var(--panel); }
.panel--expect { position: relative; }
/* what-to-expect image fills the panel edge-to-edge; corners clipped by panel--flush overflow */
.panel--expect img { display: block; width: 100%; height: auto; }
/* Let Cal.com's embed set its own iframe height (it auto-resizes to content);
   min-height just reserves space so the layout doesn't jump before it loads. */
.book-embed { min-width: 320px; min-height: 660px; }
.book-embed iframe { width: 100%; border: 0; }

.is-hidden { display: none !important; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { margin-top: 80px; border-top: 1px solid var(--border-soft); }
.site-footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 40px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.site-footer .wordmark { font-size: 14px; color: var(--muted); letter-spacing: 0.28em; padding-left: 4px; }
.site-footer__tag { font-family: var(--mono); font-size: 11px; color: var(--faintest); letter-spacing: 0.14em; }

/* ==========================================================================
   CASE STUDY PAGES
   ========================================================================== */
.cs-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad-x);
  border-bottom: 1px solid var(--border-soft);
  max-width: var(--shell-narrow);
  margin: 0 auto;
}
.cs-topbar__brand { font-family: 'Dune Rise', var(--display); letter-spacing: 0.28em; font-size: 16px; color: var(--text); }
.cs-topbar__back { font-family: var(--sans); font-size: 14px; color: var(--muted); }

.cs-hero { padding: 90px 0 70px; position: relative; overflow: hidden; }
.cs-hero__glow {
  position: absolute;
  top: -20%; right: -6%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 102, 0.16), rgba(6, 8, 15, 0) 62%);
  pointer-events: none;
}
.cs-hero__inner { position: relative; }
.cs-tag {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  border: 1px solid rgba(255, 184, 102, 0.30);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.cs-hero__title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 20ch;
}
.cs-hero__lead { font-size: 20px; line-height: 1.6; color: var(--muted); max-width: 60ch; margin: 0; }

.cs-visual {
  aspect-ratio: 16 / 7;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 16px;
}

/* Split hero — text left, screenshot right (slightly overlapping) */
.cs-hero--split { padding-bottom: 40px; }
.cs-hero--split .cs-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 24px;
}
.cs-hero--split .cs-hero__inner { z-index: 1; }
.cs-hero--split .cs-hero__title {
  font-size: clamp(30px, 3.4vw, 42px);
  max-width: 14ch;
}
.cs-hero--split .cs-hero__lead { font-size: 18px; }
.cs-visual--hero {
  aspect-ratio: 4 / 3;
  margin: 0 0 0 -32px;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

/* Wide split hero — larger screenshot, copy left-aligned to the page's content column */
.cs-hero--full { padding: 96px 0 52px; }
.cs-hero--full .cs-hero__grid {
  max-width: var(--shell-wide);
  margin-left: max(var(--pad-x), calc((100vw - var(--shell-narrow)) / 2 + var(--pad-x)));
  margin-right: auto;
  padding-right: var(--pad-x);
  grid-template-columns: minmax(320px, 460px) 1fr;
  gap: 44px;
}
.cs-hero--full .cs-visual--hero {
  margin: 0;
  aspect-ratio: 16 / 10;
}

.cs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 60px 0; }
.cs-stat {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  background: var(--panel);
}
.cs-stat__num { font-family: var(--display); font-size: 42px; }
.cs-stat__label { font-size: 12px; color: var(--muted-2); margin-top: 8px; }
.c-orange-deep { color: var(--orange); }

.cs-body { display: grid; grid-template-columns: 1fr 300px; gap: 56px; padding: 40px 0 20px; align-items: start; }
.cs-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #FFC985;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.cs-kicker::before,
.cs-kicker::after {
  content: "";
  flex: none;
  width: 30px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange-deep), var(--orange));
}
.cs-kicker::after { background: linear-gradient(90deg, var(--orange), var(--orange-deep)); }
.cs-p { font-size: 18px; line-height: 1.75; margin: 0 0 22px; }
.cs-p--strong { color: var(--text-soft); }
.cs-p--muted { color: var(--muted); }
.mb-60 { margin-bottom: 60px !important; }

.cs-steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 60px; }
.cs-step { display: flex; gap: 20px; align-items: flex-start; }
.cs-step__num {
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink-2);
}
.cs-step__num--1 { background: linear-gradient(135deg, var(--orange-bright), var(--orange)); }
.cs-step__num--2 { background: linear-gradient(135deg, var(--violet-light), var(--violet)); }
.cs-step__num--3 { background: linear-gradient(135deg, var(--blue-light), var(--blue)); }
.cs-step__title { font-family: var(--display); font-size: 19px; margin-bottom: 6px; }
.cs-step__body { font-size: 15px; color: var(--muted); line-height: 1.65; }

.cs-aside {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  background: var(--panel);
  position: sticky;
  top: 24px;
}
.cs-aside__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; color: var(--faint); text-transform: uppercase; margin-bottom: 20px; }
.cs-aside__list { display: flex; flex-direction: column; gap: 18px; }
.cs-aside__key { font-size: 12px; color: var(--faint); margin-bottom: 4px; }
.cs-aside__val { font-family: var(--display); font-size: 16px; }

.cs-quote {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 52px;
  margin: 70px 0 20px;
  overflow: hidden;
  background: var(--panel);
  text-align: center;
}
.cs-quote__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 90% at 50% 0%, rgba(255, 184, 102, 0.12), rgba(6, 8, 15, 0) 60%);
  pointer-events: none;
}
.cs-quote .quote-mark { color: var(--orange); }
.cs-quote__text {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  margin: 0 auto 30px;
  max-width: 44ch;
}

/* Hero actions (case study pages) */
.cs-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }
.cs-hero__note {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--faint);
  margin-top: 18px;
}

/* In-page section blocks */
.cs-block { padding: 34px 0; }
.cs-block--tight { padding: 20px 0 34px; }
.cs-h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 1.15;
}
.cs-block__lead { font-size: 18px; line-height: 1.75; color: var(--text-soft); max-width: 62ch; margin: 0; }

/* Numbered flow with a screenshot slot per step */
.cs-flow { display: flex; flex-direction: column; gap: 20px; }
.cs-flow__item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.cs-flow__item:nth-child(even) .cs-flow__shot { order: -1; }
.cs-flow__num {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink-2);
  margin-bottom: 18px;
}
.cs-flow__num--1, .cs-flow__num--4 { background: linear-gradient(135deg, var(--orange-bright), var(--orange)); }
.cs-flow__num--2, .cs-flow__num--5 { background: linear-gradient(135deg, var(--violet-light), var(--violet)); }
.cs-flow__num--3, .cs-flow__num--6 { background: linear-gradient(135deg, var(--blue-light), var(--blue)); }
.cs-flow__title { font-family: var(--display); font-size: 20px; margin-bottom: 8px; line-height: 1.25; }
.cs-flow__body { font-size: 15px; color: var(--muted); line-height: 1.65; }
.cs-flow__shot {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--panel-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cs-flow__shot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
}

/* Proof — row of captioned screenshot slots */
.cs-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cs-proof__shot {
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin-bottom: 12px;
  background: var(--panel-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cs-proof__shot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 6px;
  border: 1px solid var(--border-soft);
}
.cs-proof__cap { font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; color: var(--muted-2); line-height: 1.5; }

/* Results — metric cards */
.cs-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cs-result {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 34px 28px;
  background: var(--panel);
  text-align: center;
}
.cs-result__val { font-family: var(--display); font-weight: 500; font-size: 26px; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 12px; }
.cs-result__label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--muted-2); text-transform: uppercase; line-height: 1.6; }

.cs-cta {
  position: relative;
  padding: 120px 40px;
  text-align: center;
  overflow: hidden;
  margin-top: 80px;
  border-top: 1px solid var(--border-soft);
}
.cs-cta__glow {
  position: absolute;
  bottom: -40%; left: 50%;
  transform: translateX(-50%);
  width: 760px; height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 184, 102, 0.32), rgba(6, 8, 15, 0) 62%);
  pointer-events: none;
}
.cs-cta__inner { position: relative; }
.cs-cta__title { font-family: var(--display); font-weight: 600; font-size: clamp(34px, 5vw, 52px); letter-spacing: -0.02em; margin: 0 0 20px; }
.cs-cta__sub { font-size: 18px; color: var(--text-soft); margin: 0 0 36px; }
.btn--cta {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink-2);
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  padding: 18px 40px;
  box-shadow: 0 8px 40px rgba(255, 184, 102, 0.4);
}
.btn--cta:hover { color: var(--ink-2); filter: brightness(1.05); }

.cs-footer {
  padding: 40px var(--pad-x);
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--shell-narrow);
  margin: 0 auto;
}
.cs-footer__brand { font-family: 'Dune Rise', var(--display); letter-spacing: 0.28em; font-size: 14px; color: var(--muted); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  :root { --pad-x: 24px; }

  .nav { gap: 18px; }
  .nav__link:not(.btn) { display: none; }

  .hero__inner { padding: 110px var(--pad-x) 120px; }
  .hero__title { font-size: clamp(36px, 8vw, 52px); }

  .section { padding: 80px 0 12px; }
  .section-title { font-size: 30px; margin-bottom: 40px; }

  .steps { grid-template-columns: 1fr; }
  .case-feature__inner { grid-template-columns: 1fr; gap: 28px; padding: 30px; }
  .case-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }

  .booking { grid-template-columns: 1fr; }
  .panel:not(.panel--flush) { padding: 28px; }

  .cs-body { grid-template-columns: 1fr; gap: 32px; }
  .cs-aside { position: static; }
  .cs-stats { grid-template-columns: repeat(2, 1fr); }
  .cs-hero { padding: 60px 0 40px; }
  .cs-hero--split .cs-hero__grid { grid-template-columns: 1fr; gap: 32px; }
  .cs-visual--hero { margin: 0; aspect-ratio: 16 / 9; }
  .cs-hero--full { padding: 56px 0 40px; }
  .cs-hero--full .cs-hero__grid { grid-template-columns: 1fr; }
  .cs-hero--full .cs-visual--hero { aspect-ratio: 16 / 9; }
  .cs-cta { padding: 80px 24px; }

  .cs-flow__item { grid-template-columns: 1fr; gap: 22px; padding: 26px; }
  .cs-flow__item:nth-child(even) .cs-flow__shot { order: 0; }
  .cs-proof { grid-template-columns: 1fr; }
  .cs-results { grid-template-columns: 1fr; }
  .cs-h2 { font-size: 26px; }
}

@media (max-width: 560px) {
  .case-feature__stats { flex-wrap: wrap; gap: 20px; }
  .cs-stats { grid-template-columns: 1fr 1fr; }
  .quote-hero { padding: 36px 24px; }
  .cs-proof { grid-template-columns: 1fr; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
