/* ================================================================
   Crestone AI — Barry Buckskin personal brand site
   Dark theme + radial glow depth + glassmorphism
   Brand Kit V2 (April 2026): Big Shoulders Display / Space Grotesk / Libre Baskerville
   Midnight Black #0D0D0D | Rat Race Red #D42B2B | Clean White #FFFFFF | Concrete #888888
   ================================================================ */

:root {
  --red: #D42B2B;
  --red-deep: #9A1F1F;
  --red-hover: #A81F1F;
  --concrete: #888888;
  --black: #0D0D0D;
  --ink: #1A1A1A;

  /* Legacy aliases — keep so existing rules using --orange/--amber/--peach still work */
  --orange: #D42B2B;
  --amber: #9A1F1F;
  --peach: #FFFFFF;

  /* Basecoat CSS variable overrides (dark theme, orange primary) */
  --background: 10 10 10;
  --foreground: 245 240 230;
  --card: 255 255 255 / 0.04;
  --card-foreground: 245 240 230;
  --popover: 18 18 18;
  --popover-foreground: 245 240 230;
  --primary: 212 43 43;
  --primary-foreground: 255 255 255;
  --secondary: 255 255 255 / 0.08;
  --secondary-foreground: 245 240 230;
  --muted: 255 255 255 / 0.05;
  --muted-foreground: 160 160 160;
  --accent: 212 43 43;
  --accent-foreground: 255 255 255;
  --destructive: 239 68 68;
  --destructive-foreground: 255 255 255;
  --border: 255 255 255 / 0.08;
  --input: 255 255 255 / 0.06;
  --ring: 212 43 43;
  --radius: 1rem;
}

/* ============== Base ============== */
html {
  scroll-behavior: smooth;
}
body {
  font-feature-settings: 'ss01';
  min-height: 100vh;
}

/* ============== Background depth — radial glows + noise ============== */
.bg-glows {
  background:
    radial-gradient(ellipse 1200px 700px at 85% 5%, rgba(212, 43, 43, 0.20), transparent 60%),
    radial-gradient(ellipse 900px 600px at 10% 35%, rgba(154, 31, 31, 0.14), transparent 65%),
    radial-gradient(ellipse 800px 500px at 75% 55%, rgba(255, 255, 255, 0.04), transparent 70%),
    radial-gradient(ellipse 1000px 700px at 15% 85%, rgba(212, 43, 43, 0.10), transparent 65%),
    radial-gradient(ellipse 700px 500px at 95% 100%, rgba(154, 31, 31, 0.06), transparent 70%);
  animation: glow-drift 35s ease-in-out infinite alternate;
}

@keyframes glow-drift {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-2%, 2%) scale(1.05); }
  100% { transform: translate(2%, -2%) scale(1); }
}

.bg-noise {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
}

/* ============== Glassmorphism cards ============== */
.glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 20px 60px -20px rgba(0, 0, 0, 0.6);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.glass-card:hover {
  border-color: rgba(212, 43, 43, 0.5);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 0 30px rgba(212, 43, 43, 0.15),
    0 0 60px rgba(212, 43, 43, 0.08),
    0 20px 60px -20px rgba(0, 0, 0, 0.6);
}

/* ============== Typography ============== */
.eyebrow {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--orange);
}

/* ============== Buttons (Basecoat-compatible, brand styled) ============== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  background: var(--orange);
  color: #fff;
  transition: all .2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(212, 43, 43, 0.5);
}
.btn-primary:hover {
  background: #A81F1F;
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px rgba(212, 43, 43, 0.65);
}
.btn-primary span { transition: transform .2s ease; }
.btn-primary:hover span { transform: translateX(3px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s ease;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(212, 43, 43, 0.4);
}

.btn-icon-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: none;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-icon-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

/* ============== Photo placeholders ============== */
.photo-placeholder {
  background: linear-gradient(135deg, rgba(212, 43, 43,0.08) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

/* ============== Photo frames (real imagery) ============== */
.photo-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 30px 80px -20px rgba(0, 0, 0, 0.7);
  transition: border-color .3s ease, transform .4s ease, box-shadow .4s ease;
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Black & white treatment */
  filter: grayscale(100%) contrast(1.05) brightness(0.92);
  transition: filter .5s ease, transform .6s ease;
}
.photo-frame--natural img {
  /* Image already has a warm monochrome tone; preserve it */
  filter: contrast(1.02) brightness(0.98);
}
.photo-frame::after {
  /* subtle dark vignette + warm lift so images sit in the dark theme */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(212, 43, 43, 0.10), transparent 55%),
    linear-gradient(180deg, rgba(10,10,10,0) 55%, rgba(10,10,10,0.45) 100%);
  pointer-events: none;
  mix-blend-mode: normal;
}
.photo-frame:hover {
  border-color: rgba(212, 43, 43, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 0 40px rgba(212, 43, 43, 0.18),
    0 30px 80px -20px rgba(0, 0, 0, 0.7);
}
.photo-frame:hover img {
  transform: scale(1.03);
}
.photo-placeholder::before {
  content: attr(data-label);
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-size: 0.85rem;
  text-align: center;
  z-index: 1;
}
.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent 0 12px,
    rgba(255, 255, 255, 0.02) 12px 24px
  );
  pointer-events: none;
}

/* ============== Tabs (Basecoat brand override) ============== */
.tabs nav button[aria-selected="true"] {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px -4px rgba(212, 43, 43, 0.5);
}
.tabs nav button:not([aria-selected="true"]):hover {
  color: rgba(255, 255, 255, 0.9);
}

/* ============== Social cards ============== */
.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  transition: all .2s ease;
  cursor: pointer;
}
.social-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(212, 43, 43, 0.35);
  transform: translateY(-2px);
}
.social-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}

/* ============== Hero social pills (compact, sit under CTAs) ============== */
.hero-social {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.9rem 0.45rem 0.5rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all .2s ease;
  backdrop-filter: blur(10px);
}
.hero-social:hover {
  border-color: rgba(212, 43, 43, 0.45);
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}
.hero-social-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.02em;
  color: #fff;
  flex-shrink: 0;
}

/* ============== Dialog (Basecoat dark override) ============== */
dialog.dialog {
  background: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(30px) saturate(140%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.9);
  max-width: 95vw;
}
dialog.dialog::backdrop {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
}

/* ============== Footer watermark ============== */
.footer-watermark {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: clamp(5rem, 16vw, 14rem);
  color: rgba(255, 255, 255, 0.025);
  white-space: nowrap;
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

/* ============== Toaster ============== */
.toaster {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  background: rgba(20, 20, 20, 0.95);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 43, 43, 0.3);
  backdrop-filter: blur(20px);
  min-width: 260px;
  max-width: 340px;
  pointer-events: auto;
  animation: slideIn .3s ease-out;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}
.toast::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 0.6rem;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--orange);
}
@keyframes slideIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

/* ============== Accordion details marker hide ============== */
details summary::-webkit-details-marker { display: none; }
details summary { list-style: none; }

/* ============== Selection ============== */
::selection {
  background: rgba(212, 43, 43, 0.4);
  color: #fff;
}

/* ============== Focus-visible ============== */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============== Responsive tweaks ============== */
@media (max-width: 768px) {
  .footer-watermark { bottom: -20px; }
}

/* ============== Floating section CTAs (Book a chat pills) ============== */
.float-cta {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.1rem 0.6rem 1.15rem;
  border-radius: 9999px;
  background: rgba(212, 43, 43, 0.95);
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 8px 24px -6px rgba(212, 43, 43, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  animation: floatCtaPulse 2.6s ease-in-out infinite;
}
.float-cta:hover {
  background: #A81F1F;
  transform: scale(1.06) translateY(-1px);
  box-shadow: 0 14px 32px -8px rgba(212, 43, 43, 0.7), 0 0 24px rgba(212, 43, 43, 0.4);
}
.float-cta svg { transition: transform .25s ease; }
.float-cta:hover svg { transform: translateX(3px); }
@keyframes floatCtaPulse {
  0%, 100% { box-shadow: 0 8px 24px -6px rgba(212, 43, 43, 0.5), 0 0 0 0 rgba(212, 43, 43, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset; }
  50%      { box-shadow: 0 8px 24px -6px rgba(212, 43, 43, 0.5), 0 0 0 10px rgba(212, 43, 43, 0), 0 0 0 1px rgba(255, 255, 255, 0.08) inset; }
}
.float-cta--top-right    { top: -14px; right: 16px; }
.float-cta--bottom-left  { bottom: -14px; left: 16px; }
.float-cta--bottom-right { bottom: 24px; right: 16px; }
@media (max-width: 768px) {
  .float-cta { font-size: 0.78rem; padding: 0.5rem 0.9rem; }
  .float-cta--top-right    { top: -12px; right: 10px; }
  .float-cta--bottom-left  { bottom: -12px; left: 10px; }
  .float-cta--bottom-right { bottom: 18px; right: 10px; }
}

/* ============== Motion cursor trail ============== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  will-change: transform;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange), 0 0 24px rgba(212, 43, 43, 0.4);
  transition: opacity .2s ease;
}
.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1.5px solid rgba(212, 43, 43, 0.55);
  transition: width .2s ease, height .2s ease, border-color .2s ease, opacity .2s ease;
}
.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  border-color: rgba(212, 43, 43, 0.9);
  background: rgba(212, 43, 43, 0.08);
}
@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none !important; }
}
.hero-bump {
  display: block;
  opacity: 0;
  transform: translateY(14px);
  animation: heroBumpIn 0.7s cubic-bezier(.2,.9,.3,1.2) forwards;
  line-height: 1.15;
  padding: 2px 0;
}
.bump-in    { animation-delay: 0.1s; }
.bump-out   { animation-delay: 0.35s; }
.bump-hours { animation-delay: 0.6s; }
@keyframes heroBumpIn {
  0%   { opacity: 0; transform: translateY(14px) scale(0.96); filter: blur(4px); }
  60%  { opacity: 1; transform: translateY(-2px) scale(1.02); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* ============== Pain Cards — Who I Work With ============== */
.pain-card {
  position: relative;
  padding: 1.75rem 1.75rem 1.6rem;
  border-radius: 1.25rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px -22px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.pain-card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 43, 43, 0.16), transparent 70%);
  pointer-events: none;
  transition: opacity .3s ease;
  opacity: 0.6;
}
.pain-card:hover {
  border-color: rgba(212, 43, 43, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 28px rgba(212, 43, 43, 0.12), 0 30px 60px -25px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.pain-card:hover::before { opacity: 1; }
.pain-num {
  display: inline-block;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.02em;
  padding: 0.3rem 0.65rem 0.2rem;
  border: 1.5px solid rgba(212, 43, 43, 0.45);
  border-radius: 0.6rem;
  background: rgba(212, 43, 43, 0.08);
}

/* ============== Lane Tabs — Engine / Armour ============== */
.lane-tabs { gap: 1rem; }
.lane-tab {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 1.6rem;
  border-radius: 1.5rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease;
  overflow: hidden;
  box-shadow: 0 16px 40px -20px rgba(0, 0, 0, 0.6);
}
.lane-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 200px 160px at 80% 20%, rgba(212, 43, 43, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.lane-tab:hover {
  border-color: rgba(212, 43, 43, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7), 0 0 24px rgba(212, 43, 43, 0.1);
}
.lane-tab:hover::before { opacity: 1; }
.lane-tab[aria-selected="true"] {
  border-color: rgba(255, 255, 255, 0.35);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2), 0 24px 50px -20px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.lane-tab[aria-selected="true"]::before { opacity: 1; }
.lane-tab[aria-selected="true"] .lane-tab-arrow {
  background: #fff;
  color: #0D0D0D;
  border-color: #fff;
}
  border-color: var(--orange);
  transform: translateX(4px);
}

.lane-tab-num {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212, 43, 43, 0.12);
  border: 1.5px solid rgba(212, 43, 43, 0.4);
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}
.lane-tab[aria-selected="true"] .lane-tab-num {
  background: #fff;
  color: #0D0D0D;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.6);
}
.lane-tab-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  position: relative;
  z-index: 1;
  min-width: 0;
}
.lane-tab-title {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.lane-tab-sub {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.15rem;
}
.lane-tab-meta {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
  letter-spacing: 0.01em;
}
.lane-tab-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  transition: all .3s ease;
  position: relative;
  z-index: 1;
}

@media (max-width: 640px) {
  .lane-tab { padding: 1.3rem 1.2rem; gap: 1rem; }
  .lane-tab-num { width: 48px; height: 48px; font-size: 1.1rem; }
  .lane-tab-title { font-size: 1.5rem; }
  .lane-tab-sub { font-size: 0.88rem; }
  .lane-tab-arrow { width: 36px; height: 36px; }
}

/* ============== How I Work — Journey Infographic ============== */
.how-bg-grid {
  background-image:
    linear-gradient(rgba(212, 43, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 43, 43, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 80%);
}

.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 3rem 0 1rem;
}

/* Connecting track */
.journey-track {
  position: absolute;
  top: calc(3rem + 44px);
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(212, 43, 43, 0.25) 10%,
    rgba(212, 43, 43, 0.25) 90%,
    transparent 100%);
  z-index: 0;
  overflow: hidden;
}
.journey-track::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent,
    rgba(212, 43, 43, 0) 20%,
    rgba(212, 43, 43, 0.9) 48%,
    rgba(154, 31, 31, 0.9) 52%,
    rgba(212, 43, 43, 0) 80%,
    transparent);
  animation: journey-pulse 4.5s ease-in-out infinite;
  filter: blur(1px);
}
@keyframes journey-pulse {
  0%   { transform: translateX(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.journey-step.in { opacity: 1; transform: translateY(0); }
.journey-step[data-step="02"] { transition-delay: .15s; }
.journey-step[data-step="03"] { transition-delay: .3s; }
.journey-step[data-step="04"] { transition-delay: .45s; }

.journey-node {
  position: relative;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(212, 43, 43, 0.35), rgba(212, 43, 43, 0.08) 70%);
  border: 1.5px solid rgba(212, 43, 43, 0.5);
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 6px rgba(10, 10, 10, 1),
    0 0 0 7px rgba(212, 43, 43, 0.15),
    0 10px 40px -8px rgba(212, 43, 43, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform .4s cubic-bezier(.3,1.4,.5,1), box-shadow .3s ease;
}
.journey-step.in .journey-node {
  animation: journey-node-pop 1.2s ease-out both;
}
@keyframes journey-node-pop {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.journey-step:hover .journey-node {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 0 0 6px rgba(10, 10, 10, 1),
    0 0 0 7px rgba(212, 43, 43, 0.35),
    0 16px 50px -8px rgba(212, 43, 43, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.journey-icon {
  width: 36px;
  height: 36px;
  color: #FFFFFF;
}
.journey-num {
  position: absolute;
  bottom: -8px;
  right: -8px;
  background: var(--orange);
  color: #fff;
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 3px 9px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(212, 43, 43, 0.5);
  letter-spacing: 0.03em;
}

.journey-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  text-align: center;
  width: 100%;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}
.journey-step:hover .journey-card {
  border-color: rgba(212, 43, 43, 0.45);
  transform: translateY(-3px);
  box-shadow:
    0 0 24px rgba(212, 43, 43, 0.12),
    0 24px 60px -20px rgba(0, 0, 0, 0.7);
}
.journey-phase {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.journey-title {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.5rem;
}
.journey-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
  margin-bottom: 1.1rem;
}
.journey-benefit {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  padding-top: 0.9rem;
  text-align: left;
}
.journey-benefit-label {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.4rem;
}
.journey-benefit p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 900px) {
  .journey { grid-template-columns: 1fr; gap: 1.25rem; padding: 1rem 0; }
  .journey-track { display: none; }
  .journey-step { flex-direction: row; align-items: flex-start; gap: 1rem; }
  .journey-node { margin-bottom: 0; flex-shrink: 0; width: 68px; height: 68px; }
  .journey-icon { width: 28px; height: 28px; }
  .journey-card { text-align: left; padding: 1.1rem 1.2rem; }
}

/* Outcome tiles */
.outcome-tile {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(212, 43, 43, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(212, 43, 43, 0.2);
  backdrop-filter: blur(16px);
  transition: all .3s ease;
}
.outcome-tile:hover {
  border-color: rgba(212, 43, 43, 0.5);
  transform: translateY(-2px);
}
.outcome-tile-num {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--orange);
  width: 56px;
  text-align: center;
  flex-shrink: 0;
}
.outcome-tile-title {
  font-family: "Big Shoulders Display", sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.1;
}
.outcome-tile-sub {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}
