/* ═══════════════════════════════════════════════
   o2m8 — Hatif-Style Light Theme Stylesheet
   ═══════════════════════════════════════════════ */

:root {
  --bg-base: #060B24;      /* Dark navy/blue base background */
  --bg-surface: #0B1130;   /* Slightly lighter navy surface for nav, cards */
  --bg-card: rgba(11, 17, 48, 0.6);
  --bg-card-hover: rgba(15, 23, 64, 0.85);

  --brand-teal: #00D2FF;        /* Electric Cyan */
  --brand-teal-light: rgba(0, 210, 255, 0.1);
  --brand-teal-text: #00D2FF;
  --brand-teal-dark: #0077B6;   /* Deeper ocean blue */
  --brand-teal-glow: rgba(0, 210, 255, 0.15);
  --cyan: #00D2FF;

  --text-primary: #F8FAFC;      /* Crisp off-white */
  --text-secondary: #94A3B8;    /* Cool slate gray */
  --text-muted: #64748B;        /* Muted gray */

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);

  --gradient-brand: linear-gradient(135deg, #00D2FF, #0077B6);
  --gradient-brand-text: linear-gradient(135deg, #00D2FF, #3B82F6);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --shadow-button: 0 6px 20px rgba(0, 210, 255, 0.3);
  --shadow-nav: 0 8px 32px rgba(0, 0, 0, 0.3);

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Plus Jakarta Sans', 'Inter', 'Cairo', -apple-system, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.62;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, 0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-teal); }

/* ─── CURSOR GLOW ─── */
.cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--brand-teal-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
}

/* ─── PARTICLES CANVAS ─── */
.particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
}

/* ─── CONTAINER ─── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ─── GLASS EFFECTS ─── */
.glass {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.glass:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
}

/* ─── GRADIENT TEXT ─── */
.gradient-text {
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--gradient-brand);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 99px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-button);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(63, 186, 165, 0.35); }
.btn-primary svg { width: 18px; height: 18px; transition: var(--transition); }
[dir="rtl"] .btn-primary svg { transform: scaleX(-1); }
.btn-primary:hover svg { transform: translateX(4px); }
[dir="rtl"] .btn-primary:hover svg { transform: scaleX(-1) translateX(4px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 99px;
  transition: var(--transition);
  background: var(--bg-surface);
}
.btn-outline:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal-text);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 18px;
  transition: var(--transition);
  border-radius: 99px;
}
.btn-ghost:hover { color: var(--text-primary); background: rgba(0,0,0,0.03); }

.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  padding: 12px 0;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 32px;
  background: rgba(6, 11, 36, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 99px;
  box-shadow: var(--shadow-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
.nav.scrolled .nav-inner {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  background: rgba(11, 17, 48, 0.9);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text-primary);
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  width: 1.25em;
  height: 1.25em;
}
.o2m8-logo {
  width: 100%;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.btn-lang {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 99px;
  transition: var(--transition);
  background: var(--bg-surface);
}
.btn-lang:hover {
  border-color: var(--brand-teal);
  color: var(--brand-teal-text);
  background: var(--brand-teal-light);
}


/* ─── SECTIONS ─── */
.section {
  padding: 160px 0;
  position: relative;
  z-index: 1;
}
.section-dark {
  background: rgba(0, 0, 0, 0.2);
}
.text-center { text-align: center; }

/* ─── HERO ─── */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
}
.hero-bg-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 15%, rgba(63, 186, 165, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(44, 150, 131, 0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', 'Cairo', sans-serif;
  font-size: clamp(3.8rem, 9vw, 6.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
}
[lang="ar"] .hero-title {
  letter-spacing: 0;
}
.hero-subtitle {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.4;
}
.hero-description {
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.65;
  font-weight: 400;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ─── SUB VALUE ─── */
.sub-value {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.sub-val-title {
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.sub-val-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ─── ONE SENTENCE SECTIONS ─── */
.large-phrase-section {
  padding: 180px 0;
}
.large-phrase {
  font-size: clamp(1.6rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.4;
  max-width: 850px;
  margin: 0 auto;
  letter-spacing: -0.02em;
}
[lang="ar"] .large-phrase {
  letter-spacing: 0;
}
.large-phrase.muted {
  color: var(--text-secondary);
}

/* ─── SOLUTIONS & FEATURES ─── */
.features-container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 650px;
  margin: 0 auto;
}
.feature-minimal-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  border-radius: var(--radius-md);
  text-align: right; /* Default RTL */
}
[dir="ltr"] .feature-minimal-item {
  text-align: left;
}
.feature-min-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gradient-brand);
  flex-shrink: 0;
}
.feature-min-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--text-primary);
}

/* ─── HOW IT FEELS ─── */
.feels-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 500px;
  margin: 0 auto;
  align-items: center;
}
.feels-row {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  opacity: 0.9;
  transition: var(--transition);
}
.feels-row:nth-child(1) { color: var(--text-primary); }
.feels-row:nth-child(2) { color: var(--brand-teal-dark); }
.feels-row:nth-child(3) { color: var(--brand-teal); }
[lang="ar"] .feels-row {
  letter-spacing: 0;
}

/* ─── USE CASES ─── */
.use-cases-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px 24px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}
.use-case-tag {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--text-secondary);
}
.use-case-sep {
  color: var(--text-muted);
  font-size: 1.2rem;
}

/* ─── CONTACT FORM ─── */
.form-section {
  padding: 160px 0;
}
.form-card {
  max-width: 500px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.form-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.form-group {
  margin-bottom: 24px;
  position: relative;
  text-align: right;
}
[dir="ltr"] .form-group {
  text-align: left;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}
.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}
.form-input:focus {
  outline: none;
  border-color: var(--brand-teal);
  background: var(--bg-surface);
  box-shadow: 0 0 16px var(--brand-teal-glow);
}
.form-textarea {
  min-height: 100px;
  resize: vertical;
}
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  border-radius: 99px;
}

/* ─── TOAST NOTIFICATIONS ─── */
.toast-container {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toast {
  background: var(--bg-surface);
  border: 1px solid var(--brand-teal);
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(26,29,37,0.08);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.toast.info {
  border-color: var(--brand-teal-dark);
}
.toast.fade-out {
  animation: toastOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toastOut {
  from { opacity: 1; transform: translateY(0); }
  to { opacity: 0; transform: translateY(20px); }
}

/* ─── HIGHLIGHT BADGES ─── */
.badge-highlight {
  display: inline-block;
  background: var(--brand-teal-light);
  color: var(--brand-teal-text);
  padding: 2px 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.82em;
  margin: 0 4px;
  vertical-align: middle;
}

/* ─── TRUST BADGES / COMPLIANCE ─── */
.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-badge-img {
  height: 28px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.7);
  transition: var(--transition);
}
.trust-badge-item:hover .trust-badge-img {
  filter: none;
  opacity: 1;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FOOTER ─── */
.footer {
  padding: 64px 0 48px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-link:hover {
  color: var(--text-primary);
}

/* ─── RESPONSIVENESS ─── */
@media (max-width: 768px) {
  .section { padding: 100px 0; }
  .large-phrase-section { padding: 120px 0; }
  .form-card { padding: 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

/* ─── LEGAL / DOCUMENT PAGES ─── */
.legal-wrapper {
  padding: 160px 0 100px;
  min-height: 80vh;
}
.legal-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.legal-header {
  margin-bottom: 40px;
  text-align: center;
}
.legal-meta {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-top: 12px;
}
.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}
.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.legal-content p {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}
.legal-content ul, .legal-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
[dir="rtl"] .legal-content ul, [dir="rtl"] .legal-content ol {
  padding-left: 0;
  padding-right: 24px;
}
.legal-content li {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 10px;
}
.legal-content strong {
  color: var(--text-primary);
}
.legal-definition-list {
  margin-bottom: 24px;
  border-left: 2px solid var(--border);
  padding-left: 16px;
}
[dir="rtl"] .legal-definition-list {
  border-left: none;
  border-right: 2px solid var(--border);
  padding-left: 0;
  padding-right: 16px;
}
.legal-definition-item {
  margin-bottom: 16px;
}
.legal-definition-term {
  font-weight: 700;
  color: var(--text-primary);
}
.legal-definition-desc {
  color: var(--text-secondary);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 24px;
  }
}

/* ─── ABOUT / MISSION SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  text-align: right; /* Default RTL */
}
[dir="ltr"] .about-grid {
  text-align: left;
}
.about-header-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: -8px; /* Offset the flex gap slightly */
}
[dir="rtl"] .about-tag {
  letter-spacing: 0;
}
.about-tagline {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
[dir="rtl"] .about-tagline {
  letter-spacing: 0;
}
.about-intro {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 500;
}
.about-body-col {
  padding: 48px;
  border-radius: var(--radius-lg);
}
.about-card-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.about-goal {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--cyan);
  font-weight: 600;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-body-col {
    padding: 32px;
  }
}

/* ─── HERO ABOUT SECTION ─── */
.hero-about {
  min-height: calc(100vh - 80px);
  padding-top: 220px;
  padding-bottom: 120px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-header-col .hero-ctas {
  justify-content: flex-start;
  margin-top: 32px;
}

.about-header-col .trust-badges {
  justify-content: flex-start;
  margin-top: 36px;
  gap: 24px;
}

@media (max-width: 992px) {
  .hero-about {
    padding-top: 180px;
    padding-bottom: 80px;
    min-height: auto;
  }
  .about-header-col .hero-ctas,
  .about-header-col .trust-badges {
    justify-content: center;
  }
  .about-header-col {
    text-align: center;
  }
}

/* ─── NAVIGATION LINKS ─── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link-item {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}
.nav-link-item:hover,
.nav-link-item.active {
  color: var(--brand-teal-text);
}
.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-teal);
  transition: var(--transition);
}
.nav-link-item:hover::after,
.nav-link-item.active::after {
  width: 100%;
}
[dir="rtl"] .nav-link-item::after {
  left: auto;
  right: 0;
}

@media (max-width: 768px) {
  .nav-links {
    gap: 16px;
  }
  .nav-link-item {
    font-size: 0.82rem;
  }
}

/* ─── SERVICES PAGE STYLES ─── */
.services-hero {
  padding-top: 220px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.services-hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.services-hero-desc {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  margin-bottom: 120px;
}
.service-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
[dir="rtl"] .service-card {
  align-items: flex-start;
  text-align: right;
}
.service-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--brand-teal-light);
  color: var(--brand-teal-text);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-icon-wrapper svg {
  width: 32px;
  height: 32px;
}
.service-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.service-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-card {
    padding: 32px;
  }
}

/* ─── ANIMATED BACKGROUND BLOBS ─── */
.blob-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: var(--bg-base);
}

.blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
  mix-blend-mode: screen;
  pointer-events: none;
}

.blob-1 {
  background: radial-gradient(circle, var(--brand-teal) 0%, transparent 80%);
  top: -10%;
  left: 10%;
  animation: float-blob-1 25s infinite ease-in-out alternate;
}

.blob-2 {
  background: radial-gradient(circle, var(--brand-teal-dark) 0%, transparent 80%);
  bottom: -10%;
  right: 10%;
  animation: float-blob-2 20s infinite ease-in-out alternate;
}

.blob-3 {
  background: radial-gradient(circle, #3B82F6 0%, transparent 80%);
  top: 40%;
  left: 50%;
  animation: float-blob-3 30s infinite ease-in-out alternate;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(100px, 80px) scale(1.1); }
  100% { transform: translate(-50px, 150px) scale(0.95); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1.05); }
  50% { transform: translate(-120px, -60px) scale(0.9); }
  100% { transform: translate(80px, -120px) scale(1.1); }
}

@keyframes float-blob-3 {
  0% { transform: translate(0, 0) scale(0.95); }
  50% { transform: translate(-80px, 100px) scale(1.15); }
  100% { transform: translate(120px, -50px) scale(0.9); }
}



