* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #000;
}

/* ---------- AMBIENT BACKGROUND SHIMMER ---------- */

body {
  position: relative;
}

.ambient-blob {
  content: '';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  will-change: transform;
  transform: translate(-50%, -50%);
}

.ambient-blob-1 {
  width: clamp(620px, 66vw, 1040px);
  height: clamp(620px, 66vw, 1040px);
  top: calc(100vh + 1150px);
  left: 75%;
  background: radial-gradient(circle, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.09) 50%, transparent 75%);
  filter: blur(80px);
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  animation: ambient-drift-1 10s ease-in-out infinite;
}

.ambient-blob-2 {
  width: clamp(500px, 52vw, 820px);
  height: clamp(500px, 52vw, 820px);
  top: calc(100vh + 3500px);
  left: 82%;
  background: radial-gradient(circle, rgba(215,215,215,0.19) 0%, rgba(215,215,215,0.07) 48%, transparent 74%);
  filter: blur(85px);
  border-radius: 58% 42% 35% 65% / 55% 60% 40% 45%;
  animation: ambient-drift-2 8s ease-in-out infinite;
  animation-delay: -3s;
}

.ambient-blob-3 {
  width: clamp(420px, 44vw, 700px);
  height: clamp(400px, 40vw, 640px);
  top: calc(100vh + 3130px);
  left: 6%;
  background: radial-gradient(circle, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.12) 46%, transparent 72%);
  filter: blur(70px);
  border-radius: 65% 35% 50% 50% / 40% 55% 45% 60%;
  animation: ambient-drift-3 12s ease-in-out infinite;
  animation-delay: -5s;
}

.ambient-blob-4 {
  width: clamp(340px, 34vw, 540px);
  height: clamp(360px, 36vw, 560px);
  top: calc(100vh + 4000px);
  left: 15%;
  background: radial-gradient(circle, rgba(180,180,180,0.22) 0%, rgba(180,180,180,0.08) 50%, transparent 76%);
  filter: blur(68px);
  border-radius: 38% 62% 55% 45% / 60% 35% 65% 40%;
  animation: ambient-drift-4 9s ease-in-out infinite;
  animation-delay: -1.5s;
}

@keyframes ambient-drift-1 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  25% { transform: translate(calc(-50% + 9vw), calc(-50% - 7vh)) scale(1.18); }
  50% { transform: translate(calc(-50% + 3vw), calc(-50% + 6vh)) scale(0.9); }
  75% { transform: translate(calc(-50% - 8vw), calc(-50% - 3vh)) scale(1.1); }
}

@keyframes ambient-drift-2 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  25% { transform: translate(calc(-50% - 8vw), calc(-50% + 6vh)) scale(0.82); }
  50% { transform: translate(calc(-50% - 2vw), calc(-50% - 7vh)) scale(1.15); }
  75% { transform: translate(calc(-50% + 7vw), calc(-50% + 3vh)) scale(0.88); }
}

@keyframes ambient-drift-3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  25% { transform: translate(calc(-50% - 6vw), calc(-50% - 5vh)) scale(1.12); }
  50% { transform: translate(calc(-50% + 5vw), calc(-50% + 4vh)) scale(0.85); }
  75% { transform: translate(calc(-50% + 2vw), calc(-50% - 6vh)) scale(1.05); }
}

@keyframes ambient-drift-4 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  25% { transform: translate(calc(-50% + 7vw), calc(-50% + 3vh)) scale(0.88); }
  50% { transform: translate(calc(-50% - 4vw), calc(-50% - 6vh)) scale(1.2); }
  75% { transform: translate(calc(-50% - 6vw), calc(-50% + 2vh)) scale(0.95); }
}

@media (prefers-reduced-motion: reduce) {
  .ambient-blob {
    animation: none;
  }
}

/* ---------- HERO ---------- */

.hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* fades the whole hero into the solid-black sections below; hero-glass reserves
   matching bottom padding so the CTA/description never sit inside the fade */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(160px, 22vh, 320px);
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 60%, #000 100%);
}

/* single continuous photo spanning the entire hero — the "glass" panel on the
   right just reveals a blurred/darkened crop of this same image, not a second one */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/hero-aaron.jpeg');
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(1) contrast(1.05);
}

/* ---------- LEFT: PORTRAIT (sharp, no glass) ---------- */

.hero-left {
  position: relative;
  flex: 0 0 50%;
  min-height: 100vh;
  z-index: 1;
}

.hero-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 30%),
              linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 18%);
  pointer-events: none;
}

.logo {
  position: absolute;
  top: 48px;
  left: 48px;
  width: 130px;
  height: auto;
  z-index: 2;
  filter: grayscale(1);
}

.scrub-line {
  position: absolute;
  left: 21%;
  right: 0;
  bottom: 13%;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  z-index: 2;
}

.scrub-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.25);
}

.hero-caption {
  position: absolute;
  left: 24%;
  right: 4%;
  bottom: 15%;
  z-index: 2;
  color: #fff;
}

.hero-caption h2 {
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: clamp(28px, 3.125vw, 44px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.hero-caption p {
  margin-top: 8px;
  font-size: clamp(16px, 1.74vw, 22px);
  font-weight: 400;
  color: #d9d9d9;
}

/* ---------- RIGHT: GLASS PANEL ---------- */
/* frosted-glass panel sitting exactly at the 50% centerline; it has no image
   of its own — backdrop-filter samples the same .hero-bg photo behind it,
   which is what creates the "mirrored continuation" look */

.hero-glass {
  position: relative;
  flex: 0 0 50%;
  min-height: 100vh;
  z-index: 1;
  display: flex;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.01) 45%, rgba(255,255,255,0.02) 100%),
    rgba(8, 8, 8, 0.01);
  backdrop-filter: blur(8px) saturate(200%) brightness(1.1);
  -webkit-backdrop-filter: blur(8px) saturate(200%) brightness(1.1);
  border-left: 1px solid rgba(255,255,255,0.3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
  padding-bottom: clamp(140px, 20vh, 280px);
}

.content-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* left 10.7% / right 19% leaves the same big empty right margin the design has,
     so the toggle row ends at ~81% of the glass instead of hitting its edge */
  padding: 40px 19% 40px 10.7%;
  gap: 0;
  transform: translateY(15vh);
}

/* shorter desktop windows don't have enough vertical room for the full 15vh
   shift without pushing the CTA past the fold, so it's scaled back here */
@media (min-width: 901px) and (max-height: 820px) {
  .content-inner {
    transform: translateY(clamp(0px, 6vh, 50px));
  }
}

/* ---------- HEADLINES + TOGGLES ---------- */

.toggle-group {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.headline {
  font-size: clamp(28px, 3.47vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.headline.off {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.headline.on {
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.toggle {
  position: relative;
  flex-shrink: 0;
  width: 88px;
  height: 48px;
  border-radius: 999px;
  border: none;
  padding: 0;
  appearance: none;
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toggle:focus-visible {
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 3px;
}

.toggle--off {
  background: #565656;
}

.toggle--on {
  background: #3fc65a;
}

/* temporary demo state: clicking either toggle briefly flips both, then
   snaps back after 500ms to show the "regulated" state is the resting one */
.toggle-group.swapped .toggle--off {
  background: #3fc65a;
}

.toggle-group.swapped .toggle--off .knob {
  left: 44px;
}

.toggle-group.swapped .toggle--on {
  background: #565656;
}

.toggle-group.swapped .toggle--on .knob {
  left: 4px;
}

.toggle .knob {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
  transition: left 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toggle--on .knob {
  left: 44px;
}

/* mimics the iOS UISwitch thumb: it briefly stretches wider in the travel
   direction and eases back to a circle instead of sliding at a constant rate */
.toggle .knob.knob--stretch {
  animation: knob-stretch 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes knob-stretch {
  0% {
    width: 40px;
  }
  40% {
    width: 52px;
  }
  100% {
    width: 40px;
  }
}

/* ---------- DESCRIPTION ---------- */

.description {
  margin-top: 26px;
  color: #dcdcdc;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.5;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ---------- PROOF ROW ---------- */

.proof-row {
  display: flex;
  align-items: center;
  align-self: center;
  gap: 16px;
  margin-top: 90px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #1b1b1b;
  margin-left: -18px;
}

.avatars img:first-child {
  margin-left: 0;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.22);
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.15), 0 4px 12px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
}

.stars {
  color: #f4c430;
  font-size: 15px;
  letter-spacing: 1px;
}

.rating-text {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- CTA ---------- */

.cta {
  margin-top: 28px;
  align-self: center;
  background: #e3e0da;
  color: #111;
  border: none;
  padding: 22px 52px;
  font-family: inherit;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.cta:hover {
  background: #f2f0ec;
  transform: translateY(-2px);
}

/* ---------- SHARED SECTION LAYOUT ---------- */

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(24px, 6vw, 96px);
}

.section-heading {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.15);
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.play-btn svg {
  margin-left: 4px;
}

.play-btn:hover {
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ---------- VIDEO SECTION ---------- */

.video-section {
  background: #000;
  padding: clamp(72px, 9vw, 128px) 0;
}

.video-section .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.video-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  background: rgba(217, 217, 217, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- PROOF GALLERY ---------- */

.proof-gallery {
  background: #000;
  padding: clamp(64px, 8vw, 112px) 0 clamp(80px, 9vw, 120px);
}

.proof-gallery-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: clamp(36px, 4.5vw, 56px);
}

.section-heading--nowrap {
  white-space: nowrap;
}

.rating--pill {
  padding: clamp(16px, 1.8vw, 22px) clamp(24px, 2.6vw, 34px);
  gap: 14px;
}

.rating--pill .stars {
  font-size: clamp(18px, 1.8vw, 24px);
}

.rating--pill .rating-text {
  font-size: clamp(16px, 1.5vw, 20px);
}

.gallery-row {
  display: flex;
  align-items: stretch;
  height: clamp(360px, 42vw, 565px);
  gap: clamp(12px, 1.6vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
}

.gallery-item {
  position: relative;
  flex: 0 0 clamp(140px, 15vw, 184px);
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #2b2b2b;
  scroll-snap-align: start;
}

.gallery-item--wide {
  flex: 0 0 auto;
  aspect-ratio: 9 / 16;
  width: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15);
}

.gallery-item--wide .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}

.gallery-item--wide .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.06);
}

.gallery-item--more {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #3a3a3a;
}

.more-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #e3e0da;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  transition: transform 0.2s ease;
}

.gallery-item--more:hover .more-arrow {
  transform: scale(1.08);
}

/* ---------- CLOSING CTA ---------- */

.closing-cta {
  background: #000;
  padding: clamp(72px, 9vw, 120px) 0;
}

.closing-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.closing-cta .cta {
  margin-top: 0;
}

/* ---------- STEPS TEASER ---------- */

.steps-section {
  background: transparent;
  padding: clamp(72px, 9vw, 128px) 0;
}

.steps-intro {
  margin-top: 16px;
  max-width: 640px;
  color: #b8b8b8;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.5;
}

.steps-row {
  --overlap-offset: 66px;
  display: flex;
  align-items: center;
  margin-top: clamp(36px, 4.5vw, 56px);
}

.step-card {
  position: relative;
  width: 220px;
  height: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 32px 24px;
  border-radius: 24px;
  background-color: #0a1410;
  background-image: linear-gradient(rgba(63, 198, 90, 0.14), rgba(63, 198, 90, 0.14));
  border-top: 2px solid rgba(63, 198, 90, 0.55);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

/* leftmost card sits on top of the stack; shadow depth falls off toward the back */
.step-card:nth-child(1) { z-index: 5; box-shadow: 0 26px 50px rgba(0,0,0,0.5); }
.step-card:nth-child(2) { z-index: 4; box-shadow: 0 20px 40px rgba(0,0,0,0.42); }
.step-card:nth-child(3) { z-index: 3; box-shadow: 0 16px 32px rgba(0,0,0,0.36); }
.step-card:nth-child(4) { z-index: 2; box-shadow: 0 12px 24px rgba(0,0,0,0.3); }
.step-card:nth-child(5) { z-index: 1; box-shadow: 0 8px 16px rgba(0,0,0,0.25); }

/* card 1 is open by default — bigger, and set apart from the locked stack */
.step-card:first-child {
  width: 260px;
  height: 400px;
}

.step-card:nth-child(2) {
  margin-left: 32px;
}

.step-card:nth-child(3),
.step-card:nth-child(4),
.step-card:nth-child(5) {
  margin-left: calc(-1 * var(--overlap-offset));
}

.step-card::after {
  content: attr(data-step);
  position: absolute;
  right: -13px;
  bottom: -20px;
  z-index: 1;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 120px;
  line-height: 1;
  color: rgba(63, 198, 90, 0.08);
  pointer-events: none;
}

.step-card--locked::after {
  color: rgba(255, 255, 255, 0.06);
}

.step-badge {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(63, 198, 90, 0.18);
  border: 1px solid #3fc65a;
  color: #3fc65a;
  font-size: 18px;
  font-weight: 700;
}

.step-title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.step-desc {
  position: relative;
  z-index: 3;
  color: #dcdcdc;
  font-size: 13px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.step-caption {
  position: relative;
  z-index: 3;
  margin-top: 2px;
  color: #8c8c8c;
  font-size: 12.5px;
  line-height: 1.4;
  max-width: 140px;
}

.step-card--locked {
  background-color: #141414;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03));
  border-top: 2px solid rgba(255, 255, 255, 0.3);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.step-card--locked .step-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #8c8c8c;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.step-card--locked:hover .step-badge {
  opacity: 0;
  transform: scale(0.5);
}

.step-lock {
  position: relative;
  z-index: 3;
  width: 30px;
  height: 30px;
  color: #8c8c8c;
  transition: width 0.3s ease, height 0.3s ease;
}

.step-card--locked:hover .step-lock {
  width: 68px;
  height: 68px;
}

.steps-section .cta {
  margin-top: clamp(40px, 5vw, 64px);
}

/* ---------- TEASER BANNER ---------- */

.teaser-section {
  background: transparent;
  padding: 0 0 clamp(72px, 9vw, 128px);
}

.teaser-banner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(24px, 3vw, 36px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.teaser-person {
  flex: 0 0 26%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.teaser-avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(1) contrast(1.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.teaser-person-text {
  min-width: 0;
}

.teaser-title {
  color: #fff;
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.teaser-accent {
  color: #3fc65a;
}

.teaser-subtitle {
  margin-top: 4px;
  color: #a8a8a8;
  font-size: 12.5px;
  line-height: 1.3;
}

.teaser-video {
  position: relative;
  flex: 0 0 clamp(220px, 24vw, 320px);
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.teaser-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(1) contrast(1.05);
  display: block;
}

.teaser-video::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0) 65%);
  pointer-events: none;
}

.teaser-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  z-index: 2;
}

.teaser-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.teaser-video-label {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
}

.teaser-quote {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid rgba(63, 198, 90, 0.5);
}

.teaser-quote-mark {
  display: block;
  color: #3fc65a;
  font-size: 40px;
  font-weight: 800;
  line-height: 0.6;
  margin-bottom: 6px;
  font-family: Georgia, 'Times New Roman', serif;
}

.teaser-quote-text {
  color: #fff;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 14px;
}

.teaser-quote-author {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.teaser-quote-name {
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
}

.teaser-quote-role {
  color: #8c8c8c;
  font-size: 12px;
}

/* ---------- ABOUT ---------- */

.about-section {
  background: transparent;
  padding: clamp(72px, 9vw, 128px) 0;
}

.about-grid {
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 88px);
}

.about-photo {
  position: relative;
  flex: 0 0 42%;
  aspect-ratio: 4 / 5;
  transform: perspective(1400px) rotateY(-8deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.about-photo:hover {
  transform: perspective(1400px) rotateY(0deg) rotateX(0deg);
}

.about-photo-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.6s ease;
}

.about-photo:hover .about-photo-frame {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.about-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(1) contrast(1.05);
}

.about-photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 35%);
  pointer-events: none;
}

.about-photo-tag {
  position: absolute;
  left: -18px;
  bottom: -18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 18px;
  border-radius: 14px;
  background-color: #141414;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.06) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
}

.about-photo-name {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.about-photo-role {
  color: #b8b8b8;
  font-size: 12.5px;
}

.about-content {
  flex: 1 1 0;
  min-width: 0;
}

.about-eyebrow {
  display: block;
  color: #3fc65a;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-heading {
  color: #fff;
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
  text-wrap: balance;
}

.about-accent {
  color: #3fc65a;
}

.about-text {
  color: #dcdcdc;
  font-size: clamp(15px, 1.2vw, 16px);
  line-height: 1.6;
  max-width: 56ch;
  margin-bottom: 22px;
  text-wrap: pretty;
}

.about-callout {
  position: relative;
  padding-left: 22px;
  margin-bottom: 28px;
  border-left: 2px solid rgba(63, 198, 90, 0.5);
}

.about-callout .about-text {
  margin-bottom: 0;
}

.about-subheading {
  color: #3fc65a;
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 800;
  margin-bottom: 12px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}

.about-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 14px 16px;
  background-color: #141414;
  background-image: linear-gradient(135deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.06) 100%);
  border-radius: 12px;
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.about-stat-value {
  color: #3fc65a;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.about-stat-label {
  color: #a8a8a8;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

/* ---------- TESTIMONIALS ---------- */

.testimonials-section {
  background: transparent;
  padding: clamp(72px, 9vw, 128px) 0;
}

.testimonials-intro {
  margin-top: 16px;
  max-width: 640px;
  color: #b8b8b8;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.5;
}

.testimonial-row-wrap {
  position: relative;
  margin-top: clamp(32px, 4vw, 48px);
}

.testimonial-row {
  display: flex;
  align-items: stretch;
  height: clamp(320px, 34vw, 420px);
  gap: clamp(14px, 1.8vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 4px;
  scroll-behavior: smooth;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.testimonial-arrow:hover {
  background: rgba(63, 198, 90, 0.25);
  border-color: #3fc65a;
  transform: translateY(-50%) scale(1.08);
}

.testimonial-arrow--prev {
  left: -14px;
}

.testimonial-arrow--next {
  right: -14px;
}

.testimonial-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.testimonial-card {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 9 / 16;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #141414;
  scroll-snap-align: start;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.15) 35%, rgba(0,0,0,0) 60%);
  pointer-events: none;
}

.testimonial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 56px;
  height: 56px;
  cursor: default;
}

.testimonial-play-btn:hover {
  transform: translate(-50%, -50%);
}

.testimonial-tag {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.testimonial-role {
  color: #b8b8b8;
  font-size: 12px;
}

/* ---------- FAQ ---------- */

.faq-section {
  background: transparent;
  padding: clamp(72px, 9vw, 128px) 0;
}

.faq-intro {
  margin-top: 16px;
  max-width: 640px;
  color: #b8b8b8;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.5;
}

.faq-list {
  margin-top: clamp(32px, 4vw, 48px);
  max-width: 800px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 22px 4px;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  font-family: inherit;
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #3fc65a;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scaleY(0);
}

.faq-answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) .faq-answer-wrap {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer {
  padding: 0 4px 22px;
  max-width: 620px;
  color: #b8b8b8;
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- FOOTER ---------- */

.site-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(48px, 6vw, 72px) 0 clamp(32px, 5vw, 48px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a8a8a8;
  font-size: 14px;
  font-weight: 500;
}

.footer-link--icon svg {
  color: #a8a8a8;
}

.footer-disclaimer {
  max-width: 720px;
  color: #5c5c5c;
  font-size: 12px;
  line-height: 1.7;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {
  .ambient-blob {
    filter: blur(45px);
  }

  .ambient-blob-1 {
    width: clamp(420px, 90vw, 620px);
    height: clamp(420px, 90vw, 620px);
  }

  .ambient-blob-2 {
    width: clamp(340px, 78vw, 500px);
    height: clamp(340px, 78vw, 500px);
  }

  .ambient-blob-3 {
    width: clamp(290px, 70vw, 440px);
    height: clamp(280px, 65vw, 420px);
  }

  .ambient-blob-4 {
    width: clamp(250px, 58vw, 360px);
    height: clamp(260px, 62vw, 370px);
  }

  .hero {
    flex-direction: column;
  }

  .hero-left {
    flex: none;
    min-height: 70vh;
  }

  .hero-glass {
    flex: none;
    min-height: auto;
    background: #141414;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .logo {
    top: 24px;
    left: 24px;
    width: 96px;
  }

  .scrub-line {
    left: 24px;
    right: 24px;
    bottom: 96px;
  }

  .hero-caption {
    left: 24px;
    right: 24px;
    bottom: 32px;
  }

  .content-inner {
    padding: 48px 28px 56px;
    transform: none;
  }

  .toggle-row {
    gap: 16px;
  }

  .proof-row {
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .cta {
    width: 100%;
    text-align: center;
  }

  .steps-row {
    --overlap-offset: 34px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    padding-right: 24px;
  }

  .step-card {
    width: 168px;
    height: 250px;
    border-radius: 18px;
    padding: 24px 18px;
    scroll-snap-align: start;
  }

  .step-card:first-child {
    width: 200px;
    height: 300px;
  }

  .step-card:nth-child(2) {
    margin-left: 20px;
  }

  .step-card::after {
    font-size: 90px;
    right: -10px;
    bottom: -15px;
  }

  .step-badge {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }

  .step-title {
    font-size: 14px;
  }

  .step-caption {
    font-size: 11.5px;
  }

  .video-section .cta,
  .closing-cta .cta {
    max-width: 420px;
  }

  .teaser-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .teaser-person {
    flex-direction: column;
    text-align: center;
  }

  .teaser-video {
    align-self: stretch;
    flex: 0 0 auto;
    width: 100%;
  }

  .teaser-quote {
    padding-left: 0;
    border-left: none;
    padding-top: 20px;
    border-top: 2px solid rgba(63, 198, 90, 0.5);
    text-align: left;
  }

  .proof-gallery-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-heading--nowrap {
    white-space: normal;
  }

  .closing-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .closing-cta .cta {
    align-self: stretch;
  }

  .about-grid {
    flex-direction: column;
    align-items: stretch;
  }

  .about-photo {
    flex: none;
    aspect-ratio: 4 / 3;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- APPLICATION MODAL ---------- */

body.modal-open {
  overflow: hidden;
}

.app-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.app-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.app-modal {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(88vw, 880px);
  height: min(88vh, 820px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 50%, rgba(255,255,255,0.04) 100%),
    rgba(10, 10, 10, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.08);
  transform: scale(0.94) translateY(12px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  overflow: hidden;
}

.app-overlay.active .app-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.app-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.app-close:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(90deg);
}

.app-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 76px 20px 28px;
  flex-shrink: 0;
}

.app-back {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  background: none;
  border: none;
  color: #d9d9d9;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 4px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.app-back.visible {
  visibility: visible;
  opacity: 1;
}

.app-back:hover {
  color: #fff;
}

.app-progress {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.app-progress-bar {
  height: 100%;
  width: 16.666%;
  border-radius: 999px;
  background: #3fc65a;
  transition: width 0.35s cubic-bezier(0.34, 1.06, 0.64, 1);
}

.app-step-count {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #a8a8a8;
  white-space: nowrap;
}

.app-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px 28px;
  display: flex;
}

.app-step {
  display: none;
  flex-direction: column;
  width: 100%;
  margin: auto 0;
  animation: app-step-in 0.35s ease;
}

.app-step.active {
  display: flex;
}

@keyframes app-step-in {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.app-question {
  color: #fff;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.app-textarea {
  width: 100%;
  min-height: 160px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 18px 20px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.app-textarea::placeholder {
  color: #8c8c8c;
}

.app-textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.app-options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.app-option {
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 18px 22px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.app-option:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.app-option.selected {
  background: rgba(63, 198, 90, 0.18);
  border-color: #3fc65a;
}

.app-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.app-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 16px 20px;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.app-input::placeholder {
  color: #8c8c8c;
}

.app-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.app-error {
  margin-top: 14px;
  min-height: 18px;
  color: #ff6b6b;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.app-footer {
  flex-shrink: 0;
  padding: 0 28px 28px;
  display: flex;
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.app-footer.visible {
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow: visible;
}

.app-next {
  width: 100%;
  background: #e3e0da;
  color: #111;
  border: none;
  padding: 18px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, opacity 0.2s ease;
}

.app-next:hover {
  background: #f2f0ec;
  transform: translateY(-2px);
}

.app-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ---------- SWIPE-TO-SUBMIT SLIDER ---------- */

.swipe-slider {
  position: relative;
  width: 100%;
}

.swipe-track {
  position: relative;
  width: 100%;
  height: 60px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  padding: 5px;
  overflow: hidden;
}

.swipe-track.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.swipe-label {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 600;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.swipe-thumb {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #3fc65a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  touch-action: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  transition: transform 0.05s linear;
}

.swipe-thumb.snapping {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.swipe-thumb:active {
  cursor: grabbing;
}

.swipe-spinner {
  display: none;
  animation: swipe-spin 0.8s linear infinite;
}

.swipe-thumb.loading .swipe-arrow {
  display: none;
}

.swipe-thumb.loading .swipe-spinner {
  display: block;
}

@keyframes swipe-spin {
  to { transform: rotate(360deg); }
}

/* ---------- ABORT CONFIRMATION ---------- */

.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 24px;
}

.confirm-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.confirm-dialog {
  width: 100%;
  max-width: 420px;
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transform: scale(0.92);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirm-overlay.active .confirm-dialog {
  transform: scale(1);
}

.confirm-dialog p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 26px;
}

.confirm-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.confirm-btn {
  width: 100%;
  padding: 15px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.confirm-btn--ghost {
  background: #e3e0da;
  border: none;
  color: #111;
}

.confirm-btn--ghost:hover {
  background: #f2f0ec;
  transform: translateY(-1px);
}

.confirm-btn--danger {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #d9d9d9;
}

.confirm-btn--danger:hover {
  border-color: #ff6b6b;
  color: #ff6b6b;
}

/* ---------- SUCCESS SCREEN ---------- */

.success-screen {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: #000;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-screen.active {
  opacity: 1;
  visibility: visible;
}

.success-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(24px, 4vh, 56px) 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-check {
  position: relative;
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
}

.success-spinner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(63, 198, 90, 0.2);
  border-top-color: #3fc65a;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.success-screen.is-loading .success-spinner {
  opacity: 1;
  visibility: visible;
  animation: success-spin 0.8s linear infinite;
}

.success-check-svg {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity 0.25s ease;
}

.success-screen.is-loading .success-check-svg {
  opacity: 0;
}

.success-check-circle {
  stroke: #3fc65a;
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: success-circle 0.5s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-check-mark {
  stroke: #3fc65a;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: success-mark 0.4s 0.45s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-loading-text {
  display: none;
  color: #a8a8a8;
  font-size: 14px;
  font-weight: 600;
}

.success-screen.is-loading .success-loading-text {
  display: block;
}

.success-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-screen.is-loading .success-content {
  display: none;
}

@keyframes success-spin {
  to { transform: rotate(360deg); }
}

@keyframes success-circle {
  to { stroke-dashoffset: 0; }
}

@keyframes success-mark {
  to { stroke-dashoffset: 0; }
}

.success-heading {
  color: #fff;
  font-family: 'Clash Display', 'Inter', sans-serif;
  font-size: clamp(24px, 2.9vw, 33px);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.success-sub {
  color: #fff;
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 600;
  margin-bottom: 6px;
}

.success-text {
  color: #b8b8b8;
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 520px;
}

.success-video-heading {
  color: #fff;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 700;
  margin-bottom: 14px;
}

.success-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(217, 217, 217, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 640px) {
  .app-modal {
    width: 94vw;
    height: 92vh;
    border-radius: 20px;
  }

  .app-header {
    padding: 20px 60px 16px 20px;
  }

  .app-body {
    padding: 8px 20px 20px;
  }

  .app-footer {
    padding: 0 20px 20px;
  }
}
