:root {
  --bg: #fdfbf7;
  --surface: rgba(255, 255, 255, 0.62);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --surface-muted: rgba(248, 250, 252, 0.82);
  --border: rgba(214, 211, 209, 0.48);
  --border-strong: rgba(14, 165, 233, 0.24);
  --text: #1c1917;
  --text-soft: #57534e;
  --text-muted: #78716c;
  --sky: #0ea5e9;
  --teal: #14b8a6;
  --violet: #8b5cf6;
  --pink: #ec4899;
  --paper: rgba(255, 255, 255, 0.38);
  --shadow-soft: 0 30px 80px -30px rgba(14, 165, 233, 0.18);
  --shadow-card: 0 24px 60px -30px rgba(15, 23, 42, 0.18);
  --shadow-strong: 0 40px 120px -40px rgba(14, 165, 233, 0.28);
  --radius-sm: 1rem;
  --radius-md: 1.5rem;
  --radius-lg: 2.25rem;
  --header-height: 5rem;
  --container: min(1200px,  92%);
  --copy: min(740px, 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  cursor: none;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: rgba(14, 165, 233, 0.25);
  color: #082f49;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  background: none;
  padding: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.serif {
  font-family: "Playfair Display", serif;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.liquid-stage {
  position: fixed;
  inset: 0;
  z-index: -20;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(186, 230, 253, 0.55), transparent 38%),
    radial-gradient(circle at bottom right, rgba(221, 214, 254, 0.55), transparent 34%),
    radial-gradient(circle at 70% 25%, rgba(251, 207, 232, 0.4), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 251, 247, 0.98));
}

.liquid-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.3;
}

.liquid-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(78px);
  opacity: 0.35;
}

.liquid-blob {
  position: absolute;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 50%;
  filter: blur(100px);
  mix-blend-mode: multiply;
  opacity: 0.34;
}

.liquid-blob.one {
  top: -16%;
  left: -12%;
  background: #bae6fd;
  animation: global-fluid-blob 25s infinite alternate ease-in-out;
}

.liquid-blob.two {
  right: -12%;
  bottom: -18%;
  background: #ddd6fe;
  animation: global-fluid-blob 30s infinite alternate-reverse ease-in-out;
}

.liquid-blob.three {
  top: 28%;
  right: 12%;
  background: #fbcfe8;
  animation: global-fluid-blob 21s infinite alternate ease-in-out;
}

@keyframes global-fluid-blob {
  0% {
    transform: translate(0%, 0%) scale(1);
  }
  50% {
    transform: translate(8%, 8%) scale(1.1);
  }
  100% {
    transform: translate(0%, 0%) scale(1);
  }
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 15px 2px rgba(14, 165, 233, 0.5);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}

#custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1), height 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s ease;
}

.cursor-ring-outer,
.cursor-ring-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-origin: center center;
  will-change: transform;
}

.cursor-ring-outer {
  border: 1px solid rgba(14, 165, 233, 0.2);
  animation: rotate-clockwise 10s linear infinite;
}

.cursor-ring-inner {
  inset: 15%;
  border: 1px dashed rgba(14, 165, 233, 0.3);
  animation: rotate-counter-clockwise 6s linear infinite;
}

.cursor-bracket {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--sky);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.bracket-tl {
  top: -2px;
  left: -2px;
  border-right: 0;
  border-bottom: 0;
}

.bracket-tr {
  top: -2px;
  right: -2px;
  border-left: 0;
  border-bottom: 0;
}

.bracket-bl {
  bottom: -2px;
  left: -2px;
  border-right: 0;
  border-top: 0;
}

.bracket-br {
  right: -2px;
  bottom: -2px;
  border-left: 0;
  border-top: 0;
}

@keyframes rotate-clockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes rotate-counter-clockwise {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

@keyframes core-pulse {
  0%,
  100% {
    transform: translate3d(-50%, -50%, 0) scale(1);
    box-shadow: 0 0 15px 2px var(--sky);
  }
  50% {
    transform: translate3d(-50%, -50%, 0) scale(2.5);
    box-shadow: 0 0 25px 4px var(--sky);
  }
}

.pulse-active {
  animation: core-pulse 1.5s infinite ease-in-out;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.742);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.nav-shell {
  width: var(--container);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 450;
  letter-spacing: 0.00001em;
  color: var(--text);
  white-space: nowrap;
}

.brand-mark {
  width: 3.15rem;
  height: 3.15rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 450;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 450;
  color: var(--text);
}

.brand-name::before {
  content: "|";
  color: rgba(28, 25, 23, 0.55);
  font-size: 1.85rem;
  line-height: 1.5;
  margin-right: 0.2rem;
  transform: translateY(-0.03rem);
}

.brand-name > span:not(.brand-wordmark) {
  color: #0ea5e9;
  line-height: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.75rem;
  font-weight: 450;
  transform: translateY(0.002rem);
}

.brand-wordmark {
  position: relative;
  width: 5rem;
  height: 1.32rem;
  overflow: hidden;
  flex: 0 0 auto;
  transform: translateY(-0.15rem);
}

.brand-wordmark img {
  position: absolute;
  width: 6.66rem;
  max-width: none;
  left: -0.91rem;
  top: -2.44rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-left: auto;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #292524;
}

.desktop-nav a {
  transition: color 0.3s ease, transform 0.3s ease;
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--sky);
}

.desktop-nav details {
  position: relative;
}

.desktop-nav details > summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.desktop-nav details summary::-webkit-details-marker {
  display: none;
}

.desktop-nav details .dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  z-index: 20;
  min-width: 13rem;
  padding: 0.75rem 0;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.08);
}

.desktop-nav details[open] .dropdown-menu {
  display: block;
}

.desktop-nav details .dropdown-menu a {
  display: block;
  padding: 0.95rem 1rem;
  color: #292524;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: none;
}

.desktop-nav details .dropdown-menu a + a {
  margin-top: 0.35rem;
}

.desktop-nav details .dropdown-menu a:hover {
  color: var(--sky);
}

.mobile-menu details.mobile-dropdown summary {
  display: block;
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mobile-menu details.mobile-dropdown .dropdown-menu {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
}

.mobile-menu details.mobile-dropdown[open] .dropdown-menu {
  display: block;
}

.mobile-menu details.mobile-dropdown .dropdown-menu a {
  display: block;
  width: 100%;
  padding-left: 0.75rem;
  font-size: 1.4rem;
  color: var(--text);
  text-transform: none;
}

.mobile-menu details.mobile-dropdown .dropdown-menu a + a {
  margin-top: 0.4rem;
}

.mobile-menu details.mobile-dropdown .dropdown-menu a:hover {
  color: var(--sky);
}

.nav-cta {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  color: #fff;
  background: #1c1917;
  box-shadow: 0 16px 40px -20px rgba(14, 165, 233, 0.28);
}

.nav-cta:hover {
  color: #fff !important;
  background: var(--sky);
}

.mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--text);
  margin-left: auto;
  cursor: pointer;
}

.mobile-toggle svg {
  width: 1.8rem;
  height: 1.8rem;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(24px);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.is-open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  color: var(--text);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--sky);
}

.mobile-menu .mobile-cta {
  margin-top: 0.5rem;
  padding: 0.95rem 1.85rem;
  border-radius: 999px;
  background: #1c1917;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-main {
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section-lg {
  padding: 8rem 0;
}

.section-tight {
  padding: 6rem 0;
}

.section-dark {
  background: #1c1917;
  color: #f5f5f4;
}

/* =========================
   GLOBAL SPACING SYSTEM
========================= */

.section + .section {
  margin-top: -0.1rem;
}

/* =========================
   CONTAINER SYSTEM
========================= */

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.max-prose {
  width: min(740px, 100%);
  margin: 0 auto;
}

/* =========================
   TYPOGRAPHY FIXES
========================= */

.section-heading {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 1.2rem;
}

.wide-heading {
  max-width: 100%;
}

.section-copy,
.lede,
.article-content p,
.article-content li {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  margin-top: 0.8rem;
}

.section-copy {
  max-width: 62rem;
  margin: 0 auto;
}

.section-copy.wide-heading {
  max-width: 100%;
}


.section-contrast {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.03),
    rgba(0,0,0,0.05)
  );
}

.wide-copy {
  max-width: 900px;
}

.section-subcopy {
  max-width: 900px;
  margin: 0 auto;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.proposal-left {
  text-align: left;
}

.proposal-right {
  text-align: left;
}

.proposal-right .service-list {
  margin: 0;
  padding-left: 1.2rem;
}

/* Fix spacing */
.proposal-left .section-copy {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }

}

html, body {
  overflow-x: hidden;
}

/* =========================
   LIST SYSTEM (FIX ALIGNMENT)
========================= */

.service-list {
  width: min(740px, 100%);
  margin: 1.5rem auto;
  padding-left: 1.2rem;
  line-height: 1.8;
}

/* =========================
   SECTION CONTENT GROUPING
========================= */

.section-group {
  margin-top: 1.5rem;
}

/* =========================
   HERO SPACING FIX
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 6rem 0 4rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: -1.25rem;
  z-index: 0;
  width: calc(100% + 2.5rem);
  height: calc(100% + 2.5rem);
  object-fit: cover;
  filter: blur(6px) saturate(0.78) contrast(0.92) brightness(1.0);
  pointer-events: none;
}

@media (max-width: 768px) {
  .section-lg {
    padding: 5rem 0;
  }

  .section-md {
    padding-top: 3rem;
  }

  .section-sm {
    padding-bottom: 3rem;
  }

  .section-heading {
    font-size: 2rem;
  }
}

/* =========================
   BUTTON ROW FIX
========================= */

.button-row {
  margin-top: 1.5rem;
}

/* =========================
   VISUAL CONSISTENCY
========================= */

.centered {
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(-45deg, #e0f2fe, #ede9fe, #fae8ff, #ffedd5, #ccfbf1, #e0f2fe);
  background-size: 400% 400%;
  animation: liquid-gradient 15s infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    rgba(253, 251, 247, 0.584),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

@keyframes liquid-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  max-width: 48rem;
  margin: 0 0 1.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 50px;
  color: #000000;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 1px 18px rgba(32, 29, 23, 0.32);
}

.hero-title2 {
  max-width: 48rem;
  margin: 0 0 1.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 50px;
  color: #fefefe;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 1px 18px rgba(32, 29, 23, 0.32);
}

.hero-title .headline .hero-title2 {
  display: block;
  font-size: clamp(2.75rem, 5vw, 5.15rem);
  font-style: normal;
}

.hero-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.accent-text {
  color: var(--sky);
  font-style: italic;
}

.language-cycler {
  position: relative;
  min-width: 0;
  width: 100%;
  min-height: 1.2em;
  overflow: hidden;
  color: var(--sky);
  font-style: italic;
}

.language-word {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s ease, opacity 0.5s ease;
  white-space: nowrap;
  padding-left: 0.1rem;
}

.language-word.is-active {
  opacity: 1;
  transform: translateY(0);
}

.language-word.is-exiting {
  opacity: 0;
  transform: translateY(-100%);
}

.hero-description {
  max-width: 40rem;
  margin: 0 0 1.6rem;
  color: #2d2626;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.9;
  text-shadow: none;
}

.hero-description2 {
  max-width: 40rem;
  margin: 0 0 1.6rem;
  color: #ffe2e2;
  font-weight: 500;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.9;
  text-shadow: none;
}

.hero-sub-proof {
  max-width: 40rem;
  margin: 0;
  color: #6f7070;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-sub-proof2 {
  max-width: 40rem;
  margin: 0;
  color: #c5d3d3;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.45rem;
  padding: 0.95rem 1.8rem;
  border-radius: 0.35rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(-45deg, var(--sky), var(--teal), var(--violet), var(--pink), var(--sky));
  background-size: 400% 400%;
  box-shadow: 0 20px 40px -10px rgba(14, 165, 233, 0.28);
}

.btn-primary:hover {
  animation: liquid-gradient 6s infinite;
  box-shadow: 0 24px 44px -10px rgba(14, 165, 233, 0.34);
}

.btn-secondary {
  color: var(--text);
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.82), rgba(224, 242, 254, 0.92), rgba(251, 207, 232, 0.82), rgba(255, 255, 255, 0.82));
  background-size: 400% 400%;
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: var(--shadow-soft);
}

.btn-dark {
  color: #fff;
  background: #1c1917;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(214, 211, 209, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.605);
  backdrop-filter: blur(12px);
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blob-stack {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.interactive-blob {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  border-radius: 50% 55% 52% 48%;
  background: linear-gradient(45deg, #4f46e5, #06b6d4, #0ea5e9, #ffffff, #8b5cf6, #c026d3, #4f46e5);
  background-size: 400% 400%;
  filter: blur(8px);
  box-shadow: 0 10px 30px -10px rgba(79, 70, 229, 0.5);
  transition: all 0.3s ease;
  animation: blob-spin 10s linear infinite, blob-gradient 8s ease infinite;
  cursor: pointer;
}

.interactive-blob:hover {
  transform: scale(1.05);
  filter: blur(2px);
  box-shadow: 0 15px 40px -10px rgba(79, 70, 229, 0.6);
}

.interactive-blob.speaking {
  animation: blob-spin 2s linear infinite, blob-gradient 2s ease infinite, blob-speaking-pulse 1s ease-in-out infinite alternate;
  filter: blur(2px) brightness(1.2);
}

.blob-pulse {
  position: absolute;
  z-index: 1;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(14, 165, 233, 0.3);
  opacity: 0;
  animation: pulse-ring 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.blob-caption {
  position: absolute;
  left: 50%;
  bottom: -2.5rem;
  transform: translateX(-50%);
  color: rgba(162, 159, 157, 0.9);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: subtle-pulse 1.8s infinite ease-in-out;
}

@keyframes subtle-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}

@keyframes blob-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes blob-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes blob-speaking-pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  transform: translateX(-50%);
  opacity: 0.42;
  color: var(--text);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero-scroll span:last-child {
  width: 1px;
  height: 3rem;
  background: rgba(87, 83, 78, 0.8);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.auto-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 5rem;
  align-items: start;
}

.divider {
  width: 4rem;
  height: 1px;
  background: rgba(14, 165, 233, 0.5);
  margin: 2rem 0;
}

.glass-card,
.stat-card,
.timeline-card,
.lead-shell,
.contact-card,
.post-card,
.range-card,
.article-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 211, 209, 0.5);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
}

.glass-card,
.stat-card,
.timeline-card,
.range-card,
.article-panel {
  border-radius: var(--radius-sm);
}

.glass-card {
  padding: 2rem;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1), background 0.55s ease;
}

.glass-card::before,
.post-card::before,
.lead-shell::before,
.contact-card::before,
.range-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.08), transparent 68%);
  opacity: 0;
  transition: opacity 0.55s ease;
  pointer-events: none;
}

.glass-card:hover,
.post-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-strong);
}

.glass-card:hover::before,
.post-card:hover::before,
.lead-shell:hover::before,
.contact-card:hover::before,
.range-card:hover::before {
  opacity: 1;
}

.dashboard-image img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.dashboard-image-large {
  margin-bottom: 2.5rem;
}

.dashboard-image-large img {
  width: 100%;
  display: block;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 1px rgba(14, 165, 233, 0.15);
}

.image-caption {
  margin-top: 1.25rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  text-align: center;
}

.proposal-panel {
  display: grid;
  gap: 1.25rem;
}

.proposal-panel .proposal-content {
  display: grid;
  gap: 1.25rem;
}

.proposal-panel .service-list {
  margin: 0;
}

.left-indent {
  margin-left: 2rem;
}

.dashboard-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.dashboard-image-large {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.analytics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.analytics-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.analytics-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.analytics-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.analytics-copy {
  color: var(--text-secondary);
  line-height: 1.6;
}

.video-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mini-label {
  display: block;
  margin-bottom: 0.9rem;
  color: rgba(14, 165, 233, 0.72);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-title {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

.card-copy {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.8;
}

.card-link {
  margin-top: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 0.75rem;
}

.stat-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 1.6rem;
}

.stat-value {
  margin: 0 0 0.6rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--sky);
  letter-spacing: -0.04em;
}

.stat-label {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.network-content {
  position: relative;
  z-index: 1;
}

.network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
  top: 0;
  left: 0;
}


.dark-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dark-grid .timeline-card {
  padding: 2rem;
  background: rgba(38, 35, 34, 0.66);
  border-color: rgba(68, 64, 60, 0.7);
  box-shadow: none;
}

.dark-grid .card-title,
.dark-grid .card-copy,
.dark-grid .mini-label {
  color: #f5f5f4;
}

.dark-grid .card-copy {
  color: rgba(231, 229, 228, 0.72);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(120, 113, 108, 0.9);
  color: rgba(214, 211, 209, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 2rem;
  align-items: start;
}

.lead-shell {
  border-radius: var(--radius-md);
  padding: 2rem;
}

.lead-intro p {
  max-width: 28rem;
}

.lead-form,
.contact-form {
  display: grid;
  gap: 1rem;
}

.lead-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field,
.field-full {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  color: rgba(120, 113, 108, 0.9);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.field input,
.field-full input,
.field-full textarea,
.range-card input[type="number"],
.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 1px solid rgba(214, 211, 209, 0.7);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 0.4rem;
  padding: 1rem 1rem;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.field textarea,
.field-full textarea,
.contact-card textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field-full input:focus,
.field-full textarea:focus,
.range-card input[type="number"]:focus,
.contact-card input:focus,
.contact-card textarea:focus {
  border-color: rgba(14, 165, 233, 0.8);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

.form-note {
  margin: 0.75rem 0 0;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.success-box {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(34, 197, 94, 0.18);
  background: rgba(240, 253, 244, 0.92);
  padding: 2.25rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.success-box h3 {
  margin: 0.75rem 0 0.35rem;
  font-size: 1.75rem;
}

.success-box p {
  margin: 0;
  color: var(--text-soft);
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  background: rgba(220, 252, 231, 0.95);
  color: #16a34a;
}

.quote-block {
  max-width: 62rem;
}

.quote-block p {
  margin: 0;
  color: var(--text-soft);
  font-size: clamp(1.2rem, 2.6vw, 2rem);
  font-weight: 300;
  line-height: 1.7;
}

.quote-block strong {
  color: var(--sky);
  font-weight: 400;
  font-style: italic;
}

.article-hero {
  min-height: auto;
  padding: calc(var(--header-height) + 3rem) 0 3rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.3rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-shell {
  width: min(860px, 92%);
  margin: 0 auto;
}

.article-panel {
  padding: 2.4rem;
  border-radius: var(--radius-md);
}

.article-content h2,
.article-content h3 {
  margin: 2.4rem 0 0.95rem;
  font-family: "Playfair Display", serif;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.article-content h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.article-content h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.article-content p {
  margin: 0 0 1.2rem;
}

.article-content ul {
  margin: 0 0 1.3rem 1.15rem;
  padding: 0;
}

.article-content li {
  margin-bottom: 0.7rem;
}

.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.5rem 1.5rem 1.6rem;
  border-left: 3px solid rgba(14, 165, 233, 0.45);
  background: rgba(224, 242, 254, 0.45);
  color: var(--text);
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  line-height: 1.6;
}

.related-grid,
.blog-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card {
  padding: 1.8rem;
  border-radius: var(--radius-sm);
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.55s ease, background 0.55s ease;
}

.post-card time,
.meta-line {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.post-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.post-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--sky);
}

.calculator-shell {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

.range-card {
  padding: 2rem;
  border-radius: var(--radius-md);
}

.range-stack {
  display: grid;
  gap: 1.35rem;
}

.range-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.range-label {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.range-output {
  min-width: 6rem;
  text-align: right;
  color: var(--text);
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 0.28rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--sky) 0%, rgba(214, 211, 209, 0.95) 0%);
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sky);
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 0 0 8px rgba(14, 165, 233, 0.16);
}

input[type="range"]::-moz-range-thumb {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--sky);
  box-shadow: 0 0 0 6px rgba(14, 165, 233, 0.12);
}

.results-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-card {
  padding: 1.35rem;
  border-radius: 1rem;
  background: rgba(248, 250, 252, 0.95);
  border: 1px solid rgba(214, 211, 209, 0.6);
}

.result-card .mini-label {
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.result-value {
  margin: 0;
  color: var(--sky);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.result-card.highlight {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(224, 242, 254, 0.92), rgba(240, 249, 255, 0.98));
  border-color: rgba(14, 165, 233, 0.26);
}

.result-card.highlight .mini-label {
  color: rgba(14, 116, 144, 0.72);
}

.result-card.highlight .result-value {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  color: #0369a1;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.info-list {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.info-list li {
  margin-bottom: 0.75rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius-md);
}

.contact-card h3 {
  margin: 0 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: 1.65rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
}

.contact-list strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.faq-stack {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.4rem 1.5rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(214, 211, 209, 0.55);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(18px);
}

.faq-item h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.cta-band {
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 211, 209, 0.55);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
}

.cta-band h3 {
  margin: 0 0 0.75rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.cta-band p {
  margin: 0 0 1.4rem;
  max-width: 42rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid rgba(214, 211, 209, 0.55);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 2rem;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a:hover {
  color: var(--sky);
}



.service-list,
.check-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list {
  max-width: 740px;
  margin: 1.5rem auto;
}

.service-list li,
.check-list li {
  margin-bottom: 0.8rem;
  padding-left: 1.4rem;
  position: relative;
  color: var(--text-soft);
  line-height: 1.8;
}

.service-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--teal));
}

.callout {
  padding: 1.6rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(14, 165, 233, 0.2);
  background: rgba(224, 242, 254, 0.46);
}

.callout strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #075985;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.callout p {
  margin: 0;
  color: #0f172a;
  line-height: 1.8;
}

.spacer-2 {
  margin-top: 2rem;
}

.spacer-3 {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .interactive-blob {
    width: 300px;
    height: 300px;
  }

  .blob-pulse {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 1080px) {
  .grid-four,
  .dark-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-split,
  .lead-layout,
  .contact-grid,
  .calculator-shell {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .grid-three,
  .grid-two,
  .related-grid,
  .blog-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: 7rem;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
    padding-top: 1.5rem;
  }

  .hero-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    min-height: auto;
  }

  .language-cycler {
    min-width: 0;
    width: min(320px, 85vw);
  }
}

@media (max-width: 720px) {
  body {
    cursor: auto;
  }

  #custom-cursor,
  #custom-cursor-follower {
    display: none;
  }

  .section {
    padding: 5.5rem 0;
  }

  .container,
  .nav-shell,
  .footer-inner,
  .hero-grid,
  .article-shell {
    width: min(1200px, 92%);
    margin: 0 auto;
  }

  .hero-title .headline .hero-title2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-line {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }

  .hero-actions .btn,
  .button-row .btn,
  .btn {
    width: 100%;
  }

  .lead-grid,
  .results-grid,
  .range-item {
    grid-template-columns: 1fr;
  }

  .range-output {
    text-align: left;
    min-width: 0;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .whatsapp-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.eyebrow {
  display: block; 
  font-family: 'Inter', sans-serif; /* cursive-style elegant */
  font-size: 2.05rem;
  font-weight: 600;
  color: #0ea5e9; /* your blue */
  letter-spacing: 0.001em;
  text-transform: none; /* remove uppercase feel */
  margin-bottom: 0.6rem;
}

.eyebrow + .eyebrow::before {
  content: "•";
  margin: 0 8px;
  color: #999;
}

.cursor-ring-outer {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 50%;
  animation: rotate-clockwise 10s linear infinite;
}

.cursor-ring-inner {
  position: absolute;
  width: 70%;
  height: 70%;
  border: 1px dashed rgba(14, 165, 233, 0.3);
  border-radius: 50%;
  animation: rotate-counter-clockwise 6s linear infinite;
}

@keyframes rotate-clockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotate-counter-clockwise {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

/* --- LIQUID BACKGROUND --- */
@keyframes global-fluid-blob {
    0% { transform: translate(0%, 0%) scale(1); }
    50% { transform: translate(8%, 8%) scale(1.1); }
    100% { transform: translate(0%, 0%) scale(1); }
}
.bg-liquid-container { background-color: #ffffff; z-index: -20; }
.blob { position: absolute; max-width: 100vw; max-height: 100vw; border-radius: 50%; filter: blur(100px); opacity: 0.35; mix-blend-mode: multiply; }
.blob-1 { background: #bae6fd; top: -15%; left: -10%; animation: global-fluid-blob 25s infinite alternate ease-in-out; }
.blob-2 { background: #ddd6fe; bottom: -15%; right: -10%; animation: global-fluid-blob 30s infinite alternate-reverse ease-in-out; }
.blob-3 { background: #fbcfe8; top: 30%; right: 15%; animation: global-fluid-blob 20s infinite alternate ease-in-out; }

.interactive-blob {
  background: linear-gradient(45deg, #4f46e5, #06b6d4, #0ea5e9, #ffffff, #8b5cf6);
  background-size: 400% 400%;
  animation: blob-spin 10s linear infinite, blob-gradient 8s ease infinite;
  transition: all 0.3s ease;
}

.interactive-blob:hover {
  transform: scale(1.05);
  filter: blur(2px);
}

.interactive-blob.speaking {
  animation: blob-spin 2s linear infinite, blob-gradient 2s ease infinite;
  filter: brightness(1.2);
}

@keyframes blob-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes blob-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* CLEAN WHATSAPP BUTTON */

.wa-button {
  position: fixed !important;
  bottom: 40px !important;
  right: 40px !important;

  width: 58px !important;
  height: 58px !important;
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.2),
    inset 0 0 0 2px rgba(255,255,255,0.15);

  background: #25D366;
  border-radius: 50%;

  display: flex !important;
  align-items: center;
  justify-content: center;

  z-index: 9999;

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  text-decoration: none;
  transform: translateY(-2px);
}

.wa-button:hover {
  transform: scale(1.1);
}

.wa-button svg {
  width: 38px !important;
  height: 38px !important;
  display: block;
  transform: translate(1px, 1px);
  transform: translateY(-1px);
}

.network-section {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(0,0,0,0.06);
}

.canvas-wrapper {
  position: absolute;
  top: 0.1rem;   /* SAME as section padding-top */
  left: 0;
  width: 100%;
  height: calc(100% - 6rem);
  overflow: hidden;
}



 
