:root {
  --pastel-purple: #f1e8ff;
  --pastel-blue: #e7f3ff;
  --pastel-pink: #ffe8f4;
  --pastel-green: #e9f8ef;
  --soft-magenta: #d651a2;
  --pastel-magenta: #f5ddf0;
  --white: #ffffff;
  --text: #1f1f2e;
  --muted: #4f5161;
  --black: #111111;
  --border-soft: rgba(17, 17, 17, 0.12);
  --shadow-soft: 0 10px 26px rgba(68, 45, 120, 0.12);
  --shadow-lift: 0 18px 36px rgba(16, 16, 16, 0.18);
  --radius-lg: 24px;
  --radius-md: 14px;
  --header-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff3fa 0%, #ffeaf5 52%, #ffe3f2 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 2000;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.section {
  padding-top: 120px;
  padding-bottom: 120px;
}

h1,
h2 {
  margin: 0 0 32px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-family: Sora, Inter, system-ui, sans-serif;
}

h1 {
  font-size: 72px;
  font-weight: 900;
}

h2 {
  font-size: 64px;
  font-weight: 800;
}

p {
  margin: 0;
  font-size: 20px;
  color: var(--muted);
  max-width: 600px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(214, 81, 162, 0.42);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(120deg, #d651a2 0%, #8f7cff 55%, #68aefb 100%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 28px rgba(214, 81, 162, 0.28);
}

.btn-secondary {
  background: linear-gradient(120deg, rgba(233, 248, 239, 0.95), rgba(231, 243, 255, 0.95));
  color: #5b3f8f;
  border: 1px solid rgba(91, 63, 143, 0.2);
  box-shadow: 0 8px 20px rgba(91, 63, 143, 0.16);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(87, 56, 138, 0.24);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  height: var(--header-height);
  background: linear-gradient(90deg, rgba(255, 232, 244, 0.7), rgba(231, 243, 255, 0.72), rgba(233, 248, 239, 0.7));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transition: box-shadow 0.24s ease, background-color 0.24s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 28px rgba(59, 45, 99, 0.13);
  background: linear-gradient(90deg, rgba(255, 232, 244, 0.9), rgba(231, 243, 255, 0.9), rgba(233, 248, 239, 0.9));
}

.nav-wrap {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 200px;
  height: auto;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.main-nav a {
  font-size: 18px;
  font-weight: 700;
  font-family: Sora, Inter, system-ui, sans-serif;
  color: #493a71;
  letter-spacing: 0.01em;
}

.main-nav a:hover {
  color: var(--soft-magenta);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.nav-actions .btn {
  font-size: 15px;
  min-width: 112px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  margin: 4px auto;
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  margin: 0 20px;
  background: linear-gradient(145deg, rgba(255, 240, 248, 0.96), rgba(232, 244, 255, 0.96));
  border: 1px solid rgba(141, 102, 186, 0.2);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}

.mobile-nav.open {
  display: grid;
  gap: 12px;
}

.mobile-nav a {
  font-size: 17px;
  font-weight: 700;
  color: #493a71;
}

.hero {
  min-height: 700px;
  display: flex;
  align-items: center;
  background: linear-gradient(130deg, #ffdff0 0%, #ffd5eb 38%, #f9def3 74%, #ffeef8 100%);
}

.hero-grid {
  width: 100%;
  display: block;
}

.hero-content p {
  margin-bottom: 40px;
  max-width: 1120px;
  font-size: 28px;
  line-height: 1.45;
  color: #4e4a66;
}

.hero-btn {
  font-size: 18px;
  padding: 18px 36px;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(121, 83, 166, 0.26);
}

.hero-content h1 {
  max-width: none;
  white-space: nowrap;
  font-size: 78px;
  color: #3b2b66;
  text-shadow: 0 6px 20px rgba(255, 255, 255, 0.55);
}

.less-guessing {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: stretch;
  padding-top: 6px;
  padding-bottom: 0;
  background: linear-gradient(145deg, #ffdced 0%, #ffd2e8 45%, #f7cfe7 100%);
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -38px 64px rgba(177, 91, 143, 0.2),
    inset 0 18px 42px rgba(255, 255, 255, 0.14);
}

.less-guessing .container {
  max-width: min(1760px, 100vw);
  width: 100%;
  padding-left: clamp(20px, 5vw, 84px);
  padding-right: clamp(20px, 5vw, 84px);
  position: relative;
  z-index: 1;
}

.less-guessing::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./web-ui-images/726996325_1345971914266417_8580030360421086498_n.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.24;
  z-index: -1;
}

.less-guessing::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.54), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(246, 212, 255, 0.42), transparent 30%),
    radial-gradient(circle at 60% 82%, rgba(215, 241, 255, 0.36), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 34%, rgba(255, 255, 255, 0.14) 60%, transparent 82%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.less-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: stretch;
  min-height: 585px;
}

.less-image-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  align-self: end;
  width: 100%;
  height: 100%;
  order: 2;
}

.less-image-container img {
  max-width: none;
  max-height: none;
  width: 100%;
  height: 112%;
  object-fit: contain;
  object-position: center top;
  transform: scale(1.06);
  transform-origin: top center;
}

.less-content {
  order: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding-top: 0;
}

.less-service-card {
  position: relative;
  border-radius: 28px;
  padding: clamp(20px, 2.2vw, 34px);
  background:
    linear-gradient(160deg, rgba(255, 214, 239, 0.96) 0%, rgba(244, 206, 255, 0.92) 45%, rgba(219, 231, 255, 0.9) 100%),
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.62), transparent 34%);
  border: 1px solid rgba(178, 112, 205, 0.44);
  box-shadow:
    0 16px 34px rgba(122, 76, 162, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.less-service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(120deg, #ffd2ee, #dff2ff, #d8ebff, #efd0ff, #ffd2ee);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.less-service-card::after {
  content: "";
  position: absolute;
  inset: -36%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 214, 235, 0.28), transparent 38%),
    radial-gradient(circle at 85% 30%, rgba(223, 242, 255, 0.22), transparent 40%),
    radial-gradient(circle at 50% 90%, rgba(229, 255, 233, 0.22), transparent 40%);
  pointer-events: none;
}

.less-service-card > * {
  position: relative;
  z-index: 1;
}

.less-content h2 {
  margin-bottom: 28px;
  font-size: 86px;
  line-height: 1.02;
  color: #3f2e67;
}

.less-content p {
  max-width: none;
  font-size: 28px;
  line-height: 1.55;
  color: #4b4a63;
}

.less-emboss {
  color: #5a5372;
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.82),
    1px 1px 0 rgba(97, 74, 135, 0.26),
    0 8px 20px rgba(255, 255, 255, 0.2);
}

.less-content span {
  color: var(--soft-magenta);
}

.what-we-do {
  position: relative;
  z-index: 20;
  background: linear-gradient(145deg, #e7f3ff 0%, #e0f4ff 48%, #d9f0ff 100%);
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
  isolation: isolate;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 68px;
  color: #2c5aa0;
  margin-bottom: 16px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  position: relative;
  border-radius: 24px;
  background: transparent;
  overflow: visible;
  box-shadow: none;
  border: 0;
  transition: transform 0.28s ease;
  perspective: 1400px;
  min-height: 460px;
}

.feature-card:hover {
  transform: translateY(-6px);
}

.feature-card::before {
  content: none;
}

.feature-card-inner {
  position: relative;
  width: 100%;
  min-height: 460px;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.feature-card:hover .feature-card-inner,
.feature-card.is-flipped .feature-card-inner {
  transform: rotateY(180deg);
}

.feature-card-face {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(71, 135, 189, 0.22);
  border: 1px solid rgba(102, 159, 218, 0.32);
}

.feature-card-face--front {
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.92), rgba(230, 245, 255, 0.82)),
    radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.5), transparent 36%);
}

.feature-card-face--back {
  transform: rotateY(180deg);
  background:
    linear-gradient(155deg, rgba(213, 239, 255, 0.95), rgba(230, 225, 255, 0.92), rgba(255, 225, 244, 0.92)),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.45), transparent 38%);
  border-color: rgba(124, 117, 212, 0.38);
  box-shadow:
    0 18px 36px rgba(99, 118, 190, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.feature-image-container {
  width: 100%;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(230, 245, 255, 0.4), rgba(209, 237, 255, 0.3));
}

.feature-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.feature-copy {
  padding: 24px 22px;
  position: relative;
  z-index: 2;
}

.feature-copy h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #2c5aa0;
  line-height: 1.3;
}

.feature-copy p {
  margin: 0;
  font-size: 16px;
  color: #4a6b8a;
  line-height: 1.6;
}

.feature-back-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.feature-back-content h4 {
  margin: 0 0 10px;
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.2;
  color: #465fa6;
  font-family: Sora, Inter, system-ui, sans-serif;
}

.feature-back-content p {
  margin: 0;
  max-width: none;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.62;
  color: #556187;
}

.live-insights {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.insight-metric {
  position: relative;
  border-radius: 20px;
  padding: 18px 20px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(228, 244, 255, 0.86)),
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.56), transparent 40%);
  border: 1px solid rgba(105, 164, 220, 0.32);
  box-shadow:
    0 14px 28px rgba(79, 131, 184, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.insight-metric::after {
  content: "";
  position: absolute;
  left: -120%;
  top: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.64), transparent);
  animation: insightSweep 3.6s ease-in-out infinite;
  pointer-events: none;
}

.insight-label {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4f6d8f;
}

.insight-value {
  margin: 6px 0 2px;
  max-width: none;
  font-size: clamp(30px, 2.9vw, 46px);
  line-height: 1.05;
  font-weight: 900;
  font-family: Sora, Inter, system-ui, sans-serif;
  color: #2d5ea5;
  text-shadow: 0 8px 20px rgba(132, 178, 230, 0.24);
}

.insight-trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2f9a60;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes insightSweep {
  0% {
    left: -120%;
  }

  50%,
  100% {
    left: 140%;
  }
}

.bring-table {
  position: relative;
  z-index: 10;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(145deg, #f3e8ff 0%, #f0e2ff 48%, #e9d6ff 100%);
  isolation: isolate;
  overflow: hidden;
  contain: paint;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    inset 0 -40px 68px rgba(126, 83, 179, 0.18),
    inset 0 22px 44px rgba(255, 255, 255, 0.12);
}

.bring-table::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.35), transparent 34%),
    radial-gradient(circle at 88% 76%, rgba(214, 174, 255, 0.28), transparent 36%);
  z-index: -1;
}

.bring-table::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.52), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(230, 208, 255, 0.42), transparent 34%),
    radial-gradient(circle at 52% 85%, rgba(255, 224, 244, 0.34), transparent 30%),
    linear-gradient(140deg, rgba(255, 255, 255, 0.2), transparent 38%, rgba(255, 255, 255, 0.14) 68%, transparent 86%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.bring-table-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.2vw, 56px);
  align-items: stretch;
  min-height: 680px;
  position: relative;
  z-index: 1;
}

.bring-table-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: stretch;
  padding-top: 0;
}

.bring-table-copy {
  display: flex;
  flex-direction: column;
  width: min(100%, 620px);
  margin: 0;
  margin-bottom: 48px;
  padding: 0;
  height: 100%;
}

.bring-table-copy h2 {
  display: inline-block;
  align-self: flex-start;
  margin: 96px 0 18px;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  font-size: clamp(36px, 3.6vw, 58px);
  white-space: nowrap;
  color: #4e2d87;
  letter-spacing: -0.015em;
  background: linear-gradient(135deg, rgba(255, 233, 248, 0.88), rgba(234, 221, 255, 0.84));
  border: 1px solid rgba(145, 98, 196, 0.44);
  border-radius: 16px;
  box-shadow:
    0 14px 28px rgba(122, 84, 172, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  text-shadow:
    0 8px 16px rgba(255, 255, 255, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateX(-14px);
}

.bring-table-copy h2::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(237, 140, 222, 0.5), rgba(144, 177, 255, 0.5));
  filter: blur(1.2px);
  opacity: 0.75;
  z-index: -1;
}

.bring-table-copy h3 {
  margin: 22px 0 10px;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.22;
  color: #6f4db0;
  font-family: Sora, Inter, system-ui, sans-serif;
}

.bring-table-copy h3:first-of-type {
  margin-top: 20px;
}

.bring-table-copy p {
  max-width: 620px;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.65;
  color: #594977;
}

.bring-table-image-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.bring-table-image-container img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 113%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.75);
  transform-origin: bottom center;
}

.magenta-creative {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(145deg, #ffd8f2 0%, #ffcfea 48%, #f8c3e6 100%);
  isolation: isolate;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -42px 70px rgba(171, 70, 125, 0.2),
    inset 0 18px 40px rgba(255, 255, 255, 0.12);
}

.magenta-creative::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.36), transparent 34%),
    radial-gradient(circle at 86% 76%, rgba(255, 186, 225, 0.32), transparent 38%);
  z-index: -1;
}

.magenta-creative::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.56), transparent 28%),
    radial-gradient(circle at 86% 24%, rgba(255, 223, 244, 0.44), transparent 34%),
    radial-gradient(circle at 70% 82%, rgba(255, 189, 223, 0.34), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 35%, rgba(255, 255, 255, 0.14) 66%, transparent 84%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.magenta-creative-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.2vw, 56px);
  align-items: stretch;
  min-height: 680px;
  position: relative;
  z-index: 1;
}

.magenta-creative-image-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.magenta-creative-image-container img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.08);
  transform-origin: bottom center;
}

.magenta-creative-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
}

.magenta-creative-card {
  width: min(100%, 650px);
  margin-left: clamp(12px, 1.6vw, 28px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.magenta-creative-card h3 {
  margin: 0 0 10px;
  font-size: clamp(26px, 2.15vw, 36px);
  line-height: 1.2;
  color: #8a2f79;
  font-family: Sora, Inter, system-ui, sans-serif;
}

.magenta-creative-card h3 + p {
  margin-bottom: 26px;
}

.magenta-creative-card p {
  max-width: none;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.64;
  color: #6f4a6a;
}

.analytics-white {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(252, 250, 255, 0.98) 100%);
  isolation: isolate;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -34px 58px rgba(180, 188, 230, 0.14),
    inset 0 18px 34px rgba(236, 220, 255, 0.12);
}

.analytics-white::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(236, 220, 255, 0.24), transparent 34%),
    radial-gradient(circle at 84% 74%, rgba(219, 238, 255, 0.22), transparent 36%);
  z-index: -1;
}

.analytics-white::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(239, 225, 255, 0.46), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(220, 239, 255, 0.38), transparent 30%),
    linear-gradient(90deg, rgba(134, 154, 224, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(rgba(134, 154, 224, 0.08) 0 1px, transparent 1px 100%);
  background-size: auto, auto, 42px 42px, 42px 42px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}

.analytics-white-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3.2vw, 56px);
  align-items: stretch;
  min-height: 680px;
  position: relative;
  z-index: 1;
}

.analytics-white-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
}

.analytics-white-copy {
  width: min(100%, 660px);
}

.analytics-white-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(34px, 2.8vw, 48px);
  line-height: 1.12;
  color: #503f87;
  font-family: Sora, Inter, system-ui, sans-serif;
}

.analytics-white-copy p {
  max-width: 650px;
  font-size: clamp(22px, 1.7vw, 29px);
  line-height: 1.6;
  color: #5b5d74;
}

.talk-strip {
  padding-top: 56px;
  padding-bottom: 56px;
  min-height: auto;
  background: #5c87ff;
}

.client-testimonials {
  position: relative;
  padding-top: 92px;
  padding-bottom: 92px;
  background: linear-gradient(145deg, #eef6ff 0%, #e7f2ff 45%, #e0edff 100%);
  border-top: 1px solid rgba(117, 150, 220, 0.24);
  border-bottom: 1px solid rgba(117, 150, 220, 0.2);
  overflow: hidden;
  isolation: isolate;
}

.client-testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.62), transparent 34%),
    radial-gradient(circle at 90% 82%, rgba(214, 234, 255, 0.38), transparent 36%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.2), transparent 48%);
  pointer-events: none;
  z-index: 0;
}

.testimonials-header {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.testimonials-header h2 {
  margin-bottom: 12px;
  font-size: clamp(42px, 4.2vw, 62px);
  color: #4266ab;
}

.testimonials-header p {
  margin: 0 auto;
  max-width: 820px;
  font-size: clamp(17px, 1.38vw, 21px);
  line-height: 1.7;
  color: #566a8d;
}

.testimony-marquee {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.testimony-row {
  display: flex;
  width: max-content;
}

.testimony-track {
  display: flex;
  gap: 16px;
  padding-right: 16px;
}

.testimony-row-a {
  animation: testimonyLoopLeft 54s linear infinite;
}

.testimony-row-b {
  animation: testimonyLoopRight 58s linear infinite;
}

.testimony-card {
  width: clamp(290px, 24vw, 370px);
  min-height: 198px;
  border-radius: 18px;
  padding: 18px 18px 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(236, 246, 255, 0.88)),
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.55), transparent 36%);
  border: 1px solid rgba(121, 164, 221, 0.32);
  box-shadow:
    0 12px 22px rgba(76, 124, 180, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.testimony-card p {
  margin: 0 0 12px;
  max-width: none;
  font-size: 15px;
  line-height: 1.58;
  color: #4e6286;
}

.testimony-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  color: #355791;
  font-family: Sora, Inter, system-ui, sans-serif;
}

.testimony-card span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  line-height: 1.45;
  color: #6680ac;
}

@keyframes testimonyLoopLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes testimonyLoopRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimony-row-a,
  .testimony-row-b {
    animation: none;
  }
}

.talk-strip-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 44px);
}

.talk-strip-copy h3 {
  margin: 0 0 8px;
  font-size: clamp(34px, 3.1vw, 54px);
  line-height: 1.08;
  color: #ffffff;
  font-family: Sora, Inter, system-ui, sans-serif;
  text-shadow: 0 8px 20px rgba(37, 68, 168, 0.24);
}

.talk-strip-copy p {
  margin: 0;
  max-width: none;
  font-size: clamp(18px, 1.5vw, 24px);
  color: rgba(255, 255, 255, 0.96);
}

.talk-strip-action {
  justify-self: end;
}

.talk-strip-btn {
  display: inline-block;
  text-align: center;
  padding: 16px 26px;
  border-radius: 16px;
  background: linear-gradient(120deg, #d651a2 0%, #8f7cff 55%, #68aefb 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.25;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 14px 26px rgba(214, 81, 162, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.talk-strip-btn:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 30px rgba(28, 57, 149, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.site-footer-pastel {
  min-height: auto;
  padding-top: 68px;
  padding-bottom: 68px;
  background: #ffffff;
  border-top: 1px solid rgba(206, 118, 174, 0.24);
}

.footer-pastel-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 3vw, 56px);
  align-items: center;
}

.footer-pastel-left h3 {
  margin: 0 0 18px;
  font-size: clamp(28px, 2.3vw, 40px);
  line-height: 1.2;
  color: #7a2f67;
  font-family: Sora, Inter, system-ui, sans-serif;
}

.footer-pastel-left h3 a {
  color: #5f2d91;
  text-decoration: none;
}

.footer-pastel-left .footer-email {
  display: inline-block;
  margin-top: 8px;
  white-space: nowrap;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-socials a {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 238, 250, 0.9));
  border: 1px solid rgba(182, 102, 157, 0.36);
  box-shadow: 0 8px 18px rgba(154, 72, 127, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(154, 72, 127, 0.28);
}

.footer-socials svg {
  width: 28px;
  height: 28px;
  fill: #9a3e8f;
}

.footer-pastel-right {
  text-align: right;
}

.footer-pastel-right img {
  width: 250px;
  height: auto;
  margin-left: auto;
}

.footer-pastel-right p {
  margin-top: 10px;
  margin-bottom: 0;
  max-width: none;
  font-size: 15px;
  color: #72456d;
}

.analytics-white-image-container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  align-self: end;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.analytics-white-image-container img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateX(4%) scale(1.08);
  transform-origin: bottom center;
}

body.motion-ready .cinematic-pop {
  opacity: 0;
  transform: translateY(34px) scale(0.965);
  filter: blur(8px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.72, 0.22, 1),
    transform 760ms cubic-bezier(0.2, 0.72, 0.22, 1),
    filter 760ms cubic-bezier(0.2, 0.72, 0.22, 1);
  will-change: opacity, transform, filter;
}

body.motion-ready .cinematic-pop[data-pop-style="left"] {
  transform: translateX(-38px) scale(0.965);
}

body.motion-ready .cinematic-pop[data-pop-style="right"] {
  transform: translateX(38px) scale(0.965);
}

body.motion-ready .cinematic-pop[data-pop-style="up"] {
  transform: translateY(34px) scale(0.965);
}

body.motion-ready .cinematic-pop.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  body.motion-ready .cinematic-pop,
  body.motion-ready .cinematic-pop[data-pop-style="left"],
  body.motion-ready .cinematic-pop[data-pop-style="right"],
  body.motion-ready .cinematic-pop[data-pop-style="up"] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1099px) {
  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 52px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 16px;
  }

  .brand img {
    width: 176px;
  }

  .hero-content h1 {
    white-space: normal;
    font-size: 64px;
  }

  .hero-content p {
    font-size: 24px;
  }

  .less-content h2 {
    font-size: 68px;
  }

  .less-content p {
    font-size: 24px;
  }

  .section-header h2 {
    font-size: 56px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .live-insights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .bring-table-copy h2 {
    font-size: clamp(32px, 4.3vw, 50px);
  }

  .bring-table-copy h3 {
    font-size: clamp(22px, 2.8vw, 30px);
  }

  .bring-table-grid {
    min-height: 620px;
  }

  .magenta-creative-grid {
    min-height: 620px;
  }

  .analytics-white-grid {
    min-height: 620px;
  }

  .talk-strip-copy h3 {
    font-size: clamp(30px, 4.2vw, 46px);
  }

  .testimony-card {
    width: clamp(280px, 30vw, 360px);
  }

  .footer-pastel-left h3 {
    font-size: clamp(24px, 3.6vw, 34px);
  }
}

@media (max-width: 900px) {
  .main-nav,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
    justify-self: end;
  }

  .hero-grid,
  .less-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: auto;
  }

  .less-guessing {
    padding-bottom: 88px;
  }

  .less-image-container {
    order: -1;
    height: auto;
    align-items: center;
  }

  .less-image-container img {
    height: auto;
  }

  .less-content {
    order: 2;
  }

  .less-brand-title {
    font-size: 48px;
  }

  h2 {
    font-size: 44px;
  }

  p {
    font-size: 19px;
    max-width: 100%;
  }

  .hero-content h1 {
    white-space: normal;
    font-size: 54px;
  }

  .hero-content p {
    font-size: 22px;
  }

  .less-content h2 {
    font-size: 56px;
  }

  .less-content p {
    font-size: 22px;
  }

  .hero-btn,
  .mobile-nav .btn {
    width: 100%;
  }

  .hero-content h1 {
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 44px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .live-insights {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .feature-card {
    min-height: 440px;
  }

  .feature-card-inner {
    min-height: 440px;
  }

  .feature-image-container {
    height: 210px;
  }

  .bring-table-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .magenta-creative-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .analytics-white-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .talk-strip-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .client-testimonials {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .testimonials-header {
    margin-bottom: 24px;
  }

  .testimony-card {
    width: min(80vw, 340px);
    min-height: 190px;
  }

  .footer-pastel-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bring-table-copy {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
  }

  .bring-table-copy p {
    max-width: 100%;
  }

  .bring-table-copy h2 {
    white-space: nowrap;
    margin-top: 64px;
    transform: translateX(-8px);
  }

  .bring-table-image-container {
    min-height: 380px;
    align-self: stretch;
  }

  .bring-table-image-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
  }

  .magenta-creative-image-container {
    min-height: 380px;
    order: -1;
    align-self: stretch;
  }

  .magenta-creative-image-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
  }

  .magenta-creative-content {
    align-items: flex-start;
  }

  .magenta-creative-card {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }

  .analytics-white-image-container {
    min-height: 380px;
    order: -1;
    align-self: stretch;
  }

  .analytics-white-image-container img {
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
  }

  .analytics-white-content {
    align-items: flex-start;
  }

  .analytics-white-copy {
    width: 100%;
    max-width: 100%;
  }

  .analytics-white-copy p {
    max-width: 100%;
  }

  .talk-strip-action {
    justify-self: start;
  }

  .talk-strip-btn {
    width: 100%;
    max-width: 420px;
  }

  .footer-pastel-right {
    text-align: left;
  }

  .footer-pastel-right img {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  h2 {
    font-size: 32px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .brand img {
    width: 140px;
  }

  .hero-content h1 {
    font-size: 42px;
    white-space: normal;
  }

  .hero-content p {
    font-size: 16px;
  }

  .less-content h2 {
    font-size: 38px;
  }

  .less-content p {
    font-size: 16px;
  }

  .less-service-card {
    border-radius: 20px;
    padding: 16px;
  }

  .less-service-card h2 {
    font-size: 28px;
  }

  .less-service-card p {
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .live-insights {
    margin-top: 22px;
    gap: 12px;
  }

  .insight-metric {
    border-radius: 16px;
    padding: 14px 14px;
  }

  .insight-value {
    font-size: clamp(28px, 8vw, 40px);
  }

  .feature-card {
    min-height: 400px;
    border-radius: 18px;
  }

  .feature-card-inner {
    min-height: 400px;
  }

  .feature-image-container {
    height: 190px;
  }

  .feature-copy {
    padding: 16px;
  }

  .feature-copy h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .feature-copy p {
    font-size: 14px;
  }

  .bring-table {
    min-height: auto;
    padding-bottom: 88px;
  }

  .bring-table-copy h2 {
    margin-bottom: 16px;
    font-size: 34px;
    white-space: nowrap;
    margin-top: 40px;
    padding: 8px 12px;
    border-radius: 12px;
    transform: translateX(-4px);
  }

  .bring-table-copy h3 {
    margin-top: 16px;
    font-size: 22px;
  }

  .bring-table-copy p {
    font-size: 15px;
    max-width: 100%;
  }

  .bring-table-image-container {
    min-height: 280px;
  }

  .magenta-creative {
    min-height: auto;
    padding-bottom: 88px;
  }

  .magenta-creative-image-container {
    min-height: 280px;
  }

  .magenta-creative-card {
    padding: 0;
  }

  .magenta-creative-card h3 {
    font-size: 22px;
  }

  .magenta-creative-card p {
    font-size: 15px;
  }

  .analytics-white {
    min-height: auto;
    padding-bottom: 88px;
  }

  .analytics-white-image-container {
    min-height: 280px;
  }

  .analytics-white-copy h3 {
    font-size: 26px;
  }

  .analytics-white-copy p {
    font-size: 18px;
  }

  .talk-strip {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .client-testimonials {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .testimonials-header h2 {
    font-size: clamp(34px, 9vw, 42px);
  }

  .testimonials-header p {
    font-size: 15px;
  }

  .testimony-marquee {
    gap: 12px;
  }

  .testimony-track {
    gap: 12px;
    padding-right: 12px;
  }

  .testimony-card {
    width: min(86vw, 300px);
    min-height: 180px;
    padding: 15px 14px;
    border-radius: 14px;
  }

  .testimony-card p {
    font-size: 14px;
  }

  .talk-strip-copy h3 {
    font-size: 30px;
  }

  .talk-strip-copy p {
    font-size: 18px;
  }

  .talk-strip-btn {
    max-width: 100%;
    font-size: 15px;
    padding: 14px 18px;
  }

  .site-footer-pastel {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .footer-pastel-left h3 {
    font-size: 22px;
  }

  .footer-socials a {
    width: 50px;
    height: 50px;
  }

  .footer-pastel-right img {
    width: 210px;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 36px;
  }

  p {
    font-size: 18px;
  }

  .brand img {
    width: 156px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 20px;
  }

  .less-content h2 {
    font-size: 42px;
  }

  .less-content p {
    font-size: 19px;
  }

  .hero {
    min-height: auto;
  }

  .less-guessing {
    min-height: auto;
    padding-bottom: 88px;
  }
}
