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


/* ─── Section ──────────────────────────────────────────────────────────────── */
.cmpv3 {
  width: 100%;
  box-sizing: border-box;
  background: #271d3b;
  position: relative;
  overflow: hidden;
}

/* ─── Ring Animations — combined rotate+scale in one keyframe per ring ─────── */
@keyframes cmpv3Ring1 {
  0%   { transform: rotate(0deg)   scale(0.978); }
  50%  { transform: rotate(180deg) scale(1.022); }
  100% { transform: rotate(360deg) scale(0.978); }
}

@keyframes cmpv3Ring2 {
  0%   { transform: rotate(0deg)    scale(0.982); }
  50%  { transform: rotate(-180deg) scale(1.017); }
  100% { transform: rotate(-360deg) scale(0.982); }
}

@keyframes cmpv3Ring3 {
  0%   { transform: rotate(0deg)   scale(0.986); }
  50%  { transform: rotate(180deg) scale(1.012); }
  100% { transform: rotate(360deg) scale(0.986); }
}

@keyframes cmpv3Ring4 {
  0%   { transform: rotate(0deg)    scale(0.990); }
  50%  { transform: rotate(-180deg) scale(1.008); }
  100% { transform: rotate(-360deg) scale(0.990); }
}

/* ─── Background Ring Layer ────────────────────────────────────────────────── */
.cmpv3__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.25;
}

.cmpv3__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
}

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

/* Combined rotate+scale on the ring itself — one GPU layer, no conflict */
.cmpv3__ring--1 { animation: cmpv3Ring1 13s linear infinite; animation-delay: 0s; }
.cmpv3__ring--2 { animation: cmpv3Ring2 19s linear infinite; animation-delay: -7s; }
.cmpv3__ring--3 { animation: cmpv3Ring3 15s linear infinite; animation-delay: -11s; }
.cmpv3__ring--4 { animation: cmpv3Ring4 23s linear infinite; animation-delay: -17s; }

/* Spin wrapper — no animation, just sizing */
.cmpv3__ring-spin {
  width: 100%;
  height: 100%;
}

/* Depth — outer rings fade, no blur */
.cmpv3__ring--2 svg { opacity: 0.82; }
.cmpv3__ring--3 svg { opacity: 0.65; }
.cmpv3__ring--4 svg { opacity: 0.50; }

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

/* ─── Gradient Blobs ───────────────────────────────────────────────────────── */
.cmpv3__blob {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.3;
}

.cmpv3__blob--tr {
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(167, 125, 197, 0.6) 0%, transparent 70%);
}

.cmpv3__blob--bl {
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(167, 125, 197, 0.5) 0%, transparent 70%);
}

/* ─── Inner Wrapper ────────────────────────────────────────────────────────── */
.cmpv3__inner {
  width: 100%;
  max-width: 85rem;
  margin: 0 auto;
  padding: 80px 2rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}

/* ─── Eyebrow ──────────────────────────────────────────────────────────────── */
.cmpv3__eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f7f4fd;
  text-align: center;
  margin: 0;
}

/* ─── Cards Row ────────────────────────────────────────────────────────────── */
.cmpv3__cards {
  display: flex;
  gap: 37px;
  align-items: stretch;
  width: 100%;
  max-width: 62rem;
}

/* ─── Card Base ────────────────────────────────────────────────────────────── */
.cmpv3__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  border-radius: 20px;
  box-sizing: border-box;
  backdrop-filter: blur(7.5px);
  -webkit-backdrop-filter: blur(7.5px);
}

/* ─── Traditional Card (left) ─────────────────────────────────────────────── */
.cmpv3__card--traditional {
  background: rgba(167, 125, 197, 0.30);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
}

/* ─── Suzy Card (right) ───────────────────────────────────────────────────── */
.cmpv3__card--suzy {
  background: rgba(247, 244, 253, 0.9);
  border: 1px solid rgba(167, 125, 197, 0.2);
  box-shadow: 0px 8px 40px 0px rgba(39, 29, 59, 0.85);
}

/* ─── Badge ────────────────────────────────────────────────────────────────── */
.cmpv3__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'DM Sans', system-ui, sans-serif;
  white-space: nowrap;
  align-self: flex-start;
}

.cmpv3__badge--traditional {
  background: rgba(167, 125, 197, 0.2);
  border: 1px solid rgba(167, 125, 197, 0.2);
  font-size: 12px;
  font-weight: 700;
  color: #f7f4fd;
}

.cmpv3__badge--suzy {
  background: rgba(167, 125, 197, 0.2);
  border: 1px solid rgba(167, 125, 197, 0.2);
  font-size: 12px;
  font-weight: 600;
  color: #271d3b;
}

.cmpv3__badge-icon {
  width: 10px;
  height: 12px;
  flex-shrink: 0;
}

/* ─── Card Heading ─────────────────────────────────────────────────────────── */
.cmpv3__card-heading {
  font-family: 'Vollkorn', Georgia, serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  color: #271d3b;
  margin: 0;
}

.cmpv3__card-heading--light {
  color: #f7f4fd;
}

/* ─── Card Subtext ─────────────────────────────────────────────────────────── */
.cmpv3__card-subtext {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #271d3b;
  margin: 0;
}

.cmpv3__card-subtext--light {
  color: #f7f4fd;
}

/* ─── Divider ──────────────────────────────────────────────────────────────── */
.cmpv3__divider {
  height: 1.5px;
  flex-shrink: 0;
}

.cmpv3__divider--traditional {
  background: rgba(167, 125, 197, 0.2);
}

.cmpv3__divider--suzy {
  background: rgba(167, 125, 197, 0.2);
}

/* ─── Items List ───────────────────────────────────────────────────────────── */
.cmpv3__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ─── Single Item ──────────────────────────────────────────────────────────── */
.cmpv3__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cmpv3__item-icon {
  flex-shrink: 0;
  width: 23px;
  height: 23px;
  display: block;
}

/* ─── Item Text ────────────────────────────────────────────────────────────── */
.cmpv3__item-text {
  flex: 1 0 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #271d3b;
  margin: 0;
  min-width: 1px;
}

.cmpv3__item-text--light {
  color: #f7f4fd;
}

.cmpv3__item-text strong {
  font-weight: 600;
}

/* ─── Reduced Motion ───────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .cmpv3__ring,
  .cmpv3__ring-spin {
    animation: none;
  }
}

/* ─── Responsive: Tablet (≤ 991px) ───────────────────────────────────────── */
@media (max-width: 991px) {
  .cmpv3__inner { padding: 64px 2rem; gap: 36px; }
  .cmpv3__card-heading { font-size: 22px; }
  .cmpv3__cards { gap: 20px; }

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

/* ─── Responsive: Mobile (≤ 767px) ───────────────────────────────────────── */
@media (max-width: 767px) {
  .cmpv3__inner { padding: 48px 2rem; gap: 28px; }
  .cmpv3__cards { flex-direction: column; max-width: 100%; }
  .cmpv3__card { padding: 24px; }
  .cmpv3__card-heading { font-size: 22px; }

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

/* ─── Responsive: Mobile Portrait (≤ 479px) ──────────────────────────────── */
@media (max-width: 479px) {
  .cmpv3__inner { padding: 40px 2rem; gap: 24px; }
  .cmpv3__card { padding: 20px; }
  .cmpv3__card-heading { font-size: 20px; }
  .cmpv3__item-text { font-size: 14px; }
}

/* ─── Custom Properties (scoped to component) ─── */
.sz-hero {
  --sz-bg: #f7f4fd;
  --sz-text: #271d3b;
  --sz-text-sub: rgba(39, 29, 59, 0.68);
  --sz-btn-bg: #271d3b;
  --sz-btn-text: #f7f4fd;
}

/* ─── 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(--sz-bg);
  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(--sz-bg) 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(--sz-bg) 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: 'Vollkorn', Georgia, serif;
  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(--sz-text);
  animation: szFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.2s;
}

.sz-hero__subhead {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  max-width: 540px;
  margin: 0;
  color: var(--sz-text-sub);
  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(--sz-btn-bg);
  color: var(--sz-btn-text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 100px;
  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: 40px; 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;
  }
}

