/* ==========================================================================
   MyRad Technology - styles.css (Polished)
   - Animated blobs + grid background
   - Marquee notice bar animation
   - Reveal animations
   - Hover polish (cards)
   - Parallax helper (JS-driven transform)
   ========================================================================== */

:root {
  --brand-600: #2563eb;
  --brand-700: #1d4ed8;
  --brand-100: #dbeafe;
  --ink: #0f172a;
}

html {
  scroll-behavior: smooth;
}

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */
.marquee {
  animation: marquee 22s linear infinite;
  will-change: transform;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee:hover { animation-play-state: paused; }

/* --------------------------------------------------------------------------
   Hero background grid
   -------------------------------------------------------------------------- */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(to right, rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 30% 15%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0) 60%);
}

/* --------------------------------------------------------------------------
   Animated blobs
   -------------------------------------------------------------------------- */
.blob {
  position: absolute;
  border-radius: 9999px;
  filter: blur(40px);
  opacity: 0.55;
  transform: translateZ(0);
  will-change: transform;
}

.blob-blue-1 {
  width: 520px;
  height: 520px;
  left: -220px;
  top: -220px;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.55), rgba(59, 130, 246, 0) 60%);
  animation: floaty1 10s ease-in-out infinite;
}

.blob-blue-2 {
  width: 560px;
  height: 560px;
  right: -240px;
  bottom: -260px;
  background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.55), rgba(37, 99, 235, 0) 60%);
  animation: floaty2 12s ease-in-out infinite;
}

@keyframes floaty1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(26px, 18px) scale(1.05); }
}

@keyframes floaty2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-22px, -14px) scale(1.06); }
}

/* --------------------------------------------------------------------------
   Reveal animations (safe default if JS fails)
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}
html.js .reveal {
  opacity: 0;
  transform: translateY(14px);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 220ms; }
.reveal-delay-3 { transition-delay: 320ms; }

button, a { -webkit-tap-highlight-color: transparent; }



/* --------------------------------------------------------------------------
   Parallax helper
   JS will set CSS variables: --px, --py, --pr (rotate)
   -------------------------------------------------------------------------- */
[data-parallax] {
  transform: translate3d(var(--px, 0px), var(--py, 0px), 0) rotate(var(--pr, 0deg));
  will-change: transform;
}

/* =========================
   HERO ADDITIONS (Polished)
   ========================= */
.hero-ring {
  position: absolute;
  width: 820px;
  height: 820px;
  border-radius: 9999px;
  border: 2px solid rgba(37, 99, 235, 0.14);
  background: radial-gradient(circle at 35% 35%, rgba(37, 99, 235, 0.10), rgba(37, 99, 235, 0) 58%);
  opacity: 0.9;
}
.hero-ring--tl { top: -520px; left: -520px; }

.hero-arrow {
  position: absolute;
  width: min(520px, 92vw);
  height: auto;
  left: 10%;
  top: 96px;
  opacity: 0.9;
  animation: heroArrowFloat 5.2s ease-in-out infinite;
  filter: drop-shadow(0 12px 18px rgba(2,6,23,0.08));
}

@media (max-width: 1024px) {
  .hero-arrow { left: 2%; top: 70px; opacity: 0.75; }
}
@media (max-width: 640px) {
  .hero-arrow { top: 56px; opacity: 0.6; }
}

@keyframes heroArrowFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Backdrop behind 3 cards */
.card-backdrop {
  position: absolute;
  inset: -18px -10px auto -10px;
  height: 130px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(219, 234, 254, 0.85), rgba(255, 255, 255, 0.75));
  border: 1px solid rgba(37, 99, 235, 0.14);
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.07);
}

/* CTA sheen */
.hero-cta { position: relative; overflow: hidden; }
.hero-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transition: transform 650ms ease;
}
.hero-cta:hover::after { transform: translateX(120%); }

/* Critical: reserve space so floating card never overlaps content */
.hero-media { padding-bottom: 72px; }
@media (max-width: 640px) {
  .hero-media { padding-bottom: 96px; }
}

/* Slightly nicer floating support card */
.hero-support-card {
  backdrop-filter: blur(8px);
}

/* =========================
   SOLUTIONS (Polished)
   ========================= */
.solutions-circle {
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 60%);
  top: -300px;
  right: -400px;
}

.solutions-stack-back {
  position: absolute;
  inset: -30px -30px auto auto;
  width: 90%;
  height: 100%;
  background: linear-gradient(135deg, rgba(219,234,254,0.9), rgba(255,255,255,0.85));
  border-radius: 40px;
  border: 1px solid rgba(37,99,235,0.18);
  transform: rotate(-2deg);
  z-index: 0;
}
.solutions-stack-back.alt { transform: rotate(2deg); }

.solution-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 28px;
  padding: 32px;
  border: 1px solid rgba(37,99,235,0.18);
  box-shadow: 0 20px 40px rgba(2,6,23,0.12);
  overflow: hidden;
}

/* subtle gradient accent band */
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, rgba(37,99,235,0.10), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.solution-card:hover::before {
  opacity: 1;
}

.solution-card h3 {
  margin-top: 18px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}
.solution-card p {
  margin-top: 10px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #475569;
}
.solution-card span {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #2563eb;
}

/* Icons */
.solution-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(37,99,235,0.4);
}
.solution-card-icon i { font-size: 20px; }

/* =========================
   MOBILE SOLUTION (Polished)
   ========================= */
.mobile-wave {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(37,99,235,0.18), transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(59,130,246,0.16), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(253,230,138,0.22), transparent 55%);
  opacity: 0.95;
}

.mobile-ring {
  position: absolute;
  width: 780px;
  height: 780px;
  border-radius: 9999px;
  border: 2px solid rgba(37,99,235,0.14);
  top: -320px;
  right: -320px;
}

.mobile-dots {
  position: absolute;
  width: 520px;
  height: 520px;
  left: -220px;
  bottom: -220px;
  background-image: radial-gradient(rgba(37,99,235,0.18) 1.2px, transparent 1.2px);
  background-size: 18px 18px;
  opacity: 0.7;
  border-radius: 9999px;
}

.mobile-feature-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(37,99,235,0.14);
  box-shadow: 0 14px 30px rgba(2,6,23,0.08);
  backdrop-filter: blur(6px);
}

.mobile-feature-card i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,0.12);
  color: rgba(29,78,216,1);
  font-size: 16px;
}

.phone-backplate {
  position: absolute;
  inset: 18px 10px 18px 10px;
  border-radius: 48px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(219,234,254,0.85));
  border: 1px solid rgba(37,99,235,0.16);
  transform: rotate(-2deg);
  z-index: 0;
}

.phone-backplate.two {
  inset: 32px 22px 8px 22px;
  transform: rotate(2deg);
  opacity: 0.85;
}

.phone-mock {
  position: relative;
  z-index: 1;
  width: min(360px, 92%);
  margin: 0 auto;
  border-radius: 46px;
  background: #0b1220;
  padding: 16px;
  box-shadow: 0 28px 60px rgba(2,6,23,0.25);
  border: 1px solid rgba(255,255,255,0.10);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}

.phone-screen {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 36px;
  display: block;
  opacity: 0.98;
}

.mobile-float-badge,
.mobile-mini-card {
  position: absolute;
  z-index: 2;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(37,99,235,0.14);
  border-radius: 20px;
  padding: 12px 14px;
  box-shadow: 0 14px 30px rgba(2,6,23,0.12);
}

.mobile-float-badge { top: 24px; left: 10px; }
.mobile-mini-card { bottom: 24px; right: 10px; }

@media (max-width: 640px) {
  .phone-screen { height: 520px; }
  .mobile-float-badge { left: 0; }
  .mobile-mini-card { right: 0; }
}

/* =========================
   STATS (Polished)
   ========================= */
.stats-circle {
  position: absolute;
  width: 820px;
  height: 820px;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(37,99,235,0.12), transparent 60%);
  bottom: -360px;
  left: -360px;
}

.stat-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(37,99,235,0.16);
  box-shadow: 0 22px 44px rgba(2,6,23,0.12);
  overflow: hidden;
  position: relative;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(37,99,235,0.10), transparent 55%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}
.stat-card:hover::before { opacity: 1; }

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 14px 28px rgba(37,99,235,0.45);
}

.stat-icon i { font-size: 22px; }

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.stat-number span:last-child {
  font-size: 1.4rem;
  margin-left: 4px;
  color: #2563eb;
}

.stat-label {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================
   ABOUT
   ========================= */
.about-soft-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(219,234,254,0.6), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(253,230,138,0.35), transparent 50%);
  opacity: 0.9;
}

.about-card {
  background: rgba(255,255,255,0.9);
  border-radius: 36px;
  padding: 36px;
  border: 1px solid rgba(37,99,235,0.16);
  box-shadow: 0 24px 48px rgba(2,6,23,0.12);
}

.about-bullet {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(37,99,235,0.14);
  box-shadow: 0 12px 24px rgba(2,6,23,0.08);
}

.about-bullet i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(37,99,235,0.12);
  color: rgba(29,78,216,1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

#testQuote, #testName, #testRole {
  transition: opacity 0.2s ease;
}

/* Page Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* Loader content */
.loader-inner {
  text-align: center;
  color: #1e40af;
  font-family: Manrope, system-ui, sans-serif;
}

.loader-inner p {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
}

/* Medical spinner */
.medical-spinner {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid rgba(37, 99, 235, 0.15);
  border-top-color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 1s linear infinite;
}

.medical-spinner i {
  font-size: 22px;
  color: #2563eb;
  animation: pulse 1.2s ease-in-out infinite;
}

.fade-out { opacity: 0; }

/* Animations */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}


#talkBtn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
}

/* ==========================================================================
   MyRad Premium Motion Pack v2 (medical-clean)
   - No conflict version: unified hover + glow + reveal + scroll effects
   ========================================================================== */

:root{
  --ease-out-soft: cubic-bezier(.16, 1, .3, 1);
  --ease-out-snap: cubic-bezier(.2, .9, .2, 1);

  --ring: rgba(37, 99, 235, 0.30);
  --ring-strong: rgba(37, 99, 235, 0.45);
}

/* Global: smooth consistent motion for interactive UI */
a, button, .btn, .card, .badge,
.solution-card, .mobile-feature-card, .stat-card, .about-bullet, .about-card {
  transition-timing-function: var(--ease-out-soft) !important;
}

/* --------------------------------------------------------------------------
   Reveal (scroll-in)
   - smoother + premium depth with blur
   -------------------------------------------------------------------------- */
.reveal{
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 900ms var(--ease-out-soft),
              transform 900ms var(--ease-out-soft),
              filter 900ms var(--ease-out-soft);
}

html.js .reveal{
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
}

html.js .reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Keep your helper delay classes */
.reveal-delay   { transition-delay: 120ms; }
.reveal-delay-2 { transition-delay: 220ms; }
.reveal-delay-3 { transition-delay: 320ms; }

/* --------------------------------------------------------------------------
   Hover Lift (single source of truth)
   -------------------------------------------------------------------------- */
.hover-lift{
  transform: translateZ(0);
  transition:
    transform 420ms var(--ease-out-soft),
    box-shadow 420ms var(--ease-out-soft),
    border-color 420ms var(--ease-out-soft),
    filter 420ms var(--ease-out-soft);
  will-change: transform;
}

.hover-lift:hover{
  transform: translateY(-8px);
  box-shadow:
    0 30px 70px rgba(2, 6, 23, 0.14),
    0 10px 22px rgba(2, 6, 23, 0.06);
  border-color: rgba(37, 99, 235, 0.32) !important;
}

.hover-lift:active{
  transform: translateY(-3px) scale(0.99);
}

/* --------------------------------------------------------------------------
   Cursor Spotlight Glow (upgrades hover-glow)
   - feels premium and "alive" because glow follows mouse
   -------------------------------------------------------------------------- */
.hover-glow{
  position: relative;
  overflow: hidden; /* important for spotlight */
}

.hover-glow::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius: inherit;
  pointer-events:none;

  /* fallback center if JS not running */
  --mx: 50%;
  --my: 30%;

  background:
    radial-gradient(circle at var(--mx) var(--my),
      rgba(37,99,235,0.25),
      transparent 55%),
    radial-gradient(circle at 80% 80%,
      rgba(59,130,246,0.14),
      transparent 60%);

  opacity: 0;
  transform: scale(1.02);
  transition: opacity 420ms var(--ease-out-soft);
}

.hover-glow:hover::after{
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Buttons: subtle sheen + micro-lift (works with DaisyUI .btn)
   -------------------------------------------------------------------------- */
.btn{
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 360ms var(--ease-out-soft),
    filter 360ms var(--ease-out-soft),
    box-shadow 360ms var(--ease-out-soft);
}

.btn::before{
  content:"";
  position:absolute;
  inset:-2px;
  transform: translateX(-140%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  opacity: 0;
  transition: transform 760ms var(--ease-out-soft), opacity 240ms var(--ease-out-soft);
  pointer-events:none;
}

.btn:hover{
  transform: translateY(-2px);
  filter: saturate(1.02);
}

.btn:hover::before{
  opacity: 1;
  transform: translateX(140%) skewX(-18deg);
}

/* Primary button hover depth */
.btn.btn-primary:hover{
  box-shadow: 0 22px 50px rgba(37,99,235,0.28);
}

/* --------------------------------------------------------------------------
   Images: premium soft zoom (hero image, cards, phone)
   -------------------------------------------------------------------------- */
.card figure img,
.phone-screen{
  transition: transform 900ms var(--ease-out-soft), filter 900ms var(--ease-out-soft);
  transform: scale(1.001);
}

.card:hover figure img,
.phone-mock:hover .phone-screen{
  transform: scale(1.04);
  filter: contrast(1.02);
}

/* --------------------------------------------------------------------------
   Navigation underline motion (clean)
   -------------------------------------------------------------------------- */
nav a.btn-ghost{
  position: relative;
}

nav a.btn-ghost::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: rgba(37,99,235,0);
  transform: scaleX(0.4);
  opacity: 0;
  transition: 320ms var(--ease-out-soft);
}

nav a.btn-ghost:hover::after{
  background: rgba(37,99,235,0.55);
  transform: scaleX(1);
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Better focus (keyboard accessibility)
   -------------------------------------------------------------------------- */
:where(a, button, .btn, input, textarea, select):focus-visible{
  outline: 2px solid var(--ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(37,99,235,0.12);
  border-radius: 14px;
}

/* --------------------------------------------------------------------------
   Page fade (your code uses this)
   -------------------------------------------------------------------------- */
.page-fade{
  opacity: 0;
  transition: opacity 420ms var(--ease-out-soft);
}

.page-fade.page-ready{
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Scroll progress bar (JS creates #scrollProgress)
   -------------------------------------------------------------------------- */
#scrollProgress{
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 99999;
  background: linear-gradient(90deg, rgba(37,99,235,0.9), rgba(59,130,246,0.7));
  box-shadow: 0 6px 20px rgba(37,99,235,0.22);
}

/* --------------------------------------------------------------------------
   Header scroll polish (JS toggles .header-scrolled)
   -------------------------------------------------------------------------- */
.header-scrolled{
  box-shadow: 0 18px 40px rgba(2,6,23,0.08);
  border-bottom-color: rgba(37,99,235,0.16) !important;
}

/* --------------------------------------------------------------------------
   Talk button safety (sticky always)
   -------------------------------------------------------------------------- */
#talkBtn{
  position: fixed !important;
  right: 1.25rem !important;
  bottom: 1.25rem !important;
  z-index: 9999 !important;
  left: auto !important;
  top: auto !important;
  margin: 0 !important;
}

#talkBtn:disabled{
  opacity: 0.75;
  cursor: not-allowed;
  transform: none !important;
}

/* Reduced motion safe */
@media (prefers-reduced-motion: reduce){
  *{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}



/* ==========================================================================
   About page unique shapes + unique cards (match index system)
   - Wave dividers (like screenshot)
   - Premium stacked cards
   - Accent band cards
   ========================================================================== */

/* Wave divider wrapper */
.section-wave {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  background: transparent;
}



.section-wave svg {
  display: block;
  width: calc(140% + 1px);
  height: 86px;
  margin-left: -20%;
}

/*Will use this .section-wave svg if any issue in mobile responsiveness like sideways scrolling.*/

/* .section-wave svg {
  display: block;
  width: 100%;
  height: 86px;
  margin-left: 0;
} */




/* Soft blue fill (theme-safe) */
.section-wave .wave-fill {
  fill: rgba(239, 246, 255, 1); /* brand-50 */
}

/* Optional: a second layer for depth */
.section-wave .wave-fill-2 {
  fill: rgba(219, 234, 254, 0.75); /* brand-100 */
}

/* Stacked “premium” card backplate */
.stack-wrap {
  position: relative;
}

.stack-back {
  position: absolute;
  inset: 10px 10px auto 10px;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(219,234,254,0.9), rgba(255,255,255,0.85));
  border: 1px solid rgba(37,99,235,0.16);
  transform: rotate(-1.8deg);
  z-index: 0;
}

.stack-back.two {
  inset: 22px 22px auto 22px;
  transform: rotate(1.8deg);
  opacity: 0.85;
}

.stack-card {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  border: 1px solid rgba(37,99,235,0.16);
  background: rgba(255,255,255,0.92);
  box-shadow: 0 22px 44px rgba(2,6,23,0.12);
  overflow: hidden;
}

/* Accent band card (unique look) */
.accent-card {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(37,99,235,0.16);
  background: #fff;
  box-shadow: 0 18px 40px rgba(2,6,23,0.10);
  overflow: hidden;
}

.accent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 12%, rgba(37,99,235,0.10), transparent 55%);
  opacity: 0.0;
  transition: opacity 260ms var(--ease-out-soft);
  pointer-events: none;
}

.accent-card:hover::before {
  opacity: 1;
}

.accent-strip {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, rgba(37,99,235,0.95), rgba(59,130,246,0.65));
}

/* Small icon bubble */
.icon-bubble {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,99,235,0.12);
  color: rgba(29,78,216,1);
  border: 1px solid rgba(37,99,235,0.14);
}

