/* ============================================
   jagmindersingh.com — Home Page Styles
   Hero, manifesto stack, accordion, rings, bento
   ============================================ */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  padding-bottom: var(--sp-5);
  padding-left: 0;
  overflow: hidden;
}

.hero__canvas {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.9;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0;
  padding-left: calc(var(--sp-5) + 200px);
}

.hero__label {
  margin-bottom: var(--sp-5);
}

.hero__title {
  margin-bottom: var(--sp-4);
  font-family: 'Clash Display', sans-serif;
  font-weight: 300 !important;
  line-height: 0.88 !important;
  letter-spacing: -0.04em;
  font-size: clamp(3.5rem, 8vw, 7.5rem) !important;
}

.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__line {
  display: block;
}

.hero__sub {
  max-width: 520px;
  margin-bottom: var(--sp-5);
}

.hero__cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  transition: all var(--dur) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
}

.btn--primary:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.btn--ghost {
  border: 1.5px solid var(--border-hover);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

/* Hero italic accent text */
.hero__accent {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 400;
}

/* Floating service tags around sphere */
.hero__tags {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero__tag {
  position: absolute;
  left: var(--tag-x);
  top: var(--tag-y);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(255,255,255,0.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0;
  transform: scale(0.85) translateY(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

body.loaded .hero__tag {
  animation: tagAppear 0.6s var(--ease-out) forwards,
             tagFloat 6s ease-in-out infinite;
}

body.loaded .hero__tag:nth-child(1) { animation-delay: 1.3s, 0s; }
body.loaded .hero__tag:nth-child(2) { animation-delay: 1.5s, 0.8s; }
body.loaded .hero__tag:nth-child(3) { animation-delay: 1.7s, 1.6s; }
body.loaded .hero__tag:nth-child(4) { animation-delay: 1.9s, 2.4s; }
body.loaded .hero__tag:nth-child(5) { animation-delay: 2.1s, 3.2s; }
body.loaded .hero__tag:nth-child(6) { animation-delay: 2.3s, 4.0s; }
body.loaded .hero__tag:nth-child(7) { animation-delay: 2.5s, 4.8s; }
body.loaded .hero__tag:nth-child(8) { animation-delay: 2.7s, 5.6s; }

@keyframes tagAppear {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--sp-7);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.hero__scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.15em;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: var(--border-hover);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text);
  animation: scrollLine 2s var(--ease-out) infinite;
}

@keyframes scrollLine {
  0%   { top: -100%; }
  50%  { top: 0; }
  100% { top: 100%; }
}

/* Magnetic text hover */
.magnetic {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}

/* Hero load animation */
.hero__content .hero__label,
.hero__content .hero__title .hero__line,
.hero__content .hero__sub,
.hero__content .hero__cta {
  opacity: 0;
  transform: translateY(30px);
}

body.loaded .hero__content .hero__label {
  animation: heroFadeIn 0.8s 0.3s var(--ease-out) forwards;
}

body.loaded .hero__content .hero__title .hero__line:nth-child(1) {
  animation: heroFadeIn 0.8s 0.5s var(--ease-out) forwards;
}

body.loaded .hero__content .hero__title .hero__line:nth-child(2) {
  animation: heroFadeIn 0.8s 0.65s var(--ease-out) forwards;
}

body.loaded .hero__content .hero__title .hero__line:nth-child(3) {
  animation: heroFadeIn 0.8s 0.8s var(--ease-out) forwards;
}

body.loaded .hero__content .hero__title .hero__line:nth-child(4) {
  animation: heroFadeIn 0.8s 0.95s var(--ease-out) forwards;
}

body.loaded .hero__content .hero__sub {
  animation: heroFadeIn 0.8s 0.85s var(--ease-out) forwards;
}

body.loaded .hero__content .hero__cta {
  animation: heroFadeIn 0.8s 1s var(--ease-out) forwards;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(100vh - 60px);
    padding-top: calc(var(--nav-h) + var(--sp-6));
  }
  .hero__canvas {
    width: 100%;
    right: 0;
    opacity: 0.3;
  }
  .hero__tags {
    display: none;
  }
  .hero__scroll {
    display: none;
  }
  .hero__content {
    padding-left: var(--sp-5);
    max-width: 100%;
  }
  .hero__sub {
    max-width: 100%;
  }
}

/* ============================================
   MANIFESTO — Parallax Reveal
   ============================================ */
.manifesto {
  padding: var(--sp-10) 0;
}

.manifesto__header {
  text-align: center;
  margin-bottom: var(--sp-9);
}

.manifesto__beliefs {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-9);
}

.manifesto__belief {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-7);
  opacity: 0;
  transform: translateY(40px);
}

.manifesto__belief.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}

.manifesto__belief-num {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(6rem, 12vw, 10rem);
  font-weight: 700;
  color: rgba(212,98,42,0.08);
  line-height: 0.85;
  flex-shrink: 0;
  min-width: 140px;
  text-align: right;
  transition: color 0.4s ease;
  user-select: none;
}

.manifesto__belief:hover .manifesto__belief-num {
  color: rgba(212,98,42,0.18);
}

.manifesto__belief-content {
  flex: 1;
  padding-top: 1.5rem;
}

.manifesto__belief-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #e6a832);
  margin-bottom: var(--sp-4);
  border-radius: 2px;
  transition: width 0.6s var(--ease-out) 0.3s;
}

.manifesto__belief.revealed .manifesto__belief-line {
  width: 60px;
}

.manifesto__belief-eyebrow {
  color: var(--accent) !important;
  margin-bottom: var(--sp-4);
}

.manifesto__belief-headline {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.manifesto__belief-headline strong {
  font-weight: 600;
}

.manifesto__belief-proof {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .manifesto__belief {
    flex-direction: column;
    gap: var(--sp-3);
  }
  .manifesto__belief-num {
    min-width: auto;
    text-align: left;
    font-size: clamp(4rem, 15vw, 6rem);
  }
  .manifesto__belief-content {
    padding-top: 0;
  }
}

/* ============================================
   HOW I WORK — Expanding Panels
   ============================================ */
.how-i-work {
  padding: var(--sp-10) 0;
  background: #f0ece8;
}

.panels {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr;
  gap: var(--sp-4);
  min-height: 480px;
  transition: grid-template-columns 0.6s var(--ease-out);
}

.panels.panels--col1 { grid-template-columns: 2.5fr 1fr 1fr; }
.panels.panels--col2 { grid-template-columns: 1fr 2.5fr 1fr; }
.panels.panels--col3 { grid-template-columns: 1fr 1fr 2.5fr; }

.panels__item {
  position: relative;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(15,14,13,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out);
}

.panels__item:hover {
  border-color: rgba(212,98,42,0.2);
}

.panels__item--active {
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  border-color: rgba(212,98,42,0.15);
}

/* Accent gradient bar on active panel */
.panels__item--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent), #e6a832);
  border-radius: 4px 0 0 4px;
  z-index: 2;
}

/* Collapsed view — shown when panel is NOT active */
.panels__collapsed {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: var(--sp-5);
  text-align: center;
  gap: var(--sp-4);
}

.panels__item--active .panels__collapsed {
  display: none;
}

.panels__collapsed .panels__num {
  font-family: 'Clash Display', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212,98,42,0.15);
  line-height: 1;
}

.panels__collapsed-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* Expanded view — shown when panel IS active */
.panels__expanded {
  display: none;
  padding: var(--sp-7);
  height: 100%;
  flex-direction: column;
}

.panels__item--active .panels__expanded {
  display: flex;
}

.panels__expanded .panels__num {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: var(--sp-4);
}

.panels__title {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.panels__text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.panels__stat {
  border-top: 1px solid rgba(15,14,13,0.08);
  padding-top: var(--sp-4);
  margin-top: var(--sp-5);
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
}

.panels__stat-value {
  font-family: 'Clash Display', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.panels__stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .panels {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
    min-height: auto;
  }
  .panels.panels--col1,
  .panels.panels--col2,
  .panels.panels--col3 {
    grid-template-columns: 1fr;
  }
  .panels__collapsed {
    flex-direction: row;
    height: auto;
    padding: var(--sp-4);
  }
  .panels__collapsed-title {
    writing-mode: horizontal-tb;
  }
  .panels__item {
    min-height: auto;
  }
}

/* ============================================
   BOARD APPROVAL — Orange Glow + Asymmetric
   ============================================ */
.board-approval {
  padding: var(--sp-10) 0;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orange radial glow — large */
.board-approval::before {
  content: '';
  position: absolute;
  top: 15%;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,98,42,0.12) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

/* Orange radial glow — small */
.board-approval::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: 15%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,168,50,0.08) 0%, transparent 60%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

/* Ghost text — left-aligned, straight */
.board-approval__ghost {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  padding-left: 5%;
}

.board-approval__ghost-line {
  font-family: 'Clash Display', sans-serif;
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  line-height: 1.1;
  white-space: nowrap;
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: -0.02em;
}

.board-approval__ghost-line--big {
  font-size: clamp(6rem, 14vw, 14rem);
  letter-spacing: -0.04em;
}

/* Cards shifted right */
.board-approval__content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
  justify-content: flex-end;
  flex-wrap: wrap;
  max-width: 70%;
  margin-left: auto;
}

.board-approval__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--sp-7);
  transition: border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}

.board-approval__card:hover {
  border-color: rgba(212,98,42,0.4);
  box-shadow: 0 0 60px rgba(212,98,42,0.08);
}

.board-approval__card--main {
  max-width: 560px;
  flex: 1 1 400px;
}

.board-approval__card--secondary {
  max-width: 300px;
  flex: 0 1 280px;
  margin-top: var(--sp-8);
}

.board-approval__card-headline {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.board-approval__card-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.board-approval__card-stats {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-4);
  font-family: 'Inter', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.board-approval__card-sep {
  color: rgba(255,255,255,0.2);
}

.board-approval__card-stat {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: var(--sp-3);
}

.board-approval__card-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .board-approval {
    min-height: auto;
  }
  .board-approval__content {
    flex-direction: column;
    align-items: center;
    max-width: 100%;
    margin-left: 0;
    justify-content: center;
  }
  .board-approval__card--secondary {
    margin-top: 0;
  }
  .board-approval__ghost {
    padding-left: var(--sp-3);
  }
}

/* ============================================
   NUMBERS — Bold Counters
   ============================================ */
.numbers {
  padding: var(--sp-9) 0;
}

.numbers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.numbers__item {
  transition: transform 0.3s var(--ease-out);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-4);
}

.numbers__item:hover {
  transform: translateY(-4px);
}

.numbers__value {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  display: block;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.03em;
}

.numbers__label {
  display: block;
}

@media (max-width: 768px) {
  .numbers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-5);
  }
  .numbers__item + .numbers__item {
    border-top: 1px solid var(--border);
    padding-top: var(--sp-5);
  }
  .numbers__item:nth-child(-n+2) {
    border-top: none;
    padding-top: var(--sp-4);
  }
  .numbers__value {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}

/* ============================================
   SHOWCASE — Problem Line
   ============================================ */
.showcase__card-problem {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.showcase__card-problem-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  color: #e6a832;
  letter-spacing: 0.05em;
  margin-right: 0.375rem;
}

/* ============================================
   SHOWCASE (Dark)
   ============================================ */
.showcase {
  padding: var(--sp-10) 0;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(230,170,50,0.14) 0%, rgba(212,98,42,0.06) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.showcase::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,42,0.10) 0%, rgba(180,120,30,0.04) 40%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.showcase__header {
  margin-bottom: var(--sp-8);
}

/* Showcase controls */
.showcase__controls {
  display: flex;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.showcase__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
}

.showcase__arrow:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(230,170,50,0.4);
  transform: scale(1.08);
}

.showcase__arrow:active {
  transform: scale(0.95);
}

.showcase__track {
  display: flex;
  gap: var(--sp-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: var(--sp-4) var(--sp-5);
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
}

.showcase__track::-webkit-scrollbar {
  display: none;
}

.showcase__track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.showcase__card {
  width: 400px;
  flex-shrink: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
  position: relative;
  scroll-snap-align: start;
}

.showcase__card:hover {
  transform: translateY(-8px);
  border-color: rgba(230,170,50,0.3) !important;
  box-shadow: 0 0 40px rgba(230,170,50,0.10);
}

.showcase__card-num {
  font-family: 'Clash Display', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  position: absolute;
  top: -1rem;
  right: 1.5rem;
  pointer-events: none;
  user-select: none;
  transition: color 0.3s ease;
}

.showcase__card:hover .showcase__card-num {
  color: rgba(230,170,50,0.10);
}

.showcase__card-body {
  padding: 2.5rem;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
}

.showcase__card-tag {
  color: #e6a832 !important;
  margin-bottom: 1rem;
}

.showcase__card-title {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.625rem;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.showcase__card-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.showcase__card-outcome {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.25rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.showcase__card-stat {
  font-family: 'Clash Display', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #e6a832;
  line-height: 1;
}

.showcase__card-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .showcase__card {
    width: 300px;
  }
  .showcase__card-body {
    min-height: 320px;
    padding: 1.5rem;
  }
  .showcase__card-num {
    font-size: 5rem;
  }
}

/* ============================================
   CREDIBILITY MARQUEE
   ============================================ */
.marquee {
  padding: var(--sp-7) 0;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-right: var(--sp-6);
  flex-shrink: 0;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  font-weight: 300;
  white-space: nowrap;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.marquee__sep {
  color: var(--accent);
  font-size: 0.5rem;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
  .hero__tag {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* ============================================
   ABOUT TEASER — Asymmetric Bento Grid
   ============================================ */
.teaser {
  padding: var(--sp-10) 0;
}

.teaser__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--sp-8);
}

.teaser__bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: var(--sp-5);
}

/* Card uses CSS grid so visible + hidden layers overlap exactly */
.teaser__bento-card {
  display: grid;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out);
  will-change: transform;
}

.teaser__bento-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  border-color: rgba(212,98,42,0.2);
}

/* Both layers share the same grid cell — stacked */
.teaser__card-layer {
  grid-area: 1 / 1;
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-7);
}

/* Hidden layer — inverted colours, clipped by circle */
.teaser__card-hidden {
  background: #1a1a1a;
  z-index: 5;
  pointer-events: none;
  clip-path: circle(0px at var(--mx, 50%) var(--my, 50%));
  transition: clip-path 0.15s ease;
}

.teaser__card-hidden .teaser__card-num {
  color: rgba(212,98,42,0.35) !important;
}

.teaser__card-hidden .teaser__card-heading {
  color: #ffffff;
}

.teaser__card-hidden .teaser__card-heading strong {
  color: #ffffff;
}

.teaser__card-hidden .teaser__card-heading em {
  color: var(--accent);
}

.teaser__card-hidden .teaser__card-text {
  color: rgba(255,255,255,0.85);
}

/* Subtle lens ring via box-shadow */
.teaser__card-hidden::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(212,98,42,0.5);
  box-shadow: 0 0 30px rgba(212,98,42,0.15);
  left: calc(var(--mx, 50%) - 80px);
  top: calc(var(--my, 50%) - 80px);
  pointer-events: none;
  z-index: 6;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.teaser__bento-card:hover .teaser__card-hidden::before {
  opacity: 1;
}

/* Card 1: full width */
.teaser__bento-card--full {
  grid-column: 1 / -1;
}

/* Card 2: tall, spans 2 rows */
.teaser__bento-card--tall {
  grid-row: span 2;
}

/* Card 3: small, top-right */
.teaser__bento-card--small {
  /* default single cell */
}

/* Card 4: wide, bottom-right */
.teaser__bento-card--wide {
  /* default single cell */
}

/* Gradient hover for enterprise scale card */
.teaser__bento-card--small:hover {
  background: linear-gradient(135deg, var(--card-bg) 0%, rgba(212,98,42,0.06) 100%);
}

.teaser__card-num {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 700;
  color: rgba(212,98,42,0.12);
  line-height: 0.9;
  flex-shrink: 0;
  transition: color var(--dur) ease;
  letter-spacing: -0.03em;
}

.teaser__card-layer--visible:hover .teaser__card-num {
  color: rgba(212,98,42,0.30);
}

.teaser__card-heading {
  font-family: 'Clash Display', sans-serif;
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.teaser__card-heading em {
  font-style: italic;
  color: var(--accent);
  font-family: var(--font-display);
}

.teaser__card-text {
  font-size: clamp(1rem, 1.2vw, 1.1875rem);
  color: var(--text-muted);
  line-height: 1.7;
}

/* Accent highlight for key numbers */
.teaser__accent {
  color: var(--accent);
  font-weight: 600;
  text-shadow: 0 0 20px rgba(212,98,42,0.2);
}

@media (max-width: 768px) {
  .teaser__bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .teaser__bento-card--full,
  .teaser__bento-card--tall {
    grid-column: auto;
    grid-row: auto;
  }
}

/* ============================================
   DUAL PRACTITIONER — Expand + Word Reveal
   ============================================ */
.dual {
  padding: var(--sp-10) 0;
}

.dual__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-7);
  align-items: start;
  transition: grid-template-columns 0.6s var(--ease-out);
}

/* Column expand on hover via :has() */
@media (min-width: 769px) {
  .dual__grid:has(.dual__col--left:hover) {
    grid-template-columns: 1.5fr auto 1fr;
  }
  .dual__grid:has(.dual__col--right:hover) {
    grid-template-columns: 1fr auto 1.5fr;
  }
}

.dual__col {
  padding: var(--sp-6);
  transition: opacity 0.4s ease, background 0.4s ease;
  border-radius: var(--radius-lg);
}

.dual__tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(212,98,42,0.2);
  border-radius: 100px;
  margin-bottom: var(--sp-4);
}

.dual__role {
  margin-bottom: var(--sp-4);
}

.dual__headline {
  margin-bottom: var(--sp-4);
  line-height: 1.15;
}

.dual__headline strong {
  font-weight: 600;
}

.dual__desc {
  margin-bottom: var(--sp-5);
  line-height: 1.7;
}

.dual__bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.dual__bullets li {
  font-size: 1rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.dual__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* Premium divider */
.dual__divider {
  width: 3px;
  min-height: 300px;
  background: linear-gradient(180deg, transparent 0%, var(--accent) 30%, #e6a832 70%, transparent 100%);
  opacity: 0.8;
  align-self: stretch;
  animation: dividerGlow 3s ease-in-out infinite;
  border-radius: 2px;
}

@keyframes dividerGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Connector — word-by-word reveal */
.dual__connector {
  margin-top: var(--sp-8);
  padding-top: var(--sp-7);
  border-top: 1px solid var(--border);
}

.dual__connector-text {
  font-family: 'Clash Display', sans-serif;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
}

.dual__connector-text strong {
  font-weight: 600;
  font-style: normal;
}

.dual__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out),
              transform 0.5s var(--ease-out);
}

.dual__word--highlight {
  font-size: 1.2em;
  color: var(--accent);
  font-weight: 600;
  position: relative;
}

.dual__word--highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.6s var(--ease-out);
}

.dual__word--highlight.revealed::after {
  width: 100%;
}

@media (max-width: 768px) {
  .dual__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
    transition: none;
  }
  .dual__divider {
    width: 100%;
    height: 3px;
    min-height: auto;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, #e6a832 70%, transparent 100%);
  }
}
