:root {
  --bg: #f5f9ff;
  --bg-soft: #ecf3ff;
  --card: rgba(255, 255, 255, 0.72);
  --card-strong: rgba(255, 255, 255, 0.88);
  --card-solid: #f8fbff;
  --text: #0f172a;
  --muted: #64748b;
  --line: rgba(148, 163, 184, 0.22);
  --blue: #2563eb;
  --blue-deep: #1d4ed8;
  --indigo: #4338ca;
  --sky: #38bdf8;
  --green: #16a34a;
  --red: #ef4444;
  --yellow: #facc15;
  --shadow: 0 32px 90px rgba(29, 78, 216, 0.14);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-nav: 0 18px 40px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 8%, rgba(37, 99, 235, 0.15), transparent 28%),
    radial-gradient(circle at 10% 32%, rgba(56, 189, 248, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfdff 0%, #f4f8ff 100%);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.is-loading .site-header,
body.is-loading main,
body.is-loading .site-footer {
  opacity: 0;
  transform: translateY(18px);
}

.site-header,
main,
.site-footer {
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

body.is-ready .site-header,
body.is-ready main,
body.is-ready .site-footer {
  opacity: 1;
  transform: translateY(0);
}

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

button,
input,
textarea {
  font: inherit;
}

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

.ambient {
  position: fixed;
  z-index: -1;
  pointer-events: none;
  filter: blur(40px);
}

.ambient-one {
  top: 10rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  background: rgba(37, 99, 235, 0.13);
}

.ambient-two {
  left: -8rem;
  top: 34rem;
  width: 20rem;
  height: 20rem;
  background: rgba(67, 56, 202, 0.08);
}

.container {
  width: min(var(--container), calc(100vw - 2rem));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 6rem 0;
  scroll-margin-top: 110px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 1rem 0 0;
  will-change: transform;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-nav);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  min-width: 0;
}

.brand-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-subtext {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
}

.site-nav,
.nav-actions,
.hero-actions,
.dashboard-header,
.panel-head,
.dashboard-bottom,
.progress-item,
.footer-links {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 0.45rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.7);
}

.site-nav a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-actions {
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

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

.button-large {
  min-height: 56px;
  padding: 0 2rem;
  font-size: 1rem;
}

.button-primary {
  min-height: 48px;
  padding: 0 1.35rem;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.25);
}

.button-primary:hover {
  box-shadow: 0 24px 48px rgba(37, 99, 235, 0.34);
}

.button-secondary,
.button-ghost {
  min-height: 48px;
  padding: 0 1.2rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(148, 163, 184, 0.25);
  backdrop-filter: blur(10px);
}

.button-dark {
  color: #fff;
  background: #0f172a;
  box-shadow: var(--shadow-soft);
  margin-top: 10px;
}

.button-white {
  min-height: 52px;
  padding: 0 2rem;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.hero {
  padding-top: 4.2rem;
  min-height: 100vh;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-backdrop,
.section-glow {
  position: absolute;
  pointer-events: none;
}

.hero-gridlines {
  position: absolute;
  inset: 6rem 0 auto;
  height: 78%;
  opacity: 0.35;
  pointer-events: none;
  background:
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.9) 70%, transparent 100%);
  animation: driftGrid 18s linear infinite;
}

.hero-backdrop-one {
  top: -10%;
  right: -6%;
  width: 54vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 65%);
}

.hero-backdrop-two {
  left: -10%;
  top: 26%;
  width: 32vw;
  height: 32vw;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1), transparent 62%);
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 2rem;
  padding: 0.9rem 1.2rem;
  width: fit-content;
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--radius-pill);
  background: rgba(239, 246, 255, 0.88);
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.pulse-dot,
.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.35);
  animation: pulse 1.7s infinite;
}

.live-dot {
  background: var(--green);
}

.hero h1,
.section-heading h2,
.insights-copy h2 {
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.hero h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.3rem, 8vw, 6.6rem);
  font-weight: 900;
}

.hero h1 span,
.section-heading h2 span,
.insights-copy h2 span {
  display: block;
  color: var(--blue);
}

.hero-text,
.section-heading p,
.service-card p,
.contact-block p,
.insights-copy p,
.proof-card p,
.process-card p,
.faq-item p,
.insight-card p {
  color: var(--muted);
  line-height: 1.75;
  font-weight: 500;
}

.hero-text {
  max-width: 38rem;
  margin: 0 0 2rem;
  font-size: 1.04rem;
}

.hero-actions {
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

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

.mini-proof {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: var(--shadow-soft);
}

.mini-proof strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--blue);
}

.mini-proof span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  isolation: isolate;
  will-change: transform;
}

.dashboard-card,
.glass-panel,
.service-card,
.proof-card,
.process-card,
.insight-card,
.service-stack {
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: var(--card);
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow);
}

.dashboard-card {
  width: min(100%, 35rem);
  padding: 1.4rem;
  border-radius: 32px;
  transform: perspective(1200px) rotateY(11deg) rotateX(8deg);
  transform-style: preserve-3d;
  overflow: hidden;
  animation: dashboardFloat 7s ease-in-out infinite;
  will-change: transform;
}

.dashboard-sheen {
  position: absolute;
  inset: -30%;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 34%,
    rgba(255, 255, 255, 0.2) 46%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.16) 54%,
    transparent 66%
  );
  transform: translateX(-60%) rotate(8deg);
  animation: sheenSweep 5.5s ease-in-out infinite;
}

.dashboard-header {
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

.dashboard-dots {
  display: inline-flex;
  gap: 0.45rem;
}

.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.dot.red {
  background: #f87171;
}

.dot.yellow {
  background: var(--yellow);
}

.dot.green {
  background: #4ade80;
}

.dashboard-title,
.panel-head span,
.mini-panel > span,
.stat-card span,
.progress-item label,
.contact-link small,
label span,
.section-kicker,
.card-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.dashboard-title,
.stat-card span,
.contact-link small,
label span,
.card-kicker {
  color: #94a3b8;
}

.dashboard-live {
  gap: 0.4rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

.stat-card,
.chart-panel,
.mini-panel {
  background: rgba(248, 250, 252, 0.86);
  border-radius: 20px;
}

.stat-card {
  padding: 1rem 0.85rem;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--blue);
}

.chart-panel {
  padding: 1rem;
  margin-bottom: 0.95rem;
}

.panel-head {
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.panel-head strong {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
}

.line-chart {
  position: relative;
  height: 120px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.08), transparent 70%),
    repeating-linear-gradient(
      to top,
      rgba(148, 163, 184, 0.12) 0,
      rgba(148, 163, 184, 0.12) 1px,
      transparent 1px,
      transparent 28px
    );
}

.chart-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-svg path {
  fill: none;
  stroke: var(--blue);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 10px 18px rgba(37, 99, 235, 0.22));
}

.chart-point {
  display: none;
}

.line-point {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1.2px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  transform: translate(-50%, -50%);
}

.point-1 {
  left: 3%;
  top: 72%;
  animation: pointMove1 4.8s infinite;
}

.point-2 {
  left: 18%;
  top: 60%;
  animation: pointMove2 4.8s 0.18s infinite;
}

.point-3 {
  left: 34%;
  top: 68%;
  animation: pointMove3 4.8s 0.3s infinite;
}

.point-4 {
  left: 50%;
  top: 42%;
  animation: pointMove4 4.8s 0.1s infinite;
}

.point-5 {
  left: 66%;
  top: 46%;
  animation: pointMove5 4.8s 0.28s infinite;
}

.point-6 {
  left: 82%;
  top: 20%;
  animation: pointMove6 4.8s 0.15s infinite;
}

.dashboard-bottom {
  gap: 0.85rem;
}

.mini-panel {
  padding: 1rem;
}

.market-panel,
.campaigns-panel {
  flex: 1;
}

.candles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 0.4rem;
  margin-top: 0.75rem;
  min-height: 80px;
  justify-items: center;
}

.candle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6px;
  height: 52px;
  border-radius: 999px;
  transform-origin: center bottom;
}

.candle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background: currentColor;
  transform: translateX(-50%);
  opacity: 0.8;
  animation: wickMove 2.6s ease-in-out infinite;
}

.candle-body {
  position: absolute;
  bottom: 10px;
  display: block;
  width: 100%;
  height: 24px;
  border-radius: 999px;
  background: currentColor;
}

.candle.red {
  color: var(--red);
  background: var(--red);
}

.candle.green {
  color: var(--green);
  background: var(--green);
}

.candle.short {
  height: 28px;
}

.candle.mid {
  height: 40px;
}

.candle.tall {
  height: 56px;
}

.candle:nth-child(1) {
  animation: candleMoveA 2.8s ease-in-out infinite;
}

.candle:nth-child(1)::before,
.candle:nth-child(1) .candle-body {
  animation-delay: 0s;
}

.candle:nth-child(1) .candle-body {
  animation: candleBodyA 2.8s ease-in-out infinite;
}

.candle:nth-child(2) {
  animation: candleMoveB 3.1s ease-in-out infinite;
}

.candle:nth-child(2)::before,
.candle:nth-child(2) .candle-body {
  animation-delay: 0.2s;
}

.candle:nth-child(2) .candle-body {
  animation: candleBodyB 3.1s ease-in-out infinite;
}

.candle:nth-child(3) {
  animation: candleMoveC 2.6s ease-in-out infinite;
}

.candle:nth-child(3)::before,
.candle:nth-child(3) .candle-body {
  animation-delay: 0.38s;
}

.candle:nth-child(3) .candle-body {
  animation: candleBodyC 2.6s ease-in-out infinite;
}

.candle:nth-child(4) {
  animation: candleMoveA 3.2s ease-in-out infinite;
}

.candle:nth-child(4)::before,
.candle:nth-child(4) .candle-body {
  animation-delay: 0.56s;
}

.candle:nth-child(4) .candle-body {
  animation: candleBodyA 3.2s ease-in-out infinite;
}

.candle:nth-child(5) {
  animation: candleMoveB 2.9s ease-in-out infinite;
}

.candle:nth-child(5)::before,
.candle:nth-child(5) .candle-body {
  animation-delay: 0.74s;
}

.candle:nth-child(5) .candle-body {
  animation: candleBodyB 2.9s ease-in-out infinite;
}

.candle:nth-child(6) {
  animation: candleMoveC 2.5s ease-in-out infinite;
}

.candle:nth-child(6)::before,
.candle:nth-child(6) .candle-body {
  animation-delay: 0.92s;
}

.candle:nth-child(6) .candle-body {
  animation: candleBodyC 2.5s ease-in-out infinite;
}


.campaigns-panel {
  display: grid;
  gap: 0.5rem;
}

.progress-item {
  gap: 0.65rem;
}

.progress-item label {
  min-width: 3.4rem;
  letter-spacing: 0.06em;
  color: #475569;
}

.progress-item em {
  min-width: 2.5rem;
  color: #64748b;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.bar {
  flex: 1;
  height: 0.45rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
}

.bar b {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  animation: fill 2.2s ease forwards;
  animation-delay: 0.4s;
}

.floating-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  animation: float 3.4s ease-in-out infinite;
}

.floating-left {
  left: -2.2rem;
  bottom: -1.1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
}

.floating-right {
  right: -1.8rem;
  top: -1rem;
  padding: 1rem 1.1rem;
  animation-delay: 0.5s;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.08);
}

.hero-orbit-one {
  width: 18rem;
  height: 18rem;
  right: -3.5rem;
  top: 2rem;
  animation: spinOrbit 14s linear infinite;
}

.hero-orbit-one::before {
  width: 0.95rem;
  height: 0.95rem;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-orbit-one::after {
  width: 0.65rem;
  height: 0.65rem;
  bottom: 1.5rem;
  right: 2rem;
}

.hero-orbit-two {
  width: 26rem;
  height: 26rem;
  left: -4rem;
  bottom: -3rem;
  border-style: dashed;
  border-color: rgba(67, 56, 202, 0.16);
  animation: spinOrbitReverse 18s linear infinite;
}

.hero-orbit-two::before {
  width: 1rem;
  height: 1rem;
  top: 18%;
  right: 1.2rem;
}

.hero-orbit-two::after {
  width: 0.7rem;
  height: 0.7rem;
  left: 12%;
  bottom: 1.3rem;
}

.hero-signal {
  position: absolute;
  z-index: 2;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  animation: floatSignal 4.5s ease-in-out infinite;
}

.hero-signal span {
  display: block;
  margin-bottom: 0.3rem;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-signal strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.hero-signal-top {
  top: 4rem;
  left: -3rem;
}

.hero-signal-bottom {
  right: -2.5rem;
  bottom: 4.5rem;
  animation-delay: 0.7s;
}

.floating-card p {
  margin: 0;
  color: #475569;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.floating-card strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.positive {
  display: grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 14px;
  color: var(--green);
  background: rgba(34, 197, 94, 0.12);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.trust-strip > span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.trust-logos span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(241, 245, 249, 0.86);
  color: #334155;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 46rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-kicker {
  color: var(--blue);
  margin-bottom: 1rem;
}

.section-heading h2,
.insights-copy h2 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  font-weight: 900;
  margin-bottom: 1.3rem;
}

.section-heading p,
.insights-copy p {
  font-size: 1rem;
  margin: 0 auto;
}

.proof-grid,
.services-grid,
.process-grid,
.insight-panels {
  display: grid;
  gap: 1.5rem;
}

.proof-grid {
  grid-template-columns: 1.25fr 1fr 1fr;
}

.proof-card,
.process-card,
.insight-card {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
}

.featured-proof {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.76)),
    var(--card-strong);
}

.proof-card h3,
.service-card h3,
.cta-banner h3,
.contact-block h3,
.contact-form-panel h3,
.process-card h3,
.insight-card h3,
.service-stack h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.proof-card strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.bullet-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 1.2rem;
  color: #334155;
  font-weight: 600;
  line-height: 1.55;
}

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

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

.scoreboard article {
  padding: 1.4rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-soft);
}

.scoreboard strong {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  color: var(--blue);
}

.scoreboard span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

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

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: 28px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card:hover,
.proof-card:hover,
.process-card:hover,
.insight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 75px rgba(37, 99, 235, 0.18);
}

.service-card.featured {
  border-color: rgba(59, 130, 246, 0.35);
}

.service-card.featured .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
}

.service-badge {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  border-radius: 20px;
  background: #edf4ff;
  color: var(--blue);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.service-stack {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.6rem 1.8rem;
  border-radius: 28px;
}

.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.6rem;
  padding: 2.25rem 2.4rem;
  border-radius: 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(79, 70, 229, 0.94)),
    url("https://www.transparenttextures.com/patterns/stardust.png");
  box-shadow: 0 34px 75px rgba(37, 99, 235, 0.32);
}

.cta-banner p {
  margin: 0;
  max-width: 38rem;
  color: rgba(219, 234, 254, 0.95);
  line-height: 1.6;
  font-weight: 500;
}

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

.step-number {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.insights-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: center;
}

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

.faq-list {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}

.faq-item {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  position: relative;
  padding-right: 2rem;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.1rem;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0.9rem 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2rem;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 2rem;
}

.contact-block {
  padding: 0;
}

.glass-panel {
  padding: 2rem;
  border-radius: 30px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.contact-link strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 16px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-secondary {
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.05), rgba(255, 255, 255, 0.72)),
    var(--card);
}

.confirmation-note {
  margin-top: 1rem;
  color: #64748b;
  font-size: 0.95rem;
}

.confirmation-note::before {
  content: "OK";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
}

#lead-form {
  display: grid;
  gap: 1.25rem;
}

label {
  display: grid;
  gap: 0.65rem;
}

input,
textarea {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

input {
  min-height: 56px;
}

textarea {
  resize: vertical;
  min-height: 180px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  background: rgba(255, 255, 255, 0.92);
}

.site-footer {
  padding: 1rem 0 2rem;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.footer-brand p,
.footer-links a {
  font-weight: 800;
}

.footer-brand p {
  margin: 0 0 0.4rem;
  color: #334155;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

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

.footer-links a {
  color: #64748b;
}

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

.section-glow.top {
  top: 0;
  left: 50%;
  width: 50rem;
  height: 24rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 68%);
}

.section-glow.bottom {
  left: 50%;
  bottom: 0;
  width: 55rem;
  height: 26rem;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(79, 70, 229, 0.07), transparent 68%);
}

.reveal-up,
.reveal-right {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-right {
  transform: translateX(28px);
}

.is-visible {
  opacity: 1;
  transform: translate(0, 0);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.28);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 4px));
  }
}

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

@keyframes fill {
  to {
    width: var(--fill);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatSignal {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.015);
  }
}

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

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

@keyframes dashboardFloat {
  0%,
  100% {
    transform: perspective(1200px) rotateY(11deg) rotateX(8deg) translateY(0);
  }
  50% {
    transform: perspective(1200px) rotateY(8deg) rotateX(10deg) translateY(-8px);
  }
}

@keyframes sheenSweep {
  0%,
  100% {
    transform: translateX(-70%) rotate(8deg);
    opacity: 0;
  }
  15% {
    opacity: 0.2;
  }
  45% {
    transform: translateX(42%) rotate(8deg);
    opacity: 0.75;
  }
  70% {
    opacity: 0;
  }
}

@keyframes driftGrid {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(72px);
  }
}

@keyframes candleBreath {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.1);
  }
}

@keyframes candleBodyBreath {
  0%,
  100% {
    opacity: 0.92;
  }
  50% {
    opacity: 1;
  }
}

@keyframes pointMove1 {
  0%, 100% { top: 72%; }
  33% { top: 68%; }
  66% { top: 75%; }
}

@keyframes pointMove2 {
  0%, 100% { top: 60%; }
  33% { top: 54%; }
  66% { top: 66%; }
}

@keyframes pointMove3 {
  0%, 100% { top: 68%; }
  33% { top: 61%; }
  66% { top: 58%; }
}

@keyframes pointMove4 {
  0%, 100% { top: 42%; }
  33% { top: 35%; }
  66% { top: 48%; }
}

@keyframes pointMove5 {
  0%, 100% { top: 46%; }
  33% { top: 40%; }
  66% { top: 43%; }
}

@keyframes pointMove6 {
  0%, 100% { top: 20%; }
  33% { top: 24%; }
  66% { top: 18%; }
}

@keyframes wickMove {
  0%, 100% {
    top: 2px;
    bottom: 2px;
  }
  50% {
    top: 0;
    bottom: 0;
  }
}

@keyframes candleMoveA {
  0%, 100% {
    height: 28px;
    transform: translateY(3px);
  }
  25% {
    height: 54px;
    transform: translateY(-2px);
  }
  50% {
    height: 36px;
    transform: translateY(2px);
  }
  75% {
    height: 60px;
    transform: translateY(-3px);
  }
}

@keyframes candleMoveB {
  0%, 100% {
    height: 56px;
    transform: translateY(-2px);
  }
  25% {
    height: 34px;
    transform: translateY(3px);
  }
  50% {
    height: 62px;
    transform: translateY(-3px);
  }
  75% {
    height: 42px;
    transform: translateY(2px);
  }
}

@keyframes candleMoveC {
  0%, 100% {
    height: 40px;
    transform: translateY(1px);
  }
  25% {
    height: 58px;
    transform: translateY(-3px);
  }
  50% {
    height: 26px;
    transform: translateY(4px);
  }
  75% {
    height: 48px;
    transform: translateY(-1px);
  }
}

@keyframes candleBodyA {
  0%, 100% {
    height: 12px;
    bottom: 8px;
  }
  25% {
    height: 26px;
    bottom: 14px;
  }
  50% {
    height: 14px;
    bottom: 10px;
  }
  75% {
    height: 30px;
    bottom: 16px;
  }
}

@keyframes candleBodyB {
  0%, 100% {
    height: 24px;
    bottom: 18px;
  }
  25% {
    height: 12px;
    bottom: 8px;
  }
  50% {
    height: 32px;
    bottom: 20px;
  }
  75% {
    height: 18px;
    bottom: 12px;
  }
}

@keyframes candleBodyC {
  0%, 100% {
    height: 18px;
    bottom: 12px;
  }
  25% {
    height: 28px;
    bottom: 16px;
  }
  50% {
    height: 10px;
    bottom: 7px;
  }
  75% {
    height: 22px;
    bottom: 14px;
  }
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .proof-grid,
  .services-grid,
  .process-grid,
  .contact-grid,
  .insights-grid,
  .service-stack {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    order: 2;
  }

  .dashboard-card {
    transform: none;
  }

  .scoreboard {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-shell {
    flex-wrap: wrap;
    border-radius: 30px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .nav-actions {
    margin-left: auto;
  }
}

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

  .hero-actions,
  .nav-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .button-large,
  .button-white,
  .button-primary,
  .button-secondary,
  .button-ghost,
  .button-dark {
    width: 100%;
  }

  .hero-meta,
  .stats-grid,
  .dashboard-bottom,
  .insight-panels {
    grid-template-columns: 1fr;
    display: grid;
  }

  .floating-left,
  .floating-right,
  .hero-signal {
    position: static;
    margin-top: 1rem;
    animation: none;
  }

  .hero-visual {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-orbit {
    display: none;
  }

  .trust-strip,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100vw - 1.25rem));
  }

  .site-header {
    padding-top: 0.8rem;
  }

  .nav-shell {
    padding: 0.9rem;
  }

  .brand-text {
    font-size: 0.92rem;
  }

  .brand-subtext {
    font-size: 0.7rem;
  }

  .glass-panel,
  .service-card,
  .cta-banner,
  .dashboard-card,
  .proof-card,
  .process-card,
  .insight-card,
  .service-stack {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .service-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 1rem;
  }
}
