:root {
  --blue: #0052ff;
  --blue-hover: #1a66ff;
  --blue-glow: rgba(0, 82, 255, 0.22);
  --blue-soft: rgba(0, 82, 255, 0.08);
  --ink: #1a1d2e;
  --muted: #64748b;
  --light: #94a3b8;
  --bg: #f9fafc;
  --white: #ffffff;
  --red: #ef4444;
  --green: #16a34a;
  --green-soft: rgba(22, 163, 74, 0.09);
  --border: rgba(0, 0, 0, 0.07);
  --r-sm: 12px;
  --dark-2:#3d4050;
  --dark: #0a0b10;
  --red: #ef4444;
}
body {
  margin: 0;
}

/* ── URGENCY BAR ───────────────────── */
.urgency-bar {
  position: sticky;
  top: 69px;
  z-index: 100;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: slideBarDown 0.5s ease both;
}

.urgency-bar strong {
  color: #fbbf24;
  font-weight: 700;
}

.urgency-bar .seats {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fbbf24;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  animation: pulseYellow 2s ease infinite;
}

/* ── HERO ──────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  font-family: 'Bricolage Grotesque', sans-serif;
  flex-direction: column;
  justify-content: center;
  padding: 23px 0 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 65% at 68% 45%, rgba(0, 82, 255, 0.09) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 12% 78%, rgba(0, 82, 255, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 30% 30% at 92% 10%, rgba(0, 200, 255, 0.06) 0%, transparent 55%), var(--bg);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 82, 255, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 75% at 68% 50%, black 15%, transparent 100%);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.5;
  pointer-events: none;
}

.blob-1 {
  width: 520px;
  height: 520px;
  background: rgba(0, 82, 255, 0.11);
  top: -100px;
  right: -80px;
  animation: blobFloat 11s ease-in-out infinite;
}

.blob-2 {
  width: 340px;
  height: 340px;
  background: rgba(0, 180, 255, 0.08);
  bottom: -80px;
  right: 180px;
  animation: blobFloat 15s ease-in-out infinite reverse;
}

/* ── GRID ──────────────────────────── */
.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 52px;
  align-items: center;
}

/* ── LEFT ──────────────────────────── */
.hero__left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


.hero__badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  animation: fadeSlideDown 0.65s 0.05s ease both;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-pill.blue {
  background: var(--blue-soft);
  border: 1px solid rgba(0, 82, 255, 0.2);
  color: var(--blue);
}

.badge-pill.gold {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #b45309;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero__headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(42px, 5.4vw, 70px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--dark);
  animation: fadeSlideUp 0.7s 0.1s ease both;
}

.hl-blue {
  color: var(--blue);
  position: relative;
  display: inline-block;
}

.hl-blue::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--blue), rgba(0, 82, 255, 0.1));
  border-radius: 4px;
  transform: scaleX(0);
  transform-origin: left;
  animation: lineReveal 0.7s 0.95s ease forwards;
}

.hl-outline {
  -webkit-text-stroke: 2.5px var(--blue);
  color: transparent;
}

.hero__pain {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(239, 68, 68, 0.055);
  border: 1px solid rgba(239, 68, 68, 0.13);
  border-radius: 14px;
  padding: 13px 16px;
  animation: fadeSlideUp 0.7s 0.15s ease both;
}

.pain-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-text {
  font-size: 14px;
  line-height: 1.6;
  color: #7f1d1d;
  font-weight: 500;
}

.pain-text strong {
  font-weight: 700;
  color: #dc2626;
}

.hero__desc {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--dark-2);
  max-width: 510px;
  font-weight: 400;
  animation: fadeSlideUp 0.7s 0.2s ease both;
}

.hero__desc strong,.hero__desc b {
  color: var(--dark);
  font-weight: 600;
}

.hero__cta-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.28s ease both;
}

.cta-wrap {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cta-scarcity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--red);
  font-weight: 600;
}


.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.7s 0.36s ease both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.trust-item .chk {
  width: 18px;
  height: 18px;
  background: var(--green-soft);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  color: var(--green);
  font-weight: 800;
}

.trust-divider {
  width: 1px;
  height: 14px;
  background: var(--border);
}

/* ── RIGHT / MOCKUP ────────────────── */
.hero__right {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeSlideLeft 0.85s 0.15s ease both;
}

.mockup-scene {
  position: relative;
  width: 100%;
  max-width: 475px;
}

.mockup-scene::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 5%;
  right: 5%;
  bottom: -18%;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.2) 0%, transparent 70%);
  filter: blur(36px);
  z-index: 0;
}

.m-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  padding: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 1),
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 8px 28px rgba(0, 0, 0, 0.08),
    0 28px 72px rgba(0, 82, 255, 0.12);
  transform: perspective(1100px) rotateY(-9deg) rotateX(4deg);
  transition: transform 0.5s ease;
}

.m-card:hover {
  transform: perspective(1100px) rotateY(-3deg) rotateX(1.5deg);
}

.m-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.m-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #0052ff 0%, #00b4ff 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: white;
}

.m-brand-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}

.m-brand-sub {
  font-size: 10.5px;
  color: var(--muted);
}

.m-live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--green-soft);
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 20px;
  padding: 4px 11px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}

.m-live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}

.m-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 16px;
}

.m-stat {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.05), rgba(0, 82, 255, 0.02));
  border: 1px solid rgba(0, 82, 255, 0.09);
  border-radius: 14px;
  padding: 11px 8px;
  text-align: center;
}

.m-stat-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 3px;
}

.m-stat-val em {
  color: var(--blue);
  font-style: normal;
}

.m-stat-lbl {
  font-size: 9.5px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.m-stat-delta {
  font-size: 10px;
  color: var(--green);
  font-weight: 700;
  margin-top: 2px;
}

.m-chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
}

.m-chart-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.m-chart-period {
  font-size: 10.5px;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  padding: 3px 8px;
}

.m-chart {
  height: 70px;
  margin-bottom: 14px;
}

.m-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-line-anim {
  stroke-dasharray: 460;
  stroke-dashoffset: 460;
  animation: drawLine 2.2s 1s ease forwards;
}

.chart-area-anim {
  opacity: 0;
  animation: fadeIn 0.5s 1.9s ease forwards;
}

.m-pills {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.m-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 10px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.m-pill.green {
  color: var(--green);
  background: var(--green-soft);
  border-color: rgba(22, 163, 74, 0.14);
}

.m-posts {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.m-post {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 12px;
  padding: 9px 12px;
}

.m-post-thumb {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  flex-shrink: 0;
}

.m-post-thumb.t1 {
  background: linear-gradient(135deg, #0052ff, #00b4ff);
}

.m-post-thumb.t2 {
  background: linear-gradient(135deg, #7c3aed, #ec4899);
}

.m-post-info {
  flex: 1;
  min-width: 0;
}

.m-post-ttl {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 1px;
}

.m-post-meta {
  font-size: 10.5px;
  color: var(--light);
}

.m-post-reach {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue);
  white-space: nowrap;
}

/* ── FLOATING CARDS ────────────────── */
.fc {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(0, 0, 0, 0.06);
}

.fc-roi {
  top: -20px;
  left: -36px;
  padding: 11px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatA 4.5s ease-in-out infinite;
}

.fc-roi-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #0052ff, #00cfff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.fc-roi-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.fc-roi-lbl {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
}

.fc-active {
  top: 58px;
  right: -30px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatC 6s ease-in-out infinite;
}

.fc-active-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: ripple 1.8s ease infinite;
  flex-shrink: 0;
}

.fc-active-txt {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.fc-active-txt span {
  color: var(--green);
}

.fc-lead {
  bottom: -14px;
  right: -26px;
  padding: 11px 16px;
  animation: floatB 5s ease-in-out infinite;
}

.fc-lead-top {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 3px;
}

.fc-lead-sub {
  font-size: 10.5px;
  color: var(--muted);
}

/* ── COUNTER BAR ───────────────────── */
.hero__counter-bar {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 56px auto 0;
  padding: 0 48px 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  animation: fadeSlideUp 0.7s 0.5s ease both;
}

.cbar-item {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}

.cbar-item:last-child {
  border-right: none;
}

.cbar-item:hover {
  background: rgba(0, 82, 255, 0.025);
}

.cbar-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 34px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 5px;
}

.cbar-val em {
  color: var(--blue);
  font-style: normal;
}

.cbar-lbl {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

/* ── ANIMATIONS ────────────────────── */
@keyframes slideBarDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }

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

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

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

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.82);
  }
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(22, 163, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
}

@keyframes pulseYellow {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.65;
  }
}

@keyframes lineReveal {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: 460;
  }

  to {
    stroke-dashoffset: 0;
  }
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-28px, 20px) scale(1.04);
  }

  66% {
    transform: translate(18px, -14px) scale(0.97);
  }
}

@keyframes floatA {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }

  50% {
    transform: translateY(-9px) rotate(-2deg);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translateY(0) rotate(1.5deg);
  }

  50% {
    transform: translateY(8px) rotate(1.5deg);
  }
}

@keyframes floatC {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-6px) rotate(1deg);
  }
}

/* ── RESPONSIVE ────────────────────── */
@media (max-width: 901px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 44px;
    text-align: center;
  }
  .h-sub{
      max-width:100%
  }
  .hero__left{
      align-items: center;
  }

  .hero__badge-row,
  .hero__cta-group,
  .hero__trust,
  .hero__live-notif,
  .hero__pain {
    justify-content: center;
  }

  .hero__pain {
    text-align: left;
  }

  .hero__desc {
    margin: 0 auto;
  }

  .hero__right {
    order: -1;
  }

  .m-card {
    transform: perspective(1100px) rotateY(0deg) rotateX(2deg);
  }

  .mockup-scene {
    max-width: 400px;
  }

  .fc-roi {
    left: -10px;
    display: none;
  }

  .fc-active {
    right: -10px;
    display: none;
  }

  .fc-lead {
    right: -8px;
    display: none;
  }

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

@media (max-width: 520px) {
  .hero {
    padding: 56px 0 0;
  }

  .hero__container {
    padding: 0 12px;
  }

  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-ghost {
    justify-content: center;
  }

  .hero__counter-bar {
    padding: 0 22px 48px;
  }

  .urgency-bar {
    font-size: 11.5px;
    gap: 6px;
  }

  .cbar-val {
    font-size: 26px;
  }
}
/* ═══════════════════════════════════════════════
     BÖLÜM 2 — ADVANTAGES
  ════════════════════════════════════════════════ */

.advantages {
  position: relative;
  background: #080a12;
  padding: 120px 0 128px;
  overflow: hidden;
  isolation: isolate;
}

.advantages__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.advantages__bg::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 600px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.13) 0%, transparent 65%);
  filter: blur(40px);
}

.advantages__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 20%, transparent 80%);
}

.advantages__fade-top,
.advantages__fade-bottom {
  display: none;
}

.adv__inner {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 48px;
}

.adv__header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.adv__header::before {
  content: 'FARK';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(0, 82, 255, 0.07);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
}

.adv__badge {
  display: none;
}

.adv__h2 {
  position: relative;
  z-index: 1;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(34px, 5.2vw, 68px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.042em;
  color: #f0f4ff;
  max-width: 900px;
  margin: 0 auto 28px;
}

.adv__h2 em {
  font-style: normal;
  color: #0052ff;
  position: relative;
  display: inline-block;
}

.adv__h2 em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0052ff 0%, rgba(0, 82, 255, 0.15) 100%);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.adv__header.adv--visible .adv__h2 em::after {
  transform: scaleX(1);
  transition-delay: 0.4s;
}

.adv__header-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 24px;
  max-width: 280px;
}

.adv__header-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.2));
}

.adv__header-divider span:last-child {
  background: linear-gradient(90deg, rgba(0, 82, 255, 0.2), transparent);
}

.adv__header-divider i {
  width: 6px;
  height: 6px;
  background: #0052ff;
  border-radius: 50%;
  flex-shrink: 0;
  font-style: normal;
  opacity: 0.5;
}

.adv__subtitle {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.72;
  color: #475569;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 400;
}

.adv__subtitle strong {
  color: #94a3b8;
  font-weight: 600;
}

.adv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.adv-card {
  position: relative;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  cursor: default;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  opacity: 0;
  transform: translateY(36px);
}

.adv-card.adv--visible {
  opacity: 1;
  transform: translateY(0);
}

.adv-card:nth-child(1) {
  transition-delay: 0.08s;
}

.adv-card:nth-child(2) {
  transition-delay: 0.18s;
}

.adv-card:nth-child(3) {
  transition-delay: 0.28s;
}

.adv-card:hover {
  transform: translateY(-10px);
  border-color: var(--card-accent-color, rgba(0, 82, 255, 0.3));
  box-shadow:
    0 0 0 1px var(--card-accent-color, rgba(0, 82, 255, 0.2)),
    0 12px 40px rgba(0, 0, 0, 0.1),
    0 24px 64px var(--card-glow-color, rgba(0, 82, 255, 0.12));
}

.adv-card.adv--visible:hover {
  transform: translateY(-10px);
}

.adv-card__accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  background: var(--card-line-gradient);
  opacity: 0.7;
  transition:
    opacity 0.3s ease,
    height 0.3s ease;
}

.adv-card:hover .adv-card__accent-line {
  opacity: 1;
  height: 4px;
}

.adv-card__glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--card-glow-color, rgba(0, 82, 255, 0.15)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.adv-card:hover .adv-card__glow {
  opacity: 1;
}

.adv-card__body {
  padding: 36px 32px 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.adv-card__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(0, 82, 255, 0.07);
  border: 1px solid rgba(0, 82, 255, 0.12);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.adv-card:hover .adv-card__icon-wrap {
  background: var(--card-icon-bg, rgba(0, 82, 255, 0.12));
  border-color: var(--card-accent-color, rgba(0, 82, 255, 0.35));
  transform: scale(1.1) rotate(-4deg);
}

.adv-card__icon-wrap svg {
  width: 26px;
  height: 26px;
  color: #94a3b8;
  transition:
    color 0.35s ease,
    filter 0.35s ease;
}

.adv-card:hover .adv-card__icon-wrap svg {
  color: var(--card-icon-color, #3b82f6);
  filter: drop-shadow(0 0 5px var(--card-glow-color, rgba(59, 130, 246, 0.5)));
}

.adv-card__num {
  position: absolute;
  top: 28px;
  right: 30px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  letter-spacing: -0.04em;
  pointer-events: none;
  transition: color 0.35s ease;
  user-select: none;
}

.adv-card:hover .adv-card__num {
  color: var(--card-num-color, rgba(59, 130, 246, 0.07));
}

.adv-card__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.025em;
  color: #e2e8f0;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

.adv-card:hover .adv-card__title {
  color: #f0f4ff;
}

.adv-card__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14.5px;
  line-height: 1.72;
  color: #475569;
  font-weight: 400;
  flex: 1;
  margin-bottom: 28px;
}

.adv-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 22px;
  transition: background 0.3s ease;
}

.adv-card:hover .adv-card__divider {
  background: var(--card-accent-color, rgba(0, 82, 255, 0.2));
}

.adv-card__metric {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.adv-card__metric-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--card-line-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
}

.adv-card__metric-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.adv-card__metric-label {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.adv-card__metric-sub {
  font-size: 11px;
  color: #cbd5e1;
  font-weight: 500;
}

.adv-card__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition:
    color 0.25s ease,
    gap 0.25s ease;
}

.adv-card:hover .adv-card__link {
  color: var(--card-icon-color, #3b82f6);
  gap: 11px;
}

.adv-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.adv-card:hover .adv-card__link svg {
  transform: translateX(4px);
}

.adv-card--blue {
  --card-accent-color: rgba(59, 130, 246, 0.45);
  --card-glow-color: rgba(59, 130, 246, 0.22);
  --card-icon-bg: rgba(59, 130, 246, 0.15);
  --card-icon-color: #3b82f6;
  --card-num-color: rgba(59, 130, 246, 0.08);
  --card-line-gradient: linear-gradient(90deg, #3b82f6, #06b6d4);
}

.adv-card--indigo {
  --card-accent-color: rgba(99, 102, 241, 0.45);
  --card-glow-color: rgba(99, 102, 241, 0.22);
  --card-icon-bg: rgba(99, 102, 241, 0.15);
  --card-icon-color: #818cf8;
  --card-num-color: rgba(99, 102, 241, 0.08);
  --card-line-gradient: linear-gradient(90deg, #6366f1, #a78bfa);
}

.adv-card--cyan {
  --card-accent-color: rgba(6, 182, 212, 0.45);
  --card-glow-color: rgba(6, 182, 212, 0.22);
  --card-icon-bg: rgba(6, 182, 212, 0.15);
  --card-icon-color: #22d3ee;
  --card-num-color: rgba(6, 182, 212, 0.08);
  --card-line-gradient: linear-gradient(90deg, #06b6d4, #10b981);
}

.adv__header {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.adv__header.adv--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .adv__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .advantages {
    padding: 80px 0 88px;
  }

  .adv__inner {
    padding: 0 24px;
  }
}

@media (max-width: 520px) {
  .advantages {
    padding: 64px 0 72px;
  }

  .adv__inner {
    padding: 0 18px;
  }

  .adv-card__body {
    padding: 28px 22px 32px;
  }

  .adv__h2 {
    font-size: 30px;
  }

  .adv-card__metric-val {
    font-size: 26px;
  }
}

@keyframes advBlobPulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateX(-50%) scale(1.15);
    opacity: 0.75;
  }
}

@keyframes advBadgeSweep {
  0% {
    left: -100%;
  }

  50% {
    left: 150%;
  }

  100% {
    left: 150%;
  }
}

@keyframes advDotPulse {
  0%,
  100% {
    box-shadow: 0 0 6px rgba(59, 130, 246, 0.8);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 14px rgba(59, 130, 246, 1);
    transform: scale(1.3);
  }
}

@keyframes advGradientShift {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* ── BÖLÜM 3 — SÜREÇ ── */
.process {
  position: relative;
  background: #f9fafc;
  padding: 120px 0 128px;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.06) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}

.process::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 50%, black 20%, transparent 85%);
  pointer-events: none;
}

.process__inner {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 48px;
}

.process__header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.process__header.proc--visible {
  opacity: 1;
  transform: translateY(0);
}

.process__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #0052ff;
  margin-bottom: 20px;
}

.process__eyebrow-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, #0052ff, transparent);
  border-radius: 2px;
}

.process__eyebrow-line.right {
  background: linear-gradient(90deg, transparent, #0052ff);
}

.process__h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: #080a12;
  max-width: 700px;
  margin: 0 auto 20px;
}

.process__h2 em {
  font-style: normal;
  color: #0052ff;
}

.process__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto;
}

.process__subtitle strong {
  color: #1a1d2e;
  font-weight: 600;
}

.process__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process__timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(59, 130, 246, 0.15) 0%,
    rgba(59, 130, 246, 0.5) 33%,
    rgba(99, 102, 241, 0.5) 66%,
    rgba(6, 182, 212, 0.15) 100%
  );
  z-index: 0;
}

.process__timeline-fill {
  position: absolute;
  top: 36px;
  left: calc(12.5% + 4px);
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #3b82f6, #6366f1, #06b6d4);
  z-index: 1;
  border-radius: 2px;
  transition: width 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.process__timeline-fill.proc--filled {
  width: calc(75% - 8px);
}

.proc-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.proc-step.proc--visible {
  opacity: 1;
  transform: translateY(0);
}

.proc-step:nth-child(2) {
  transition-delay: 0.15s;
}

.proc-step:nth-child(3) {
  transition-delay: 0.28s;
}

.proc-step:nth-child(4) {
  transition-delay: 0.41s;
}

.proc-step:nth-child(5) {
  transition-delay: 0.54s;
}

/* 1. İKONUN NORMAL HALİ */
.proc-step__dot {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;

  /* YENİ EKLENEN KISIM: Altı katı renk, üstü senin şeffaf mavi rengin */
  background-color: #f9fafc;
  background-image: linear-gradient(rgba(0, 82, 255, 0.06), rgba(0, 82, 255, 0.06));

  border: 1.5px solid rgba(0, 82, 255, 0.15);
  transition:
    border-color 0.35s ease,
    background 0.35s ease,
    transform 0.35s ease;
}

/* 2. İKONUN ÜZERİNE GELİNCE (HOVER) HALİ */
.proc-step:hover .proc-step__dot {
  /* HOVER YENİ EKLENEN KISIM */
  background-color: #f9fafc;
  background-image: linear-gradient(
    var(--step-icon-bg, rgba(59, 130, 246, 0.12)),
    var(--step-icon-bg, rgba(59, 130, 246, 0.12))
  );

  border-color: var(--step-accent, rgba(59, 130, 246, 0.5));
  transform: scale(1.08);
}

.proc-step__dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--step-accent, rgba(59, 130, 246, 0.25));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.proc-step:hover .proc-step__dot::after {
  opacity: 1;
}

.proc-step__dot svg {
  width: 26px;
  height: 26px;
  color: #475569;
  transition:
    color 0.35s ease,
    filter 0.35s ease;
}

.proc-step:hover .proc-step__dot svg {
  color: var(--step-icon-color, #3b82f6);
  filter: drop-shadow(0 0 6px var(--step-glow, rgba(59, 130, 246, 0.6)));
}

.proc-step__num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--step-accent-solid, #3b82f6);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 10px;
  font-weight: 900;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px var(--step-glow, rgba(59, 130, 246, 0.5));
}

.proc-step__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #1a1d2e;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.25;
  transition: color 0.3s ease;
}

.proc-step:hover .proc-step__title {
  color: #0052ff;
}

.proc-step__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  line-height: 1.65;
  color: #64748b;
  font-weight: 400;
  transition: color 0.3s ease;
}

.proc-step:hover .proc-step__desc {
  color: #1a1d2e;
}

.process__cta-strip {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.7s 0.3s ease,
    transform 0.7s 0.3s ease;
}

.process__cta-strip.proc--visible {
  opacity: 1;
  transform: translateY(0);
}

.process__guarantee {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.proc-guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
}

.proc-guarantee-item .gcheck {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #16a34a;
  font-weight: 800;
  flex-shrink: 0;
}

.proc-divider {
  width: 1px;
  height: 16px;
  background: rgba(0, 0, 0, 0.1);
}

.proc-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #0052ff;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 20px rgba(0, 82, 255, 0.35);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  position: relative;
  overflow: hidden;
}

.proc-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}

.proc-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 82, 255, 0.45);
}

.proc-cta-btn svg {
  transition: transform 0.2s ease;
  position: relative;
}

.proc-cta-btn:hover svg {
  transform: translateX(4px);
}

.proc-step--blue {
  --step-accent: rgba(59, 130, 246, 0.5);
  --step-accent-solid: #3b82f6;
  --step-icon-bg: rgba(59, 130, 246, 0.1);
  --step-icon-color: #3b82f6;
  --step-glow: rgba(59, 130, 246, 0.55);
}

.proc-step--indigo {
  --step-accent: rgba(99, 102, 241, 0.5);
  --step-accent-solid: #6366f1;
  --step-icon-bg: rgba(99, 102, 241, 0.1);
  --step-icon-color: #818cf8;
  --step-glow: rgba(99, 102, 241, 0.55);
}

.proc-step--violet {
  --step-accent: rgba(139, 92, 246, 0.5);
  --step-accent-solid: #8b5cf6;
  --step-icon-bg: rgba(139, 92, 246, 0.1);
  --step-icon-color: #a78bfa;
  --step-glow: rgba(139, 92, 246, 0.55);
}

.proc-step--cyan {
  --step-accent: rgba(6, 182, 212, 0.5);
  --step-accent-solid: #06b6d4;
  --step-icon-bg: rgba(6, 182, 212, 0.1);
  --step-icon-color: #22d3ee;
  --step-glow: rgba(6, 182, 212, 0.55);
}

@media (max-width: 900px) {
  .process__timeline {
    grid-template-columns: 1fr 1fr;
    gap: 40px 20px;
  }

  .process__timeline::before,
  .process__timeline-fill {
    display: none;
  }
}

@media (max-width: 520px) {
  .process {
    padding: 72px 0 80px;
  }

  .process__inner {
    padding: 0 20px;
  }

  .process__timeline {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process__h2 {
    font-size: 28px;
  }

  .proc-step {
    flex-direction: row;
    text-align: left;
    gap: 18px;
  }

  .proc-step__dot {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    margin-bottom: 0;
  }
}

/* ── BÖLÜM 4 — SHOWCASE ── */
.showcase {
  position: relative;
  background: #06080f;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.showcase__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(0, 82, 255, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 45% at 80% 30%, rgba(0, 180, 255, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 85%, rgba(99, 102, 241, 0.1) 0%, transparent 55%), #06080f;
  animation: meshDrift 18s ease-in-out infinite alternate;
}

.showcase__canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 82, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 82, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
  animation: gridPulse 6s ease-in-out infinite;
}

.showcase__canvas::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.showcase__inner {
  position: relative;
  z-index: 2;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 56px;
}

.showcase__hero-head {
  padding: 128px 0 80px;
  text-align: center;
  position: relative;
}

.showcase__hero-head::before {
  content: 'WOW';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(160px, 22vw, 320px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
  background: linear-gradient(180deg, rgba(0, 82, 255, 0.07) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  animation: ghostPulse 8s ease-in-out infinite;
}

.showcase__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: revealUp 0.8s 0.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.sc2-eye-line {
  display: block;
  width: 28px;
  height: 1px;
  border-radius: 1px;
}

.sc2-eye-line.l {
  background: linear-gradient(90deg, transparent, #3b82f6);
}

.sc2-eye-line.r {
  background: linear-gradient(90deg, #3b82f6, transparent);
}

.showcase__kinetic {
  position: relative;
  z-index: 1;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 900;
  line-height: 1.01;
  letter-spacing: -0.045em;
  max-width: 1000px;
  margin: 0 auto 28px;
}

.showcase__kinetic-l1 {
  display: block;
  font-size: clamp(44px, 6.5vw, 92px);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.18);
  color: transparent;
  opacity: 0;
  transform: translateY(40px) skewY(-2deg);
  animation: slamIn 0.7s 0.35s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  letter-spacing: -0.04em;
}

.showcase__kinetic-l2 {
  display: block;
  font-size: clamp(52px, 7.8vw, 110px);
  color: #ffffff;
  opacity: 0;
  transform: translateY(40px) skewY(-2deg);
  animation: slamIn 0.7s 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  text-shadow:
    0 0 60px rgba(0, 82, 255, 0.5),
    0 0 120px rgba(0, 82, 255, 0.2);
  letter-spacing: -0.05em;
}

.showcase__kinetic-l3 {
  display: block;
  font-size: clamp(38px, 5.2vw, 72px);
  background: linear-gradient(90deg, #0052ff 0%, #00cfff 40%, #6366f1 75%, #a78bfa 100%);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0;
  transform: translateY(40px) skewY(-2deg);
  animation:
    slamIn 0.7s 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) forwards,
    gradientFlow 6s 1.5s linear infinite;
  letter-spacing: -0.035em;
}

.showcase__sub-head {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.35);
  max-width: 520px;
  margin: 0 auto;
  opacity: 0;
  animation: revealUp 0.8s 0.85s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.showcase__sub-head strong {
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.showcase__ticker {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
  backdrop-filter: blur(8px);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  position: relative;
  z-index: 3;
}

.showcase__ticker::before,
.showcase__ticker::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.showcase__ticker::before {
  left: 0;
  background: linear-gradient(90deg, #06080f, transparent);
}

.showcase__ticker::after {
  right: 0;
  background: linear-gradient(-90deg, #06080f, transparent);
}

.ticker__track {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 28s linear infinite;
}

.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker__item em {
  font-style: normal;
  color: #3b82f6;
  font-weight: 800;
}

.ticker__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.5);
  flex-shrink: 0;
}

.showcase__bento {
  padding: 80px 0 96px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.bc {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(32px) scale(0.97);
}

.bc.sc--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bc:nth-child(1) {
  transition-delay: 0.05s;
}

.bc:nth-child(2) {
  transition-delay: 0.12s;
}

.bc:nth-child(3) {
  transition-delay: 0.19s;
}

.bc:nth-child(4) {
  transition-delay: 0.26s;
}

.bc:nth-child(5) {
  transition-delay: 0.33s;
}

.bc:nth-child(6) {
  transition-delay: 0.4s;
}

.bc:nth-child(7) {
  transition-delay: 0.47s;
}

.bc:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(0, 82, 255, 0.4);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 82, 255, 0.2),
    0 0 80px rgba(0, 82, 255, 0.08);
}

.bc.sc--visible:hover {
  transform: translateY(-8px) scale(1.01);
}

.bc__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0, 82, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 10;
}

.bc:hover .bc__glow {
  opacity: 1;
}

.bc--phone {
  grid-column: 1 / 5;
  grid-row: 1;
  min-height: 500px;
}

.bc--stats {
  grid-column: 5 / 9;
  grid-row: 1;
  min-height: 500px;
}

.bc--reels {
  grid-column: 9 / 13;
  grid-row: 1;
  min-height: 500px;
}

.bc--quote {
  grid-column: 1 / 7;
  grid-row: 2;
  min-height: 200px;
}

.bc--metric {
  grid-column: 7 / 10;
  grid-row: 2;
  min-height: 200px;
}

.bc--cta {
  grid-column: 10/ 13;
  grid-row: 2;
  min-height: 200px;
}

.bc--phone {
  background: linear-gradient(160deg, #0a0d1c 0%, #040610 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
}

.bc-phone__wrap {
  position: relative;
  width: 190px;
}

.bc-phone__wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0, 82, 255, 0.35) 0%, transparent 70%);
  filter: blur(14px);
  animation: phoneGlow 3s ease-in-out infinite;
}

.bc-phone__frame {
  background: #0c0e15;
  border-radius: 36px;
  padding: 10px 8px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 8px #111420,
    0 0 0 9.5px rgba(255, 255, 255, 0.05),
    0 24px 64px rgba(0, 0, 0, 0.6),
    0 4px 20px rgba(0, 82, 255, 0.15);
  position: relative;
  z-index: 1;
  animation: phoneFloat 5s ease-in-out infinite;
}

.bc-phone__notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 7px;
  background: #0c0e15;
  border-radius: 0 0 7px 7px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-phone__notch::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #1c1f2e;
  border-radius: 50%;
  border: 1px solid #2a2e42;
}

.bc-phone__screen {
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}

.ph-ig-top {
  background: #fff;
  padding: 28px 10px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
}

.ph-av-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  padding: 2px;
  flex-shrink: 0;
}

.ph-av-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #0052ff 0%, #00b4ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: white;
}

.ph-ig-name {
  font-size: 9.5px;
  font-weight: 800;
  color: #0a0a0a;
}

.ph-ig-handle {
  font-size: 8px;
  color: #8e8e8e;
}

.ph-ig-stats {
  display: flex;
  padding: 6px 10px 8px;
}

.ph-ig-st {
  flex: 1;
  text-align: center;
}

.ph-ig-st-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: #0a0a0a;
  display: block;
}

.ph-ig-st-lbl {
  font-size: 7.5px;
  color: #8e8e8e;
}

.ph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #dbdbdb;
}

.ph-cell {
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
  background: var(--c);
}

.ph-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  animation: cellShimmer 3s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.ph-cell:nth-child(1) {
  --c: linear-gradient(135deg, #0052ff, #003cb3);
  --d: 0s;
}

.ph-cell:nth-child(2) {
  --c: linear-gradient(135deg, #1a1d2e, #2d3561);
  --d: 0.3s;
}

.ph-cell:nth-child(3) {
  --c: linear-gradient(135deg, #00b4ff, #0052ff);
  --d: 0.6s;
}

.ph-cell:nth-child(4) {
  --c: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  --d: 0.2s;
}

.ph-cell:nth-child(5) {
  --c: linear-gradient(135deg, #0052ff, #6366f1);
  --d: 0.5s;
}

.ph-cell:nth-child(6) {
  --c: linear-gradient(135deg, #080a12, #1a1d2e);
  --d: 0.8s;
}

.ph-cell:nth-child(7) {
  --c: linear-gradient(135deg, #06b6d4, #0052ff);
  --d: 0.1s;
}

.ph-cell:nth-child(8) {
  --c: linear-gradient(135deg, #1a1d2e, #080a12);
  --d: 0.4s;
}

.ph-cell:nth-child(9) {
  --c: linear-gradient(135deg, #3b82f6, #06b6d4);
  --d: 0.7s;
}

.bc-phone__badge {
  position: absolute;
  top: 28%;
  right: -16px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 14px;
  white-space: nowrap;
  animation: floatRight 4s ease-in-out infinite;
}

.bc-phone__badge-val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #22d3ee;
  line-height: 1;
  margin-bottom: 2px;
}

.bc-phone__badge-lbl {
  font-size: 9.5px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
}

.bc-phone__label {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
}

.bc-phone__label span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 5px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.04em;
}

.bc-phone__label-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22d3ee;
  animation: breathe 2s ease-in-out infinite;
}

.bc--stats {
  background: linear-gradient(160deg, #0a0d1c 0%, #040610 100%);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bc-stats__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.bc-stats__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #e2e8f0;
  letter-spacing: -0.02em;
}

.bc-stats__live {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(22, 163, 74, 0.1);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: #22c55e;
}

.bc-stats__live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s ease infinite;
}

.bc-stats__kpi {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.bc-kpi {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 16px 14px;
  position: relative;
  overflow: hidden;
}

.bc-kpi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--kpi-accent);
  border-radius: 16px 16px 0 0;
}

.bc-kpi--blue {
  --kpi-accent: linear-gradient(90deg, #0052ff, #00cfff);
}

.bc-kpi--green {
  --kpi-accent: linear-gradient(90deg, #16a34a, #22d3ee);
}

.bc-kpi--indigo {
  --kpi-accent: linear-gradient(90deg, #6366f1, #a78bfa);
}

.bc-kpi--amber {
  --kpi-accent: linear-gradient(90deg, #f59e0b, #fb923c);
}

.bc-kpi__val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #f0f4ff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}

.bc-kpi__lbl {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bc-kpi__delta {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 800;
  color: #22c55e;
  margin-top: 5px;
}

.bc-stats__chart {
  flex: 1;
  position: relative;
}

.bc-stats__chart-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.bc-stats__svg {
  width: 100%;
  height: 70px;
}

.bc-stats__path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawPath 2s 0.8s ease forwards;
}

.bc-stats__area {
  opacity: 0;
  animation: areaFade 0.5s 2s ease forwards;
}

.bc-stats__row {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.bc-mini {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
}

.bc-mini__val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: #3b82f6;
  letter-spacing: -0.03em;
  line-height: 1;
}

.bc-mini__lbl {
  font-size: 8.5px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 2px;
  font-weight: 600;
}

.bc--reels {
  background: #06080f;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bc-reels__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.bc-reels__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #e2e8f0;
}

.bc-reels__count {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 3px 8px;
}

.bc-reels__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}

.sc-reel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/14;
  background: var(--rb);
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
    box-shadow 0.35s ease;
}

.sc-reel:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.5),
    0 0 0 1.5px rgba(0, 82, 255, 0.4);
  z-index: 5;
}

.sc-reel:nth-child(1) {
  --rb: linear-gradient(160deg, #0052ff 0%, #003cb3 50%, #080a12 100%);
}

.sc-reel:nth-child(2) {
  --rb: linear-gradient(160deg, #1a1d2e 0%, #2d3561 40%, #0052ff 100%);
}

.sc-reel:nth-child(3) {
  --rb: linear-gradient(160deg, #06b6d4 0%, #0052ff 50%, #6366f1 100%);
}

.sc-reel:nth-child(4) {
  --rb: linear-gradient(160deg, #080a12 0%, #1a1d2e 40%, #3b82f6 100%);
}

.sc-reel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 25%, rgba(0, 0, 0, 0.7) 100%);
}

.sc-reel__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition:
    opacity 0.25s,
    transform 0.25s;
}

.sc-reel:hover .sc-reel__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.12);
}

.sc-reel__play svg {
  color: white;
  width: 12px;
  height: 12px;
  margin-left: 2px;
}

.sc-reel__views {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 3px;
}

.sc-reel__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px 10px;
}

.sc-reel__tag {
  display: inline-block;
  background: rgba(0, 82, 255, 0.7);
  backdrop-filter: blur(6px);
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 7.5px;
  font-weight: 700;
  color: white;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.sc-reel__cap {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 10px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
}

.bc--quote {
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  border-color: rgba(0, 82, 255, 0.2);
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-quote__mark {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 80px;
  line-height: 0.6;
  color: rgba(0, 82, 255, 0.25);
  font-weight: 900;
  margin-bottom: 16px;
  display: block;
}

.bc-quote__text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #f0f4ff;
  margin-bottom: 16px;
}

.bc-quote__text em {
  font-style: normal;
  color: #60a5fa;
}

.bc-quote__author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bc-quote__av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0052ff, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: white;
  flex-shrink: 0;
}

.bc-quote__name {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.bc-quote__role {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.3);
}

.bc--metric {
  background: #0a0d1c;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bc-metric__ring {
  position: absolute;
  inset: -20%;
  border: 1px solid rgba(0, 82, 255, 0.08);
  border-radius: 50%;
  animation: ringExpand 4s ease-in-out infinite;
}

.bc-metric__ring:nth-child(2) {
  animation-delay: 1.3s;
  inset: -35%;
}

.bc-metric__ring:nth-child(3) {
  animation-delay: 2.6s;
  inset: -50%;
}

.bc-metric__num {
  position: relative;
  z-index: 1;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  background: linear-gradient(135deg, #0052ff 0%, #00cfff 50%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 30px rgba(0, 82, 255, 0.6));
  animation: numPulse 3s ease-in-out infinite;
}

.bc-metric__label {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.bc-metric__sub {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

.bc--cta {
  background: linear-gradient(135deg, #0052ff 0%, #003cb3 60%, #001e6e 100%);
  border-color: rgba(0, 82, 255, 0.4);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.bc--cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 65%);
  animation: ctaGlow 5s ease-in-out infinite;
}

.bc-cta__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.bc-cta__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 6px;
}

.bc-cta__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.bc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: #0052ff;
  border: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 800;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.bc-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.bc-cta__btn svg {
  transition: transform 0.2s ease;
}

.bc-cta__btn:hover svg {
  transform: translateX(3px);
}

.bc-cta__guarantee {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 500;
  margin-top: 10px;
}

.bc-cta__guarantee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

@keyframes meshDrift {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 5% 8%;
  }
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes ghostPulse {
  0%,
  100% {
    opacity: 1;
    transform: translate(-50%, -46%) scale(1);
  }

  50% {
    opacity: 0.7;
    transform: translate(-50%, -46%) scale(1.03);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes slamIn {
  0% {
    opacity: 0;
    transform: translateY(48px) skewY(-3deg);
  }

  60% {
    transform: translateY(-6px) skewY(0.5deg);
    opacity: 1;
  }

  80% {
    transform: translateY(3px) skewY(-0.2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

@keyframes gradientFlow {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 300% center;
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-10px) rotate(-1deg);
  }
}

@keyframes phoneGlow {
  0%,
  100% {
    opacity: 0.6;
    transform: scaleX(1);
  }

  50% {
    opacity: 1;
    transform: scaleX(1.2);
  }
}

@keyframes floatRight {
  0%,
  100% {
    transform: translateY(0) rotate(1.5deg);
  }

  50% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@keyframes cellShimmer {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.85;
  }
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes areaFade {
  to {
    opacity: 1;
  }
}

@keyframes ringExpand {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.2;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

@keyframes numPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 30px rgba(0, 82, 255, 0.6));
  }

  50% {
    filter: drop-shadow(0 0 50px rgba(0, 82, 255, 0.9));
  }
}

@keyframes ctaGlow {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }

  50% {
    transform: translate(-10px, 10px) scale(1.1);
    opacity: 0.7;
  }
}

@media (max-width: 1100px) {
  .showcase__bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .bc--phone {
    grid-column: 1 / 2;
    grid-row: 1;
  }

  .bc--stats {
    grid-column: 2 / 3;
    grid-row: 1;
  }

  .bc--reels {
    grid-column: 1 / 3;
    grid-row: 2;
    min-height: 360px;
  }

  .bc--quote {
    grid-column: 1 / 2;
    grid-row: 3;
  }

  .bc--metric {
    grid-column: 2 / 3;
    grid-row: 3;
  }

  .bc--cta {
    grid-column: 1 / 3;
    grid-row: 4;
    min-height: 160px;
  }

  .bc-reels__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 720px) {
  .showcase__bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bc--phone {
    grid-column: 1;
    grid-row: 1;
  }

  .bc--stats {
    grid-column: 1;
    grid-row: 2;
  }

  .bc--reels {
    grid-column: 1;
    grid-row: 3;
  }

  .bc--quote {
    grid-column: 1;
    grid-row: 4;
  }

  .bc--metric {
    grid-column: 1;
    grid-row: 5;
  }

  .bc--cta {
    grid-column: 1;
    grid-row: 6;
  }

  .showcase__inner {
    padding: 0 20px;
  }

  .showcase__hero-head {
    padding: 80px 0 48px;
  }

  .bc-reels__grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* FOMO banner */
.fomo-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.07), rgba(245, 158, 11, 0.05));
  border: 1.5px solid rgba(239, 68, 68, 0.18);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  animation: pulseBorder 2.5s ease-in-out infinite;
}
@keyframes pulseBorder {
  0%,
  100% {
    border-color: rgba(239, 68, 68, 0.18);
  }
  50% {
    border-color: rgba(239, 68, 68, 0.42);
  }
}
.fomo-dot {
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  animation: blink-red 1.4s ease-in-out infinite;
}
@keyframes blink-red {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.fomo-text {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
  white-space:normal;
}
.fomo-text em {
  color: var(--red);
  font-style: normal;
  font-weight: 800;
}