/* ekko single common stylesheet (consolidated). One merged :root (all tokens), no duplicate rules. */

:root {
  --color-primary: #0a66c2;
  --blue: #0a66c2;
  --blue-deep: #084a94;
  --blue-bright: #1e88f5;
  --blue-tint: #dbebfc;
  --lavender: #e0d8f5;
  --accent-sun: #fce78a;
  --color-white: #ffffff;
  --ink: #0a1a2e;
  --ink-soft: #475569;
  --ink-mute: #6b7280;
  --line: #e5e7eb;
  --bg-soft: #fafbfc;
  --bg-cool: #f5f8fc;
  --bg-deep: #0a1a2e;
  --success: #16a34a;
  --danger: #dc2626;
  --radius: 18px;
  --layer-blue: #2f6fe0;
  --layer-green: #34b36b;
  --layer-purple: #7c5cf0;
  --green: #16a34a;
  --green-tint: #dcfce7;
  --purple: #7c5cff;
  --purple-tint: #ece7ff;
}

/* =========================================================
         DESIGN TOKENS mirrored from getekko.app design system
      ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter Tight",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--ink);
  background: var(--color-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-style: italic;
  color: var(--color-primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(10, 102, 194, 0.25);
}

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

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(0px) !important;
  box-shadow: none !important;
}

.ekko-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: fit-content;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-word {
  font-family: "Source Sans 3", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  z-index: 520;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 50px;
  text-align: center;
}

.label {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--blue-tint);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 600;
}

.section-head h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #000;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hero {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 600px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero-container img {
width: 525px;
height: 535px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 12% 15%,
      rgba(10, 102, 194, 0.09),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 90% 45%,
      rgba(30, 136, 245, 0.08),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 55% 100%,
      rgba(224, 216, 245, 0.45),
      transparent 42%
    );
}

.partner-statement {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.partner-statement-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.li-mark {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: #0a66c2;
  color: #fff;
  font-family: "Inter Tight", sans-serif;
  font-weight: 900;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.partner-statement-text {
  font-family: "Source Sans 3", sans-serif;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--blue-tint);
  border: 1px solid rgba(10, 102, 194, 0.15);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-deep);
  text-transform: uppercase;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(10, 102, 194, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(10, 102, 194, 0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

h1.hero-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 22px;
  color: var(--ink);
}

.hero-title .highlight {
  font-style: italic;
  color: var(--color-primary);
  position: relative;
}

.hero-para {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 540px;
}

.quote-para {
  font-size: 16px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 26px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  align-items: center;
}

.hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}

.hero-meta span {
  color: #64748b;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-meta span::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

.intel-visual {
  background: linear-gradient(160deg, #f4f8fe, #eef3fb 60%, #f3f0fc);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 26px 26px;
  box-shadow: 0 40px 80px -40px rgba(10, 26, 46, 0.3);
}

.iv-title {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--layer-blue);
  text-align: center;
  line-height: 1.7;
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 6px;
}

.iv-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  border-radius: 3px;
  background: var(--layer-green);
}

.iv-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 58 / 47;
  margin: 0 auto;
}

.iv-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.disc {
  position: absolute;
  left: 50%;
  width: 46.5%;
  aspect-ratio: 270 / 92;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  animation: iv-float 6s ease-in-out infinite;
}

.disc-blue {
  top: 27.7%;
  background: radial-gradient(
    ellipse at 42% 28%,
    rgba(255, 255, 255, 0.9),
    rgba(120, 175, 255, 0.6) 55%,
    rgba(47, 111, 224, 0.5)
  );
  box-shadow:
    0 22px 45px -12px rgba(47, 111, 224, 0.55),
    inset 0 2px 8px rgba(255, 255, 255, 0.7);
}

.disc-green {
  top: 45.7%;
  background: radial-gradient(
    ellipse at 42% 28%,
    rgba(255, 255, 255, 0.9),
    rgba(130, 225, 175, 0.6) 55%,
    rgba(52, 179, 107, 0.5)
  );
  box-shadow:
    0 22px 45px -12px rgba(52, 179, 107, 0.5),
    inset 0 2px 8px rgba(255, 255, 255, 0.7);
  animation-delay: -2s;
}

.disc-purple {
  top: 63.8%;
  background: radial-gradient(
    ellipse at 42% 28%,
    rgba(255, 255, 255, 0.9),
    rgba(180, 160, 250, 0.6) 55%,
    rgba(124, 92, 240, 0.5)
  );
  box-shadow:
    0 22px 45px -12px rgba(124, 92, 240, 0.5),
    inset 0 2px 8px rgba(255, 255, 255, 0.7);
  animation-delay: -4s;
}

@keyframes iv-float {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, calc(-50% - 6px));
  }
}

.disc-icon {
  width: 30%;
  max-width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 16px rgba(10, 26, 46, 0.25);
}

.disc-blue .disc-icon {
  background: var(--layer-blue);
}

.disc-green .disc-icon {
  background: var(--layer-green);
}

.disc-purple .disc-icon {
  background: var(--layer-purple);
}

.disc-icon svg {
  width: 52%;
  height: 52%;
}

.callout-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.iv-base {
  position: absolute;
  left: 50%;
  top: 78%;
  width: 64%;
  aspect-ratio: 370 / 66;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, #ffffff, #eef2f8);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.55),
    0 0 0 22px rgba(235, 240, 248, 0.4),
    0 30px 40px -18px rgba(20, 40, 80, 0.22);
}

.iv-callout {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 18px 40px -18px rgba(10, 26, 46, 0.28);
}

.iv-callout b {
  font-family: "Source Sans 3", sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.iv-callout p {
  font-size: 12px;
  color: var(--ink-soft);
  line-height: 1.4;
  margin: 0;
}

.c-3 {
  left: 3.4%;
  top: 18.7%;
  width: 27%;
}

.c-3 b {
  color: var(--layer-blue);
}

.c-weekly {
  left: 75.5%;
  top: 40%;
  width: 23%;
}

.c-weekly b {
  color: var(--layer-green);
  font-size: 22px;
}

.c-tap {
  left: 5%;
  top: 62%;
  width: 27.5%;
}

.c-tap b {
  color: var(--layer-purple);
  font-size: 22px;
}

.iv-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  margin-top: 6px;
}

.iv-flow .fitem {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.iv-flow .fico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.iv-flow .fico svg {
  width: 16px;
  height: 16px;
}

.fico.blue {
  background: #e5effd;
  color: var(--layer-blue);
}

.fico.green {
  background: #e3f6ec;
  color: var(--layer-green);
}

.fico.li {
  background: #ece7fd;
  color: var(--layer-purple);
}

.iv-flow .farrow {
  color: #9aa7bd;
  font-weight: 700;
}

section.block {
  padding: 90px 0;
}

section.soft {
  background: var(--bg-soft);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

section.soft .problem-card {
  background: #fff;
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(10, 26, 46, 0.12);
}

.problem-card .num {
  /* font-family: "Source Sans 3", sans-serif; */
  font-size: 70px;
  font-weight: 600;
  color: var(--color-primary);
  opacity: 0.06;
  letter-spacing: -0.04em;
  line-height: 1;
  position: absolute;
  top: 0px;
  right: 10px;
}

.problem-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #000;
  max-width: 82%;
}

.problem-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.problem-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.08);
  font-size: 22px;
}

.problem-quote {
  font-family: "Source Sans 3", sans-serif;
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink);
  text-align: center;
  max-width: 860px;
  margin: 20px auto 0;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.problem-quote em {
  font-style: italic;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.solution-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 26px 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 50px -30px rgba(10, 26, 46, 0.22);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -28px rgba(10, 26, 46, 0.3);
}

.sc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sc-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.sc-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.solution-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #0d1b2e;
}

.solution-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.sc-art {
  margin: 22px 0;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sc-art img {
  width: 100%;
  height: 100%;
}

.sc-solves {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  color: var(--ink-mute);
  font-weight: 600;
}

.sc-solves b {
  font-weight: 700;
}

.accent-blue .sc-num {
  background: #e7f0fd;
  color: #2f6fe0;
}

.accent-blue .sc-tag {
  background: #e7f0fd;
  color: #2f6fe0;
}

.accent-blue .sc-solves b {
  color: #2f6fe0;
}

.accent-green .sc-num {
  background: #e3f6ec;
  color: #2a9d5f;
}

.accent-green .sc-tag {
  background: #e3f6ec;
  color: #2a9d5f;
}

.accent-green .sc-solves b {
  color: #2a9d5f;
}

.accent-purple .sc-num {
  background: #ece7fd;
  color: #6b4fe0;
}

.accent-purple .sc-tag {
  background: #ece7fd;
  color: #6b4fe0;
}

.accent-purple .sc-solves b {
  color: #6b4fe0;
}

#linkedin-integration {
  padding-top: 0;
}

.partner-band {
  /* margin-top: 26px; */
  border-radius: 24px;
  background: linear-gradient(120deg, #e9f1fc 0%, #eef1fb 55%, #edf3fc 100%);
  border: 1px solid var(--line);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pb-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

.pb-li,
.pb-shield {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.pb-li {
  width: 120px;
  height: 120px;
}

.pb-shield {
  width: 96px;
  height: 96px;
}

.pb-text {
  position: relative;
  z-index: 1;
}

.pb-text h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0d1b2e;
  margin-bottom: 14px;
}

.pb-text h4 em {
  color: #2f6fe0;
}

.pb-text p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 8px;
  max-width: 640px;
}

.pb-text p:last-child {
  margin-bottom: 0;
}

.layers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 44px;
}

.layer-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 28px 34px;
  background: #fff;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.layer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -24px rgba(10, 26, 46, 0.18);
}

.layer-card.c1 {
  --accent: var(--blue);
  --accent-tint: var(--blue-tint);
}

.layer-card.c2 {
  --accent: var(--green);
  --accent-tint: var(--green-tint);
}

.layer-card.c3 {
  --accent: var(--purple);
  --accent-tint: var(--purple-tint);
}

.layer-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}

.layer-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.layer-icon svg {
  width: 26px;
  height: 26px;
}

.layer-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 22px;
  font-weight: 600;
}

.layer-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}

.layer-card .knows {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 22px;
  line-height: 1.5;
}

.layer-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.layer-point {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.layer-point .chk {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--accent);
}

.layer-point p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

.layer-point p strong {
  color: var(--ink);
  font-weight: 600;
}

.flow-panel {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 40px 34px;
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 8px;
  align-items: center;
}

.dash-h {
  stroke: #9db6d6;
  stroke-width: 2;
  stroke-dasharray: 6 6;
  animation: flowdashx 0.8s linear infinite;
}

.dash-v {
  stroke: #9db6d6;
  stroke-width: 2;
  stroke-dasharray: 6 6;
  animation: flowdash 0.8s linear infinite;
}

.dash-head {
  fill: #6f8fbb;
}

@keyframes flowdash {
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes flowdashx {
  to {
    stroke-dashoffset: -24;
  }
}

.flow-legend {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px -20px rgba(10, 26, 46, 0.25);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.flow-leg-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.flow-leg-item .no {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  min-width: 20px;
}

.flow-leg-item h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 1px;
}

.flow-leg-item span {
  font-size: 13px;
  color: var(--ink-mute);
}

.flow-core {
  position: relative;
  display: flex;
  flex-direction: column;
}

.flow-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.flow-harrow {
  flex: 0 0 64px;
  height: 22px;
}

.flow-harrow svg {
  width: 100%;
  height: 22px;
  overflow: visible;
}

.flow-box {
  flex: 1;
  text-align: center;
  padding: 16px 14px;
  border-radius: 12px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.flow-box.b1 {
  background: #e8f1fb;
  color: var(--blue-deep);
  border: 1px solid rgba(10, 102, 194, 0.18);
}

.flow-box.b2 {
  background: #e6f6ec;
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.flow-box.b3 {
  background: #efeafc;
  color: #5b3fd6;
  border: 1px solid rgba(124, 92, 255, 0.18);
}

.flow-varrow {
  height: 30px;
  padding-left: 64px;
  display: flex;
}

.flow-varrow .vin {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-varrow svg {
  width: 18px;
  height: 28px;
  overflow: visible;
}

.flow-bracket {
  position: relative;
  height: 100%;
  min-height: 40px;
}

.flow-bracket svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-result {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
}

.flow-result .spark {
  width: 30px;
  height: 30px;
  color: var(--purple);
  margin-bottom: 14px;
}

.flow-result h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.flow-result p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.engine-bar {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #faf9ff, #f5f3ff);
  border-radius: 22px;
  padding: 30px 34px;
  /* margin-bottom: 44px; */
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 34px;
  align-items: center;
}

.engine-lead {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.engine-lead .sq {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}

.engine-lead .sq svg {
  width: 28px;
  height: 28px;
}

.engine-bar h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--purple);
}

.engine-bar h4 + p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.engine-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
}

.engine-item {
  text-align: center;
  width: 78px;
}

.engine-item .ic {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.engine-item.final .ic {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.engine-item .ic svg {
  width: 26px;
  height: 26px;
}

.engine-item span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.3;
  display: block;
}

.engine-op {
  margin-bottom: auto;
  margin-top: 10px;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-mute);
  align-self: center;
}

.delivery-bar {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 34px 36px;
  background: #fff;
  margin-bottom: 44px;
}

.delivery-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 34px;
}

.delivery-head svg {
  width: 18px;
  height: 18px;
  color: var(--accent-sun);
}

.delivery-head h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.delivery-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.delivery-step {
  text-align: center;
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.delivery-step .ic {
  position: relative;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: var(--bg-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.delivery-step.s2 .ic {
  color: var(--green);
}

.delivery-step.s3 .ic {
  color: var(--purple);
}

.delivery-step.s4 .ic {
  color: var(--blue);
}

.delivery-step .ic svg {
  width: 28px;
  height: 28px;
}

.delivery-step .badge {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-step.s2 .badge {
  background: var(--green);
}

.delivery-step.s3 .badge {
  background: var(--purple);
}

.delivery-step h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}

.delivery-step p {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.4;
}

.delivery-conn {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 -4px;
}

.delivery-conn svg {
  width: 70px;
  height: 16px;
  overflow: visible;
}

.delivery-conn .dline {
  stroke: var(--blue-bright);
  stroke-width: 2.4;
  stroke-dasharray: 6 6;
  stroke-linecap: round;
  animation: flowdashx 0.8s linear infinite;
}

.delivery-conn .dhead {
  fill: var(--blue-bright);
}

.stakeholders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  background: var(--bg-soft);
}

.stakeholder {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.stakeholder + .stakeholder {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.stakeholder .sh-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stakeholder.m .sh-icon {
  background: var(--blue-tint);
  color: var(--blue);
}

.stakeholder.l .sh-icon {
  background: var(--green-tint);
  color: var(--green);
}

.stakeholder.i .sh-icon {
  background: var(--purple-tint);
  color: var(--purple);
}

.stakeholder .sh-icon svg {
  width: 24px;
  height: 24px;
}

.stakeholder b {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  color: var(--ink);
  margin-bottom: 6px;
}

.stakeholder span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.steps-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}

section.soft .step {
  background: #fff;
}

.step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(10, 102, 194, 0.2);
  border-color: var(--blue);
}

.step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  display: inline-block;
  padding: 4px 10px;
  background: var(--blue-tint);
  border-radius: 6px;
}

.step h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #000;
}

.step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.step-connector {
  position: absolute;
  top: 46px;
  right: -19px;
  color: var(--color-primary);
  font-size: 20px;
  z-index: 2;
}

.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}

.duo-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  flex-direction: column;
  /* gap: 1.5rem; */
  padding: 26px 28px;
  overflow: hidden;
}
.duo-card-content {
  padding: 26px 28px;
}

.duo-card-image {
  width: 100%;
  overflow: hidden;
  /* background: #f5f5f5; */
}

.duo-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.duo-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.duo-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.checklist {
  max-width: 900px;
  margin: 34px auto 0;
}

.check-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.check-item:first-child {
  border-top: none;
}

.check-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--blue-tint);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.check-item b {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  color: #000;
  display: block;
  margin-bottom: 4px;
}

.check-item span {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.service-band {
  margin-top: 40px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  padding: 32px 36px;
}

.service-band .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-sun);
  margin-bottom: 10px;
}

.service-band h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.6;
  max-width: 860px;
}

.cal-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 36px 0;
}

.cal-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
  background: #fff;
  text-align: center;
}

.cal-item .date {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.cal-item b {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  display: block;
  margin-bottom: 4px;
  color: #000;
}

.cal-item span {
  font-size: 12.5px;
  color: var(--ink-mute);
}

.phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.phase {
  border-top: 3px solid var(--blue);
  background: var(--bg-soft);
  border-radius: 0 0 14px 14px;
  padding: 22px 24px;
}

.phase .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.phase p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  /* margin-bottom: 36px; */
}

.template-chip {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition:
    transform 0.25s,
    border-color 0.25s,
    color 0.25s;
}

/* .template-chip:hover {
  border-color: var(--blue);
  color: var(--color-primary);
} */

.template-chip small {
  display: block;
  margin-top: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  font-weight: 500;
}

.builtfor {
  padding: 90px 0;
  background: var(--bg-deep);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.builtfor::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.3), transparent 70%);
}

.builtfor::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 136, 245, 0.2), transparent 70%);
}

.builtfor > .container {
  position: relative;
  z-index: 1;
}

.builtfor .section-head h2 {
  color: var(--color-white);
}

.builtfor .section-head .label {
  color: #9ec5ef;
  background: rgba(10, 102, 194, 0.2);
}

.builtfor .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.role-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}

.role-card:hover {
  background: rgba(10, 102, 194, 0.15);
  border-color: var(--blue-bright);
  transform: translateY(-4px);
}

.role-mascot {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  border-radius: 18px;
  font-size: 28px;
}

.role-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.role-card p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.role-tag {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--blue-bright);
  margin-top: 16px;
  font-weight: 600;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 40px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  background: #fff;
}

.stat-card b {
  font-family: "Source Sans 3", sans-serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.stat-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 20px;
}

.compare-col {
  border-radius: var(--radius);
  padding: 28px 30px;
}

.compare-col.rented {
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.compare-col.owned {
  border: 1px solid var(--blue);
  background: linear-gradient(135deg, var(--blue-tint), #fff);
}

.compare-col h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #000;
}

.compare-col ul {
  list-style: none;
}

.compare-col li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 8px 0;
}

.compare-col.rented li::before {
  content: "✕";
  color: var(--danger);
  font-weight: 700;
}

.compare-col.owned li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
}

.flywheel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fly-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: #fff;
  position: relative;
}

.fly-step .n {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-family: "Source Sans 3", sans-serif;
}

.fly-step h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #000;
}

.fly-step p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.cta-banner {
  padding: 90px 24px;
  text-align: center;
  background: linear-gradient(140deg, var(--blue-deep), var(--color-primary));
  color: #fff;
}

.cta-banner h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  max-width: 760px;
  line-height: 1.08;
  margin-inline: auto;
}

.cta-banner h2 em {
  color: var(--accent-sun);
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 30px;
}

.cta-banner .hero-cta {
  justify-content: center;
}

.cta-banner .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.cta-banner.btn-ghost:hover {
  transform: translateY(2px);
  box-shadow: rgba(0, 0, 0, 0.6) 0px 14px 30px -14px;
}

.cta-banner .meta {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 760px;
  margin: 40px auto 0;
  text-align: left;
}

.contact-grid .c {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 20px 22px;
}

.contact-grid .c b {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--accent-sun);
  display: block;
  margin-bottom: 10px;
}

.contact-grid .c p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

footer {
  background: var(--bg-deep);
  color: #fff;
  padding: 70px 0 30px;
}

.footer-head {
  border-bottom: 1px solid var(--ink-mute);
  padding-bottom: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1.8fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
  line-height: 1.6;
}

footer .logo-word {
  color: #fff;
}

footer h6 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 10px;
}

footer li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
}

footer li a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: var(--blue-bright);
  text-decoration: none;
}

.certs {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.certs-divider {
  height: auto;
  width: 1px;
  background-color: #ffffff1a;
}

.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.cert-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  flex-shrink: 0;
}

.cert-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.cert-text strong {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

.cert-text small {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

.section-head em {
  font-style: italic;
  color: var(--blue);
}

.im-head-left {
  text-align: left;
  margin-left: 0;
  max-width: 800px;
}

.im-hero {
  padding: 80px 0 24px;
}

.im-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-weight: 600;
}

.im-hero .eyebrow span.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.im-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #000;
  margin-bottom: 20px;
}

.im-hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.im-hero p.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 800px;
}

.im-hero p.lede strong {
  color: var(--ink);
  font-weight: 600;
}

.im-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.im-stat {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  background: #fff;
}

.im-stat b {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 12px;
}

.im-stat b.word {
  font-size: 30px;
}

.im-stat p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.im-src {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.5;
}

.im-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.vs-col {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
}

.vs-col .cap {
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.vs-col .cap .k {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.vs-col .cap h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #000;
}

.vs-col.paid .cap {
  background: #fbfbfc;
}

.vs-col.paid .cap .k {
  color: var(--ink-mute);
}

.vs-col.own .cap {
  background: linear-gradient(120deg, #eef4fd, #f7f9fc);
}

.vs-col.own .cap .k {
  color: var(--blue);
}

.vs-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.vs-row:last-child {
  border-bottom: none;
}

.vs-row .mk {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.vs-row .mk svg {
  width: 14px;
  height: 14px;
}

.paid .vs-row .mk {
  background: #fdecec;
  color: var(--danger);
}

.own .vs-row .mk {
  background: var(--green-tint);
  color: var(--green);
}

.own .vs-row {
  color: var(--ink);
}

.im-budget {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.im-budget .copy p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}

.im-budget .copy p:last-child {
  margin-bottom: 0;
}

.im-budget .copy strong {
  color: var(--ink);
  font-weight: 600;
}

.im-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.im-tag {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  background: #fff;
}

.im-tag .ic {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.im-tag .ic svg {
  width: 20px;
  height: 20px;
}

.im-tag b {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  display: block;
}

.im-tag span {
  font-size: 12.5px;
  color: var(--ink-mute);
}

.im-band {
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  background: linear-gradient(135deg, #0a66c2 0%, #084a94 55%, #5b3fd6 130%);
  color: #fff;
}

.im-band h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 14px;
}

.im-band h2 em {
  font-style: italic;
}

.im-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.im-band .btn {
  background: #fff;
  color: var(--blue-deep);
  border: 1px solid #fff;
}

.im-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.im-cta .note {
  font-size: 13.5px;
  color: var(--ink-mute);
}

.cal-head-left {
  text-align: left;
  margin-left: 0;
  max-width: 760px;
}

.cal-hero {
  padding: 80px 0 24px;
}

.cal-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-weight: 600;
}

.cal-hero .eyebrow span.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.cal-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #000;
  margin-bottom: 20px;
  max-width: 16ch;
}

.cal-hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.cal-hero p.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 760px;
}

.cal-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.cal-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 30px;
  background: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.cal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -26px rgba(10, 26, 46, 0.18);
}

.cal-card.a {
  --a: var(--blue);
  --at: var(--blue-tint);
}

.cal-card.b {
  --a: var(--purple);
  --at: var(--purple-tint);
}

.cal-card .ic {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--at);
  color: var(--a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.cal-card .ic svg {
  width: 28px;
  height: 28px;
}

.cal-card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--a);
  font-weight: 600;
  margin-bottom: 8px;
}

.cal-card h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 12px;
}

.cal-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}

.cal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cal-chips span {
  font-size: 12.5px;
  color: var(--a);
  background: var(--at);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
}

.cal-year {
  position: relative;
  margin-top: 8px;
  padding-left: 8px;
}

.cal-year::before {
  content: "";
  position: absolute;
  left: 78px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--line);
}

.cal-event {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 26px;
  align-items: start;
  padding: 16px 0;
}

.cal-date {
  text-align: right;
  font-family: "JetBrains Mono", monospace;
}

.cal-date b {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.02em;
}

.cal-date span {
  font-size: 11px;
  color: var(--ink-mute);
}

.cal-node {
  position: absolute;
  left: 70px;
  top: 22px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--line);
  z-index: 1;
}

.cal-body {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  margin-left: 14px;
}

.cal-body h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin: 0 0 3px;
}

.cal-body .lab {
  font-size: 13px;
  color: var(--ink-mute);
}

.cal-body .pill {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
}

.ev-blue .cal-node {
  background: var(--blue);
}

.ev-blue .pill {
  background: var(--blue-tint);
  color: var(--blue);
}

.ev-green .cal-node {
  background: var(--green);
}

.ev-green .pill {
  background: var(--green-tint);
  color: var(--green);
}

.ev-purple .cal-node {
  background: var(--purple);
}

.ev-purple .pill {
  background: var(--purple-tint);
  color: var(--purple);
}

.cal-phases {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.phase .k {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.phase.p1 .k {
  background: var(--blue-tint);
  color: var(--blue);
}

.phase.p2 .k {
  background: var(--green-tint);
  color: var(--green);
}

.phase.p3 .k {
  background: var(--purple-tint);
  color: var(--purple);
}

/* .phase:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-mute);
  font-size: 20px;
  z-index: 2;
} */

.cal-band {
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  background: linear-gradient(135deg, #0a66c2 0%, #084a94 55%, #5b3fd6 130%);
  color: #fff;
}

.cal-band h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.cal-band h2 em {
  font-style: italic;
}

.cal-band p {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.cal-band .btn {
  background: #fff;
  color: var(--blue-deep);
  border: 1px solid #fff;
}

.cal-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.cal-cta .note {
  font-size: 13.5px;
  color: var(--ink-mute);
}

.ss-head-left {
  text-align: left;
  margin-left: 0;
  max-width: 780px;
}

.ss-hero {
  padding: 80px 0 24px;
}

.ss-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-weight: 600;
}

.ss-hero .eyebrow span.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.ss-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #000;
  margin-bottom: 20px;
}

.ss-hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.ss-hero p.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 780px;
}

.ss-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 46px;
}

.ss-stat {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  background: #fff;
}

.ss-stat b {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 10px;
}

.ss-stat span {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.ss-gap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.ss-gap .copy h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.ss-gap .copy p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}

.ss-gap .copy p:last-child {
  margin-bottom: 0;
}

.ss-gap .copy strong {
  color: var(--ink);
}

.ss-bars {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  padding: 30px 28px;
}

.ss-bar {
  margin-bottom: 26px;
}

.ss-bar:last-child {
  margin-bottom: 0;
}

.ss-bar .top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.ss-bar .top .name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.ss-bar .top .val {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.ss-bar .track {
  height: 14px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  overflow: hidden;
}

.ss-bar .fill {
  height: 100%;
  border-radius: 999px;
}

.ss-bar.old .val {
  color: var(--ink-mute);
}

.ss-bar.old .fill {
  width: 15%;
  background: linear-gradient(90deg, #c9d2de, #aeb9c8);
}

.ss-bar.new .val {
  color: var(--blue);
}

.ss-bar.new .fill {
  width: 85%;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue));
}

.ss-bar .note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 6px;
}

.ss-reasons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reason {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px;
  background: #fff;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.reason:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -26px rgba(10, 26, 46, 0.18);
}

.reason:first-child {
  grid-column: 1 / -1;
}

.reason .tick {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.reason .tick svg {
  width: 17px;
  height: 17px;
}

.reason h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.reason p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.ss-compound {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(120deg, #eef4fd, #f7f9fc);
  padding: 40px 44px;
  display: flex;
  gap: 26px;
  align-items: center;
}

.ss-compound .big {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(48px, 8vw, 84px);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 0.9;
  flex: 0 0 auto;
}

.ss-compound .t h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.ss-compound .t p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 620px;
}

.ss-band {
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  background: linear-gradient(135deg, #0a66c2 0%, #084a94 55%, #5b3fd6 130%);
  color: #fff;
}

.ss-band em,
.im-band em,
.cal-band em {
  color: var(--color-white);
}

.ss-band .figs {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ss-band .figs div {
  font-family: "Source Sans 3", sans-serif;
}

.ss-band .figs b {
  display: block;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--accent-sun);
  line-height: 1;
}

.ss-band .figs span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.ss-band h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(24px, 3.4vw, 36px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.12;
}

.ss-band h2 em {
  font-style: italic;
}

.ss-band .btn {
  background: #fff;
  color: var(--blue-deep);
  border: 1px solid #fff;
  margin-top: 6px;
}

.ss-src {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.ss-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.ss-cta .note {
  font-size: 13.5px;
  color: var(--ink-mute);
}

.hx-head-left {
  /* text-align: left; */
  margin-left: 0;
  max-width: 760px;
}

.hx-hero {
  padding: 80px 0 24px;
}

.hx-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-weight: 600;
}

.hx-hero .eyebrow span.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.hx-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #000;
  margin-bottom: 20px;
}

.hx-hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.hx-hero p.lede {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 740px;
}

.hx-layers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.hx-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 28px 32px;
  background: #fff;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.hx-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -26px rgba(10, 26, 46, 0.18);
}

.hx-card.c1 {
  --a: var(--blue);
  --at: var(--blue-tint);
}

.hx-card.c2 {
  --a: var(--green);
  --at: var(--green-tint);
}

.hx-card.c3 {
  --a: var(--purple);
  --at: var(--purple-tint);
}

.hx-card .num {
  font-family: "JetBrains Mono", monospace;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--a);
  margin-bottom: 10px;
}

.hx-card .ic {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--at);
  color: var(--a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-card .ic svg {
  width: 26px;
  height: 26px;
}

.hx-card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--a);
  font-weight: 600;
  margin-bottom: 20px;
}

.hx-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 12px;
}

.hx-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

.hx-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hx-chips span {
  font-size: 12px;
  color: var(--a);
  background: var(--at);
  border-radius: 999px;
  padding: 6px 11px;
  font-weight: 600;
}

.hx-flow {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 40px 34px;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 8px;
  align-items: center;
}

@keyframes flowy {
  to {
    stroke-dashoffset: -24;
  }
}

@keyframes flowx {
  to {
    stroke-dashoffset: -24;
  }
}

.hx-legend {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px -20px rgba(10, 26, 46, 0.25);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hx-leg {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hx-leg .dot {
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.hx-leg .no {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-soft);
  min-width: 20px;
}

.hx-leg h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #000;
  margin: 0 0 1px;
}

.hx-leg span {
  font-size: 13px;
  color: var(--ink-mute);
}

.hx-core {
  display: flex;
  flex-direction: column;
}

.hx-row {
  display: flex;
  align-items: center;
}

.hx-harrow {
  flex: 0 0 64px;
  height: 22px;
}

.hx-harrow svg {
  width: 100%;
  height: 22px;
  overflow: visible;
}

.hx-box {
  flex: 1;
  text-align: center;
  padding: 16px 14px;
  border-radius: 12px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.hx-box.b1 {
  background: #e8f1fb;
  color: var(--blue-deep);
  border: 1px solid rgba(10, 102, 194, 0.18);
}

.hx-box.b2 {
  background: #e6f6ec;
  color: #166534;
  border: 1px solid rgba(22, 163, 74, 0.18);
}

.hx-box.b3 {
  background: #efeafc;
  color: #5b3fd6;
  border: 1px solid rgba(124, 92, 255, 0.18);
}

.hx-varrow {
  height: 30px;
  padding-left: 64px;
  display: flex;
}

.hx-varrow .vin {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-varrow svg {
  width: 18px;
  height: 28px;
  overflow: visible;
}

.hx-bracket {
  position: relative;
  height: 100%;
  min-height: 40px;
}

.hx-bracket svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hx-result {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 24px;
}

.hx-result .spark {
  width: 30px;
  height: 30px;
  color: var(--purple);
  margin-bottom: 14px;
}

.hx-result h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hx-result p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hx-engine {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #faf9ff, #f5f3ff);
  border-radius: 22px;
  padding: 30px 34px;
  display: grid;
  grid-template-columns: 1.1fr 1.5fr;
  gap: 34px;
  align-items: center;
}

.hx-eng-lead {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.hx-eng-lead .sq {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
}

.hx-eng-lead .sq svg {
  width: 28px;
  height: 28px;
}

.hx-engine h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--purple);
}

.hx-engine h4 + p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hx-eng-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
}

.hx-eng-item {
  text-align: center;
  width: 80px;
}

.hx-eng-item .ic {
  width: 52px;
  height: 52px;
  margin: 0 auto 8px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.hx-eng-item.final .ic {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}

.hx-eng-item .ic svg {
  width: 26px;
  height: 26px;
}

.hx-eng-item span {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.3;
  display: block;
}

.hx-op {
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-mute);
  align-self: center;
  padding-top: 12px;
}

.hx-delivery {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 30px 34px 36px;
  background: #fff;
}

.hx-del-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  margin-bottom: 34px;
}

.hx-del-head svg {
  width: 18px;
  height: 18px;
  color: var(--accent-sun);
}

.hx-del-head h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.hx-del-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
}

.hx-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.hx-step .ic {
  position: relative;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: var(--bg-cool);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.hx-step.s2 .ic {
  color: var(--green);
}

.hx-step.s3 .ic {
  color: var(--purple);
}

.hx-step.s4 .ic {
  color: var(--blue);
}

.hx-step .ic svg {
  width: 28px;
  height: 28px;
}

.hx-step .badge {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-step.s2 .badge {
  background: var(--green);
}

.hx-step.s3 .badge {
  background: var(--purple);
}

.hx-step h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  margin: 0 0 4px;
}

.hx-step p {
  font-size: 12.5px;
  color: var(--ink-mute);
  line-height: 1.4;
}

.hx-conn {
  flex: 0 0 70px;
  align-self: flex-start;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hx-conn svg {
  width: 70px;
  height: 16px;
  overflow: visible;
}

.hx-conn .dline {
  stroke: var(--blue-bright);
  stroke-width: 2.4;
  stroke-dasharray: 6 6;
  stroke-linecap: round;
  animation: flowx 0.8s linear infinite;
}

.hx-conn .dhead {
  fill: var(--blue-bright);
}

.hx-teams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hx-team {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  background: #fff;
}

.hx-team .sh {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.hx-team.m .sh {
  background: var(--blue-tint);
  color: var(--blue);
}

.hx-team.l .sh {
  background: var(--green-tint);
  color: var(--green);
}

.hx-team.i .sh {
  background: var(--purple-tint);
  color: var(--purple);
}

.hx-team .sh svg {
  width: 24px;
  height: 24px;
}

.hx-team h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #000;
  margin-bottom: 8px;
}

.hx-team p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.hx-cta {
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  background: linear-gradient(135deg, #0a66c2 0%, #084a94 55%, #5b3fd6 130%);
  color: #fff;
}

.hx-cta h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.08;
}

.hx-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.hx-cta .btn {
  background: #fff;
  color: var(--blue-deep);
  border: 1px solid #fff;
}

.block {
  padding: 96px 0;
}

.block.tight {
  padding: 72px 0;
}

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

header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand .dot {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.brand .dot svg {
  width: 15px;
  height: 15px;
}

.brand small {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  font-weight: 500;
  text-transform: uppercase;
  margin-left: 2px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(10, 102, 194, 0.6);
}

.btn.ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
}

.btn.big {
  padding: 15px 28px;
  font-size: 16px;
  border-radius: 14px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 em {
  font-style: italic;
  color: var(--blue);
}

.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.5;
  z-index: 0;
}

.hero-glow.a {
  background: #cfe2fb;
  top: -220px;
  right: -120px;
}

.hero-glow.b {
  background: #e7defb;
  bottom: -260px;
  left: -160px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 96px 0 88px;
  max-width: 860px;
}

/* .hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
  font-weight: 600;
}

.hero .eyebrow span.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(22, 163, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
  }
} */

.hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 14px;
}

.hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.hero p.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 660px;
  margin-bottom: 34px;
}

.hero-cta .note {
  font-size: 13.5px;
  color: var(--ink-mute);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
}

.hero-stat {
  border-left: 2px solid var(--line);
  padding-left: 16px;
}

.hero-stat b {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-stat span {
  font-size: 13.5px;
  color: var(--ink-mute);
}

.cost-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 46px;
  align-items: center;
}

.cost-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cost-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cost-item .x {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fdecec;
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.cost-item .x svg {
  width: 15px;
  height: 15px;
}

.cost-item h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
}

.cost-item p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cost-figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.figure {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 22px;
  background: #fff;
}

.figure b {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}

.figure span {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.sol-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 28px;
  background: #fff;
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.sol-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -26px rgba(10, 26, 46, 0.18);
}

.sol-card.c1 {
  --a: var(--blue);
  --at: var(--blue-tint);
}

.sol-card.c2 {
  --a: var(--green);
  --at: var(--green-tint);
}

.sol-card.c3 {
  --a: var(--purple);
  --at: var(--purple-tint);
}

.sol-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--at);
  color: var(--a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

.sol-icon svg {
  width: 26px;
  height: 26px;
}

.sol-card .tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--a);
  font-weight: 600;
  margin-bottom: 12px;
}

.sol-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.sol-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.teams {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.team {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  background: var(--bg-soft);
}

.team .sh {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.team.m .sh {
  background: var(--blue-tint);
  color: var(--blue);
}

.team.l .sh {
  background: var(--green-tint);
  color: var(--green);
}

.team.i .sh {
  background: var(--purple-tint);
  color: var(--purple);
}

.team .sh svg {
  width: 24px;
  height: 24px;
}

.team h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.team p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.block.dark {
  background: var(--bg-deep);
  color: #fff;
}

.block.dark .section-head h2 {
  color: #fff;
}

.block.dark .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.block.dark .label {
  background: rgba(255, 255, 255, 0.08);
  color: #cfe2fb;
}

.results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.result {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 30px 24px;
  background: rgba(255, 255, 255, 0.03);
}

.result b {
  display: block;
  font-family: "Source Sans 3", sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--accent-sun);
}

.result span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.faq {
  max-width: 820px;
  margin: 0 auto;
}

details.qa {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

details.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

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

details.qa summary .ic {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  color: var(--blue);
  font-size: 18px;
}

details.qa[open] summary .ic {
  transform: rotate(45deg);
}

details.qa p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 700px;
}

.cta-band {
  border-radius: 28px;
  padding: 64px 48px;
  text-align: center;
  background: linear-gradient(135deg, #0a66c2 0%, #084a94 55%, #5b3fd6 130%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.08;
}

.cta-band p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.cta-band .btn {
  background: #fff;
  color: var(--blue-deep);
  border-color: #fff;
}

.cta-band .btn:hover {
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.4);
}

footer.site {
  border-top: 1px solid var(--line);
  padding: 40px 0;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.foot-inner .brand {
  font-size: 18px;
}

.foot-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: var(--ink-mute);
}

.foot-copy {
  font-size: 13px;
  color: var(--ink-mute);
}

.sol-head {
  text-align: left;
  margin-left: 0;
  max-width: 760px;
}

.sx-hero {
  padding: 80px 0 20px;
}

.sx-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
  font-weight: 600;
}

.sx-hero .eyebrow span.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.sx-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #000;
  margin-bottom: 20px;
  max-width: 16ch;
}

.sx-hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.sx-hero p.lede {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 720px;
}

.sx-exp {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 42px;
}

.sx-exp .card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 26px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sx-exp .card .ic {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sx-exp .card .ic svg {
  width: 24px;
  height: 24px;
}

.sx-exp .card h5 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
}

.sx-exp .card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.sx-exp .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
  font-size: 26px;
  font-weight: 300;
}

.solution-card.accent-blue {
  --a: var(--blue);
  --at: var(--blue-tint);
}

.solution-card.accent-green {
  --a: var(--green);
  --at: var(--green-tint);
}

.solution-card.accent-purple {
  --a: var(--purple);
  --at: var(--purple-tint);
}

.solution-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 34px;
  border-radius: 0 4px 4px 0;
  background: var(--a);
}

.solution-card > p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}

.sx-note {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  color: var(--ink-soft);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 22px;
}

.sx-note b {
  color: var(--ink);
}

.sx-note .k {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue);
  background: var(--blue-tint);
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.sx-next {
  margin-top: 8px;
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  background: linear-gradient(135deg, #0a66c2 0%, #084a94 55%, #5b3fd6 130%);
  color: #fff;
}

.sx-next .kicker {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #cfe2fb;
  margin-bottom: 14px;
}

.sx-next h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.sx-next h2 em {
  font-style: italic;
}

.sx-next p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

.sx-next .btn {
  background: #fff;
  color: var(--blue-deep);
  border: 1px solid #fff;
}

.nav-links a.active {
  color: var(--blue);
  font-weight: 600;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}



.block.alt {
  background: var(--bg-soft);
}


.tpl-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 44px 0;
}
.tpl-pillar {
  background: #fff;
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 14px;
  padding: 26px 24px;
}
.tpl-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eef4ff;
  color: #0a66c2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.tpl-pillar-icon svg {
  width: 20px;
  height: 20px;
}
.tpl-pillar h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: #0f172a;
}
.tpl-pillar p {
  font-size: 14px;
  color: var(--ink-soft, #64748b);
  line-height: 1.55;
  margin: 0;
}

.template-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 999px;
  padding: 10px;
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.tpl-narrative {
  font-size: 14px;
  font-weight: 500;
  color: #0f172a;
  white-space: nowrap;
}
.tpl-join {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}
.tpl-visual {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a66c2;
  background: #eef4ff;
  border-radius: 999px;
  padding: 5px 11px;
  white-space: nowrap;
}

.tpl-caption {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute, #94a3b8);
  font-style: italic;
  margin: 16px 0 0;
}

.tpl-pullquote {
  margin-top: 16px;
  font-weight: 600;
  color: #0f172a;
}

.cta-inline {
  margin-top: 40px;
  text-align: center;
}
.cta-inline-head {
  font-size: 17px;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 16px;
}


/* ===================== */
.stat-source {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-mute, #94a3b8);
  font-style: italic;
  margin: -12px 0 44px;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}
.compare-col {
  border-radius: 16px;
  padding: 28px 28px 24px;
  border: 1px solid var(--line, #e2e8f0);
}
.compare-col.rented {
  background: #fdf5f4;
  border-color: #f3d9d6;
}
.compare-col.owned {
  background: #f3faf5;
  border-color: #cdebd6;
}
.compare-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.rented .compare-tag {
  background: #fbe1de;
  color: #a13f34;
}
.owned .compare-tag {
  background: #d9f0e0;
  color: #1e7a43;
}
.compare-col h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #0f172a;
}
.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.compare-col li {
  font-size: 14.5px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
  color: #334155;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a66c2;
}
.compare-vs svg {
  width: 26px;
  height: 26px;
}

.budget-block {
  display: flex;
  gap: 20px;
  margin-top: 44px;
  background: #fff;
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 16px;
  padding: 30px 32px;
}
.budget-mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef4ff;
  color: #0a66c2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.budget-mark svg {
  width: 22px;
  height: 22px;
}
.budget-block h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #0f172a;
}
.budget-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft, #64748b);
  margin: 0;
}

.compound-quote {
  text-align: center;
  margin-top: 48px;
}
.compound-dots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  height: 28px;
  margin-bottom: 18px;
}
.compound-dots span {
  display: block;
  width: 8px;
  border-radius: 3px;
  background: #0a66c2;
  opacity: 0.35;
}
.compound-dots span:nth-child(1) {
  height: 8px;
}
.compound-dots span:nth-child(2) {
  height: 14px;
  opacity: 0.55;
}
.compound-dots span:nth-child(3) {
  height: 20px;
  opacity: 0.78;
}
.compound-dots span:nth-child(4) {
  height: 28px;
  opacity: 1;
}

.compound-sub {
  font-size: 15px;
  color: var(--ink-soft, #64748b);
  margin-top: 8px;
}

.cta-inline {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/**
 * COMBINED STYLESHEET
 * Merges styles from both "ann" (announcements) and "cg" (content-generation) components
 * Organized by functional sections for clarity and maintenance
 */

/* ============================================================================
   HERO SECTIONS
   ============================================================================ */

/* Announcements Hero */
.ann-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.ann-hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 8% 10%,
      rgba(10, 102, 194, 0.08),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 94% 50%,
      rgba(124, 58, 237, 0.07),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(224, 216, 245, 0.4),
      transparent 40%
    );
}

.ann-hero-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.ann-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}

.ann-hero h1 em {
  color: var(--color-primary);
  font-style: italic;
}

.ann-hero .hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 36px;
}

.ann-hero .hero-cta {
  justify-content: center;
}

.ann-hero .hero-meta {
  justify-content: center;
  margin-top: 20px;
}

.ann-hero .hero-meta span::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 6px;
}

/* Content Generation Hero */
.cg-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.cg-hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 8% 10%,
      rgba(10, 102, 194, 0.08),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 92% 50%,
      rgba(30, 136, 245, 0.07),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(224, 216, 245, 0.4),
      transparent 40%
    );
}

.cg-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cg-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}

.cg-hero h1 em {
  color: var(--color-primary);
  font-style: italic;
}

.cg-hero .hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 36px;
}

.cg-hero .hero-cta {
  justify-content: center;
}

.cg-hero .hero-meta {
  justify-content: center;
  margin-top: 20px;
}

.cg-hero .hero-meta span {
  color: var(--ink-mute);
  font-size: 13px;
}

.cg-hero .hero-meta span::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 6px;
}

/* ============================================================================
   USP BAND (Unique Selling Proposition - Announcements Only)
   ============================================================================ */

.usp-band {
  background: var(--ink);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.usp-band::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(10, 102, 194, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.usp-band::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.usp-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.usp-overline {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-sun);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.usp-overline::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent-sun);
}

.usp-text h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 20px;
}

.usp-text h2 em {
  color: var(--accent-sun);
  font-style: italic;
}

.usp-text p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
}

/* Flow steps on the right */
.usp-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.usp-step {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.usp-step:last-child {
  border-bottom: none;
}

.usp-step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-sun);
  background: rgba(252, 231, 138, 0.1);
  border: 1px solid rgba(252, 231, 138, 0.2);
  border-radius: 6px;
  padding: 4px 8px;
  flex-shrink: 0;
  margin-top: 2px;
  letter-spacing: 0.06em;
}

.usp-step-text h5 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.usp-step-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================================
   FEATURE ROWS (Common to Both)
   ============================================================================ */

.feat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.feat-row:first-of-type {
  padding-top: 40px;
}
.feat-row:last-of-type {
  border-bottom: none;
  padding-bottom: 40px;
}

.feat-row.reverse {
  direction: rtl;
}

.feat-row.reverse > * {
  direction: ltr;
}

.feat-text .feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  background: var(--blue-tint);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.feat-text h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 16px;
}

.feat-text h2 em {
  color: var(--color-primary);
  font-style: italic;
}

.feat-text p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 480px;
}

.feat-detail {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feat-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.feat-point-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.feat-point-icon svg {
  width: 12px;
  height: 12px;
}

/* ============================================================================
   FEATURE VISUAL CARDS
   ============================================================================ */

.feat-visual {
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-height: 410px;
}

.feat-visual img {
  border-radius: 18px;
  width: 100%;
  height: 100%;
}
.feat-visual svg {
  width: 100%;
  height: 100%;
}

/* Visual Background Themes */
.vis-blue {
  background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 100%);
}

.vis-purple {
  background: linear-gradient(145deg, #ede9fe 0%, #f5f3ff 100%);
}

.vis-teal {
  background: linear-gradient(145deg, #ccfbf1 0%, #f0fdf4 100%);
}

.vis-amber {
  background: linear-gradient(145deg, #fef9c3 0%, #fffbeb 100%);
}

.vis-slate {
  background: linear-gradient(145deg, #f1f5f9 0%, #f8fafc 100%);
}

.vis-indigo {
  background: linear-gradient(145deg, #e0e7ff 0%, #eef2ff 100%);
}

.vis-rose {
  background: linear-gradient(145deg, #ffe4e6 0%, #fff1f2 100%);
}

/* ============================================================================
   PROOF STRIPS / STATISTICS SECTIONS
   ============================================================================ */

/* Announcements Proof Strip (Dark Background) */
.ann-proof-strip {
  background: linear-gradient(140deg, var(--blue-deep), var(--color-primary));
  padding: 60px 0;
  color: #fff;
}

.ann-proof-strip .section-head h2 {
  color: #fff;
}

.ann-proof-strip .section-head p {
  color: rgba(255, 255, 255, 0.75);
}

.ann-proof-strip .label {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.ann-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.ann-proof-cell {
  background: rgba(255, 255, 255, 0.04);
  padding: 44px 40px;
  text-align: center;
  transition: background 0.2s;
}

.ann-proof-cell:hover {
  background: rgba(255, 255, 255, 0.09);
}

.ann-proof-num {
  font-family: "Source Sans 3", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-sun);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.ann-proof-cell p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
  margin-inline: auto;
}

.ann-proof-source {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 10px;
  font-style: italic;
  display: block;
}

/* Content Generation Proof Strip (Light Background) */
.cg-proof-strip {
  padding: 60px 0;
  color: var(--ink);
}

.cg-proof-strip .section-head h2 {
  color: var(--ink);
}

.cg-proof-strip .section-head p {
  color: var(--ink);
}

.cg-proof-strip .label {
  color: var(--color-primary);
  background: var(--blue-tint);
}

.cg-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.cg-proof-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: background 0.2s;
}

.cg-proof-cell:hover {
  background: rgba(255, 255, 255, 0.09);
}

.cg-proof-num {
  font-family: "Source Sans 3", sans-serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.cg-proof-cell p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

.cg-proof-source {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 8px;
  font-style: italic;
  display: block;
}

/* Generic proof strip (fallback) */
.proof-strip {
  padding: 60px 0;
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
}

.proof-cell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  text-align: center;
  transition: background 0.2s;
}

.proof-cell:hover {
  background: rgba(255, 255, 255, 0.09);
}

.proof-num {
  font-family: "Source Sans 3", sans-serif;
  font-size: 54px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}

.proof-cell p {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

.proof-source {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 8px;
  font-style: italic;
  display: block;
}


/* ============================================================================
   NAVIGATION DROPDOWN PANEL SYSTEM
   (extends base .ekko-nav rules above)
   ============================================================================ */

.ekko-nav .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-menu-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex: 1;
  margin-left: 40px;
}

.nav-current {
  color: var(--color-primary);
  font-weight: 600;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-arrow {
  line-height: 0;
}
.nav-arrow svg {
  transition: transform 0.2s;
  fill: #000;
}
.nav-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 40px -8px rgba(0, 0, 0, 0.16);
  padding: 8px 0;
  min-width: 220px;
  z-index: 300;
  border: 1px solid rgba(0, 0, 0, 0.07);
}
.nav-dropdown.open .nav-dropdown-menu {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.875rem;
  color: #222;
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
}
.nav-dropdown-menu a:hover {
  background: #f0f5ff;
  color: var(--color-primary);
}

/* Hamburger animation states */
.nav-inner.nav-open .mobile-menu-toggle .hamburger:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-inner.nav-open .mobile-menu-toggle .hamburger:nth-child(2) {
  opacity: 0;
}
.nav-inner.nav-open .mobile-menu-toggle .hamburger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================================
   PAGE HEROES Pricing / inner pages
   ============================================================================ */

.page-hero {
  padding: 96px 0 64px;
  text-align: center;
}

.page-hero h1 {
    font-family: "Source Sans 3", sans-serif;
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.04;
    letter-spacing: -0.04em;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 20px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--color-primary);
}

.page-hero .lead {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 32px;
}

.page-hero .hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Resources page hero */
.res-hero {
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}

.res-hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 10% 15%,
      rgba(10, 102, 194, 0.07),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 90% 60%,
      rgba(124, 58, 237, 0.06),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(224, 216, 245, 0.35),
      transparent 40%
    );
}

.res-hero-inner {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.res-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 18px;
  color: var(--ink);
}

.res-hero h1 em {
  color: var(--color-primary);
}

.res-hero p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}
    .tpl-hero {
      padding: 90px 0 80px;
      position: relative;
      overflow: hidden;
    }
/* Compliance page hero */
.comp-hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.comp-hero .hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 6% 10%,
      rgba(10, 102, 194, 0.08),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 94% 55%,
      rgba(10, 102, 194, 0.07),
      transparent 45%
    ),
    radial-gradient(
      ellipse at 50% 100%,
      rgba(219, 235, 252, 0.45),
      transparent 40%
    );
}

.comp-hero-inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.comp-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(38px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 20px;
}

.comp-hero h1 em {
  color: var(--color-primary);
  font-style: italic;
}

.comp-hero .hero-sub {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 36px;
}

.comp-hero .hero-cta {
  justify-content: center;
}
.comp-hero .hero-meta {
  justify-content: center;
  margin-top: 20px;
}
.comp-hero .hero-meta span::before {
  content: "✓";
  color: var(--color-primary);
  font-weight: 700;
  margin-right: 6px;
}

/* ============================================================================
   VISUAL BACKGROUNDS additional themes
   ============================================================================ */

.vis-ink {
  background: linear-gradient(145deg, #0a1a2e 0%, #162040 100%);
}
.vis-blue2 {
  background: linear-gradient(145deg, #dbeafe 0%, #eff6ff 100%);
} /* alias */

/* ============================================================================
   TRUST BAR Compliance page
   ============================================================================ */

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  background: var(--bg-soft);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  white-space: nowrap;
}

.trust-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--blue-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-item-icon svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--line);
}

/* ============================================================================
   CERT STRIP Compliance page dark band
   ============================================================================ */

.cert-strip {
  background: var(--ink);
  padding: 64px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cert-strip::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(10, 102, 194, 0.18),
    transparent 70%
  );
  pointer-events: none;
}

.cert-strip::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(10, 102, 194, 0.12),
    transparent 70%
  );
  pointer-events: none;
}

.cert-strip-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cert-strip-text .cs-overline {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #60a5fa;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cert-strip-text .cs-overline::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: #60a5fa;
}

.cert-strip-text h2 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}

.cert-strip-text h2 em {
  color: #60a5fa;
  font-style: italic;
}
.cert-strip-text p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.cert-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cert-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 20px;
  transition: background 0.2s;
}

.cert-card:hover {
  background: rgba(255, 255, 255, 0.09);
}

.cert-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(96, 165, 250, 0.15);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.cert-card-icon svg {
  width: 18px;
  height: 18px;
}

.cert-card h5 {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.cert-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================================
   BEFORE / AFTER STRIP
   ============================================================================ */

.ba-strip {
  margin-top: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 20px 50px -24px rgba(10, 26, 46, 0.14);
}

.ba-strip-head,
.ba-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 44px 1.4fr;
  align-items: stretch;
}

.ba-strip-head {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.ba-strip-head .ba-col-shift {
  padding: 16px 24px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
}

.ba-strip-head .ba-col {
  padding: 16px 24px;
  display: flex;
  align-items: center;
}
.ba-strip-head .ba-col-before {
  grid-column: 2 / 4;
}

.ba-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
}

.ba-tag-before {
  background: #fee2e2;
  color: #b91c1c;
}
.ba-tag-after {
  background: #dcfce7;
  color: #15803d;
}

.ba-row {
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}
.ba-row:last-child {
  border-bottom: none;
}
.ba-row:hover {
  background: #fafcff;
}

.ba-shift {
  padding: 22px 24px;
  font-family: "Source Sans 3", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
}

.ba-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background: #eef4ff;
  border-radius: 6px;
  padding: 3px 7px;
  flex-shrink: 0;
}

.ba-col {
  padding: 22px 24px;
  font-size: 14.5px;
  line-height: 1.55;
}

.ba-before {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: rgba(185, 28, 28, 0.35);
  text-decoration-thickness: 1px;
}

.ba-after {
  color: #1e293b;
  font-weight: 500;
}

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.ba-arrow svg {
  width: 22px;
  height: 22px;
}

.ba-footnote {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--ink-mute);
  font-style: italic;
  text-align: center;
}

/* ============================================================================
   COMPARISON COLUMNS
   ============================================================================ */

.compare {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  align-items: center;
  gap: 0;
  margin-top: 8px;
}

.compare-col {
  border-radius: 16px;
  padding: 28px 28px 24px;
  border: 1px solid var(--line);
}

.compare-col.rented {
  background: #fdf5f4;
  border-color: #f3d9d6;
}
.compare-col.owned {
  background: #f3faf5;
  border-color: #cdebd6;
}

.compare-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.rented .compare-tag {
  background: #fbe1de;
  color: #a13f34;
}
.owned .compare-tag {
  background: #d9f0e0;
  color: #1e7a43;
}

.compare-col h4 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #0f172a;
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.compare-col li {
  font-size: 14.5px;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
  color: #334155;
}

.compare-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.compare-vs svg {
  width: 26px;
  height: 26px;
}

/* ============================================================================
   BUDGET ARGUMENT BLOCK
   ============================================================================ */

.budget-block {
  display: flex;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 32px;
}

.budget-mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #eef4ff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.budget-mark svg {
  width: 22px;
  height: 22px;
}
.budget-block h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #0f172a;
}
.budget-block p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================================
   PROOF STRIP HELPERS
   ============================================================================ */

.stat-source {
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-mute);
  font-style: italic;
  margin: -12px 0 0;
}

.stat-source-line {
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 12px;
  font-style: italic;
}

.compound-quote {
  text-align: center;
  margin-top: 56px;
}

.compound-dots {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6px;
  height: 28px;
  margin-bottom: 18px;
}

.compound-dots span {
  display: block;
  width: 8px;
  border-radius: 3px;
  background: var(--color-primary);
  opacity: 0.35;
}

.compound-dots span:nth-child(1) {
  height: 8px;
}
.compound-dots span:nth-child(2) {
  height: 14px;
  opacity: 0.55;
}
.compound-dots span:nth-child(3) {
  height: 20px;
  opacity: 0.78;
}
.compound-dots span:nth-child(4) {
  height: 28px;
  opacity: 1;
}

.compound-quote .problem-quote {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 auto;
}

.compound-quote .problem-quote em {
  font-style: italic;
  color: var(--color-primary);
}
.compound-sub {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 10px;
}

/* ============================================================================
   CTA HELPERS
   ============================================================================ */

.cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================================
   PRICING PAGE Cards, FAQ
   ============================================================================ */

.pricing-section {
  padding-bottom: 80px;
}

.pricing-section .container {
  max-width: 800px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 10px 25px -5px rgba(0, 0, 0, 0.05),
    0 8px 10px -6px rgba(0, 0, 0, 0.01);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.04);
}

.pricing-card.featured {
  border: 2px solid var(--color-primary);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.plan-price {
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  letter-spacing: -0.02em;
}

.plan-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mute);
}

.plan-desc {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  /* min-height: 45px; */
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-features li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 15px;
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.faq-title {
  text-align: center;
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
  color: var(--ink);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-question::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-mute);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease-out,
    opacity 0.3s ease-out,
    margin-top 0.3s ease;
  opacity: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

/* ============================================================================
   RESOURCES PAGE White paper card, audit, content grid
   ============================================================================ */

/* White paper card */
.wp-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 12px 40px rgba(10, 102, 194, 0.06);
}

.wp-preview {
  background: linear-gradient(145deg, #0a1a2e 0%, #162040 100%);
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.wp-preview::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(10, 102, 194, 0.25),
    transparent 70%
  );
  pointer-events: none;
}

.wp-preview::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(124, 58, 237, 0.15),
    transparent 70%
  );
  pointer-events: none;
}

.wp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
  width: fit-content;
  margin-bottom: 26px;
  position: relative;
}

.wp-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60a5fa;
}

.wp-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
}

.wp-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.wp-stats {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.wp-stat-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 22px;
  font-weight: 600;
  color: #60a5fa;
  display: block;
}

.wp-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
  display: block;
}

.wp-form-side {
  padding: 52px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wp-form-heading {
  font-family: "Source Sans 3", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  /* margin-bottom: 6px; */
}

.wp-form-sub {
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 26px;
  line-height: 1.5;
}

/* Form inputs */
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 5px;
}

.form-group label .req {
  color: var(--danger);
  font-weight: 600;
  margin-left: 2px;
}

.form-group input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.1);
}

.form-group input::placeholder {
  color: #b0b8c4;
}

.btn-download {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  padding: 13px 24px;
  font-size: 15px;
  font-family: inherit;
}

.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 12px;
  text-align: center;
}

.wp-success {
  text-align: center;
  padding: 20px 0;
}
.wp-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Audit scorecard */
.audit-card {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.audit-progress {
  height: 4px;
  background: #f1f5f9;
}

.audit-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), #7c5cff);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.audit-body {
  padding: 42px 46px 46px;
}
.audit-question {
  display: none;
}
.audit-question.active {
  display: block;
}

.audit-q-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.audit-q-text {
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 26px;
}

.audit-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.audit-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 17px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 15px;
  color: var(--ink-soft);
}

.audit-option:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.audit-option.selected {
  border-color: var(--color-primary);
  background: rgba(10, 102, 194, 0.04);
  color: var(--ink);
}

.audit-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--line);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s;
}

.audit-option.selected .audit-radio {
  border-color: var(--color-primary);
  background: var(--color-primary);
}
.audit-option.selected .audit-radio::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

.audit-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid #f1f5f9;
}

.audit-nav-counter {
  font-size: 13px;
  color: var(--ink-mute);
  font-family: "JetBrains Mono", monospace;
}

.btn-audit {
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition:
    transform 0.2s,
    opacity 0.2s;
}

.btn-audit-next {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(10, 102, 194, 0.2);
}
.btn-audit-next:hover {
  transform: translateY(-1px);
}
.btn-audit-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}
.btn-audit-back {
  background: transparent;
  color: var(--ink-mute);
}
.btn-audit-back:hover {
  color: var(--ink-soft);
}

/* Audit result */
.audit-result {
  display: none;
  text-align: center;
}
.audit-result.active {
  display: block;
}

.result-score-ring {
  width: 140px;
  height: 140px;
  margin: 0 auto 24px;
  position: relative;
}

.result-score-ring svg {
  transform: rotate(-90deg);
}
.score-bg {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 8;
}
.score-fill {
  fill: none;
  stroke: url(#scoreGrad);
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s ease;
}

.score-number {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.score-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.score-label-text {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 4px;
}
.result-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.result-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 12px;
}

.result-barrier {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  font-size: 13px;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 24px;
}

.result-cta-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Content/resources cards */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.content-card-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.content-card-thumb.bg-1 {
  background: linear-gradient(135deg, #dbeafe, #ede9fe);
}
.content-card-thumb.bg-2 {
  background: linear-gradient(135deg, #e0e7ff, #dbeafe);
}
.content-card-thumb.bg-3 {
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
}

.thumb-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-icon svg {
  width: 26px;
  height: 26px;
  opacity: 0.5;
}

.coming-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-mute);
  backdrop-filter: blur(6px);
}

.content-card-body {
  padding: 22px;
}

.content-card-tag {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.content-card-title {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}

.content-card-desc {
  font-size: 14px;
  color: var(--ink-mute);
  line-height: 1.55;
}

/* ============================================================================
   LINKEDIN POST PREVIEW MOCKUP
   ============================================================================ */

.li-post {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  font-family: "Inter Tight", sans-serif;
  max-width: 550px;
}

.li-post-header {
  display: flex;
  align-items: start;
  gap: 10px;
  padding: 12px 12px 8px;
}

.li-post-avatar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.li-post-avatar-placeholder {
  width: 44px;
}

.li-post-avatar-placeholder img {
  width: 100%;
  border-radius: 50px;
}

.li-post-meta-name {
  font-size: 14px;
  font-weight: 600;
  color: #000000e6;
}
.li-post-meta-sub {
  font-size: 12px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}
.li-post-dot {
  font-size: 10px;
  color: #999;
}

.li-post-globe-icon {
  color: #666;
}
.li-post-globe-icon svg {
  width: 14px;
  height: 14px;
}

.li-post-more-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #666;
  padding: 4px 8px;
  border-radius: 4px;
  line-height: 1;
  transition:
    background 0.15s,
    color 0.15s;
}

.li-post-more-btn:hover {
  background: #e1e1e1;
  font-size: 20px;
  color: #252525;
}

.li-post-body {
  padding: 0 12px 12px;
}
.li-post-title {
  font-size: 14px;
  font-weight: 600;
  color: #000000e6;
  margin-bottom: 8px;
  line-height: 1.4;
}
.li-post-text {
  font-size: 14px;
  color: #000000cc;
  line-height: 1.55;
}
.li-post-text p {
  margin-bottom: 10px;
  font-size: 14px;
}
.li-post-text p:last-child {
  margin-bottom: 0;
}

.li-post-see-more {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}
.li-post-see-more:hover {
  text-decoration: underline;
}

.li-post-banner {
  padding: 16px 0;
}

.li-post-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 50%,
      rgba(255, 60, 60, 0.08) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 50%,
      rgba(0, 180, 180, 0.06) 0%,
      transparent 70%
    ),
    #111827;
}

.li-post-banner-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
}

.li-post-banner-diagram {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  height: 130px;
  opacity: 0.75;
}

.li-post-banner-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-left: -20px;
}

.li-post-speed-arrow {
  display: flex;
  align-items: center;
  position: relative;
}

.li-post-arrow-body {
  background: #00bfa5;
  padding: 14px 22px 14px 32px;
  clip-path: polygon(
    0 0,
    calc(100% - 18px) 0,
    100% 50%,
    calc(100% - 18px) 100%,
    0 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
}

.li-post-speed-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  font-family: "IBM Plex Sans", sans-serif;
}

.li-post-tangle-overlay {
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  z-index: 3;
}

.li-post-without-strategy {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.li-post-ws-without {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.2;
}
.li-post-ws-strategy {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.2;
}

.li-post-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 12px;
}

.li-post-bookmark-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition:
    color 0.15s,
    background 0.15s;
}

.li-post-bookmark-btn:hover {
  color: var(--color-primary);
  background: #e8f0fe;
}

.li-post-use-btn {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 600;
  font-family: "IBM Plex Sans", sans-serif;
  cursor: pointer;
  transition:
    background 0.15s,
    transform 0.1s;
}

.li-post-use-btn:hover {
  transform: translateY(-1px);
}
.li-post-use-btn:active {
  transform: translateY(0);
}
.li-post-banner img {
  width: 100%;
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */

.testi-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.testi-heading {
  text-align: center;
  max-width: 600px;
}

.testi-heading span {
  display: inline-block;
  color: var(--purple);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.testi-heading h2 {
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.testi-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 1000px;
}

.testi-blur-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, #fff, transparent);
  z-index: 2;
  pointer-events: none;
}
.testi-blur-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #fff, transparent);
  z-index: 2;
  pointer-events: none;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  height: 100%;
}
.testi-col {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.testi-track {
  display: flex;
  flex-direction: column;
}

.testi-card {
  background: #fff;
  border: 1px solid #ede9fe;
  border-radius: 12px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.testi-card p {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testi-author strong {
  color: var(--ink);
  font-size: 13px;
  display: block;
}
.testi-author span {
  color: #999;
  font-size: 12px;
}

/* Testimonial card (owl / wider layout) */
.testimonial-section {
  position: relative;
  padding: 100px 0;
  border-radius: 20px;
  margin: 0 50px;
  overflow: hidden;
}

.testimonial-card {
  background: #fff;
  border: 0.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 28px 28px 24px;
  position: relative;
  min-height: 260px;
  max-width: 380px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testi-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 48px;
  line-height: 1;
  color: var(--purple);
  opacity: 0.12;
  font-family: Georgia, serif;
}

.stars {
  color: #f59e0b;
  font-size: 15px;
  margin-bottom: 16px;
}

.testimonial-card .user {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  padding-top: 18px;
}

.testimonial-card .user img {
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card .user h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}
.testimonial-card .user span {
  font-size: 12px;
  color: #888;
}

.user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.user img {
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
}
.user h5 {
  margin: 0;
  font-size: 16px;
}
.user span {
  font-size: 13px;
  color: #777;
}

.custom-nav {
  width: 40px;
  height: 40px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.custom-nav:hover {
  background: #333;
}

.owl-nav {
  position: absolute;
  top: 43%;
  width: 100%;
  transform: translateY(-50%);
}
.owl-nav button {
  position: absolute;
  background: none !important;
  border: none;
}
.owl-nav .owl-prev {
  left: -25px;
}
.owl-nav .owl-next {
  right: -25px;
}

/* ============================================================================
   MISC LEGACY / SHARED
   ============================================================================ */

.iso-logo-col {
  background: #edf5ff;
  border: 1px solid #6aadff;
  padding: 54px;
  border-radius: 10px;
}
.brand-section {
  background: #dbdbdb2b;
}

.trust-section {
  padding: 40px 20px;
}
.trust-title {
  font-size: 24px;
  letter-spacing: 1.5px;
  color: #65696e;
  font-weight: 500;
  margin-bottom: 24px;
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  align-items: center;
}
.trust-items span {
  font-size: 24px;
  font-weight: 600;
  color: #2c3e50;
  position: relative;
  padding: 0 10px;
}

.template-section {
  background: linear-gradient(45deg, #ffeffa 25%, #ffffff 68%, #f2e1ff 100%);
}

section.section.grid-section {
  background: linear-gradient(45deg, #ffeffa 20%, #ffffff 54%, #f2e1ff 100%);
  margin-top: 150px;
  padding-bottom: 150px;
}

.ekko-logo-text {
  width: 120px;
}

.vi-1 {
  padding: 0;
  margin: 0 0 -8px 0;
  border-radius: 10px;
}

.video-col {
  border-radius: 10px;
  background: #fff;
  padding: 24px;
}

.bab-preview.preview-lead {
  width: 100%;
}

/* ============================================================================
   SCROLL TO TOP
   ============================================================================ */

.scroll-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
  transition:
    transform 0.2s,
    opacity 0.2s;
  z-index: 200;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
}


/* ── About Hero ── */
.about-hero {
  padding: 80px 0 60px;
  background: linear-gradient(165deg, var(--bg-soft) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--blue-tint), transparent 70%);
  opacity: 0.6;
}

.about-hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.about-hero h1 {
  font-family: "Source Sans 3", sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--ink);
}

.about-hero h1 em {
  font-style: italic;
  color: var(--blue);
}

.about-hero p {
  font-size: 20px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 32px;
}

.about-hero .hero-cta {
  justify-content: center;
}

/* ── Credential strip ── */
.cred-strip {
  padding: 0 0 20px;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.cred-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.cred-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -15px rgba(10, 26, 46, 0.12);
}

.cred-card strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.cred-card span {
  font-size: 12.5px;
  color: var(--ink-mute);
  font-weight: 500;
}

/* ── Team / CAP Digisoft section ── */
.team-section {
  padding-top: 80px;
  padding-bottom: 100px;
  background: #fff;
}

.team-hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: 0 20px 60px -15px rgba(10, 26, 46, 0.08);
  position: relative;
  overflow: hidden;
}

.team-hero-card::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--blue-tint), transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.team-hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.team-hero-left h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
}

.team-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 32px;
  padding: 8px 16px;
  background: var(--bg-soft);
  border-radius: 999px;
  border: 1px solid var(--line);
}

.team-location svg {
  color: var(--blue);
  flex-shrink: 0;
}

.team-description {
  margin-bottom: 36px;
}

.team-description p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 16px;
}

.team-description p:last-child {
  margin-bottom: 0;
}

.team-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.team-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.3s;
}

.team-feature-item:hover {
  transform: translateX(4px);
}

.team-feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.team-feature-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-feature-item span {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
}

.team-hero-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.legacy-card {
  background: linear-gradient(135deg, #f5f8fc 0%, #eaf2fb 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legacy-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.legacy-card:hover .legacy-image {
  transform: scale(1.05);
}

.compliance-card {
  background: linear-gradient(135deg, #eaf2fb 0%, #dbebfc 100%);
  border: 1px solid rgba(10, 102, 194, 0.2);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.compliance-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.3;
}

.compliance-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.compliance-badges img {
  width: 100px;
  height: auto;
  object-fit: contain;
  transition:
    transform 0.3s,
    filter 0.3s;
}

.compliance-badges img:hover {
  transform: translateY(-4px) scale(1.08);
  filter: brightness(1.05);
}

/* ── LinkedIn Partner Section ── */
.linkedin-partner-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.linkedin-partner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--line) 50%,
    transparent 100%
  );
}

.partner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
}

.partner-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.partner-badge-container img {
  position: relative;
  z-index: 1;
}

.partner-details h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.2;
}

.partner-details h3 em {
  color: #0a66c2;
  font-style: italic;
}

.partner-intro {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-left: 20px;
  border-left: 3px solid #0a66c2;
}

.partner-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: #0a66c2;
  box-shadow: 0 8px 24px -4px rgba(10, 102, 194, 0.12);
  transform: translateX(4px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #e8f4ff 0%, #d6ebff 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  color: #0a66c2;
}

.benefit-content h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.benefit-content p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* ── Mission Section ── */
.mission-section {
  padding: 100px 0;
  background: var(--bg-soft);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.mission-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  height: 100%;
}

.mission-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-tint), var(--lavender));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.mission-card h3 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 16px;
}

.mission-card p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 12px;
}

.mission-card p:last-child {
  margin-bottom: 0;
}

/* ── Timeline Certified Posture (dark) ── */
.timeline-section {
  padding: 100px 0;
  background: var(--bg-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.timeline-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(10, 102, 194, 0.3), transparent 70%);
}

.timeline-section::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 136, 245, 0.2), transparent 70%);
}

.timeline-section > .container {
  position: relative;
  z-index: 1;
}

.timeline-section .section-head {
  max-width: 760px;
  margin-bottom: 60px;
}

.timeline-section .section-head .label {
  color: #9ec5ef;
  background: rgba(10, 102, 194, 0.2);
}

.timeline-section .section-head h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 54px);
  margin-bottom: 18px;
}

.timeline-section .section-head h2 em {
  color: var(--blue-bright);
}

.timeline-section .section-head p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.55;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.timeline-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.timeline-item:hover {
  background: rgba(10, 102, 194, 0.15);
  border-color: var(--blue-bright);
  transform: translateY(-4px);
}

.timeline-year {
  font-family: "Source Sans 3", sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue-bright);
  margin-bottom: 12px;
  line-height: 1;
}

.timeline-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(10, 102, 194, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #9ec5ef;
}

.timeline-item-icon svg {
  width: 26px;
  height: 26px;
}

.timeline-item h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: #fff;
}

.timeline-item p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

/* ── Values Section ── */
.values-section {
  padding: 100px 0;
  background: #fff;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(10, 26, 46, 0.12);
  border-color: var(--blue);
}

.value-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--line);
}

.value-card h4 {
  font-family: "Source Sans 3", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── Section-head overrides (about page uses larger sizes than base) ── */
.section-head {
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
}

/* ── desktop-br utility ── */
.desktop-br {
  display: inline;
}

/* =========================================================
   RESPONSIVE  ·  all @media rules live below this banner
   ========================================================= */

/* ── (max-width: 768px)  →  .duo-card-image ── */
@media (max-width: 768px) {
  .duo-card-image {
  border-radius: 6px;
  }
}

/* ── (max-width: 820px)  →  .nav-links, .im-stats, .im-vs, .cal-two, .im-budget, .cal-phases ── */
@media (max-width: 820px) {
  .nav-links a {
  padding: 14px 4px;
  }
  .im-stats {
  grid-template-columns: 1fr;
  }
  .im-vs {
  grid-template-columns: 1fr;
  }
  .cal-two {
  grid-template-columns: 1fr;
  }
  .im-budget {
  grid-template-columns: 1fr;
  gap: 28px;
  }
  .cal-phases {
  grid-template-columns: 1fr;
  }
  /* .phase:not(:last-child)::after {
  content: "↓";
  right: 50%;
  top: auto;
  bottom: -15px;
  transform: translateX(50%);
  } */
  .ss-stats {
  grid-template-columns: 1fr;
  }
  .ss-gap {
  grid-template-columns: 1fr;
  gap: 30px;
  }
  .ss-reasons {
  grid-template-columns: 1fr;
  }
  .reason:first-child {
  grid-column: auto;
  }
  .hx-engine {
  grid-template-columns: 1fr;
  }
  .hx-eng-flow {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  }
  .hx-del-flow {
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  }
  .hx-conn {
  transform: rotate(90deg);
  margin: 0 auto;
  }
  .hx-teams {
  grid-template-columns: 1fr;
  }
  .partner-band {
  flex-direction: column;
  text-align: center;
  align-items: center;
  }
  .pb-net {
  display: none;
  }
  .pb-text p {
  margin-left: auto;
  margin-right: auto;
  }
}

/* ── (max-width: 480px)  →  .certs ── */
@media (max-width: 480px) {
  .certs {
  justify-content: center;
  flex-wrap: nowrap;
  }
  .hx-eng-lead .sq {
    display: none;
  }
  .engine-lead .sq {
    display: none;
  }
}

/* ── (max-width: 375px)  →  .cert-badge ── */
@media (max-width: 375px) {
  .cert-badge {
  width: 100%;
  justify-content: center;
  }
}

/* ── (max-width: 960px)  →  .partner-statement, .hero-grid-inner, .hero-cta, .hero-meta, .hero-grid, .problem-grid ── */
@media (max-width: 960px) {
  .partner-statement {
  justify-content: center;
  }
  .hero-grid-inner {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  }
  .hero-cta,
  .hero-meta {
  justify-content: center;
  }
  .hero-grid {
  grid-template-columns: 1fr;
  gap: 40px;
  }
  .problem-grid,
  .solution-grid,
  .layers-grid,
  .stakeholders,
  .template-grid,
  .stat-grid,
  .cal-timeline,
  .phases {
  grid-template-columns: 1fr 1fr;
  }
  .steps-4,
  .flywheel {
  grid-template-columns: 1fr 1fr;
  }
  .role-grid {
  grid-template-columns: 1fr 1fr;
  }
  .step-connector {
  display: none;
  }
  .footer-grid {
  grid-template-columns: 1fr 1fr;
  }
}

/* ── (max-width: 640px)  →  .mobile-menu-toggle, .problem-grid, .solution-grid, .layers-grid, .stakeholders, .template-grid ── */
@media (max-width: 640px) {
  .mobile-menu-toggle {
  display: flex;
  }
  .problem-grid,
  .solution-grid,
  .layers-grid,
  .stakeholders,
  .template-grid,
  .stat-grid,
  .cal-timeline,
  .phases,
  .steps-4,
  .flywheel,
  .role-grid,
  .duo,
  .compare,
  .contact-grid,
  .footer-grid {
  grid-template-columns: 1fr;
  }
  .hero-stat-row {
  grid-template-columns: repeat(3, 1fr);
  }
  section.block {
  padding: 64px 0;
  }
  .hero-flow {
  font-size: 11px;
  }
}

/* ── (max-width: 700px)  →  .ss-compound ── */
@media (max-width: 700px) {
  .ss-compound {
  flex-direction: column;
  text-align: center;
  align-items: center;
  }
}

/* ── (max-width: 900px)  →  .hx-layers, .hx-harrow, .hx-varrow, .intelligence-layer, .hx-flow, .hx-bracket ── */
@media (max-width: 900px) {
  .hx-layers {
  grid-template-columns: 1fr;
  }
  .hx-harrow {
  display: none;
  }
  .hx-varrow {
  padding-left: 0;
  }
  .intelligence-layer {
  display: block !important;
  }

  .hx-flow {
  grid-template-columns: 1fr;
  gap: 24px;
  }
  .hx-bracket {
  display: none;
  }

  .layers-grid {
  grid-template-columns: 1fr;
  }
  .flow-panel {
  grid-template-columns: 1fr;
  gap: 24px;
  }
  .flow-bracket {
  display: none;
  }
  .engine-bar {
  grid-template-columns: 1fr;
  }
  .engine-flow {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  }
  .delivery-flow {
  flex-direction: column;
  align-items: stretch;
  gap: 22px;
  }
  .delivery-conn {
  transform: rotate(90deg);
  margin: 0 auto;
  }
  .stakeholders {
  grid-template-columns: 1fr;
  }
  .stakeholder + .stakeholder {
  border-left: none;
  padding-left: 0;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  }

  .partner-band {
  grid-template-columns: auto 1fr;
  gap: 28px;
  }
  .pb-shield {
  display: none;
  }
}

/* ── (max-width: 560px)  →  .partner-band, .pb-li, .pb-text ── */
@media (max-width: 560px) {
  .partner-band {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 34px 28px;
  }
  .pb-li {
  margin: 0 auto;
  }
  .pb-text p {
  margin-inline: auto;
  }
}

/* ── (max-width: 500px)  →  .iv-flow, .iv-callout ── */
@media (max-width: 500px) {
  .iv-flow {
  flex-wrap: wrap;
  justify-content: center;
  }
  .iv-flow .farrow {
  display: none;
  }
  .iv-callout p {
  font-size: 10.5px;
  }
  .iv-callout b {
  font-size: 20px;
  }
}

/* ── (max-width: 760px)  →  .hero-stats ── */
@media (max-width: 760px) {
  .hero-stats {
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 20px;
  }
}

/* ── (max-width: 900px)  →  .problem-grid ── */
@media (max-width: 900px) {
  .problem-grid {
  grid-template-columns: 1fr 1fr;
  }
}

/* ── (max-width: 620px)  →  .problem-grid, br ── */
@media (max-width: 620px) {
  .problem-grid {
  grid-template-columns: 1fr;
  }
  br {
  display: none;
  }
}

/* ── (max-width: 860px)  →  .cost-wrap, .sol-grid, .teams, .results ── */
@media (max-width: 860px) {
  .cost-wrap {
  grid-template-columns: 1fr;
  gap: 34px;
  }

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

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

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

/* ── (max-width: 760px)  →  .mobile-menu-toggle, .footer-grid ── */
@media (max-width: 760px) {
  .mobile-menu-toggle {
  display: flex;
  }
  .footer-grid {
  grid-template-columns: 1fr 1fr;
  }
}

/* ── (max-width: 560px)  →  .footer-grid ── */
@media (max-width: 560px) {
  .footer-grid {
  grid-template-columns: 1fr;
  }
}

/* ── (max-width: 760px)  →  .sx-exp ── */
@media (max-width: 760px) {
  .sx-exp {
  grid-template-columns: 1fr;
  }
  .sx-exp .arrow {
  transform: rotate(90deg);
  }
}

/* ── (max-width: 900px)  →  .solution-grid ── */
@media (max-width: 900px) {
  .solution-grid {
  grid-template-columns: 1fr 1fr;
  }
}

/* ── (max-width: 620px)  →  .solution-grid ── */
@media (max-width: 620px) {
  .solution-grid {
  grid-template-columns: 1fr;
  }
}

/* ── (max-width: 820px)  →  .tpl-pillars ── */
@media (max-width: 820px) {
  .tpl-pillars {
  grid-template-columns: 1fr;
  }
}

/* ── (max-width: 780px)  →  .compare, .compare-vs, .budget-block ── */
@media (max-width: 780px) {
  .compare {
  grid-template-columns: 1fr !important;
  gap: 16px;
  }
  .compare-vs {
  transform: rotate(90deg);
  margin: 4px 0;
  }
  .budget-block {
  flex-direction: column;
  }
}

/* ── (max-width: 900px)  →  .ann-hero, .cg-hero, .usp-inner, .feat-row, .feat-row.reverse, .feat-visual ── */
@media (max-width: 900px) {
  /* Hero adjustments */
  .ann-hero,
  .cg-hero,
  .comp-hero,
  .tpl-hero {
  padding: 70px 0 50px;
  }

  /* USP adjustments */
  .usp-inner {
  grid-template-columns: 1fr;
  gap: 40px;
  }

  /* Feature rows adjustments */
  .feat-row {
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 60px 0;
  }

  .feat-row.reverse {
  direction: ltr;
  }
  .feat-visual {
  max-height: none;
  }
  .feat-visual img {
  height: 100%;
  width: 100%;
  }

  /* Proof grid adjustments */
  .proof-grid,
  .ann-proof-grid,
  .cg-proof-grid {
  grid-template-columns: 1fr !important;
  }
}

/* ── (max-width: 600px)  →  .ann-hero, .cg-hero, .usp-band, .feat-row, .proof-cell, .ann-proof-cell ── */
@media (max-width: 600px) {
  /* Hero mobile */
  .ann-hero,
  .cg-hero,
  .comp-hero,
  .tpl-hero {
  padding: 60px 0 50px;
  }

  /* USP mobile */
  .usp-band {
  padding: 48px 0;
  }

  /* Feature rows mobile */
  .feat-row {
  padding: 48px 0;
  }

  /* Proof cells mobile */
  .proof-cell,
  .ann-proof-cell,
  .cg-proof-cell {
  padding: 32px 24px;
  }

  .proof-num,
  .cg-proof-num {
  font-size: 48px;
  }

  .ann-proof-num {
  font-size: 48px;
  }
}

/* ── (max-width: 880px)  →  .mobile-menu-toggle, .nav-menu-panel, .nav-inner.nav-open, .nav-links, .nav-dropdown, .nav-dropdown-toggle ── */
@media (max-width: 880px) {
  .mobile-menu-toggle {
  display: flex;
  }

  .nav-menu-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-left: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 24px 48px -20px rgba(10, 26, 46, 0.22);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  padding: 8px 20px 20px;
  z-index: 510;
  justify-content: unset;
  overflow-y: auto;
  }

  .nav-inner.nav-open .nav-menu-panel {
  display: flex;
  }

  .nav-links {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  }

  .nav-links > a {
  padding: 14px 4px;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-dropdown {
  width: 100%;
  }
  .nav-dropdown-toggle {
  width: 100%;
  justify-content: space-between;
  padding: 14px 4px !important;
  font-size: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-dropdown-menu {
  display: none;
  position: static;
  transform: none;
  box-shadow: none;
  border: none;
  border-radius: 10px;
  padding: 4px 0 4px 16px;
  margin: 2px 0 6px;
  min-width: 0;
  width: 100%;
  }

  .nav-dropdown.open .nav-dropdown-menu {
  display: block;
  }
  .nav-dropdown-menu a {
  padding: 11px 8px;
  font-size: 14px;
  border-bottom: none;
  }

  .nav-cta {
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .nav-cta .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  }
}

/* ── (max-width: 820px)  →  .ba-strip-head, .ba-row, .ba-shift, .ba-col, .ba-before, .ba-after ── */
@media (max-width: 820px) {
  /* Before/After strip */
  .ba-strip-head {
  display: none;
  }

  .ba-row {
  grid-template-columns: 1fr;
  padding: 18px 20px;
  gap: 10px;
  }
  .ba-shift {
  border-right: none;
  padding: 0;
  font-size: 17px;
  }
  .ba-col {
  padding: 0;
  }

  .ba-before,
  .ba-after {
  position: relative;
  padding-left: 62px;
  }
  .ba-before::before,
  .ba-after::before {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 999px;
  }
  .ba-before::before {
  content: "Before";
  background: #fee2e2;
  color: #b91c1c;
  }
  .ba-after::before {
  content: "After";
  background: #dcfce7;
  color: #15803d;
  }
  .ba-arrow {
  display: none;
  }
}

/* ── (max-width: 780px)  →  .compare, .compare-vs, .budget-block ── */
@media (max-width: 780px) {
  .compare {
  grid-template-columns: 1fr;
  gap: 16px;
  }
  .compare-vs {
  transform: rotate(90deg);
  margin: 4px 0;
  }
  .budget-block {
  flex-direction: column;
  }
}

/* ── (max-width: 992px)  →  .pricing-grid, .page-hero ── */
@media (max-width: 992px) {
  .pricing-grid {
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
  }
  .page-hero h1 {
  font-size: 38px;
  }
}

/* ── (max-width: 900px)  →  .trust-divider, .cert-strip-inner, .wp-card, .content-grid ── */
@media (max-width: 900px) {
  /* Trust bar */
  .trust-divider {
  display: none;
  }
  /* Cert strip */
  .cert-strip-inner {
  grid-template-columns: 1fr;
  gap: 40px;
  }
  /* WP card */
  .wp-card {
  grid-template-columns: 1fr;
  }
  /* Content grid */
  .content-grid {
  grid-template-columns: 1fr 1fr;
  }
}

/* ── (max-width: 620px)  →  .content-grid, .audit-body, .wp-preview, .wp-form-side, .result-cta-group, .cert-cards ── */
@media (max-width: 620px) {
  .content-grid {
  grid-template-columns: 1fr;
  }
  .audit-body {
  padding: 28px 24px 32px;
  }
  .wp-preview {
  padding: 36px 28px;
  }
  .wp-form-side {
  padding: 36px 28px;
  }
  .result-cta-group {
  flex-direction: column;
  align-items: center;
  }
  .result-cta-group .btn {
  width: 100%;
  max-width: 300px;
  justify-content: center;
  }
  .cert-cards {
  grid-template-columns: 1fr;
  }
}

/* ── (max-width: 600px)  →  .cta-buttons, .pricing-card, .trust-bar-inner, .cert-strip ── */
@media (max-width: 600px) {
  .cta-buttons {
  flex-direction: column;
  align-items: center;
  }
  .cta-buttons .btn {
  width: 100%;
  max-width: 320px;
  justify-content: center;
  }
  .pricing-card {
  padding: 32px 24px;
  }
  .trust-bar-inner {
  gap: 20px;
  }
  .cert-strip {
  padding: 48px 0;
  }
}

/* ── (max-width: 1200px)  →  .cred-grid, .team-people-grid ── */
@media (max-width: 1200px) {
  .cred-grid {
  grid-template-columns: repeat(3, 1fr);
  }

  .team-people-grid {
  grid-template-columns: repeat(3, 1fr);
  }
  .hero-container img {
    width: 460px;
    height: 470px;
  }
}

/* ── (max-width: 992px)  →  .team-hero-content, .partner-content, .partner-badge-container, .partner-details, .mission-grid, .values-grid ── */
@media (max-width: 992px) {
    .hero-container img {
    width: 100%;
    height: auto;
  }
  .team-hero-content {
  grid-template-columns: 1fr;
  gap: 40px;
  }

  .partner-content {
  grid-template-columns: 1fr;
  gap: 40px;
  }

  .partner-badge-container {
  order: -1;
  }

  .partner-details h3 {
  font-size: 28px;
  }

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

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

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

/* ── (max-width: 768px)  →  .about-hero, .team-section, .linkedin-partner-section, .mission-section, .values-section, .timeline-section ── */
@media (max-width: 768px) {
  .about-hero {
  padding: 40px 0;
  }

  .about-hero h1 {
  font-size: 42px;
  }

  .team-section,
  .linkedin-partner-section,
  .mission-section,
  .values-section,
  .timeline-section {
  padding: 40px 0;
  }

  .team-hero-card {
  padding: 28px 20px;
  }

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

  .team-people-grid {
  grid-template-columns: repeat(2, 1fr);
  }

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

  .desktop-br {
  display: none;
  }

  .cta-banner {
  padding: 50px 28px;
  }

  .cta-banner h2 {
  font-size: clamp(26px, 7vw, 40px);
  margin-bottom: 16px;
  line-height: 1.15;
  }

  .cta-banner p {
  font-size: 16px;
  margin-bottom: 24px;
  max-width: 100%;
  }

  .cta-banner .hero-cta {
  flex-direction: column;
  gap: 12px;
  padding: 0;
  }

  .cta-banner .btn {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 14px 24px;
  font-size: 15px;
  justify-content: center;
  }
}

/* ── (max-width: 640px)  →  .values-grid, .timeline-grid, .team-people-grid, .cred-grid, .mission-card, .cta-banner ── */
@media (max-width: 640px) {
  .values-grid,
  .timeline-grid {
  grid-template-columns: 1fr;
  }

  .team-people-grid {
  grid-template-columns: repeat(2, 1fr);
  }

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

  .mission-card {
  padding: 32px 24px;
  }

  .cta-banner {
  padding: 40px 28px;
  }

  .cta-banner h2 {
  font-size: 36px;
  }
}

/* ── (max-width: 480px)  →  .about-hero, .cred-grid, .team-people-grid ── */
@media (max-width: 480px) {
  .about-hero h1 {
  font-size: 40px;
  }

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

  .team-people-grid {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  }
}

/* ── (max-width: 767px)  →  .wp-download-stats ── */
@media (max-width: 767px) {
  .wp-download-stats {
  flex-wrap: wrap;
  gap: 16px;
  }
}

/* ── (max-width: 400px)  →  .wp-stat-divider ── */
@media (max-width: 400px) {
  .wp-stat-divider {
  display: none;
  }
}

/* ── (max-width: 767px)  →  .pillers ── */
@media (max-width: 767px) {
  .pillers {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 24px; /* Adjust if needed */
  }

  .pillers {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  }

  .pillers > :last-child:nth-child(odd) {
  grid-column: 1 / -1 !important;
  }
}

/* ── (max-width: 425px)  →  .pillers, .hero-cta, .partner-statement-text ── */
@media (max-width: 425px) {
  .pillers {
  display: grid;
  grid-template-columns: 1fr !important;
  }
  .hero-cta {
  padding: 0 12px;
  }
  .hero-cta a {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  }
  .partner-statement-text {
  font-size: 16px;
  }
}

/* ── (max-width: 620px)  →  .sc-art ── */
@media (max-width: 620px) {
  .sc-art {
  max-width: 100%;
  width: 100%;
  }
}

/* ── (max-width: 1124px)  →  .template-grid ── */
@media (max-width: 1124px) {
  .template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 16px;
  }
}

/* ── (max-width: 900px)  →  .testi-grid, .testi-col:nth-child(3) ── */
@media (max-width: 900px) {
  .testi-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  }
  .testi-col:nth-child(3) {
  display: none;
  }
}

/* ── (max-width: 600px)  →  .testi-wrapper, .testi-grid, .testi-col:nth-child(2), .testi-col:nth-child(3) ── */
@media (max-width: 600px) {
  .testi-wrapper {
  height: 640px;
  }
  .testi-grid {
  grid-template-columns: 1fr;
  }
  .testi-col:nth-child(2),
  .testi-col:nth-child(3) {
  display: none;
  }
}

/* Page gutter: 24px on desktop, eases to 16px on phones */
.container {
  padding-left: clamp(16px, 4.5vw, 24px);
  padding-right: clamp(16px, 4.5vw, 24px);
}

/* Section vertical rhythm: 90px desktop → smooth down to 56px
   (replaces the single 90px→64px jump at 640px) */
section.block {
  padding-top: clamp(56px, 9vw, 90px);
  padding-bottom: clamp(56px, 9vw, 90px);
}

/* Space under centered section headers: 50px → 32px */
.section-head {
  margin-bottom: clamp(32px, 5.2vw, 50px);
}

/* Home hero padding: 70/60 → 44/36 */
.hero {
  padding-top: clamp(44px, 7vw, 70px);
  padding-bottom: clamp(36px, 6vw, 60px);
}

/* Interior page hero padding: 96/64 → 56/40 */
.page-hero {
  padding-top: clamp(56px, 9vw, 96px);
  padding-bottom: clamp(40px, 6.5vw, 64px);
}

/* Tiny-screen polish: keep content off the very edge and
   let CTA button rows stack full-width cleanly */
@media (max-width: 380px) {
  .hero-cta .btn,
  .page-hero .hero-cta .btn,
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

 /* ==================================== */
    .scroll-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--color-primary);
      color: var(--color-white);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(10, 102, 194, 0.3);
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: all 0.3s ease;
      z-index: 999;
      font-size: 20px;
    }

    .scroll-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-to-top:hover {
      background: var(--blue-deep);
      transform: translateY(-5px);
      box-shadow: 0 6px 25px rgba(10, 102, 194, 0.4);
    }

    .scroll-to-top:active {
      transform: translateY(-2px);
    }
     /* SOCIAL FOLLOW */
      .social-follow {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
      }
      .social-follow-label {
        font-family: "JetBrains Mono", monospace;
        font-size: 10px;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
        font-weight: 600;
      }
      .social-icons {
        display: flex;
        gap: 10px;
      }
      .social-icon {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.2s;
      }
      .social-icon:hover {
        background: var(--blue);
        border-color: var(--blue);
        color: #fff;
        transform: translateY(-2px);
      }