/* =====================================================
   HYPNOBREATH RESTYLE
   Glasmorphism + atmospheric orbs + calm rhythm.
   Built on top of style.css (re-uses --font-headline / --font-body).
===================================================== */

:root {
  --rs-bg: #0a0814;
  --rs-bg-2: #120c24;
  --rs-bg-3: #0e0a1c;
  --rs-fg: #e0dcf5;
  --rs-fg-soft: #9b9bb5;
  --rs-fg-mute: #6b6a85;
  --rs-violet: #c4a8ff;
  --rs-lavender: #d4cbff;
  --rs-teal: #86e0df;
  --rs-indigo: #6a4ec9;
  --rs-deep: #3a2580;
  --rs-glass-bg: rgba(200, 180, 255, 0.06);
  --rs-glass-border: rgba(200, 180, 255, 0.12);
  --rs-glass-blur: 24px;
  --rs-orb-strength: 1;
  --rs-grain: 0.4;
  --rs-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html, body { background: var(--rs-bg); color: var(--rs-fg); }
body {
  background:
    radial-gradient(ellipse 60% 30% at 85% 8%, rgba(155, 105, 230, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 70% 25% at 15% 55%, rgba(106, 78, 201, 0.10) 0%, transparent 65%),
    radial-gradient(ellipse 90% 35% at 50% 100%, rgba(155, 105, 230, 0.14) 0%, transparent 65%),
    linear-gradient(180deg, #08070d 0%, #0a0814 50%, #0c0918 100%);
  background-attachment: fixed;
}

.rs-container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
@media (max-width: 640px) { .rs-container { padding: 0 1.25rem; } }

/* ========== TYPE ========== */
.rs-h2 {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #fff;
  text-wrap: pretty;
  margin: 0;
}
.rs-h2 .rs-em, .rs-h2 em { font-style: italic; font-weight: 400; color: var(--rs-fg-soft); }
.rs-h2 .rs-muted { color: var(--rs-fg-soft); font-weight: 400; }

.rs-overline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-headline);
  font-size: 0.8125rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rs-teal); margin-bottom: 1.25rem;
}
.rs-overline::before {
  content: ''; width: 18px; height: 1px; background: currentColor; opacity: 0.6;
}

.rs-mono { font-family: var(--rs-mono); font-weight: 700; letter-spacing: 0.06em; }

.rs-gradient-text {
  background: linear-gradient(100deg, #ffffff 0%, var(--rs-lavender) 35%, var(--rs-violet) 65%, var(--rs-teal) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ========== BUTTONS ========== */
.rs-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-headline); font-weight: 700;
  font-size: 0.9375rem; letter-spacing: -0.01em;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  padding: 1rem 2rem;
  transition: transform 0.25s ease, background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.rs-btn--pill { border-radius: 999px; }
.rs-btn--small { padding: 0.625rem 1.25rem; font-size: 0.8125rem; }
.rs-btn--full { width: 100%; }

.rs-btn--primary {
  color: #1a1233;
  background: linear-gradient(180deg, #ffffff 0%, #e9e4ff 100%);
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 18px 40px -12px rgba(185, 165, 255, 0.45), 0 0 60px -20px rgba(185, 165, 255, 0.4);
  border-radius: 999px;
}
.rs-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), 0 24px 50px -12px rgba(185, 165, 255, 0.6), 0 0 80px -20px rgba(185, 165, 255, 0.5);
}

.rs-btn--ghost {
  color: #fff; background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}
.rs-btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.22); }
.rs-btn--ghost.rs-btn--teal { color: var(--rs-teal); border-color: rgba(118,214,213,0.25); }
.rs-btn--ghost.rs-btn--teal:hover { background: rgba(118,214,213,0.08); border-color: rgba(118,214,213,0.5); }
.rs-btn--ghost.rs-btn--lavender { color: var(--rs-lavender); border-color: rgba(200,193,255,0.25); }
.rs-btn--ghost.rs-btn--lavender:hover { background: rgba(200,193,255,0.08); border-color: rgba(200,193,255,0.5); }

/* =====================================================
   HERO
===================================================== */
.rs-hero {
  position: relative; min-height: 100vh; isolation: isolate;
  display: flex; align-items: center;
  padding: 4rem 0 6rem;
  background: transparent;
  overflow: hidden;
}

.rs-hero__photo { position: absolute; inset: 0; z-index: 0; }
.rs-hero__photo img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center right;
  filter: saturate(0.95) brightness(0.95);
}
.rs-hero__photo-fade-h {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,7,13,0.97) 0%, rgba(8,7,13,0.85) 35%, rgba(8,7,13,0.4) 60%, transparent 100%);
}
@media (max-width: 900px) {
  .rs-hero__photo-fade-h {
    background: linear-gradient(to bottom, transparent 0%, rgba(8,7,13,0.6) 40%, rgba(8,7,13,0.95) 90%);
  }
  .rs-hero__photo img { object-position: center top; }
}
.rs-hero__photo-fade-v {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,7,13,0.95) 0%, transparent 40%, transparent 70%, rgba(8,7,13,0.4) 100%);
}

.rs-hero__orb {
  position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none;
  opacity: calc(0.45 * var(--rs-orb-strength));
  animation: rsFloat 20s ease-in-out infinite;
  z-index: 1;
}
.rs-hero__orb--violet {
  width: 45vw; height: 45vw; max-width: 600px; max-height: 600px;
  top: -10%; left: -10%;
  background: radial-gradient(circle, rgba(155, 105, 230, 0.35) 0%, transparent 70%);
}
.rs-hero__orb--teal {
  width: 32vw; height: 32vw; max-width: 460px; max-height: 460px;
  bottom: -5%; left: 15%;
  background: radial-gradient(circle, rgba(118, 214, 213, 0.12) 0%, transparent 70%);
  animation-delay: -10s;
}
@keyframes rsFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(2%, -3%) scale(1.05); }
}
.rs-hero__noise {
  position: absolute; inset: 0; pointer-events: none;
  opacity: var(--rs-grain); mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  z-index: 1;
}

.rs-hero__inner {
  position: relative; z-index: 3;
  width: 100%; max-width: 1200px; margin: 0 auto;
  text-align: left; padding: 0 2rem;
}
.rs-hero__inner .rs-hero__title,
.rs-hero__inner .rs-hero__body { max-width: 36rem; margin-left: 0; margin-right: 0; }
.rs-hero__inner .rs-hero__cta { justify-content: flex-start; }

@media (max-width: 900px) {
  .rs-hero {
    min-height: auto;
    padding: 5rem 0 2.5rem;
    align-items: flex-start;
  }
  .rs-hero__photo {
    height: 70vh; bottom: auto;
  }
  .rs-hero__photo img { object-position: center 15%; }
  .rs-hero__photo-fade-h {
    background: linear-gradient(to bottom,
      transparent 0%,
      rgba(8,7,13,0.05) 30%,
      rgba(8,7,13,0.5) 55%,
      rgba(8,7,13,0.95) 78%,
      rgba(8,7,13,1) 92%);
  }
  .rs-hero__inner { text-align: center; padding: 0 1.25rem; }
  .rs-hero__inner .rs-hero__title,
  .rs-hero__inner .rs-hero__body { margin-left: auto; margin-right: auto; }
  .rs-hero__inner .rs-hero__cta { justify-content: center; }
  .rs-hero__title { margin-bottom: 0.9rem; font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .rs-hero__body { margin-bottom: 1.25rem; font-size: 1rem; }
  .rs-hero__caption { margin-bottom: 0; }
}
@media (max-width: 640px) {
  .rs-hero { padding-top: 4.5rem; padding-bottom: 2rem; }
  .rs-hero__photo { height: 65vh; }
  .rs-hero__photo img { object-position: center 12%; }
}

.rs-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(2.4rem, 5.5vw, 4.5rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.04em; color: #fff;
  margin: 0 0 1.5rem; text-wrap: balance;
}
.rs-hero__body {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  font-weight: 300; color: var(--rs-fg-soft);
  line-height: 1.7; margin: 0 0 2rem; max-width: 34rem;
  text-wrap: pretty;
}
.rs-hero__cta {
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.rs-hero__caption {
  font-size: 0.875rem; color: var(--rs-fg-mute);
  margin: 0 0 2rem;
}
.rs-hero__caption a { color: var(--rs-teal); text-decoration: none; border-bottom: 1px solid rgba(118,214,213,0.3); }

/* =====================================================
   PROOF BAR (existing — keep as light divider)
===================================================== */
.rs-proofbar {
  background: transparent;
  border-top: 1px solid rgba(200,180,255,0.06);
  border-bottom: 1px solid rgba(200,180,255,0.06);
  padding: 1.5rem 1.5rem;
}
.rs-proofbar__inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 1.25rem;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--rs-fg-soft);
}
.rs-proofbar__dot { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--rs-teal); opacity: 0.5; }
@media (max-width: 640px) {
  .rs-proofbar__inner { gap: 0.4rem 0.6rem; font-size: 0.625rem; letter-spacing: 0.08em; }
  .rs-proofbar__dot { width: 3px; height: 3px; }
}

/* =====================================================
   SECTIONS — base
===================================================== */
.rs-section { position: relative; padding: 7rem 0; overflow: hidden; }
@media (max-width: 768px) { .rs-section { padding: 3.5rem 0; } }
@media (max-width: 480px) { .rs-section { padding: 3rem 0; } }
.rs-section__header { margin-bottom: 4rem; max-width: 720px; }
@media (max-width: 768px) { .rs-section__header { margin-bottom: 2.5rem; } }

.rs-glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px); opacity: calc(0.5 * var(--rs-orb-strength)); }
.rs-glow--mech { top: 10%; left: -15%; width: 50%; height: 60%; background: radial-gradient(circle, rgba(106, 78, 201, 0.25) 0%, transparent 75%); }
.rs-glow--paths { bottom: -15%; right: -15%; width: 60%; height: 70%; background: radial-gradient(circle, rgba(155, 105, 230, 0.18) 0%, transparent 75%); }
.rs-glow--proof-l { top: 20%; left: -20%; width: 50%; height: 60%; background: radial-gradient(circle, rgba(106, 78, 201, 0.22) 0%, transparent 75%); }
.rs-glow--proof-r { bottom: -5%; right: -15%; width: 50%; height: 60%; background: radial-gradient(circle, rgba(134, 224, 223, 0.10) 0%, transparent 75%); }
.rs-glow--cta { top: 0; left: 50%; transform: translateX(-50%); width: 80%; height: 80%; background: radial-gradient(ellipse, rgba(155, 105, 230, 0.22) 0%, transparent 75%); }

.rs-grid-overlay {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.06;
  background-image: linear-gradient(rgba(255,255,255,0.4) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.4) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 0%, transparent 80%);
}

@media (max-width: 768px) {
  .rs-mech__grid { gap: 2.25rem; }
  .rs-mech__lead { margin-bottom: 1rem; }
  .rs-mech__accent { margin: 0.5rem 0 1.5rem; font-size: 1.15rem; }
  .rs-mech__quote { margin-top: 2rem; padding-top: 1.25rem; font-size: 1.1rem; }
  .rs-paths { gap: 1rem; }
  .rs-path-card { padding: 1.75rem; gap: 1.5rem; }
  .rs-proof__grid { gap: 2.5rem; }
  .rs-stats { margin-top: 1.75rem; gap: 1rem; }
  .rs-stats li { padding: 1rem 0; }
  .rs-testimonials { gap: 1rem; }
  .rs-testimonials__row { gap: 1rem; }
  .rs-testimonial { padding: 1.5rem; }
  .rs-testimonial--lg { padding: 1.75rem; }
  .rs-section--studie { padding: 3rem 0; }
  .rs-studie { padding: 2rem 1.5rem; }
}

.rs-section--paths { background: transparent; }
.rs-section--proof { background: transparent; }
.rs-section--studie { background: transparent; padding: 5rem 0; }
.rs-section--cta { background: transparent; }

/* =====================================================
   MECHANISMUS
===================================================== */
.rs-mech__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .rs-mech__grid { grid-template-columns: 5fr 7fr; gap: 6rem; } }

.rs-video-card { margin-top: 2rem; max-width: 420px; width: 100%; }
@media (max-width: 767px) { .rs-video-card { max-width: 100%; } }
.rs-video-card__inner {
  position: relative; aspect-ratio: 16/10; border-radius: 20px; overflow: hidden;
  background: var(--rs-glass-bg);
  border: 1px solid var(--rs-glass-border);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.03), 0 0 60px -20px rgba(118,214,213,0.2);
  cursor: pointer;
}
.rs-video-card__inner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.rs-video-card__inner iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
.rs-video-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.95); color: #1a1233;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 0 60px rgba(255,255,255,0.3);
  cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rs-video-card__inner:hover .rs-video-card__play { transform: translate(-50%, -50%) scale(1.08); }
.rs-video-card__caption {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  font-size: 0.6875rem; color: rgba(255,255,255,0.85); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(10px);
  padding: 0.55rem 0.85rem; border-radius: 999px; border: 1px solid rgba(255,255,255,0.08);
}

.rs-mech__lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  line-height: 1.7; color: var(--rs-fg);
  font-weight: 300; max-width: 36rem;
  margin: 0 0 1.25rem; text-wrap: pretty;
}
.rs-mech__lead em { color: var(--rs-lavender); font-style: normal; font-weight: 600; }
.rs-mech__accent {
  font-family: var(--font-headline); font-size: 1.375rem; font-weight: 700;
  color: var(--rs-lavender); margin: 1rem 0 2rem; letter-spacing: -0.02em;
}
.rs-mech__body {
  background: var(--rs-glass-bg);
  border: 1px solid var(--rs-glass-border);
  border-radius: 16px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  padding: 2rem;
}
.rs-mech__body .rs-mech__lead,
.rs-mech__body p { font-size: 1rem; }
.rs-mech__body__text {
  color: var(--rs-fg-soft); font-size: 1rem; line-height: 1.7;
  font-weight: 300; margin: 0 0 1.25rem;
}

.rs-mech__quote {
  margin: 2rem 0 0; padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-headline); font-size: 1.25rem; font-weight: 700;
  color: #fff; letter-spacing: -0.02em; line-height: 1.4;
}

/* =====================================================
   PATHS
===================================================== */
.rs-paths {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 768px) { .rs-paths { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.rs-path-card {
  position: relative; isolation: isolate;
  padding: 2.5rem;
  background: var(--rs-glass-bg);
  border: 1px solid var(--rs-glass-border);
  border-radius: 24px;
  backdrop-filter: blur(var(--rs-glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--rs-glass-blur)) saturate(140%);
  display: flex; flex-direction: column; gap: 2rem;
  overflow: hidden;
  transition: border-color 0.5s ease, transform 0.5s ease;
}
.rs-path-card:hover { border-color: rgba(118,214,213,0.3); transform: translateY(-4px); }
.rs-path-card--featured:hover { border-color: rgba(200,193,255,0.35); }
.rs-path-card__shine {
  position: absolute; top: 0; right: 0; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(118,214,213,0.18) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none; z-index: -1;
}
.rs-path-card--featured .rs-path-card__shine { background: radial-gradient(circle, rgba(200,193,255,0.22) 0%, transparent 70%); }

.rs-path-card__top { display: flex; flex-direction: column; gap: 1rem; }
.rs-path-card__top h3 {
  font-family: var(--font-headline); font-size: 1.5rem; font-weight: 700;
  color: #fff; letter-spacing: -0.025em; line-height: 1.2; margin: 0;
}
.rs-path-card__body p {
  color: var(--rs-fg-soft); line-height: 1.7; margin: 0; font-size: 0.9375rem;
}
.rs-path-card__body p + p { margin-top: 0.85rem; }

/* =====================================================
   TESTIMONIALS
===================================================== */
.rs-proof__grid { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .rs-proof__grid { grid-template-columns: 5fr 7fr; gap: 5rem; } }

.rs-proof__title {
  font-family: var(--font-headline);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 700; line-height: 1.04; letter-spacing: -0.035em;
  color: #fff; margin: 0; text-wrap: pretty;
}

.rs-stats { list-style: none; padding: 0; margin: 2.5rem 0 0; display: flex; flex-direction: column; gap: 1.5rem; }
.rs-stats li {
  display: flex; flex-direction: column; gap: 0.25rem;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.rs-stats__num {
  font-family: var(--font-headline); font-size: 1.875rem; font-weight: 800;
  color: #fff; letter-spacing: -0.03em; line-height: 1;
}
.rs-stats__num small { font-size: 0.7em; color: var(--rs-fg-mute); font-weight: 600; }
.rs-stats__lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--rs-fg-mute); font-weight: 600; }

.rs-testimonials { display: flex; flex-direction: column; gap: 1.5rem; }
.rs-testimonials__row { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .rs-testimonials__row { grid-template-columns: 1fr 1fr; } }

.rs-testimonial {
  position: relative;
  padding: 2rem;
  background: var(--rs-glass-bg);
  border: 1px solid var(--rs-glass-border);
  border-radius: 20px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  transition: border-color 0.4s ease;
}
.rs-testimonial:hover { border-color: rgba(118,214,213,0.25); }
.rs-testimonial--lg { padding: 2.5rem; }
.rs-testimonial__mark {
  width: 32px; height: 24px; color: var(--rs-teal); opacity: 0.5;
  margin-bottom: 1rem;
}
.rs-testimonial__quote {
  font-size: 1rem; line-height: 1.7; color: var(--rs-fg);
  font-weight: 300; margin: 0 0 1.75rem;
  text-wrap: pretty;
}
.rs-testimonial--lg .rs-testimonial__quote { font-size: 1.125rem; }
.rs-testimonial__author { display: flex; align-items: center; gap: 1rem; }
.rs-testimonial__author img {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}
.rs-testimonial--lg .rs-testimonial__author img { width: 52px; height: 52px; }
.rs-testimonial__name {
  font-family: var(--font-headline); font-size: 0.875rem; font-weight: 700;
  color: #fff; letter-spacing: -0.01em;
}
.rs-testimonial__role { font-size: 0.6875rem; color: var(--rs-fg-mute); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.2rem; }

/* =====================================================
   STUDIE
===================================================== */
.rs-studie {
  max-width: 640px; margin: 0 auto; text-align: center;
  padding: 3.5rem 2.5rem;
  background: var(--rs-glass-bg);
  border: 1px solid var(--rs-glass-border);
  border-radius: 28px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  position: relative; overflow: hidden;
}
.rs-studie::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 120%; height: 100%;
  background: radial-gradient(ellipse, rgba(118,214,213,0.12) 0%, transparent 60%);
  filter: blur(40px); pointer-events: none;
}
.rs-studie__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(118,214,213,0.1); color: var(--rs-teal);
  margin-bottom: 1.25rem; position: relative;
}
.rs-studie__title {
  font-family: var(--font-headline); font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700; color: #fff; letter-spacing: -0.03em;
  margin: 0 0 1.25rem; position: relative;
}
.rs-studie__text {
  font-size: 1.0625rem; font-weight: 300; color: var(--rs-fg-soft);
  line-height: 1.7; margin: 1.25rem auto 1.75rem; max-width: 36rem;
  position: relative;
}
.rs-studie__metrics {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center;
  position: relative;
}
.rs-studie__metrics li {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-headline); font-size: 0.8125rem; font-weight: 700;
  color: var(--rs-teal);
  background: rgba(118,214,213,0.08); border: 1px solid rgba(118,214,213,0.2);
  border-radius: 999px; padding: 0.45rem 1rem;
}
.rs-arrow-up { font-weight: 900; }
.rs-studie__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-headline); font-size: 0.875rem; font-weight: 700;
  color: var(--rs-teal); text-decoration: none;
  border-bottom: 1px solid rgba(118,214,213,0.4);
  padding-bottom: 0.2rem; transition: border-color 0.2s, color 0.2s;
  position: relative;
}
.rs-studie__link:hover { color: #fff; border-color: #fff; }

/* =====================================================
   FINAL CTA
===================================================== */
.rs-section--cta { position: relative; padding: 8rem 0; }
@media (max-width: 768px) { .rs-section--cta { padding: 3.5rem 0; } }
@media (max-width: 480px) { .rs-section--cta { padding: 3rem 0; } }
.rs-cta-orb {
  position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%);
  width: min(800px, 90vw); height: min(800px, 90vw); pointer-events: none;
  opacity: calc(0.5 * var(--rs-orb-strength));
}
.rs-cta-orb__core {
  position: absolute; inset: 30%; border-radius: 50%;
  background: radial-gradient(circle, rgba(185,165,255,0.4) 0%, rgba(74,58,163,0.2) 40%, transparent 70%);
  filter: blur(40px);
  animation: rsBreath 10s ease-in-out infinite;
}
.rs-cta-orb__halo {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, transparent 50%, rgba(118,214,213,0.05) 60%, transparent 75%);
  animation: rsBreath 10s ease-in-out infinite -3s;
}
@keyframes rsBreath {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}

.rs-cta__inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.rs-cta__title {
  font-family: var(--font-headline); font-size: clamp(2.25rem, 5.5vw, 4rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.05;
  color: #fff; margin: 0 0 3rem; text-wrap: balance;
}
.rs-cta__cards {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem;
}
@media (min-width: 768px) { .rs-cta__cards { grid-template-columns: 1fr 1fr; } }

.rs-cta-card {
  padding: 2rem; text-align: left;
  background: var(--rs-glass-bg);
  border: 1px solid var(--rs-glass-border);
  border-radius: 20px;
  backdrop-filter: blur(var(--rs-glass-blur));
  -webkit-backdrop-filter: blur(var(--rs-glass-blur));
  display: flex; flex-direction: column; gap: 1rem;
  transition: border-color 0.4s ease;
}
.rs-cta-card:hover { border-color: rgba(255,255,255,0.18); }
.rs-cta-card--featured {
  background: rgba(200,193,255,0.04);
  border-color: rgba(200,193,255,0.2);
  box-shadow: 0 0 60px -20px rgba(200,193,255,0.3);
}
.rs-cta-card__eyebrow {
  font-family: var(--rs-mono); font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--rs-teal);
}
.rs-cta-card--featured .rs-cta-card__eyebrow { color: var(--rs-lavender); }
.rs-cta-card p { color: var(--rs-fg-soft); line-height: 1.65; font-size: 0.9375rem; margin: 0; flex: 1; }
.rs-cta-card .rs-btn { align-self: flex-start; }

.rs-cta__footnote {
  font-size: 0.875rem; color: var(--rs-fg-mute); margin-top: 1.5rem;
}
.rs-cta__footnote a { color: var(--rs-teal); text-decoration: none; border-bottom: 1px solid rgba(118,214,213,0.3); }
