@import url(https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Vollkorn:wght@600;700&display=swap);


/* ─── Ring Animations ─── */
@keyframes hcRingEnter {
  from { opacity: 0; transform: scale(0.72); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes hcRingRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes hcRipple1 {
  0%, 100% { transform: scale(0.978); }
  50%      { transform: scale(1.022); }
}
@keyframes hcRipple2 {
  0%, 100% { transform: scale(0.982); }
  50%      { transform: scale(1.017); }
}
@keyframes hcRipple3 {
  0%, 100% { transform: scale(0.986); }
  50%      { transform: scale(1.012); }
}
@keyframes hcRipple4 {
  0%, 100% { transform: scale(0.990); }
  50%      { transform: scale(1.008); }
}

/* ─── Entrance ─── */
@keyframes hcFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Shell ─── */
/* clip-path instead of overflow:hidden — overflow:hidden breaks backdrop-filter on .suzy-container */
.hc {
  position: relative;
  width: 100%;
  background-color: var(--colors--dark);
  clip-path: inset(0);
  box-sizing: border-box;
  margin-top: -80px;
  padding-top: 80px;
}

.hc::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 320px;
  background: linear-gradient(to bottom, transparent 0%, var(--colors--dark) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ─── Background / Ring Layer ─── */
.hc__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hc__rings {
  position: absolute;
  inset: 0;
}

/* ─── Gradient Blobs ─── */
.hc__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

/* top-left: large glow bleeding in from upper-left */
.hc__blob--tl {
  width: 1144px; height: 1144px;
  left: -380px; top: -608px;
  background: radial-gradient(circle, rgba(167, 125, 197, 0.08) 0%, transparent 65%);
}

/* top-right: glow bleeding in from far right */
.hc__blob--tr {
  width: 1144px; height: 1144px;
  right: -380px; left: auto; top: -608px;
  background: radial-gradient(circle, rgba(167, 125, 197, 0.08) 0%, transparent 65%);
}

/* bottom-right: mirror of bottom-left */
.hc__blob--br {
  width: 1117px; height: 1117px;
  right: -421px; left: auto; top: 850px;
  background: radial-gradient(circle, rgba(140, 100, 180, 0.52) 0%, transparent 65%);
}

/* bottom-center */
.hc__blob--bc {
  width: 1164px; height: 1164px;
  left: 749px; top: 994px;
  background: radial-gradient(circle, rgba(167, 125, 197, 0.58) 0%, transparent 65%);
}

/* center-bottom: inside the demo container area */
.hc__blob--bl {
  width: 1117px; height: 1117px;
  left: -421px; top: 850px;
  background: radial-gradient(circle, rgba(140, 100, 180, 0.52) 0%, transparent 65%);
}

/* ─── Gradient Rectangles ─── */
.hc__rect {
  position: absolute;
  pointer-events: none;
  border-radius: 60px;
}

/* wider bar bleeding off bottom-right */
.hc__rect--bottom {
  width: 1448px; height: 193px;
  left: 1445px; top: 1147px;
  background: linear-gradient(90deg, transparent 0%, rgba(167, 125, 197, 0.07) 40%, rgba(167, 125, 197, 0.07) 60%, transparent 100%);
}

/* ─── Individual Rings ─── */
.hc__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  will-change: transform, opacity;
}

.hc__ring svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hc__ring-enter {
  width: 100%;
  height: 100%;
  animation: hcRingEnter 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hc__ring--1 .hc__ring-enter { animation-delay: 0.2s; }
.hc__ring--2 .hc__ring-enter { animation-delay: 0.45s; }
.hc__ring--3 .hc__ring-enter { animation-delay: 0.7s; }
.hc__ring--4 .hc__ring-enter { animation-delay: 0.95s; }

.hc__ring-spin {
  width: 100%;
  height: 100%;
  animation: hcRingRotate linear infinite;
  will-change: transform;
}

.hc__ring--1 .hc__ring-spin { animation-duration: 13s; }
.hc__ring--2 .hc__ring-spin { animation-duration: 19s; animation-direction: reverse; animation-delay: -7s; }
.hc__ring--3 .hc__ring-spin { animation-duration: 15s; animation-delay: -11s; }
.hc__ring--4 .hc__ring-spin { animation-duration: 23s; animation-direction: reverse; animation-delay: -17s; }

/* Ripple pulse — staggered per ring */
.hc__ring--1 { animation: hcRipple1 10s ease-in-out infinite; animation-delay: 0s; }
.hc__ring--2 { animation: hcRipple2 10s ease-in-out infinite; animation-delay: 2.5s;  animation-fill-mode: backwards; }
.hc__ring--3 { animation: hcRipple3 10s ease-in-out infinite; animation-delay: 5s;    animation-fill-mode: backwards; }
.hc__ring--4 { animation: hcRipple4 10s ease-in-out infinite; animation-delay: 7.5s;  animation-fill-mode: backwards; }

/* Ring sizes — centered via negative margin */
.hc__ring--1 { width: 1100px; height: 1100px; margin-left: -550px;  margin-top: -550px; }
.hc__ring--2 { width: 1400px; height: 1400px; margin-left: -700px;  margin-top: -700px; }
.hc__ring--3 { width: 1700px; height: 1700px; margin-left: -850px;  margin-top: -850px; }
.hc__ring--4 { width: 2000px; height: 2000px; margin-left: -1000px; margin-top: -1000px; }

/* Inner rings dimmest, outer rings brightest */
.hc__ring--1 svg { opacity: 0.07; }
.hc__ring--2 svg { opacity: 0.11; }
.hc__ring--3 svg { opacity: 0.15; }
.hc__ring--4 svg { opacity: 0.20; }

/* Pause rotation when user hovers the demo card */
.hc:has(.suzy-demo-root:hover) .hc__ring-spin {
  animation-play-state: paused;
}

/* ─── Inner Wrapper ─── */
.hc__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  padding: var(--space--xxl) 2rem 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── Hero Copy ─── */
.hc__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space--xs);
  text-align: center;
  max-width: 760px;
  animation: hcFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}


.hc__h1 {
  font-family: var(--font--secondary-family);
  font-weight: 700;
  font-size: clamp(40px, 4.72vw, 68px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--colors--light);
  margin: 0;
}

.hc__subhead {
  font-family: var(--font--primary-family);
  font-weight: 400;
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.5;
  color: var(--colors--light);
  max-width: none;
  margin: 0;
}


/* ─── Demo Area ─── */
/* No animation here — animating this element (an ancestor of .suzy-container) promotes it
   to a GPU compositing layer and silently breaks backdrop-filter on .suzy-container */
.hc__demo {
  width: 100%;
  position: relative;
}


/* ─── CTAs ─── */
/* Asymmetric: tight gap to copy above, generous gap before demo below */
.hc__ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: var(--space--s) 0 var(--space--xxl);
  animation: hcFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.45s;
}

.hc__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font--primary-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius--round);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 150ms ease,
              border-color     150ms ease,
              box-shadow       150ms ease,
              color            300ms ease-out;
}

.hc__cta--primary {
  background: var(--colors--light);
  border:     none;
  color:      var(--colors--dark);
}

.hc__cta--primary:hover {
  background: rgba(247, 244, 253, 0.86);
}

.hc__cta--primary:active {
  background: rgba(247, 244, 253, 0.72);
}

.hc__cta--secondary {
  background-color: transparent;
  color: var(--colors--light);
  border: 2px solid var(--colors--light);
}

.hc__cta--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(167, 125, 197, 0.2);
}

.hc__cta--secondary:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}

/* ─── Logo Scroll ─── */
.hc__logos {
  width: 100%;
  margin-top: var(--space--l);
  padding-bottom: var(--space--xs);
}


/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .hc__ring,
  .hc__ring-enter,
  .hc__ring-spin,
  .hc__copy,
  .hc__ctas {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 768px) {
  .hc__inner {
    padding-top: var(--space--xl);
  }

  .hc__h1 {
    font-size: clamp(36px, 6.5vw, 56px);
  }

  .hc__ctas {
    padding: var(--space--s) 0 var(--space--xl);
  }
}

/* ─── Responsive: Mobile ─── */
@media (max-width: 480px) {
  .hc__inner {
    padding-top: var(--space--xl);
    padding-left: var(--space--s);
    padding-right: var(--space--s);
  }

  .hc__ctas {
    padding: var(--space--xs) 0 var(--space--xl);
  }

  .hc__h1 {
    font-size: clamp(37px, 9.5vw, 46px);
  }

  .hc__subhead br {
    display: none;
  }

  .hc__subhead {
    text-wrap: pretty;
  }

  .hc__logos {
    padding-bottom: var(--space--xs);
  }
}

/* ─── Entrance Animations ─── */
@keyframes szFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes szRingFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes szRingEnter {
  from { opacity: 0; transform: scale(0.72); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── Ring Animations ─── */
@keyframes szRingRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Ripple pulse — scale only, no opacity flicker */
@keyframes szRipple1 {
  0%, 100% { transform: scale(0.978); }
  50%      { transform: scale(1.022); }
}

@keyframes szRipple2 {
  0%, 100% { transform: scale(0.982); }
  50%      { transform: scale(1.017); }
}

@keyframes szRipple3 {
  0%, 100% { transform: scale(0.986); }
  50%      { transform: scale(1.012); }
}

@keyframes szRipple4 {
  0%, 100% { transform: scale(0.990); }
  50%      { transform: scale(1.008); }
}

/* ─── Hero Shell ─── */
.sz-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  background-color: var(--colors--light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.sz-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 140px;
  background: linear-gradient(to bottom, var(--colors--light) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.sz-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, var(--colors--light) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* ─── Background Ring Layer ─── */
.sz-hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  animation: szRingFadeIn 0.6s ease both;
  animation-delay: 0.1s;
}

.sz-hero__bg-blob {
  position: absolute;
  left: 50%; top: 50%;
  width: 1117px; height: 1117px;
  margin-left: -558px; margin-top: -558px;
}

.sz-hero__bg-blob-inner {
  width: 846px; height: 846px;
  position: absolute;
  left: 50%; top: 50%;
  margin-left: -423px; margin-top: -423px;
  transform: rotate(-66deg);
}

.sz-hero__bg-blob-inner svg {
  display: block;
  width: 100%; height: 100%;
}

/* ─── Rings ─── */
.sz-hero__ring {
  position: absolute;
  left: 50%; top: 50%;
  transform-origin: center center;
  will-change: transform, opacity;
}

.sz-hero__ring svg {
  display: block;
  width: 100%; height: 100%;
}

/* Enter wrapper — spring scale-in per ring */
.sz-hero__ring-enter {
  width: 100%;
  height: 100%;
  animation: szRingEnter 1.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sz-hero__ring--1 .sz-hero__ring-enter { animation-delay: 0.2s; }
.sz-hero__ring--2 .sz-hero__ring-enter { animation-delay: 0.45s; }
.sz-hero__ring--3 .sz-hero__ring-enter { animation-delay: 0.7s; }
.sz-hero__ring--4 .sz-hero__ring-enter { animation-delay: 0.95s; }

/* Spin wrapper */
.sz-hero__ring-spin {
  width: 100%; height: 100%;
  animation: szRingRotate linear infinite;
  will-change: transform;
}

/* Rotation — faster, irregular durations for a less-synchronized feel */
.sz-hero__ring--1 .sz-hero__ring-spin { animation-duration: 13s; animation-delay: 0s; }
.sz-hero__ring--2 .sz-hero__ring-spin { animation-duration: 19s; animation-direction: reverse; animation-delay: -7s; }
.sz-hero__ring--3 .sz-hero__ring-spin { animation-duration: 15s; animation-delay: -11s; }
.sz-hero__ring--4 .sz-hero__ring-spin { animation-duration: 23s; animation-direction: reverse; animation-delay: -17s; }

/* Ripple pulse */
.sz-hero__ring--1 { animation: szRipple1 10s ease-in-out infinite; animation-delay: 0s; }
.sz-hero__ring--2 { animation: szRipple2 10s ease-in-out infinite; animation-delay: 2.5s; animation-fill-mode: backwards; }
.sz-hero__ring--3 { animation: szRipple3 10s ease-in-out infinite; animation-delay: 5s;   animation-fill-mode: backwards; }
.sz-hero__ring--4 { animation: szRipple4 10s ease-in-out infinite; animation-delay: 7.5s; animation-fill-mode: backwards; }

/* Depth — outer rings fade and blur slightly */
.sz-hero__ring--2 svg { opacity: 0.82; }
.sz-hero__ring--3 svg { opacity: 0.65; filter: blur(0.4px); }
.sz-hero__ring--4 svg { opacity: 0.50; filter: blur(0.9px); }

/* Ring sizes */
.sz-hero__ring--1 { width: 877px;  height: 877px;  margin-left: -438px; margin-top: -438px; }
.sz-hero__ring--2 { width: 1111px; height: 1111px; margin-left: -555px; margin-top: -555px; }
.sz-hero__ring--3 { width: 1345px; height: 1345px; margin-left: -672px; margin-top: -672px; }
.sz-hero__ring--4 { width: 1580px; height: 1580px; margin-left: -790px; margin-top: -790px; }

/* ─── Hero Content ─── */
.sz-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 100%;
  max-width: 1280px;
  padding: 80px 20px;
  box-sizing: border-box;
  text-align: center;
}

.sz-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.sz-hero__heading {
  font-family: var(--font--secondary-family);
  font-weight: 700;
  font-size: clamp(40px, 5.3vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  max-width: 760px;
  margin: 0;
  color: var(--colors--dark);
  animation: szFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.2s;
}

.sz-hero__subhead {
  font-family: var(--font--primary-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  max-width: 540px;
  margin: 0;
  color: rgba(39, 29, 59, 0.68);
  animation: szFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.35s;
}

.sz-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background-color: var(--colors--dark);
  color: var(--colors--light);
  font-family: var(--font--primary-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius--round);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(39, 29, 59, 0.18), 0 1px 2px rgba(39, 29, 59, 0.12);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.22s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.22s ease;
  animation: szFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.5s;
}

.sz-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(39, 29, 59, 0.22), 0 2px 6px rgba(39, 29, 59, 0.14), 0 0 28px rgba(167, 125, 197, 0.45);
  opacity: 1;
}

.sz-hero__cta:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(39, 29, 59, 0.18), 0 1px 2px rgba(39, 29, 59, 0.12);
  transition-duration: 0.08s;
}

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .sz-hero__bg,
  .sz-hero__heading,
  .sz-hero__subhead,
  .sz-hero__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .sz-hero__ring,
  .sz-hero__ring-enter,
  .sz-hero__ring-spin {
    animation: none;
    transform: none;
    opacity: 1;
  }
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 768px) {
  .sz-hero { min-height: 580px; }

  .sz-hero__ring--1 { width: 600px;  height: 600px;  margin-left: -300px; margin-top: -300px; }
  .sz-hero__ring--2 { width: 760px;  height: 760px;  margin-left: -380px; margin-top: -380px; }
  .sz-hero__ring--3 { width: 920px;  height: 920px;  margin-left: -460px; margin-top: -460px; }
  .sz-hero__ring--4 { width: 1080px; height: 1080px; margin-left: -540px; margin-top: -540px; }

  .sz-hero__bg-blob { width: 760px; height: 760px; margin-left: -380px; margin-top: -380px; }
  .sz-hero__bg-blob-inner { width: 580px; height: 580px; margin-left: -290px; margin-top: -290px; }

  .sz-hero__heading { font-size: clamp(36px, 6vw, 54px); }

  .sz-hero__content { gap: 40px; padding: 60px 24px 72px; }
}

/* ─── Responsive: Mobile ─── */
@keyframes szRipple1M {
  0%, 100% { transform: scale(0.93); }
  50%      { transform: scale(1.07); }
}

@keyframes szRipple2M {
  0%, 100% { transform: scale(0.94); }
  50%      { transform: scale(1.06); }
}

@keyframes szRipple3M {
  0%, 100% { transform: scale(0.95); }
  50%      { transform: scale(1.05); }
}

@keyframes szRipple4M {
  0%, 100% { transform: scale(0.96); }
  50%      { transform: scale(1.04); }
}

@media (max-width: 480px) {
  .sz-hero { min-height: 588px; }

  .sz-hero::before { height: 50px; }
  .sz-hero::after  { height: 70px; }

  .sz-hero__ring--1 { width: 500px; height: 500px; margin-left: -250px; margin-top: -250px; }
  .sz-hero__ring--2 { width: 600px; height: 600px; margin-left: -300px; margin-top: -300px; }
  .sz-hero__ring--3 { width: 700px; height: 700px; margin-left: -350px; margin-top: -350px; }
  .sz-hero__ring--4 { width: 800px; height: 800px; margin-left: -400px; margin-top: -400px; }

  .sz-hero__bg-blob { width: 537px; height: 537px; margin-left: -269px; margin-top: -269px; }
  .sz-hero__bg-blob-inner { width: 428px; height: 428px; margin-left: -214px; margin-top: -214px; }

  .sz-hero__ring--1 { animation: szRipple1M 8s ease-in-out infinite; animation-delay: 0s; }
  .sz-hero__ring--2 { animation: szRipple2M 8s ease-in-out infinite; animation-delay: 2s; animation-fill-mode: backwards; }
  .sz-hero__ring--3 { animation: szRipple3M 8s ease-in-out infinite; animation-delay: 4s; animation-fill-mode: backwards; }
  .sz-hero__ring--4 { animation: szRipple4M 8s ease-in-out infinite; animation-delay: 6s; animation-fill-mode: backwards; }

  .sz-hero__ring--1 .sz-hero__ring-spin { animation-duration: 10s; }
  .sz-hero__ring--2 .sz-hero__ring-spin { animation-duration: 15s; }
  .sz-hero__ring--3 .sz-hero__ring-spin { animation-duration: 12s; }
  .sz-hero__ring--4 .sz-hero__ring-spin { animation-duration: 18s; }

  .sz-hero__heading { font-size: 52px; letter-spacing: -0.01em; }
  .sz-hero__subhead { font-size: 18px; }
  .sz-hero__content { gap: 40px; padding: 60px 20px; }

  .sz-hero__cta {
    width: auto;
    font-size: 16px;
    letter-spacing: 0.02em;
    padding: 14px 28px;
  }
}

/*
 * BACKDROP-FILTER SAFETY RULE
 * .suzy-container uses backdrop-filter: blur() for the frosted glass effect.
 * Three things silently kill it — check these first if the blur ever disappears:
 *
 * 1. overflow:hidden on any ancestor → use clip-path:inset(0) on .hc instead
 * 2. CSS animation with transform on any ancestor → promotes that element to a GPU
 *    compositing layer; backdrop-filter can't sample content outside that layer.
 *    .hc__demo had this bug — it now has NO animation for this reason.
 * 3. overflow:hidden or overflow:clip on .suzy-container itself → don't add it.
 *
 * Safe ancestor chain (do not add animations, overflow, or clip-path here):
 *   .hc              → clip-path: inset(0)  (NOT overflow:hidden)
 *   .hc__inner       → no overflow, no animation
 *   .hc__demo        → NO animation  ← this was the final root cause
 *   .suzy-demo-root  → no overflow, no animation
 *   .suzy-container  → backdrop-filter lives here; no overflow
 */

/* ─── Keyframes ─────────────────────────────────────────────────────────── */

/* Icon floats in from above, slightly scaled up — hangs above the drop zone */
@keyframes suzyDragFloat {
  0%   { transform: translateY(-28px) scale(1.22); opacity: 0; }
  18%  { opacity: 1; }
  100% { transform: translateY(-20px) scale(1.18); opacity: 1; }
}

/* Icon drops from float position into slot */
@keyframes suzyDragDrop {
  0%   { transform: translateY(-20px) scale(1.18); opacity: 1; }
  60%  { transform: translateY(2px) scale(0.96); }
  80%  { transform: translateY(-3px) scale(1.02); }
  100% { transform: translateY(0px) scale(1); opacity: 0; }
}

/* Static icon spring-settles in after drop */
@keyframes suzyDropLand {
  0%   { transform: scale(0.88); opacity: 0; }
  55%  { transform: scale(1.07); opacity: 1; }
  78%  { transform: scale(0.97); }
  100% { transform: scale(1);    opacity: 1; }
}

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

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes contentReveal {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.suzy-headline-area-enter {
  animation: headlineEnter 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes cardEnter {
  from { opacity: 0; transform: translateY(14px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes cardFadeOut {
  from { opacity: 1; transform: scale(1); }
  to   { opacity: 0; transform: scale(0.97); }
}


@keyframes expandedCardEnter {
  from { opacity: 0; transform: translateY(10px) scale(0.985); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.suzy-intel-expanded-card-enter {
  opacity: 0;
  animation: expandedCardEnter 540ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.suzy-intel-cards-exit .suzy-intel-small-card:first-child {
  animation: cardFadeOut 360ms cubic-bezier(0.4, 0, 0.2, 1) both;
  pointer-events: none;
}
.suzy-intel-cards-exit .suzy-intel-small-card:last-child {
  animation: cardFadeOut 360ms cubic-bezier(0.4, 0, 0.2, 1) 100ms both;
  pointer-events: none;
}


@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.98); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes progressFill {
  from { width: 0%; }
  to   { width: 100%; }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}

/* ─── Animation Utility Classes ─────────────────────────────────────────── */

.suzy-anim-step {
  opacity: 0;
  animation: stepEnter 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.suzy-anim-slide-right {
  opacity: 0;
  animation: slideInRight 300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.suzy-intel-content-reveal {
  opacity: 0;
  animation: contentReveal 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.suzy-intel-card-enter {
  opacity: 0;
  animation: cardEnter 540ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.suzy-anim-scale {
  opacity: 0;
  animation: scaleIn 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ─── Root Container ─────────────────────────────────────────────────────── */

/* DO NOT add overflow:hidden here — it breaks backdrop-filter on .suzy-container */
.suzy-demo-root {
  background: transparent;
  border-radius: 28px;
  width: 1080px;
  display: flex;
  flex-direction: column;
  font-family: var(--font--primary-family);
  position: relative;
  user-select: none;
  margin: 0 auto;
}

/* ─── Tab Bar ────────────────────────────────────────────────────────────── */

.suzy-tab-bar {
  display: flex;
  justify-content: center;
  gap: var(--space--s);
  flex-shrink: 0;
}

.suzy-tab {
  font-family: var(--font--primary-family);
  font-size: 16px;
  font-weight: 400;
  color: var(--colors--light);
  letter-spacing: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  min-width: 130px;
  border-radius: 8px;
  background: rgba(167, 125, 197, 0.2);
  transition: background 220ms ease;
  white-space: nowrap;
}

.suzy-tab:hover {
  background: rgba(167, 125, 197, 0.4);
}

.suzy-tab-active {
  background: rgba(167, 125, 197, 0.6);
}

.suzy-tab-tagline {
  font-family: var(--font--primary-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(247, 244, 253, 0.85);
  margin: 0;
  text-align: center;
  min-height: 1.5em;
  animation: tabTaglineIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

/* ─── Container ──────────────────────────────────────────────────────────── */

/* DO NOT add overflow:hidden or overflow:clip here — either breaks backdrop-filter */
.suzy-container {
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
  background: rgba(167, 125, 197, 0.10);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  box-shadow:
    0px 2px  4px  rgba(10, 5, 25, 0.06),
    0px 6px  12px rgba(10, 5, 25, 0.08),
    0px 16px 32px rgba(10, 5, 25, 0.10),
    0px 32px 64px rgba(10, 5, 25, 0.12);
  padding: var(--space--l) var(--space--xxxl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space--l);
  position: relative;
}

.suzy-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space--s);
  width: 920px;
}

/* ─── Headline ───────────────────────────────────────────────────────────── */

.suzy-headline-area {
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suzy-headline {
  font-family: var(--font--secondary-family);
  font-weight: 600;
  font-size: 32px;
  color: var(--colors--light);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.3px;
  text-align: center;
}
.sz-sentence { display: inline; }


.suzy-subheadline {
  font-family: var(--font--primary-family);
  font-size: 18px;
  font-weight: 400;
  color: rgba(247, 244, 253, 0.75);
  margin: 0 auto;
  line-height: 1.3;
  text-align: center;
  max-width: 600px;
}

/* ─── Tab Content Area ───────────────────────────────────────────────────── */

.suzy-tab-content {
  flex: 1;
}

/* ─── Card Base ──────────────────────────────────────────────────────────── */

.suzy-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0px 15px 30px 0px rgba(167, 125, 197, 0.12);
  overflow: hidden;
}

.suzy-card-inner {
  padding: 20px;
}

/* ─── Shared Elements ────────────────────────────────────────────────────── */

.suzy-tag {
  display: inline-block;
  font-family: var(--font--primary-family);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #b185ce;
  background: rgba(177, 133, 206, 0.12);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.suzy-card-h3 {
  font-family: var(--font--secondary-family);
  font-weight: 600;
  font-size: 17px;
  color: var(--colors--dark);
  margin: 0 0 8px;
  line-height: 1.3;
}

.suzy-card-h4 {
  font-family: var(--font--primary-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--colors--dark);
  margin: 0 0 8px;
  line-height: 1.3;
}

.suzy-body-text {
  font-family: var(--font--primary-family);
  font-size: 14px;
  color: #4e5258;
  line-height: 1.55;
  margin: 0 0 12px;
}

.suzy-read-more {
  font-family: var(--font--primary-family);
  font-size: 12px;
  color: #b185ce;
  text-decoration: none;
  font-weight: 600;
}

.suzy-img-placeholder {
  width: 100%;
  border-radius: 0;
}

/* ─── CTA Button ─────────────────────────────────────────────────────────── */

.suzy-cta-btn {
  display: inline-block;
  background: none;
  color: var(--colors--light);
  font-family: var(--font--primary-family);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-color: rgba(247, 244, 253, 0.5);
  text-underline-offset: 3px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.suzy-cta-btn::after {
  content: " →";
  display: inline-block;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.suzy-cta-btn:hover::after {
  transform: translateX(4px);
}

.suzy-cta-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.suzy-book-demo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--font--primary-family);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius--round);
  border: 2px solid transparent;
  outline: none;
  white-space: nowrap;
  cursor: pointer;
  background: var(--colors--light);
  color: var(--colors--dark);
  transition: background-color 150ms ease;
}

.suzy-book-demo-cta:hover {
  background: rgba(247, 244, 253, 0.86);
}

.suzy-book-demo-cta:active {
  background: rgba(247, 244, 253, 0.72);
}

.suzy-demo-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius--round);
  border: 2px solid rgba(247, 244, 253, 0.30);
  outline: none;
  background: transparent;
  color: var(--colors--light);
  font-family: var(--font--primary-family);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    border-color     150ms ease;
}

.suzy-demo-learn-more:hover {
  background:   rgba(247, 244, 253, 0.12);
  border-color: rgba(247, 244, 253, 0.45);
}

/* ─── Paused State ───────────────────────────────────────────────────────── */

/* Freeze all CSS animations inside the content area when paused.
   The ring button's animation is controlled separately via animationPlayState inline style. */
.suzy-demo-paused .suzy-content *,
.suzy-demo-paused .suzy-tab-bar * {
  animation-play-state: paused !important;
}

/* ─── Ring Play/Pause Button ─────────────────────────────────────────────── */

@keyframes suzyRingProgress {
  from { stroke-dashoffset: 106.8; }
  to   { stroke-dashoffset: 0; }
}

.suzy-ring-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.suzy-ring-btn:hover {
  transform: scale(1.06);
}

.suzy-ring-btn:active {
  transform: scale(0.96);
  transition-duration: 0.08s;
}

.suzy-ring-fill {
  stroke-dashoffset: 106.8;
  animation: suzyRingProgress linear both;
}

/* ─── Tab 0: Intelligence ────────────────────────────────────────────────── */

.suzy-intel-layout {
  display: flex;
  gap: 20px;
  height: 356px;
}

.suzy-intel-left-col {
  flex: 0 0 450px;
  height: 356px;
}

.suzy-intel-right-col {
  flex: 0 0 450px;
  height: 356px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Crossfade wrapper — holds both panels during transition */
.suzy-intel-right-crossfade {
  flex: 0 0 450px;
  position: relative;
  height: 356px;
}

/* When inside the crossfade wrapper, inner right-cols fill it absolutely */
.suzy-intel-right-crossfade > .suzy-intel-right-col {
  position: absolute;
  inset: 0;
  flex: none;
  width: 100%;
  height: 100%;
}

/* Dark card base for Intelligence */
.suzy-intel-card {
  background: rgba(39, 29, 59, 0.8);
  border: 1px solid rgba(247, 244, 253, 0.15);
  border-radius: 20px;
  overflow: hidden;
}

/* Small right cards — top one gets blur */
.suzy-intel-small-card {}

.suzy-intel-small-card:first-child {
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
}

/* Main (left) card — 447×356px, horizontal layout */
.suzy-intel-main-card {
  height: 100%;
}

.suzy-intel-main-card-inner {
  display: flex;
  flex-direction: row;
  height: 100%;
}

.suzy-intel-main-card-text {
  width: 266px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
}

.suzy-intel-main-card-img {
  flex: 1;
  overflow: hidden;
  background-repeat: no-repeat;
  position: relative;
}

.suzy-intel-main-card-img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 113px;
  height: 100%;
  background: linear-gradient(to right, rgba(39, 29, 59, 0.7) 0%, transparent 100%);
  pointer-events: none;
}

/* Small (right) cards — text-only, stacked */
.suzy-intel-small-card {
  flex: 1;
}

.suzy-intel-card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  height: 100%;
  box-sizing: border-box;
}

/* Dark tag variant — play icon + label, no pill */
.suzy-tag-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(215, 196, 231, 1);
}

/* Dark heading variants */
.suzy-intel-main-h3 {
  font-family: var(--font--secondary-family);
  font-weight: 600;
  font-size: 32px;
  color: var(--colors--light);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.32px;
}

.suzy-card-h3-dark {
  font-family: var(--font--secondary-family);
  font-weight: 600;
  font-size: 24px;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.24px;
}

.suzy-card-h4-dark {
  font-family: var(--font--secondary-family);
  font-weight: 600;
  font-size: 20px;
  color: #ffffff;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.2px;
}

/* Card metadata row — time · read time · sources */
.suzy-intel-metadata-row {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.suzy-intel-meta-text {
  font-family: var(--font--primary-family);
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.suzy-intel-meta-muted {
  color: rgba(247, 244, 253, 0.4);
}

.suzy-intel-meta-dim {
  color: rgba(255, 255, 255, 0.45);
}

.suzy-intel-meta-dot {
  width: 3.4px;
  height: 3.4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* NEW badge */
.suzy-intel-new-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

.suzy-intel-new-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #84d6c3;
  flex-shrink: 0;
}

.suzy-intel-new-label {
  font-family: var(--font--primary-family);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #84d6c3;
  white-space: nowrap;
}

/* Dark read-more link */
.suzy-read-more-dark {
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 400;
  color: rgba(215, 196, 231, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.suzy-read-more-dark {
  transition: opacity 300ms ease;
}

.suzy-read-more-dark svg {
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.suzy-read-more-clicking {
  opacity: 0.6;
}

.suzy-read-more-clicking svg {
  transform: translateX(6px);
}

/* Expanded card (steps 1-3) */
.suzy-intel-expanded-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: rgba(39, 29, 59, 0.8);
}

.suzy-intel-expanded-scroll {
  flex-shrink: 0;
}

/* Full-width image at top of expanded card */
.suzy-intel-expanded-img {
  width: 100%;
  height: 200px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  flex-shrink: 0;
  background-repeat: no-repeat;
}

/* Content padding area */
.suzy-intel-expanded-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* Tag row on dark card */
.suzy-intel-expanded-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #d7c4e7;
  margin-bottom: 12px;
}

/* .suzy-intel-expanded-tag-icon replaced by inline SVG PlayIcon */

/* Title on dark card */
.suzy-intel-expanded-title {
  font-family: var(--font--secondary-family);
  font-weight: 600;
  font-size: 32px;
  color: var(--colors--light);
  letter-spacing: -0.32px;
  line-height: 1;
  margin: 0 0 12px;
}

/* Body text */
.suzy-intel-expanded-body {
  font-family: var(--font--primary-family);
  font-size: 16px;
  color: var(--colors--light);
  line-height: 1.5;
  margin: 0 0 20px;
}

.suzy-intel-expanded-subhead {
  font-family: var(--font--secondary-family);
  font-weight: 400;
  font-size: 20px;
  color: var(--colors--light);
  margin: 14px 0 8px;
  line-height: 1.1;
  letter-spacing: -0.077px;
}

.suzy-intel-strategic {
  background: rgba(167, 125, 197, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-top: 14px;
  margin-bottom: 16px;
}

@keyframes strategicPop {
  0%   { background: rgba(167, 125, 197, 0.2); box-shadow: 0 4px 0px rgba(167, 125, 197, 0); }
  45%  { background: rgba(167, 125, 197, 0.45); box-shadow: 0 4px 24px rgba(167, 125, 197, 0.35); }
  100% { background: rgba(167, 125, 197, 0.2); box-shadow: 0 4px 0px rgba(167, 125, 197, 0); }
}

.suzy-intel-strategic-emphasis {
  opacity: 1;
  animation: strategicPop 1600ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes likePop {
  0%   { transform: scale(1) translateY(0);      box-shadow: 0 0 0px rgba(167, 125, 197, 0);    animation-timing-function: cubic-bezier(0.34, 1.3, 0.64, 1); }
  28%  { transform: scale(1.18) translateY(-1px); box-shadow: 0 0 14px rgba(167, 125, 197, 0.5); animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  62%  { transform: scale(0.96) translateY(0);   box-shadow: 0 0 5px rgba(167, 125, 197, 0.18); }
  100% { transform: scale(1) translateY(0);      box-shadow: 0 0 0px rgba(167, 125, 197, 0); }
}
.suzy-intel-icon-btn-liked {
  animation: likePop 520ms linear forwards;
  background: rgba(167, 125, 197, 0.12) !important;
  border-color: rgba(167, 125, 197, 0.35) !important;
}
.suzy-intel-icon-btn-liked svg path {
  stroke: var(--colors--purple);
}
.suzy-intel-icon-btn-liked svg path:first-child {
  fill: rgba(167, 125, 197, 0.2);
}

.suzy-intel-strategic-label {
  font-family: var(--font--secondary-family);
  font-weight: 400;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 4px;
}

.suzy-intel-strategic-text {
  font-family: var(--font--primary-family);
  font-size: 16px;
  color: var(--colors--light);
  line-height: 1.5;
  margin: 0;
}

/* Bottom action bar */
.suzy-intel-sources-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.suzy-intel-action-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.suzy-intel-icon-btn {
  background: transparent;
  border: 1.5px solid transparent;
  padding: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  line-height: 0;
  transition: background 220ms ease, border-color 220ms ease;
}
.suzy-intel-icon-btn svg path {
  transition: stroke 250ms ease, fill 250ms ease;
}

.suzy-intel-icon-btn:hover {
  background: rgba(215, 196, 231, 0.1);
}

.suzy-intel-sources-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.suzy-intel-source-avatars {
  display: flex;
  align-items: center;
}

.suzy-intel-source-avatar {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--colors--dark);
  margin-right: -5px;
  flex-shrink: 0;
}

.suzy-intel-sources {
  font-family: var(--font--primary-family);
  font-size: 12px;
  color: rgba(247, 244, 253, 0.6);
  font-weight: 400;
  margin-left: 8px;
}

.suzy-intel-add-project {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 2px 10px 2px 4px;
  border-radius: 6px;
}

.suzy-intel-add-project-label {
  font-family: var(--font--primary-family);
  font-size: 12px;
  color: rgba(247, 244, 253, 0.6);
  font-weight: 400;
  white-space: nowrap;
}

/* Box pop — springs into a selected state around the whole row */
@keyframes addProjectBoxPop {
  0%   { box-shadow: inset 0 0 0 0px rgba(167, 125, 197, 0); background: transparent; animation-timing-function: cubic-bezier(0.34, 1.4, 0.64, 1); }
  40%  { box-shadow: inset 0 0 0 2px rgba(167, 125, 197, 0.55); background: rgba(167, 125, 197, 0.2); }
  100% { box-shadow: inset 0 0 0 1.5px rgba(167, 125, 197, 0.35); background: rgba(167, 125, 197, 0.12); }
}

.suzy-intel-add-project-selected {
  animation: addProjectBoxPop 480ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Icon press when selected */
@keyframes addProjectClick {
  0%   { transform: scale(1); }
  25%  { transform: scale(0.78); }
  60%  { transform: scale(0.78); }
  100% { transform: scale(1); }
}

.suzy-intel-add-project-clicking {
  animation: addProjectClick 360ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes dropdownEnter {
  from { opacity: 0; transform: translateY(6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.suzy-intel-project-dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 2px 16px 4px rgba(39, 29, 59, 0.24);
  padding: 6px 3px;
  width: 164px;
  z-index: 20;
  animation: dropdownEnter 200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.suzy-intel-project-option {
  display: flex;
  align-items: center;
  padding: 6px 5px;
  border-radius: 6px;
  font-family: var(--font--primary-family);
  font-size: 11px;
  font-weight: 400;
  color: #000000;
  line-height: 1.5;
  white-space: nowrap;
  cursor: default;
}

.suzy-intel-project-option-active {
  background: rgba(167, 125, 197, 0.2);
}

@keyframes q3DoubleClick {
  0%   { background: rgba(167, 125, 197, 0.2); }
  14%  { background: rgba(167, 125, 197, 0.04); }
  28%  { background: rgba(167, 125, 197, 0.5); }
  50%  { background: rgba(167, 125, 197, 0.04); }
  68%  { background: rgba(167, 125, 197, 0.55); }
  100% { background: rgba(167, 125, 197, 0.55); }
}

.suzy-intel-project-option-clicking {
  animation: q3DoubleClick 580ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Scrollbar */
.suzy-intel-scrollbar-track {
  position: absolute;
  right: 6px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: rgba(167, 125, 197, 0.15);
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 200ms ease;
}

.suzy-intel-expanded-card:hover .suzy-intel-scrollbar-track {
  opacity: 1;
}

.suzy-intel-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  background: rgba(167, 125, 197, 0.5);
  border-radius: 4px;
  cursor: grab;
  transition: background 150ms ease;
}

.suzy-intel-scrollbar-thumb:hover {
  background: var(--colors--purple);
}

.suzy-intel-scrollbar-thumb:active {
  cursor: grabbing;
  background: var(--colors--purple);
}

/* Chat input bar */
.suzy-intel-chat-bar {
  border: 1px solid #b185ce;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px;
  flex-shrink: 0;
}

.suzy-intel-chat-placeholder {
  font-family: var(--font--primary-family);
  font-size: 15px;
  color: rgba(215, 196, 231, 0.6);
  margin: 0 0 12px;
}

.suzy-intel-chat-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.suzy-intel-chat-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #4E8DF5;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font--primary-family);
  font-size: 8px;
  font-weight: 700;
  color: white;
}

.suzy-intel-chat-cta {
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 700;
  background: var(--colors--light);
  color: var(--colors--dark);
  border-radius: var(--radius--round);
  padding: 6px 16px;
  white-space: nowrap;
}

/* ─── Tab 1: Insight ─────────────────────────────────────────────────────── */

.suzy-insight-layout {
  display: flex;
  gap: 20px;
  height: 356px;
}

.suzy-insight-left-col {
  flex: 0 0 450px;
}

.suzy-insight-left-card {
  height: 356px;
  border: 1px solid rgba(247, 244, 253, 0.09);
  overflow: hidden;
}

.suzy-insight-right-col {
  flex: 0 0 450px;
}

.suzy-insight-right-card {
  height: 356px;
  border: 1px solid rgba(247, 244, 253, 0.09);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.suzy-insight-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  gap: 8px;
  box-sizing: border-box;
}

.suzy-insight-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.suzy-insight-pill-wrap {
  margin-bottom: 4px;
}

.suzy-insight-pill {
  display: inline-block;
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(39, 29, 59, 0.55);
  background: rgba(39, 29, 59, 0.06);
  border-radius: var(--radius--round);
  padding: 6px 12px;
}

.suzy-insight-project-title {
  font-family: var(--font--secondary-family);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.24px;
  color: var(--colors--dark);
  margin: 0;
  line-height: 1.3;
}

.suzy-insight-project-desc {
  font-family: var(--font--primary-family);
  font-size: 14px;
  color: rgba(39, 29, 59, 0.65);
  margin: 0;
  line-height: 1.4;
}

.suzy-insight-rows {
  display: flex;
  flex-direction: column;
}

.suzy-insight-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(167, 125, 197, 0.2);
}

.suzy-insight-row-last {
  border-bottom: none;
}

.suzy-insight-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.suzy-insight-row-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.suzy-insight-row-icon {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: #f0f0f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.suzy-insight-row-label {
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 500;
  color: var(--colors--dark);
  white-space: nowrap;
  line-height: 1;
}

.suzy-insight-row-sublabel {
  font-family: var(--font--primary-family);
  font-size: 11px;
  font-weight: 400;
  color: rgba(39, 29, 59, 0.6);
  white-space: nowrap;
  line-height: 1;
}

.suzy-insight-row-count {
  font-family: var(--font--primary-family);
  font-size: 12px;
  color: #757a83;
  white-space: nowrap;
}

.suzy-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 12px;
  border-radius: var(--radius--round);
  white-space: nowrap;
}

.suzy-badge-green {
  background: #d1fadf;
  color: #21c277;
}

.suzy-badge-green::before {
  content: '';
  width: 5.5px;
  height: 5.5px;
  border-radius: 50%;
  background: #21c277;
  flex-shrink: 0;
}

.suzy-badge-ready {
  background: rgba(167, 125, 197, 0.2);
  color: var(--colors--purple);
}

.suzy-badge-ready::before {
  content: '';
  width: 5.5px;
  height: 5.5px;
  border-radius: 50%;
  background: var(--colors--purple);
  flex-shrink: 0;
}

/* File icons area */
.suzy-insight-files-area {
  flex: 1;
  background: #f6f6f6;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 16px;
  min-height: 0;
  position: relative;
  transition: background 220ms ease, box-shadow 220ms ease;
}

.suzy-insight-file-icons-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.suzy-insight-file-uploaded {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Drag-and-drop animation */

/* Overlay: centered above the drop zone */
.suzy-drag-center-overlay {
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  pointer-events: none;
  z-index: 10;
}

/* Floating state — icon hangs above, scaled up */
.suzy-drag-float-anim {
  animation: suzyDragFloat 0.35s cubic-bezier(0, 0, 0.2, 1) both;
  transform-origin: center center;
}

/* Drop state — icon falls into slot and fades as static replaces it */
.suzy-drag-drop-anim {
  animation: suzyDragDrop 0.32s cubic-bezier(0.4, 0, 1, 1) forwards;
  transform-origin: center center;
}

/* Drop zone hover highlight */
.suzy-insight-files-area.suzy-drag-active {
  overflow: visible;
}
.suzy-insight-files-area.suzy-drag-hover {
  background: rgba(167, 125, 197, 0.12);
  box-shadow: inset 0 0 0 1.5px rgba(167, 125, 197, 0.45);
}

/* Soft spring settle on drop */
.suzy-drop-land {
  display: flex;
  align-items: center;
  animation: suzyDropLand 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  transform-origin: center center;
}

/* Right panel inner structure */
.suzy-insight-content-area {
  flex: 1;
  overflow: hidden;
  padding: 20px 20px 0;
}

/* Ensures the last element in the scroll content has breathing room
   at the bottom and the full content is reachable */
.suzy-insight-content-area > div {
  padding-bottom: 24px;
}

/* Scrollbar — matches Intelligence tab style */
.suzy-insight-scrollbar-track {
  position: absolute;
  right: 6px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: rgba(167, 125, 197, 0.15);
  border-radius: 4px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 200ms ease;
}
.suzy-insight-right-card:hover .suzy-insight-scrollbar-track {
  opacity: 1;
}
.suzy-insight-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  border-radius: 4px;
  background: rgba(167, 125, 197, 0.35);
  cursor: grab;
  transition: background 150ms ease;
}
.suzy-insight-scrollbar-thumb:hover,
.suzy-insight-scrollbar-thumb:active {
  background: var(--colors--purple);
  cursor: grabbing;
}

@keyframes msgEnter {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* User question + thinking state */
.suzy-insight-user-msg {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: msgEnter 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
.suzy-insight-user-question {
  font-size: 15px;
  font-family: var(--font--primary-family);
  color: var(--colors--dark);
  line-height: 1.55;
  margin: 0;
}
.suzy-insight-thinking {
  display: flex;
  align-items: center;
  gap: 8px;
}
.suzy-insight-thinking span {
  font-size: 14px;
  font-family: var(--font--primary-family);
  color: #757a83;
}

/* Typewriter cursor */
@keyframes suzy-cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}
/* Zero-width anchor — cursor has no effect on line-break calculations */
.suzy-typewriter-cursor-anchor {
  display: inline-block;
  width: 0;
  overflow: visible;
}

.suzy-typewriter-cursor {
  animation: suzy-cursor-blink 800ms ease-in-out infinite;
  color: #9ca3af;
  font-weight: 200;
  margin-left: 1px;
}

/* Chat text wrapper — grid trick for buttery height reveal */
.suzy-insight-chat-text-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 380ms cubic-bezier(0.4, 0, 0.2, 1),
              opacity 280ms ease;
  opacity: 0;
  will-change: grid-template-rows, opacity;
}
.suzy-insight-chat-text-wrap > p {
  overflow: hidden;
  min-height: 0;
}
.suzy-insight-chat-text-wrap.chat-text-visible {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* Persistent chat input bar */
.suzy-insight-chat-bar {
  display: flex;
  flex-direction: column;
  border: none;
  border-radius: 20px;
  padding: 10px 16px;
  margin: 0 20px 20px;
  flex-shrink: 0;
  background: white;
  box-shadow: 0px 15px 30px 0px rgba(167, 125, 197, 0.25);
  position: relative;
  transition: padding 420ms cubic-bezier(0.34, 1.1, 0.64, 1);
}
.suzy-insight-chat-bar.chat-bar-expanded {
  padding: 14px 16px 10px;
}
.suzy-insight-chat-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #d4b5f0 0%, #b185ce 35%, #f4b030 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.suzy-insight-chat-text {
  font-family: var(--font--primary-family);
  font-size: 15px;
  color: var(--colors--dark);
  margin: 0;
  line-height: 23px;
  padding-left: 2px;
  padding-top: 4px;
  max-height: 27px; /* 1 line (23px) + padding-top (4px) */
  overflow: hidden;
}
.suzy-insight-chat-text.suzy-chat-multiline {
  max-height: 52px; /* 2 lines (46px) + padding-top (4px) + 2px buffer */
}

.suzy-insight-chat-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 29px;
  padding: 0 2px;
}

.suzy-insight-chat-plus {
  background: none;
  border: none;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.suzy-insight-chat-send {
  background: none;
  border: none;
  cursor: default;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}
.suzy-insight-chat-send svg path {
  transition: stroke 200ms ease;
}
.suzy-insight-chat-send.chat-send-active svg path {
  stroke: var(--colors--dark);
}

/* AI intro text */
.suzy-insight-ai-intro {
  font-family: var(--font--primary-family);
  font-size: 15px;
  color: #4e5258;
  line-height: 1.5;
  margin: 0 0 8px;
}

/* Bullet list */
.suzy-insight-bullets {
  list-style: disc;
  padding-left: 16px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suzy-insight-bullets li {
  font-family: var(--font--primary-family);
  font-size: 14px;
  font-weight: 400;
  color: #4e5258;
  line-height: 1.5;
}

.suzy-insight-bullets li strong {
  font-weight: 700;
  color: var(--colors--dark);
}

.suzy-insight-bullets li::marker {
  color: #4e5258;
}

/* Packaging recs */
.suzy-insight-recs-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suzy-insight-recs-intro {
  font-family: var(--font--primary-family);
  font-size: 14px;
  color: #4e5258;
  line-height: 1.5;
  margin: 0;
}

.suzy-insight-recs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.suzy-insight-rec-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}


.suzy-insight-rec-name {
  font-family: var(--font--secondary-family);
  font-size: 16px;
  font-weight: 700;
  color: var(--colors--dark);
  line-height: 1.4;
  letter-spacing: -0.043px;
  margin: 0;
}

.suzy-insight-rec-desc {
  font-family: var(--font--primary-family);
  font-size: 14px;
  color: #4e5258;
  line-height: 1.5;
  margin: 0;
}

/* ─── Tab 2: Impact ──────────────────────────────────────────────────────── */

.suzy-impact-layout {
  display: flex;
  gap: 20px;
  height: 356px;
}

/* Both cards are dark */
.suzy-impact-left-card,
.suzy-impact-right-card {
  background: rgba(39, 29, 59, 0.8);
  border: 1px solid rgba(247, 244, 253, 0.15);
  border-radius: 20px;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}


/* Card header — "Story Details" */
.suzy-impact-card-header {
  padding: 20px 20px 0;
}

/* Section labels — white 14px medium */
.suzy-impact-section-label {
  font-family: var(--font--primary-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--colors--light);
}

/* Copy section — bordered bottom */
.suzy-impact-copy-section {
  padding: 8px 20px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.suzy-impact-copy-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20px;
  right: -20px;
  height: 1px;
  background: rgba(167, 125, 197, 0.1);
}

.suzy-impact-field-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Small muted labels e.g. "Story Title" */
.suzy-impact-field-label {
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 400;
  color: rgba(215, 196, 231, 0.6);
  line-height: 1.4;
}

/* Field value — white 16px */
.suzy-impact-field-value {
  font-family: var(--font--primary-family);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}

/* Override h3 margin in this context */
.suzy-impact-copy-section .suzy-card-h3-dark {
  margin: 0;
  font-size: 24px;
}

/* Brand style section — fills remaining height */
.suzy-impact-brand-section {
  padding: 8px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

/* Groups label + brand row at top */
.suzy-impact-brand-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Brand logo + text row */
.suzy-impact-brand-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0;
}

.suzy-impact-brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: contain;
}

.suzy-impact-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.suzy-impact-brand-name {
  font-family: var(--font--secondary-family);
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  white-space: nowrap;
}

.suzy-impact-brand-desc {
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.3;
}


/* Color swatches */
.suzy-impact-swatches {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
}

.suzy-impact-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Right card inner layout — inner owns top padding; sections own horizontal px */
.suzy-impact-right-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  flex: 1;
  min-height: 0;
}

/* Add Sources section — edge-to-edge divider line below */
.suzy-impact-sources-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 16px;
  position: relative;
}
.suzy-impact-sources-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20px;
  right: -20px;
  height: 1px;
  background: rgba(167, 125, 197, 0.1);
}

/* Choose deliverable section */
.suzy-impact-choose-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px;
}

/* Generate Story button section — top pad separates from tiles, bottom pads card edge */
.suzy-impact-btn-section {
  padding: 10px 16px 20px;
  flex-shrink: 0;
}

/* Sources file area — subtle inset box */
.suzy-impact-sources-area {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(167, 125, 197, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 71px;
  position: relative;
}

.suzy-impact-source-icons {
  display: flex;
  align-items: center;
  flex: 1;
}

/* "Choose deliverable" header row */
.suzy-impact-deliverable-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.suzy-impact-deliverable-title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.suzy-impact-deliverable-title {
  font-family: var(--font--primary-family);
  font-size: 15px;
  font-weight: 500;
  color: var(--colors--light);
  letter-spacing: -0.013em;
  line-height: normal;
}

.suzy-impact-deliverable-subtitle {
  font-family: var(--font--primary-family);
  font-size: 12px;
  font-weight: 400;
  color: rgba(247, 244, 253, 0.6);
  line-height: normal;
}

.suzy-impact-selection-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 2px 12px;
  font-family: var(--font--primary-family);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.suzy-impact-selection-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #b185ce;
  flex-shrink: 0;
  animation: dotPop 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes dotPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Deliverable tiles */
.suzy-impact-tiles {
  display: flex;
  gap: 10px;
}

.suzy-impact-tile {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(167, 125, 197, 0.1);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  align-items: flex-start;
  transition: background 200ms ease, border-color 200ms ease;
}

.suzy-impact-tile-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: block;
}

.suzy-impact-tile-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.suzy-impact-tile-label {
  font-family: var(--font--primary-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--colors--light);
  letter-spacing: -0.01em;
  line-height: normal;
}

.suzy-impact-tile-sublabel {
  font-family: var(--font--primary-family);
  font-size: 11px;
  font-weight: 400;
  color: rgba(247, 244, 253, 0.6);
  line-height: 16px;
}

/* Generate Story button — inactive */
.suzy-impact-generate-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 6px 6px 6px 16px;
  font-family: var(--font--primary-family);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(247, 244, 253, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  align-self: flex-start;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.suzy-impact-generate-enter {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 4px 7px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(247, 244, 253, 0.35);
  line-height: normal;
  transition: background 200ms ease, color 200ms ease;
  font-family: var(--font--primary-family);
}

/* Tile selected state */
@keyframes suzyTileClick {
  0%   { transform: scale(1); }
  35%  { transform: scale(0.93); }
  70%  { transform: scale(1.04); }
  100% { transform: scale(1); }
}
.suzy-impact-tile.suzy-tile-selected {
  border-color: rgba(167, 125, 197, 0.65);
  background: rgba(167, 125, 197, 0.65);
  animation: suzyTileClick 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Generate Story button active state */
.suzy-impact-generate-btn.suzy-btn-active {
  background: var(--colors--light);
  color: var(--colors--dark);
  border-color: transparent;
}
.suzy-impact-generate-btn.suzy-btn-active .suzy-impact-generate-enter {
  background: var(--colors--dark);
  color: var(--colors--light);
}

/* ── Generating state ───────────────────────────────────────────────────── */

/* Container fades in as one unit — no translateY jank */
@keyframes genFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Ripple dot (Vercel/Linear style — box-shadow pulse, no scale) */
@keyframes dotRipple {
  0%   { box-shadow: 0 0 0 0   rgba(177, 133, 206, 0.3); }
  70%  { box-shadow: 0 0 0 4px rgba(177, 133, 206, 0); }
  100% { box-shadow: 0 0 0 0   rgba(177, 133, 206, 0); }
}

@keyframes genLabelFade {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes impactProgressFill {
  0%   { width: 0%;   }
  40%  { width: 55%;  }
  70%  { width: 80%;  }
  90%  { width: 95%;  }
  100% { width: 100%; }
}

@keyframes progressGlow {
  0%   { background-position: 150% center; }
  100% { background-position: -50% center; }
}

/* GPU-accelerated shimmer via transform on ::after — no layout shifts */
@keyframes skeletonShimmer {
  0%   { transform: translateX(-200%); }
  100% { transform: translateX(200%); }
}

.suzy-impact-generating {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 20px 0;
  animation: genFadeIn 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.suzy-impact-gen-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Ripple dot */
.suzy-impact-gen-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b185ce;
  flex-shrink: 0;
  animation: dotRipple 2s ease-out infinite;
}

/* Cycling label — fades in on each phase change */
.suzy-impact-gen-label {
  font-family: var(--font--primary-family);
  font-size: 14px;
  font-weight: 500;
  color: var(--colors--light);
  animation: genLabelFade 280ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Progress bar track */
.suzy-impact-gen-progress {
  height: 2px;
  background: rgba(167, 125, 197, 0.2);
  border-radius: 100px;
  overflow: hidden;
}

/* Progress fill — grows, no sweep */
.suzy-impact-gen-progress-bar {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #7a4aac 0%, #b185ce 100%);
  animation: impactProgressFill 3.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Skeleton title lines — suggest slide structure */
.suzy-impact-gen-title-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Skeleton base: flat dark block + traveling highlight overlay via ::after */
.suzy-impact-gen-title-line,
.suzy-impact-gen-main,
.suzy-impact-gen-strip {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.suzy-impact-gen-title-line::after,
.suzy-impact-gen-main::after,
.suzy-impact-gen-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-200%);
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
  animation: skeletonShimmer 2.8s ease-in-out infinite;
}

.suzy-impact-gen-title-line {
  height: 10px;
  border-radius: 5px;
}
.suzy-impact-gen-title-line--wide { width: 72%; }
.suzy-impact-gen-title-line--med  { width: 48%; }

/* Large main slide skeleton */
.suzy-impact-gen-main {
  height: 100px;
  border-radius: 8px;
}

/* Row of smaller strip skeletons below */
.suzy-impact-gen-strips {
  display: flex;
  gap: 8px;
  height: 44px;
}

.suzy-impact-gen-strip {
  flex: 1;
  border-radius: 6px;
}

/* Stagger shimmer phase across skeletons via ::after delay only */
.suzy-impact-gen-title-line:nth-child(2)::after { animation-delay: 0.3s; }
.suzy-impact-gen-main::after                    { animation-delay: 0.15s; }
.suzy-impact-gen-strip:nth-child(1)::after      { animation-delay: 0.5s; }
.suzy-impact-gen-strip:nth-child(2)::after      { animation-delay: 0.8s; }

/* Step 0 story content wrapper — fades in as a unit when step changes */
.suzy-impact-story-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: genFadeIn 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Generated deck view */
.suzy-impact-deck-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  padding: 0 20px;
  min-height: 0;
  animation: genFadeIn 220ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Deck view title — Vollkorn serif for a stronger heading presence */
.suzy-impact-deck-label {
  font-family: var(--font--secondary-family);
  font-size: 15px;
  font-weight: 600;
  color: var(--colors--light);
  letter-spacing: -0.15px;
}

.suzy-impact-deck-scroll {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
  scrollbar-width: none;
}
.suzy-impact-deck-scroll::-webkit-scrollbar {
  display: none;
}

/* Two-up row */
.suzy-impact-deck-row {
  display: flex;
  gap: 8px;
}

.suzy-impact-deck-row .suzy-impact-deck-slide {
  flex: 1;
  min-width: 0;
}

.suzy-impact-deck-slide {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
}

.suzy-impact-deck-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 5px;
}


/* ─── Mobile Responsive ──────────────────────────────────────────────────── */

@media (max-width: 1080px) {

  /* ── Shell ──────────────────────────────────────────────────────────────── */

  .suzy-demo-root {
    width: 100%;
    border-radius: 20px;
  }

  .suzy-container {
    padding: 16px 20px;
    gap: 16px;
    border-radius: 20px;
  }

  .suzy-content {
    width: 100%;
    box-sizing: border-box;
    gap: 12px;
  }

  .suzy-tab-bar { width: 100%; }
  .suzy-tab { font-size: 13px; padding: 6px 10px; min-width: 0; flex: 1; }
  .suzy-tab-tagline { text-wrap: pretty; }

  .suzy-headline   { font-size: 20px; }
  .suzy-subheadline { display: none; }
  .sz-sentence     { display: block; }

  /* ── Consistent card sizing across all three tabs ───────────────────────── */
  /*
     Top card    — 200px tall, full width  (left col on desktop)
     Bottom card — 280px tall, full width  (right col on desktop)
     All three tabs share these exact dimensions.
  */

  /* All three layouts: stack top → bottom */
  .suzy-intel-layout,
  .suzy-insight-layout,
  .suzy-impact-layout {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }

  /* All left/right cols: full width, no flex-shrink */
  .suzy-intel-left-col, .suzy-intel-right-col, .suzy-intel-right-crossfade,
  .suzy-insight-left-col, .suzy-insight-right-col,
  .suzy-impact-left-card, .suzy-impact-right-card {
    flex: none;
    width: 100%;
  }

  /* ── All cards: same 360px height, full width ──────────────────────────── */

  /* Intelligence — top card: image on top, text below */
  .suzy-intel-main-card          { height: 360px; }
  .suzy-intel-main-card-inner    { flex-direction: column; }
  .suzy-intel-main-card-img      { flex: none; width: 100%; height: 180px; order: -1; border-radius: 20px 20px 0 0; background-size: 180% auto !important; background-position: 15% 60% !important; }
  .suzy-intel-main-card-img::after { display: none; }
  .suzy-intel-main-card-text     { width: 100%; padding: 16px; }
  .suzy-intel-main-h3            { font-size: 22px; }
  .suzy-intel-expanded-card      { height: 360px; }
  .suzy-intel-expanded-img       { height: 160px; background-size: cover !important; background-position: center center !important; }

  /* Intelligence — bottom card */
  .suzy-intel-right-col          { height: 360px; gap: 10px; }
  .suzy-intel-right-crossfade    { height: 360px; }
  .suzy-intel-small-card         { flex: 1; }
  .suzy-intel-card-body          { padding: 14px; }
  .suzy-intel-action-btns        { gap: 8px; }
  .suzy-intel-sources            { font-size: 10px; }

  /* Insight — top card */
  .suzy-insight-left-card        { height: 356px; }
  .suzy-insight-card-inner       { height: 100%; }

  /* Insight — bottom card */
  .suzy-insight-right-card       { height: 356px; }
  .suzy-insight-content-area     { overflow: hidden; padding: 14px 20px 0; }
  .suzy-insight-chat-bar         { margin: 0 20px 12px; }
  .suzy-insight-chat-text.suzy-chat-multiline { max-height: 80px; } /* 3 lines on mobile */

  /* Impact — top card */
  .suzy-impact-left-card         { height: 360px; }
  .suzy-impact-card-header       { padding: 16px 16px 0; }
  .suzy-impact-copy-section      { padding: 8px 16px 12px; }
  .suzy-impact-copy-section::after { left: -16px; right: -16px; }
  .suzy-impact-brand-section     { padding: 8px 16px 16px; }
  .suzy-impact-swatches          { margin-top: 8px; }

  /* Impact — bottom card */
  .suzy-impact-right-card        { height: 360px; }
  .suzy-impact-right-inner       { min-height: 0; padding-top: 16px; }
  .suzy-impact-sources-section   { padding: 0 16px 16px; }
  .suzy-impact-sources-section::after { left: -16px; right: -16px; }
  .suzy-impact-choose-section    { padding: 0 16px; }
  .suzy-impact-tile-sublabel     { display: none; }
  .suzy-impact-generating        { padding: 0 16px 0; }
  .suzy-impact-deck-wrap         { padding: 0 16px; }
  .suzy-impact-deck-scroll       { flex: 1; max-height: none; }
}

/* ─── Reduced Motion ────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .suzy-anim-step,
  .suzy-anim-slide-right,
  .suzy-anim-scale-in,
  .suzy-intel-content-reveal,
  .suzy-intel-card-enter,
  .suzy-tab-tagline {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .suzy-drag-icon-floating,
  .suzy-drag-icon-dropping,
  .suzy-drop-land-icon {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .suzy-progress-bar-fill,
  .suzy-impact-gen-pulse,
  .suzy-impact-progress-fill {
    animation: none;
  }

  .suzy-cursor-blink {
    animation: none;
    opacity: 1;
  }
}

/* ─── Logo Fade (desktop) ───────────────────────────────────────────────── */

.logo-fade {
  background: transparent;
  width: 100%;
  padding: 32px 0 0;
  box-sizing: border-box;
}

.logo-fade__heading {
  font-family: var(--font--primary-family);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--colors--light);
  text-align: center;
  margin: 0 0 var(--space--l);
  user-select: none;
}

.logo-fade__stage {
  position: relative;
  height: 64px;
}

.logo-fade__row {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 80px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.6s ease-out;
}

.logo-fade__row.is-active {
  opacity: 1;
  pointer-events: auto;
  transition: none;
}

.logo-fade__row.is-leaving {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.6s ease-out;
}

.logo-fade__slot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-fade__slot:nth-child(2) {
  transform: translateX(-6px);
}

.logo-fade__logo {
  display: block;
  width: 120px;
  height: 28px;
  object-fit: contain;
  object-position: center center;
  opacity: 0;
  filter: brightness(0) invert(1);
}

.logo-fade__row.is-active .logo-fade__logo {
  animation: lsLogoIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes lsLogoIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── Logo Scroll (mobile) ──────────────────────────────────────────────── */

.logo-scroll {
  display: none;
  background: transparent;
  width: 100%;
  padding: 40px 0 16px;
  box-sizing: border-box;
  overflow: hidden;
}

.logo-scroll__heading {
  font-family: var(--font--primary-family);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--colors--light);
  text-align: center;
  margin: 0 0 var(--space--l);
  user-select: none;
}

.logo-scroll__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.logo-scroll__track {
  display: flex;
  width: fit-content;
  animation: lsMarquee 32s linear infinite;
  will-change: transform;
}

.logo-scroll__track:hover {
  animation-play-state: paused;
}

.logo-scroll__set {
  display: flex;
  align-items: center;
  gap: 48px;
  padding-right: 48px;
  flex-shrink: 0;
}

.logo-scroll__logo {
  display: block;
  height: 22px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
}

@keyframes lsMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Breakpoints ───────────────────────────────────────────────────────── */

.logo-heading-br { display: none; }

@media (max-width: 1024px) {
  .logo-fade   { display: none; }
  .logo-scroll { display: block; }
}

@media (max-width: 480px) {
  .logo-heading-br { display: inline; }
  .logo-scroll__heading { line-height: 1.4; }
}

/* ─── Reduced motion ────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  .logo-fade__row.is-active .logo-fade__logo { animation: none; opacity: 1; }
  .logo-scroll__track { animation: none; }
}

