:root {
  --ink: #07090d;
  --ink-2: #111827;
  --muted: #5b6473;
  --line: #d8dee8;
  --soft: #f3f6fb;
  --white: #ffffff;
  --accent: #b7ff4a;
  --brand-lime-light: #72c900;
  --blue: #2d7dff;
  --amber: #ffb84d;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(7, 9, 13, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

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

p,
h1,
h2,
h3,
blockquote {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 850;
}

.skip-link:focus {
  top: 16px;
}

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

.shell {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 86px 0;
  scroll-margin-top: 90px;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: transparent;
  border-bottom: 0;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 112px;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  pointer-events: auto;
  white-space: nowrap;
}

.brand-mark-img {
  display: block;
  width: 74px;
  height: 82px;
  filter: drop-shadow(0 12px 24px rgba(7, 9, 13, 0.16));
  object-fit: contain;
  object-position: center;
}

.brand-word {
  display: inline-flex;
  align-items: baseline;
}

.brand-word span:first-child {
  color: var(--brand-lime-light);
}

.brand-word span:last-child {
  color: var(--ink);
}

.nav-links,
.nav-actions,
.button-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-actions {
  pointer-events: auto;
}

.nav-hire {
  min-height: 58px;
  gap: 13px;
  padding: 15px 26px;
  font-size: 21px;
  font-weight: 720;
  box-shadow: 0 20px 45px rgba(7, 9, 13, 0.18);
}

.nav-hire span {
  font-size: 30px;
  line-height: 0;
}

.nav-menu-button {
  display: flex;
  width: 64px;
  height: 64px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 20px 45px rgba(7, 9, 13, 0.12);
}

.nav-menu-button span {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
}

.nav-links {
  color: var(--muted);
  font-weight: 850;
}

.nav-links a {
  padding: 10px 8px;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--ink);
}

.text-link {
  color: var(--ink);
  font-weight: 950;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  line-height: 1.15;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}

.button.nav-hire {
  min-height: 58px;
  padding: 15px 26px;
}

.site-header.is-over-dark .nav-hire {
  border-color: rgba(255, 255, 255, 0.24);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 20px 45px rgba(255, 255, 255, 0.12);
}

.button-accent {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(183, 255, 74, 0.24);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-light,
.button-outline {
  background: var(--white);
  color: var(--ink);
}

.button-outline {
  border-color: var(--ink);
}

.section-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.section-dark .section-label,
.services-stage .section-label,
.hero .section-label {
  color: var(--accent);
}

h1,
h2,
h3 {
  font-weight: 950;
  line-height: 0.98;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 26px;
}

.hero {
  position: relative;
  --hero-cursor-x: 64%;
  --hero-cursor-y: 44%;
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  --hero-field-x: 0px;
  --hero-field-y: 0px;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #f7f8f2;
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(720px 600px at var(--hero-cursor-x) var(--hero-cursor-y), rgba(183, 255, 74, 0.14), rgba(183, 255, 74, 0.05) 34%, rgba(183, 255, 74, 0) 68%),
    radial-gradient(690px 620px at calc(var(--hero-cursor-x) - 4%) calc(var(--hero-cursor-y) + 6%), rgba(45, 125, 255, 0.13), rgba(45, 125, 255, 0.05) 38%, rgba(45, 125, 255, 0) 70%),
    linear-gradient(112deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.98) 62%, rgba(239, 255, 219, 0.42) 70%, rgba(104, 207, 255, 0.4) 79%, rgba(183, 255, 74, 0.26) 88%, rgba(255, 255, 255, 0.96) 100%),
    linear-gradient(180deg, #ffffff 0%, #f2f5ec 100%);
  transition: opacity 220ms ease;
  will-change: background;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -22% -20% -28% 68%;
  z-index: -1;
  background:
    linear-gradient(156deg, rgba(183, 255, 74, 0) 7%, rgba(183, 255, 74, 0.34) 27%, rgba(45, 125, 255, 0.48) 47%, rgba(183, 255, 74, 0.28) 68%, rgba(255, 255, 255, 0) 90%);
  filter: blur(30px);
  opacity: 0.62;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) rotate(7deg) scale(1.04);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-bg-media {
  position: absolute;
  inset: -24% -18% -24% 68%;
  z-index: -2;
  display: block;
  pointer-events: none;
  background:
    linear-gradient(106deg, rgba(255, 255, 255, 0) 0%, rgba(183, 255, 74, 0.18) 18%, rgba(48, 190, 255, 0.34) 42%, rgba(124, 90, 255, 0.22) 59%, rgba(183, 255, 74, 0.18) 75%, rgba(255, 255, 255, 0) 100%);
  filter: blur(36px);
  mix-blend-mode: multiply;
  opacity: 0.62;
  transform: translate3d(var(--hero-field-x), var(--hero-field-y), 0) rotate(7deg);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.hero-bg-media img {
  display: none;
}

.hero-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  min-height: inherit;
  padding: 58px 0 52px;
}

.hero h1 {
  display: grid;
  gap: clamp(20px, 1.8vw, 34px);
  width: 100%;
  color: var(--ink);
  font-size: 94px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: lowercase;
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.hero-title .mobile-line {
  display: none;
}

.hero-title .desktop-line {
  padding-left: 6%;
}

.hero-title .accent-line {
  padding-left: 5%;
  color: var(--ink);
}

.hero-note {
  position: absolute;
  top: 66%;
  right: 9%;
  bottom: auto;
  display: flex;
  justify-content: flex-end;
}

.hero-subhead {
  max-width: 420px;
  color: var(--ink);
  font-size: 25px;
  font-weight: 650;
  line-height: 1.12;
}

.marquee-band {
  overflow: hidden;
  border-top: 1px solid rgba(7, 9, 13, 0.08);
  border-bottom: 1px solid rgba(7, 9, 13, 0.08);
  background: rgba(183, 255, 74, 0.62);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 18px 0;
  font-size: 22px;
  font-weight: 950;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  position: relative;
  white-space: nowrap;
}

.marquee-track span + span::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.55);
  transform: translateY(-50%);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.intro-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.97) 34%, rgba(239, 255, 219, 0.62) 51%, rgba(184, 235, 255, 0.86) 78%, rgba(232, 249, 255, 0.98) 100%),
    #f7f8f2;
}

.intro-panel .shell {
  width: min(1680px, calc(100% - 32px));
}

.intro-grid {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
  container-type: inline-size;
}

.intro-copy {
  position: absolute;
  left: 4.2%;
  top: 16.5%;
  z-index: 3;
  display: block;
  width: 50%;
  max-width: none;
}

.intro-grid .belief-headline {
  display: grid;
  max-width: 860px;
  font-size: 76px;
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.belief-headline span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.belief-headline span:nth-child(2) {
  padding-left: 0.8ch;
}

.belief-headline span:nth-child(3) {
  padding-left: 1.15ch;
}

.belief-headline span:nth-child(4) {
  padding-left: 0.15ch;
}

.intro-accent {
  display: block;
  width: 94px;
  height: 5px;
  background: var(--blue);
  border-radius: 999px;
}

.intro-copy > p:last-of-type {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.belief-list {
  display: grid;
  gap: 0;
  margin-top: 12px;
}

.belief-list article {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid rgba(7, 9, 13, 0.1);
  padding: 14px 0;
}

.belief-list article:first-child {
  border-top: 0;
}

.belief-list h3 {
  font-size: 18px;
  line-height: 1.12;
}

.belief-list p {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.35;
}

.belief-icon,
.journey-icon {
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.belief-icon {
  width: 58px;
  height: 58px;
}

.belief-icon::before,
.belief-icon::after,
.journey-icon::before,
.journey-icon::after {
  content: "";
  position: absolute;
}

.belief-icon.clarity {
  background: rgba(45, 125, 255, 0.1);
}

.belief-icon.clarity::before {
  width: 18px;
  height: 18px;
  border: 4px solid var(--blue);
  border-radius: 999px;
}

.belief-icon.clarity::after {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
}

.belief-icon.track {
  background: rgba(183, 255, 74, 0.35);
}

.belief-icon.track::before {
  width: 26px;
  height: 26px;
  border: 4px solid var(--brand-lime-light);
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 999px;
  transform: rotate(20deg);
}

.belief-icon.fast {
  background: rgba(255, 184, 77, 0.22);
}

.belief-icon.fast::before {
  width: 14px;
  height: 28px;
  background: #ffc400;
  clip-path: polygon(58% 0, 20% 43%, 48% 43%, 30% 100%, 86% 34%, 56% 34%);
}

.belief-icon.prove {
  background: rgba(125, 91, 255, 0.16);
}

.belief-icon.prove::before {
  width: 28px;
  height: 22px;
  border-bottom: 4px solid #8f66ff;
  background:
    linear-gradient(to top, #8f66ff 0 100%) left bottom / 5px 11px no-repeat,
    linear-gradient(to top, #8f66ff 0 100%) center bottom / 5px 18px no-repeat,
    linear-gradient(to top, #8f66ff 0 100%) right bottom / 5px 26px no-repeat;
}

.lead-path-visual {
  position: relative;
  min-height: 660px;
  border-radius: 28px;
}

.lead-path-visual::before,
.lead-path-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.lead-path-visual::before {
  right: 2%;
  top: 4%;
  width: 208px;
  height: 208px;
  border: 1px dashed rgba(183, 255, 74, 0.72);
  border-radius: 999px;
}

.lead-path-visual::after {
  right: 0;
  bottom: 24%;
  width: 116px;
  height: 86px;
  opacity: 0.7;
  background-image: radial-gradient(rgba(255, 255, 255, 0.78) 2px, transparent 2px);
  background-size: 16px 16px;
}

.journey-line {
  position: absolute;
  inset: 32px -6px auto -4px;
  width: calc(100% + 10px);
  height: 560px;
  overflow: visible;
}

.journey-line path {
  fill: none;
  stroke: rgba(7, 9, 13, 0.72);
  stroke-width: 4;
  stroke-linecap: round;
}

.journey-line circle {
  fill: var(--blue);
  stroke: var(--white);
  stroke-width: 6;
}

.journey-line circle:nth-of-type(2),
.journey-line circle:nth-of-type(4) {
  fill: var(--brand-lime-light);
}

.journey-card,
.growth-callout {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 70px rgba(45, 125, 255, 0.14);
  backdrop-filter: blur(14px);
}

.journey-card {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 124px;
  min-height: 150px;
  padding: 20px 14px;
  text-align: center;
}

.journey-card h3,
.growth-callout h3 {
  font-size: 17px;
  line-height: 1.1;
}

.journey-card p,
.growth-callout p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
}

.journey-icon {
  width: 44px;
  height: 44px;
}

.journey-icon.eye {
  background: rgba(45, 125, 255, 0.13);
}

.journey-icon.eye::before {
  width: 24px;
  height: 15px;
  border-radius: 999px 999px 999px 999px / 70% 70% 70% 70%;
  background: var(--blue);
}

.journey-icon.eye::after {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--white);
}

.journey-icon.cursor {
  background: rgba(183, 255, 74, 0.32);
}

.journey-icon.cursor::before {
  width: 22px;
  height: 28px;
  background: var(--brand-lime-light);
  clip-path: polygon(0 0, 100% 52%, 62% 62%, 82% 100%, 60% 100%, 42% 66%, 18% 88%);
}

.journey-icon.phone {
  background: rgba(255, 184, 77, 0.22);
}

.journey-icon.phone::before {
  width: 20px;
  height: 20px;
  border: 6px solid #ffc400;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(20deg);
}

.journey-icon.message {
  background: rgba(125, 91, 255, 0.18);
}

.journey-icon.message::before {
  width: 22px;
  height: 18px;
  border-radius: 6px;
  background: #8f66ff;
}

.journey-icon.message::after {
  width: 8px;
  height: 8px;
  left: 15px;
  bottom: 9px;
  background: #8f66ff;
  transform: rotate(45deg);
}

.journey-icon.check {
  background: rgba(183, 255, 74, 0.5);
}

.journey-icon.check::before {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--brand-lime-light);
}

.journey-icon.check::after {
  width: 14px;
  height: 8px;
  border-left: 4px solid var(--white);
  border-bottom: 4px solid var(--white);
  transform: rotate(-45deg);
}

.journey-icon.chart {
  background: rgba(183, 255, 74, 0.36);
}

.journey-icon.chart::before {
  width: 24px;
  height: 18px;
  border-left: 4px solid var(--brand-lime-light);
  border-bottom: 4px solid var(--brand-lime-light);
  transform: skew(-8deg);
}

.journey-icon.chart::after {
  width: 18px;
  height: 18px;
  border-top: 4px solid var(--brand-lime-light);
  border-right: 4px solid var(--brand-lime-light);
  transform: rotate(-8deg);
}

.journey-card.seen {
  left: 1%;
  bottom: 52px;
}

.journey-card.clicked {
  left: 21%;
  bottom: 250px;
}

.journey-card.contacted {
  left: 41%;
  top: 210px;
}

.journey-card.followed {
  left: 62%;
  top: 112px;
  width: 144px;
}

.journey-card.converted {
  right: 0;
  top: 4px;
  width: 146px;
}

.growth-callout {
  right: 0;
  bottom: 94px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  width: min(420px, 56%);
  padding: 26px 28px;
}

.lead-path-visual {
  position: absolute;
  inset: 0;
  min-height: 0;
  border-radius: 0;
}

.lead-path-visual::before,
.lead-path-visual::after {
  content: none;
}

.path-dotgrid {
  position: absolute;
  z-index: 0;
  background-image: radial-gradient(rgba(147, 161, 180, 0.42) 1.5px, transparent 1.9px);
  background-size: 13px 13px;
}

.path-dotgrid-a {
  left: 87%;
  top: 44.5%;
  width: 146px;
  height: 113px;
}

.path-dotgrid-b {
  left: 53.8%;
  top: 86.4%;
  width: 176px;
  height: 96px;
}

.journey-line {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.journey-line .journey-path {
  fill: none;
  stroke: #1d2026;
  stroke-width: 2.6;
  stroke-linecap: round;
}

.journey-line marker path {
  fill: #1d2026;
  stroke: none;
}

.journey-line .dot-halo {
  fill: var(--white);
  stroke: none;
}

.journey-line .journey-dot {
  stroke: none;
}

.journey-line .journey-dot.dot-blue {
  fill: var(--blue);
}

.journey-line .journey-dot.dot-lime {
  fill: var(--brand-lime-light);
}

.journey-line .journey-dot.dot-purple {
  fill: #8a63f4;
}

.journey-card,
.growth-callout {
  border: 0;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(24, 39, 75, 0.12), 0 4px 12px rgba(24, 39, 75, 0.06);
}

.journey-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  width: 120px;
  min-height: 0;
  padding: 20px 12px 19px;
  border-radius: 22px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.journey-card h3 {
  margin-top: 14px;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.1;
}

.journey-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.journey-icon {
  width: 56px;
  height: 56px;
  flex: none;
}

.journey-icon.svg-icon::before,
.journey-icon.svg-icon::after {
  display: none;
}

.journey-icon.svg-icon svg {
  width: 54%;
  height: 54%;
}

.journey-icon.eye {
  background: #dceafe;
}

.journey-icon.cursor {
  background: #e9f5d6;
}

.journey-icon.phone {
  background: #fdf3d2;
}

.journey-icon.message {
  background: #ece6fd;
}

.journey-icon.check {
  background: #94c93e;
  box-shadow: 0 0 0 6px rgba(148, 201, 62, 0.18);
}

.journey-icon.chart {
  background: #e9f5d6;
}

.journey-card.seen {
  left: 50.48%;
  top: 80.4%;
  bottom: auto;
  z-index: 2;
}

.journey-card.clicked {
  left: 57.26%;
  top: 60.5%;
  bottom: auto;
  z-index: 3;
}

.journey-card.contacted {
  left: 67.02%;
  top: 47.2%;
  z-index: 4;
  width: 128px;
}

.journey-card.followed {
  left: 78.1%;
  top: 34.7%;
  z-index: 5;
  width: 140px;
}

.journey-card.converted {
  left: 90.1%;
  right: auto;
  top: 20.3%;
  z-index: 6;
  width: 146px;
}

.growth-callout {
  left: 81.6%;
  right: auto;
  top: 73%;
  bottom: auto;
  z-index: 2;
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 20px;
  width: 360px;
  padding: 30px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(233, 243, 250, 0.78));
  box-shadow: 0 20px 50px rgba(24, 39, 75, 0.1);
  transform: translate(-50%, -50%);
}

.growth-callout h3 {
  font-size: 20px;
  line-height: 1.15;
}

.growth-callout p {
  margin-top: 6px;
  color: #3c4353;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.journey-connector {
  display: none;
}

@media (max-width: 1159px) {
  .intro-panel .shell {
    width: min(640px, calc(100% - 32px));
  }

  .intro-grid {
    display: block;
    aspect-ratio: auto;
    container-type: normal;
  }

  .intro-copy {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
  }

  .intro-grid .belief-headline {
    max-width: none;
    font-size: 64px;
    line-height: 0.9;
  }

  .belief-headline span {
    max-width: 100%;
    white-space: nowrap;
  }

  .lead-path-visual {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin-top: 38px;
    padding-bottom: 0;
  }

  .journey-line {
    display: none;
  }

  .path-dotgrid {
    background-image: radial-gradient(rgba(147, 161, 180, 0.4) 1.5px, transparent 1.9px);
    background-size: 13px 13px;
  }

  .path-dotgrid-a {
    left: auto;
    right: 14px;
    top: 54px;
    width: 96px;
    height: 78px;
  }

  .path-dotgrid-b {
    left: 20px;
    top: auto;
    bottom: 18px;
    width: 120px;
    height: 66px;
  }

  .journey-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 2;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: auto;
    gap: 15px;
    padding: 16px 18px;
    border-radius: 18px;
    text-align: left;
    transform: none;
  }

  .journey-card.converted,
  .journey-card.contacted,
  .journey-card.followed {
    width: 100%;
  }

  .journey-icon {
    width: 52px;
    height: 52px;
  }

  .journey-icon.check {
    box-shadow: 0 0 0 5px rgba(148, 201, 62, 0.18);
  }

  .journey-card h3 {
    margin-top: 0;
    font-size: 16px;
  }

  .journey-card p {
    margin-top: 3px;
    font-size: 13px;
  }

  .journey-connector {
    display: flex;
    height: 36px;
    padding-left: 33px;
  }

  .journey-connector-arrow {
    height: 46px;
  }

  .journey-connector svg {
    display: block;
    width: 22px;
    height: 100%;
    overflow: visible;
  }

  .growth-callout {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    margin-top: 26px;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
    transform: none;
  }

  .growth-callout h3 {
    font-size: 16px;
  }

  .growth-callout p {
    font-size: 15px;
  }
}

.services-stage {
  position: relative;
  overflow: clip;
  border-radius: 0 0 56px 56px;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 36%, rgba(238, 255, 216, 0.62) 48%, rgba(104, 207, 255, 0.58) 62%, rgba(183, 255, 74, 0.3) 76%, rgba(255, 255, 255, 0.96) 100%),
    #f7f8f2;
  color: var(--ink);
  padding: 92px 0 126px;
  isolation: isolate;
}

.services-stage::after {
  content: "";
  position: absolute;
  inset: 2% -24% 20% 46%;
  z-index: -1;
  background:
    linear-gradient(158deg, rgba(183, 255, 74, 0) 8%, rgba(183, 255, 74, 0.48) 28%, rgba(45, 125, 255, 0.62) 48%, rgba(183, 255, 74, 0.36) 70%, rgba(255, 255, 255, 0) 90%);
  filter: blur(20px);
  transform: rotate(7deg);
}

.services-shell {
  display: grid;
  gap: 44px;
}

.services-heading {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
}

.services-heading h2 {
  display: grid;
  color: var(--ink);
  font-size: 134px;
  font-weight: 650;
  line-height: 0.83;
  text-transform: uppercase;
}

.services-heading h2 span:last-child {
  padding-left: 15%;
}

.services-arrow {
  position: absolute;
  right: 3%;
  bottom: 120px;
  width: 110px;
  height: 110px;
}

.services-arrow::before,
.services-arrow::after {
  content: "";
  position: absolute;
  background: var(--ink);
}

.services-arrow::before {
  left: 12px;
  bottom: 20px;
  width: 86px;
  height: 4px;
  transform: rotate(135deg);
  transform-origin: right center;
}

.services-arrow::after {
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border-right: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: transparent;
}

.service-card-stack {
  display: grid;
  gap: 34px;
  padding-bottom: 28px;
}

.service-card {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 36px;
  align-items: stretch;
  min-height: 520px;
  border: 1px solid rgba(7, 9, 13, 0.08);
  border-radius: 42px;
  background: var(--white);
  padding: 58px;
  box-shadow: 0 30px 80px rgba(7, 9, 13, 0.08);
}

.service-card:nth-child(1) {
  z-index: 1;
}

.service-card:nth-child(2) {
  top: 108px;
  z-index: 2;
}

.service-card:nth-child(3) {
  top: 120px;
  z-index: 3;
}

.service-card-copy {
  display: grid;
  align-content: center;
  gap: 22px;
}

.service-index {
  color: var(--brand-lime-light);
  font-size: 13px;
  font-weight: 950;
}

.service-card h3 {
  max-width: 690px;
  font-size: 68px;
  font-weight: 650;
  line-height: 0.96;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-pills span {
  border: 1px solid rgba(7, 9, 13, 0.14);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  font-weight: 750;
}

.service-card p {
  max-width: 620px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

.service-more {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 46px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 850;
}

.service-more::after {
  content: "->";
  font-weight: 950;
}

.service-visual {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(183, 255, 74, 0.72), rgba(45, 125, 255, 0.46)),
    var(--soft);
}

.browser-frame {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 7px;
}

.browser-frame span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink);
  opacity: 0.55;
}

.mock-hero-line,
.mock-copy-line,
.mock-button,
.mock-side-panel {
  position: absolute;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.mock-hero-line {
  left: 24px;
  top: 78px;
  width: 58%;
  height: 54px;
}

.mock-copy-line {
  left: 24px;
  top: 154px;
  width: 48%;
  height: 18px;
}

.mock-copy-line.short {
  top: 188px;
  width: 34%;
}

.mock-button {
  left: 24px;
  bottom: 32px;
  width: 148px;
  height: 48px;
  border-radius: 999px;
  background: var(--ink);
}

.mock-side-panel {
  right: -24px;
  top: 58px;
  width: 44%;
  height: 76%;
  transform: rotate(8deg);
}

.promo-visual {
  padding: 0;
}

/* Rotating ad platforms: Google Search ad <-> Meta ad */
.promo-rotator {
  position: absolute;
  inset: 0;
  display: grid;
  padding: 28px;
}

.promo-card {
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
  width: min(340px, 88%);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 64px rgba(7, 9, 13, 0.24);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.promo-card.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

/* Google ad creative */
.ps-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 14px 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f1f3f8;
}
.ps-ico { font-size: 12px; }
.ps-q { font-size: 14px; font-weight: 600; color: #3a3f4a; }
.ps-result { padding: 14px 16px 16px; }
.ps-tag { font-size: 12px; font-weight: 800; color: #0b7a2f; }
.ps-site { display: flex; align-items: center; gap: 7px; margin-top: 9px; font-size: 12px; color: #4b5563; }
.ps-dot { width: 16px; height: 16px; border-radius: 50%; background: var(--blue); }
.ps-title { margin-top: 5px; font-size: 18px; font-weight: 800; line-height: 1.14; color: #1a0dab; }
.ps-desc { margin-top: 6px; font-size: 12.5px; line-height: 1.35; color: #4b5563; }
.ps-links { display: flex; gap: 8px; margin-top: 12px; }
.ps-links span {
  font-size: 12px;
  font-weight: 800;
  color: var(--blue);
  border: 1px solid #d8dee8;
  border-radius: 999px;
  padding: 5px 11px;
}

/* Meta ad creative */
.pso-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; }
.pso-av { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--accent)); }
.pso-id { display: grid; }
.pso-id b { font-size: 14px; font-weight: 900; color: var(--ink); }
.pso-id i { font-style: normal; font-size: 11px; color: #8b93a5; }
.pso-more { margin-left: auto; color: #8b93a5; font-weight: 900; }
.pso-photo { height: 150px; overflow: hidden; background: linear-gradient(135deg, #2d7dff, #7fb0ff 55%, #b7ff4a); }
.pso-photo img { display: block; width: 100%; height: 100%; object-fit: cover; }
.pso-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  background: #f6f8fb;
}
.pso-cta span { font-size: 13px; font-weight: 800; color: var(--ink); }
.pso-cta b { font-size: 12px; font-weight: 900; color: #fff; background: var(--ink); border-radius: 8px; padding: 8px 12px; }
.pso-meta { display: flex; gap: 14px; padding: 10px 14px 14px; }
.pso-meta span { font-size: 12px; font-weight: 700; color: #6b7280; }

@media (prefers-reduced-motion: reduce) {
  .promo-card { transition: none; }
}

.metric-card,
.promo-chart {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  padding: 20px;
}

.metric-card.primary {
  background: var(--ink);
  color: var(--white);
}

.metric-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.metric-card.primary span {
  color: var(--accent);
}

.metric-card strong {
  font-size: 72px;
  line-height: 0.9;
}

.promo-chart {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 160px;
}

.promo-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: var(--ink);
}

.promo-chart span:nth-child(1) {
  height: 42%;
}

.promo-chart span:nth-child(2) {
  height: 68%;
  background: var(--brand-lime-light);
}

.promo-chart span:nth-child(3) {
  height: 52%;
}

.promo-chart span:nth-child(4) {
  height: 86%;
  background: var(--blue);
}

.flow-visual {
  display: grid;
  align-content: center;
  padding: 30px 34px;
}

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.flow-step {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flow-ico {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #5b6473;
  box-shadow: 0 6px 16px rgba(7, 9, 13, 0.1);
  animation: flow-ico-on 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1s);
}

.flow-ico svg { width: 24px; height: 24px; }

.flow-step:not(:last-child) .flow-ico::after {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: rgba(7, 9, 13, 0.16);
}

.flow-label { display: grid; gap: 2px; }

.flow-label b {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  animation: flow-label-on 6s ease-in-out infinite;
  animation-delay: calc(var(--i) * 1s);
}

.flow-label i {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
  color: rgba(7, 9, 13, 0.55);
}

@keyframes flow-ico-on {
  0%, 2%, 20%, 100% {
    background: rgba(255, 255, 255, 0.9);
    color: #5b6473;
    transform: scale(1);
    box-shadow: 0 6px 16px rgba(7, 9, 13, 0.1);
  }
  6%, 16% {
    background: var(--ink);
    color: var(--accent);
    transform: scale(1.12);
    box-shadow: 0 12px 26px rgba(7, 9, 13, 0.28);
  }
}

@keyframes flow-label-on {
  0%, 2%, 20%, 100% { transform: translateX(0); }
  6%, 16% { transform: translateX(5px); }
}

@media (prefers-reduced-motion: reduce) {
  .flow-ico, .flow-label b { animation: none; }
}

.stage-heading,
.massive-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.stage-heading h2,
.massive-heading h2 {
  max-width: 980px;
  font-size: 58px;
}

.problem-layout,
.system-grid,
.split-feature,
.website-grid,
.quote-grid,
.faq-grid,
.final-grid {
  display: grid;
  gap: 34px;
  align-items: center;
}

.problem-layout h2 {
  max-width: 740px;
  font-size: 56px;
}

.problem-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.problem-list article {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.problem-list span {
  font-size: 28px;
  font-weight: 950;
  line-height: 1.05;
}

.problem-list p,
.system-copy p,
.feature-copy p,
.website-grid p,
.automation-grid p,
.proof-rows p,
.pricing-grid p,
.quote-grid p {
  color: var(--muted);
}

.system-grid {
  align-items: stretch;
}

.system-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.system-copy h2,
.website-grid h2,
.feature-copy h2,
.quote-grid h2 {
  font-size: 54px;
}

.system-copy p,
.feature-copy p,
.website-grid p,
.quote-grid p {
  font-size: 19px;
}

.system-map {
  display: grid;
  gap: 12px;
}

.map-node {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 18px 20px;
}

.map-node.primary {
  background: var(--ink);
  color: var(--white);
}

.map-node span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.map-node.primary span {
  color: var(--accent);
}

.map-node strong {
  text-align: right;
}

.channel-feature {
  overflow: hidden;
}

.split-feature {
  min-height: 520px;
}

.oversized-word {
  color: rgba(183, 255, 74, 0.1);
  font-size: 164px;
  font-weight: 950;
  line-height: 0.8;
}

.feature-copy {
  display: grid;
  gap: 20px;
}

.creative-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.creative-board article {
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 160px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  padding: 22px;
}

.creative-board span,
.automation-grid span,
.proof-rows span,
.pricing-grid span,
.calendar-panel span,
.form-top span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.creative-board strong {
  font-size: 24px;
  line-height: 1.08;
}

.website-grid {
  align-items: center;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 10px 12px;
  font-weight: 900;
}

.pill-list.dark span {
  border-color: rgba(255, 255, 255, 0.18);
  background: #111722;
  color: #eef2f7;
}

.media-frame {
  display: grid;
  gap: 10px;
  margin: 0;
}

.media-frame img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.media-frame figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.dark-frame img {
  border-color: rgba(255, 255, 255, 0.18);
}

.dark-frame figcaption,
.dashboard-section p {
  color: #d7deea;
}

.automation-grid,
.proof-rows,
.pricing-grid {
  display: grid;
  gap: 16px;
}

.automation-grid article,
.proof-rows article,
.pricing-grid article,
.calendar-panel,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--white);
  padding: 26px;
}

.automation-grid article {
  display: grid;
  gap: 14px;
}

.automation-grid span {
  color: var(--brand-lime-light);
}

.proof-section {
  overflow: hidden;
  background: var(--ink);
  padding: 96px 0;
}

.proof-sprite {
  position: absolute;
}

.proof-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: center;
  width: min(1460px, calc(100% - 32px));
  border-radius: 32px;
  background:
    radial-gradient(1000px 720px at 70% 30%, rgba(187, 234, 88, 0.9), rgba(187, 234, 88, 0) 62%),
    radial-gradient(780px 780px at 104% 58%, rgba(62, 138, 246, 0.8), rgba(62, 138, 246, 0) 56%),
    radial-gradient(900px 540px at 50% 112%, rgba(168, 226, 118, 0.5), rgba(168, 226, 118, 0) 60%),
    linear-gradient(160deg, #fcfdfe 0%, #f2f5f8 100%);
  box-shadow: 0 30px 70px -35px rgba(15, 35, 80, 0.25);
  padding: 84px 72px;
}

.proof-copy h2 {
  max-width: 520px;
  color: var(--ink);
  font-size: 72px;
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: 0;
}

.proof-copy > p:last-child {
  max-width: 410px;
  margin-top: 22px;
  color: #414b58;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.38;
}

.proof-collage {
  position: relative;
  z-index: 1;
  min-height: 735px;
}

.proof-card {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 30px 55px -28px rgba(16, 35, 70, 0.3), 0 3px 10px rgba(16, 35, 70, 0.05);
}

.proof-dots {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(94, 116, 150, 0.38) 1.6px, transparent 1.7px);
  background-size: 15px 15px;
}

.proof-dots-a {
  top: 78px;
  left: -8px;
  width: 118px;
  height: 100px;
}

.proof-dots-b {
  bottom: 14px;
  left: 290px;
  width: 150px;
  height: 118px;
}

.proof-dashboard-card {
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  overflow: hidden;
  width: min(560px, 100%);
}

.proof-dash-side {
  display: flex;
  flex: 0 0 52px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-right: 1px solid #eef1f5;
  background: #fbfcfd;
  padding: 14px 0;
}

.proof-dash-side span {
  color: #9aa4b2;
}

.proof-dash-side svg {
  width: 16px;
  height: 16px;
}

.proof-dash-logo {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 8px;
  background: #101418;
  color: #8ee000 !important;
}

.proof-dash-main {
  min-width: 0;
  flex: 1;
  padding: 18px 20px 16px;
}

.proof-dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}

.proof-dash-head h3 {
  font-size: 19px;
  font-weight: 850;
  line-height: 1.1;
}

.proof-select-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e9ef;
  border-radius: 8px;
  background: var(--white);
  color: #4f5a67;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.proof-select-pill svg {
  width: 12px;
  height: 12px;
  color: #98a2b0;
}

.proof-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.proof-stat {
  min-width: 0;
  border: 1px solid #e9edf2;
  border-radius: 12px;
  background: var(--white);
  padding: 11px 12px 10px;
}

.proof-stat span {
  display: block;
  color: #7c8694;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.proof-stat strong {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.05;
}

.proof-stat em {
  display: block;
  margin-top: 3px;
  color: #18a24b;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.proof-chart {
  margin-top: 20px;
}

.proof-chart svg {
  width: 100%;
  height: auto;
}

.proof-chart-x {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
  padding: 0 2px;
  color: #96a0ae;
  font-size: 10px;
  font-weight: 650;
}

.proof-site-card {
  top: 250px;
  left: -30px;
  z-index: 2;
  width: min(555px, 100%);
  padding: 16px 18px 12px;
}

.proof-site-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 2px 2px 12px;
}

.proof-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.proof-brand svg {
  width: 18px;
  height: 18px;
  color: var(--blue);
}

.proof-site-head nav {
  display: flex;
  gap: 14px;
  margin-left: auto;
  color: #66707e;
  font-size: 12px;
  font-weight: 650;
}

.proof-mini-button,
.proof-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  font-weight: 750;
  white-space: nowrap;
}

.proof-mini-button {
  padding: 7px 12px;
  font-size: 11px;
}

.proof-site-hero {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 14px;
}

.proof-site-copy {
  padding: 6px 2px;
}

.proof-site-copy h3 {
  color: #10141b;
  font-size: 25px;
  font-weight: 850;
  line-height: 1.12;
}

.proof-site-copy p {
  max-width: 32ch;
  margin-top: 10px;
  color: #5d6773;
  font-size: 12px;
  font-weight: 550;
}

.proof-site-copy div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.proof-button {
  padding: 9px 14px;
  font-size: 12px;
}

.proof-call {
  color: #3d4653;
  font-size: 11px;
  font-weight: 750;
  white-space: nowrap;
}

.proof-photo {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  border-radius: 12px;
}

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

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #eef1f5;
  margin-top: 14px;
  padding: 12px 6px 4px;
}

.proof-badges span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #39424f;
  font-size: 11px;
  font-weight: 750;
}

.proof-badges svg {
  width: 14px;
  height: 14px;
  color: #3d7bf0;
}

.proof-quote-card {
  top: 468px;
  right: 0;
  z-index: 3;
  width: min(400px, 100%);
  padding: 26px 28px 24px;
}

.proof-stars {
  display: flex;
  gap: 4px;
  color: #f6b301;
}

.proof-stars svg {
  width: 20px;
  height: 20px;
}

.proof-quote-card p {
  margin-top: 14px;
  color: #12161c;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}

.proof-quote-card small {
  display: block;
  margin-top: 12px;
  color: #68727f;
  font-size: 13px;
  font-weight: 650;
}

.proof-rating-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.proof-rating-line strong {
  border-radius: 999px;
  background: #e9f6d3;
  color: #1c2510;
  padding: 5px 11px;
  font-size: 13px;
  font-weight: 850;
}

.proof-rating-line span {
  color: #5d6773;
  font-size: 13px;
  font-weight: 650;
}

.proof-scroll-section {
  min-height: auto;
  padding: 96px 0 128px;
  overflow: visible;
}

.proof-sticky {
  position: static;
  display: block;
  min-height: 0;
  overflow: visible;
  padding: 0;
}

.proof-stack-viewport {
  position: relative;
  display: grid;
  width: min(1460px, calc(100% - 32px));
  height: auto;
  min-height: 0;
  gap: 34px;
  margin: 0 auto;
}

.proof-slide {
  position: sticky;
  inset: auto;
  top: 96px;
  width: 100%;
  height: auto;
  min-height: 720px;
  overflow: hidden;
  border-radius: 32px;
  transform: none;
}

.proof-slide-primary {
  z-index: 1;
}

.proof-work-panel {
  z-index: 2;
  background:
    radial-gradient(560px 420px at -2% -8%, rgba(122, 170, 250, 0.42), transparent 60%),
    radial-gradient(920px 480px at 52% -14%, rgba(191, 237, 110, 0.55), transparent 62%),
    radial-gradient(520px 440px at 103% -6%, rgba(122, 178, 250, 0.3), transparent 60%),
    radial-gradient(680px 460px at -8% 110%, rgba(191, 237, 110, 0.26), transparent 60%),
    #ffffff;
  box-shadow: 0 30px 70px -35px rgba(15, 35, 80, 0.25);
  padding: 42px 56px 44px;
  transform: none;
}

.proof-client-panel {
  z-index: 3;
  background:
    radial-gradient(640px 540px at 102% 6%, rgba(190, 236, 110, 0.62), transparent 62%),
    radial-gradient(740px 640px at 103% 94%, rgba(103, 162, 250, 0.55), transparent 62%),
    radial-gradient(420px 340px at 100% 50%, rgba(150, 210, 235, 0.35), transparent 65%),
    #ffffff;
  box-shadow: 0 30px 70px -35px rgba(15, 35, 80, 0.25);
  padding: 60px 64px;
  transform: none;
}

.proof-slide[data-proof-slide="1"] {
  top: 108px;
}

.proof-slide[data-proof-slide="2"] {
  top: 120px;
}

.proof-scroll-section .proof-shell {
  width: 100%;
  height: 100%;
  padding: 58px 64px;
}

.proof-scroll-section .proof-copy h2 {
  font-size: 64px;
}

.proof-scroll-section .proof-collage {
  min-height: 620px;
}

.proof-scroll-section .proof-dashboard-card {
  width: min(540px, 100%);
}

.proof-scroll-section .proof-site-card {
  top: 214px;
  width: min(535px, 100%);
}

.proof-scroll-section .proof-quote-card {
  top: 436px;
}

.proof-work-panel .proof-card,
.proof-client-panel .proof-card {
  position: relative;
  inset: auto;
}

.proof-panel-dots {
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(rgba(94, 116, 150, 0.38) 1.6px, transparent 1.7px);
  background-size: 15px 15px;
}

.proof-work-dots-a {
  top: 34px;
  right: 46px;
  width: 118px;
  height: 92px;
}

.proof-work-dots-b {
  top: 47%;
  left: 40px;
  width: 104px;
  height: 88px;
}

.proof-client-dots-a {
  top: 96px;
  right: 30px;
  width: 96px;
  height: 170px;
}

.proof-client-dots-b {
  bottom: 190px;
  left: 44%;
  width: 112px;
  height: 92px;
}

.proof-work-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.3fr);
  gap: 44px;
  align-items: center;
}

.proof-work-copy h2,
.proof-client-copy-main h2 {
  color: var(--ink);
  font-size: 66px;
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.proof-work-copy p:last-child,
.proof-client-copy-main p:last-child {
  max-width: 420px;
  margin-top: 20px;
  color: #414b58;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.38;
}

.proof-browser-card,
.proof-mini-browser,
.proof-overview-card,
.proof-work-quote,
.proof-proof-stat,
.proof-client-quote,
.proof-client-rating {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 30px 55px -28px rgba(16, 35, 70, 0.3), 0 3px 10px rgba(16, 35, 70, 0.05);
}

.proof-browser-card {
  padding: 13px 13px 15px;
}

.proof-browser-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 6px 13px;
}

.proof-traffic {
  width: 11px;
  height: 11px;
  flex: none;
  border-radius: 50%;
}

.proof-red {
  background: #ff5f57;
}

.proof-yellow {
  background: #febc2e;
}

.proof-green {
  background: #28c840;
}

.proof-urlbar {
  display: flex;
  min-width: 0;
  max-width: 440px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1;
  border-radius: 9px;
  background: #eef1f5;
  color: #515b68;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
}

.proof-urlbar span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.proof-urlbar svg {
  width: 11px;
  height: 11px;
  color: #8a94a2;
}

.proof-browser-spacer {
  flex: 0 0 33px;
}

.proof-client-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 8px 18px;
}

.proof-client-logo {
  color: #10141b;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.08;
  white-space: nowrap;
}

.proof-client-logo span {
  color: var(--blue);
}

.proof-client-head nav,
.proof-mini-head nav {
  display: flex;
  gap: 18px;
  margin-left: auto;
  color: #5c6673;
  font-size: 12px;
  font-weight: 650;
}

.proof-small-button {
  padding: 10px 16px;
  font-size: 12px;
}

.proof-client-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 14px;
}

.proof-client-copy {
  padding: 20px 8px 104px;
}

.proof-client-copy h3 {
  color: #0d1a2e;
  font-size: 30px;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.proof-client-copy p {
  max-width: 28ch;
  margin-top: 12px;
  color: #5c6673;
  font-size: 14px;
}

.proof-client-copy .proof-button {
  margin-top: 16px;
  padding: 11px 18px;
  font-size: 12px;
}

.proof-client-photo {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 14px;
}

.proof-client-photo svg,
.proof-mini-photo svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.proof-result-bar {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 40px -18px rgba(14, 30, 60, 0.35), 0 2px 8px rgba(14, 30, 60, 0.06);
  padding: 15px 6px;
}

.proof-result-bar div {
  min-width: 0;
  border-left: 1px solid #edf0f4;
  padding: 3px 16px;
}

.proof-result-bar div:first-child {
  border-left: 0;
}

.proof-result-bar strong {
  display: block;
  color: #0d1220;
  font-size: 21px;
  font-weight: 850;
  line-height: 1.1;
}

.proof-result-bar span {
  display: block;
  margin-top: 2px;
  color: #7d8794;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.proof-caption {
  margin-top: 13px;
  color: #7d8794;
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.proof-work-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.9fr 1.05fr;
  gap: 20px;
  margin-top: 26px;
}

.proof-work-quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 28px;
}

.proof-work-quote p {
  margin-top: 14px;
  color: #12161c;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.42;
}

.proof-work-quote small,
.proof-proof-stat small,
.proof-client-quote small,
.proof-client-rating small {
  display: block;
  margin-top: 10px;
  color: #68727f;
  font-size: 13px;
  font-weight: 650;
}

.proof-proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 24px;
  text-align: center;
}

.proof-proof-stat > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 999px;
  background: #e8f6d0;
  color: #57a015;
}

.proof-proof-stat svg {
  width: 27px;
  height: 27px;
}

.proof-proof-stat strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 850;
  line-height: 1;
}

.proof-proof-stat b {
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
}

.proof-mini-browser {
  display: flex;
  flex-direction: column;
  padding: 11px;
}

.proof-mini-browser .proof-browser-chrome {
  padding: 2px 4px 9px;
}

.proof-mini-browser .proof-traffic {
  width: 8px;
  height: 8px;
}

.proof-mini-browser .proof-urlbar {
  max-width: 250px;
  padding: 5px 10px;
  font-size: 10px;
}

.proof-mini-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 4px 10px;
}

.proof-mini-head > span:first-child {
  font-size: 11px;
  font-weight: 850;
}

.proof-mini-head nav {
  gap: 10px;
  font-size: 9px;
}

.proof-mini-cta {
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 9px;
}

.proof-mini-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: 10px;
}

.proof-mini-hero h3 {
  color: #0e1526;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.18;
}

.proof-mini-hero p {
  margin-top: 6px;
  color: #5c6673;
  font-size: 10px;
}

.proof-mini-photo {
  position: relative;
  min-height: 112px;
  overflow: hidden;
  border-radius: 10px;
}

.proof-client-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(0, 1.02fr);
  gap: 70px;
  align-items: center;
  height: 100%;
}

.proof-client-copy-main h2 {
  max-width: 10ch;
  font-size: 78px;
}

.proof-client-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.proof-overview-card {
  padding: 20px 22px 18px;
}

.proof-overview-head,
.proof-overview-range {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.proof-overview-head h3 {
  color: var(--ink);
  font-size: 17px;
  font-weight: 850;
}

.proof-new-campaign {
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
}

.proof-new-campaign svg {
  width: 10px;
  height: 10px;
}

.proof-overview-range {
  justify-content: flex-end;
  margin-top: 10px;
}

.proof-overview-range .proof-select-pill {
  padding: 6px 9px;
  font-size: 11px;
}

.proof-overview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 12px;
}

.proof-overview-stats div {
  min-width: 0;
  border: 1px solid #edf0f4;
  border-radius: 10px;
  padding: 9px 11px;
}

.proof-overview-stats .is-highlighted {
  background: #f1f3f6;
  border-color: #e6eaef;
}

.proof-overview-stats span {
  display: block;
  color: #7d8794;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.proof-overview-stats strong {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
}

.proof-overview-stats em {
  display: block;
  margin-top: 2px;
  color: #18a24b;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.proof-overview-chart {
  margin-top: 14px;
}

.proof-overview-chart svg {
  width: 100%;
  height: auto;
}

.proof-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  color: #525c68;
  font-size: 11px;
  font-weight: 700;
}

.proof-legend i {
  width: 15px;
  height: 4px;
  border-radius: 2px;
  background: #3b82f6;
}

.proof-client-quote,
.proof-client-rating {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 26px 28px;
}

.proof-bubble {
  display: grid;
  width: 60px;
  height: 60px;
  flex: none;
  place-items: center;
  border-radius: 999px;
}

.proof-bubble svg {
  width: 26px;
  height: 26px;
}

.proof-bubble-green {
  background: #e9f6d3;
  color: #5aa315;
}

.proof-bubble-blue {
  background: #e2ecfd;
  color: var(--blue);
}

.proof-stars-small svg {
  width: 15px;
  height: 15px;
}

.proof-client-quote p {
  margin-top: 10px;
  color: #12161c;
  font-size: 16px;
  font-weight: 750;
  line-height: 1.42;
}

.proof-client-quote strong,
.proof-client-rating b {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.proof-client-rating strong {
  display: block;
  color: var(--ink);
  font-size: 38px;
  font-weight: 850;
  line-height: 1;
}

@media (max-width: 1120px) {
  .proof-section {
    padding: 72px 0;
  }

  .proof-shell {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 58px 34px;
  }

  .proof-copy h2 {
    max-width: 680px;
    font-size: 64px;
  }

  .proof-collage {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 0;
  }

  .proof-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .proof-dashboard-card,
  .proof-site-card,
  .proof-quote-card {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .proof-dots {
    display: none;
  }
}

@media (max-width: 640px) {
  .proof-section {
    padding: 54px 0;
  }

  .proof-shell {
    width: min(560px, calc(100% - 20px));
    border-radius: 24px;
    padding: 38px 18px 20px;
  }

  .proof-copy h2 {
    font-size: 46px;
    line-height: 0.98;
  }

  .proof-copy > p:last-child {
    max-width: 300px;
    margin-top: 18px;
    font-size: 18px;
  }

  .proof-dashboard-card {
    display: block;
  }

  .proof-dash-side {
    display: none;
  }

  .proof-dash-main {
    padding: 16px;
  }

  .proof-dash-head {
    align-items: flex-start;
    margin-bottom: 14px;
  }

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

  .proof-stat {
    padding: 10px;
  }

  .proof-stat strong {
    font-size: 19px;
  }

  .proof-chart {
    margin-top: 16px;
  }

  .proof-site-card {
    padding: 14px;
  }

  .proof-site-head {
    flex-wrap: wrap;
    gap: 10px;
  }

  .proof-site-head nav {
    display: none;
  }

  .proof-mini-button {
    margin-left: auto;
  }

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

  .proof-site-copy h3 {
    font-size: 27px;
  }

  .proof-photo {
    min-height: 190px;
  }

  .proof-badges {
    justify-content: flex-start;
    padding-inline: 0;
  }

  .proof-quote-card {
    padding: 22px 20px;
  }
}

@media (max-width: 390px) {
  .proof-copy h2 {
    font-size: 40px;
  }

  .proof-select-pill {
    padding: 7px 9px;
    font-size: 11px;
  }

  .proof-stat-grid {
    gap: 8px;
  }

  .proof-call {
    white-space: normal;
  }
}

@media (max-width: 1120px) {
  .proof-scroll-section {
    min-height: auto;
  }

  .proof-sticky {
    position: static;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }

  .proof-stack-viewport {
    display: grid;
    width: min(860px, calc(100% - 32px));
    height: auto;
    min-height: 0;
    gap: 24px;
  }

  .proof-slide {
    position: sticky;
    inset: auto;
    top: 82px;
    height: auto;
    transform: none !important;
  }

  .proof-scroll-section .proof-slide[data-proof-slide="1"] {
    top: 94px;
  }

  .proof-scroll-section .proof-slide[data-proof-slide="2"] {
    top: 106px;
  }

  .proof-scroll-section .proof-shell {
    width: 100%;
    height: auto;
  }

  .proof-work-panel,
  .proof-client-panel {
    padding: 54px 34px;
  }

  .proof-work-hero,
  .proof-client-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .proof-work-copy h2,
  .proof-client-copy-main h2 {
    max-width: 760px;
    font-size: 62px;
  }

  .proof-client-copy-main h2 {
    max-width: 11ch;
  }

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

  .proof-mini-browser {
    grid-column: 1 / -1;
  }

  .proof-panel-dots {
    display: none;
  }
}

@media (max-width: 760px) {
  .proof-stack-viewport {
    width: min(560px, calc(100% - 20px));
    gap: 18px;
  }

  .proof-slide {
    top: 82px;
  }

  .proof-scroll-section .proof-slide[data-proof-slide="1"] {
    top: 92px;
  }

  .proof-scroll-section .proof-slide[data-proof-slide="2"] {
    top: 102px;
  }

  .proof-work-panel,
  .proof-client-panel {
    border-radius: 24px;
    padding: 38px 18px 20px;
  }

  .proof-work-copy h2,
  .proof-client-copy-main h2 {
    font-size: 46px;
    line-height: 0.98;
  }

  .proof-work-copy p:last-child,
  .proof-client-copy-main p:last-child {
    max-width: 300px;
    font-size: 18px;
  }

  .proof-client-head {
    flex-wrap: wrap;
    gap: 10px;
  }

  .proof-client-head nav,
  .proof-mini-head nav {
    display: none;
  }

  .proof-small-button {
    margin-left: auto;
  }

  .proof-client-hero,
  .proof-mini-hero {
    grid-template-columns: 1fr;
  }

  .proof-client-copy {
    padding: 12px 4px 8px;
  }

  .proof-client-photo {
    min-height: 210px;
  }

  .proof-result-bar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 10px;
    margin-top: 12px;
    padding: 12px 6px;
  }

  .proof-result-bar div {
    border-left: 0;
    padding: 6px 12px;
  }

  .proof-work-row,
  .proof-overview-stats {
    grid-template-columns: 1fr;
  }

  .proof-overview-stats span {
    white-space: normal;
  }

  .proof-client-quote,
  .proof-client-rating {
    gap: 14px;
    padding: 22px 20px;
  }

  .proof-bubble {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 390px) {
  .proof-work-copy h2,
  .proof-client-copy-main h2 {
    font-size: 40px;
  }

  .proof-overview-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-client-quote,
  .proof-client-rating {
    flex-direction: column;
  }
}

.proof-rows {
  border-top: 1px solid var(--line);
}

.proof-rows article {
  display: grid;
  gap: 12px;
  border-width: 0 0 1px;
  border-radius: 0;
  padding: 28px 0;
}

.proof-rows h3 {
  font-size: 34px;
}

.pricing-grid article {
  display: grid;
  gap: 14px;
}

.pricing-grid h3 {
  font-size: 32px;
}

.pricing-grid strong {
  font-size: 26px;
}

.featured-price {
  background: var(--ink) !important;
  color: var(--white);
  box-shadow: var(--shadow);
}

.featured-price span {
  color: var(--accent);
}

.featured-price p {
  color: #d7deea;
}

.quote-section,
.faq-section,
.final-cta {
  background: #030407;
  color: var(--white);
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding-top: 126px;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto 42%;
  height: 560px;
  pointer-events: none;
  background:
    radial-gradient(circle at 35% 34%, rgba(183, 255, 74, 0.22), transparent 38%),
    radial-gradient(circle at 70% 42%, rgba(45, 125, 255, 0.22), transparent 42%);
  filter: blur(34px);
}

.quote-section .shell,
.faq-section .shell,
.final-cta .shell {
  position: relative;
  z-index: 1;
}

.quote-section .section-label,
.faq-section .section-label,
.final-cta .section-label {
  color: var(--accent);
}

.quote-grid h2,
.faq-grid h2,
.final-grid h2 {
  color: var(--white);
}

.quote-grid p,
.faq-answer,
.site-footer p,
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.calendar-panel {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  box-shadow: none;
}

.calendar-panel span,
.form-top span {
  color: var(--accent);
}

.quote-form {
  display: grid;
  gap: 16px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

.form-top {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 14px;
}

.form-top strong {
  color: var(--white);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--white);
  font-weight: 850;
}

.quote-form input,
.quote-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 11px 14px;
}

.quote-form input:focus,
.quote-form select:focus,
.faq-question:focus {
  outline: 3px solid rgba(183, 255, 74, 0.7);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.faq-grid {
  align-items: start;
}

.faq-grid h2 {
  font-size: 58px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--white);
  padding: 22px;
  cursor: pointer;
  font-weight: 950;
  text-align: left;
}

.faq-question span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
}

.faq-item.is-open {
  background: rgba(255, 255, 255, 0.1);
}

.faq-item.is-open .faq-answer {
  color: rgba(255, 255, 255, 0.72);
}

.faq-item.is-open .faq-question span {
  background: var(--white);
  color: var(--accent);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.final-grid {
  align-items: center;
}

.final-grid h2 {
  font-size: 58px;
}

.site-footer {
  padding: 42px 0 112px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand {
  color: var(--white);
  font-size: 28px;
}

.footer-brand .brand-mark-img {
  width: 51px;
  height: 60px;
}

.footer-brand .brand-word span:first-child {
  color: var(--accent);
}

.footer-brand .brand-word span:last-child {
  color: var(--white);
}

.site-footer p,
.footer-links a {
  color: #d7deea;
}

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

.footer-links {
  display: grid;
  gap: 9px;
}

.sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(7, 9, 13, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.show-sticky-cta .sticky-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta .button {
  min-height: 44px;
  padding: 11px 12px;
}

@media (max-width: 760px) {
  .nav {
    flex-wrap: nowrap;
    min-height: 104px;
    padding: 18px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
    gap: 10px;
  }

  .nav-actions .text-link {
    display: none;
  }

  .brand {
    gap: 8px;
    font-size: 20px;
  }

  .brand-mark-img {
    width: 58px;
    height: 66px;
  }

  .nav-hire {
    min-height: 52px;
    padding: 13px 20px;
    font-size: 18px;
  }

  .nav-menu-button {
    width: 58px;
    height: 58px;
    border-width: 2.5px;
  }

  .nav-menu-button span {
    width: 25px;
    height: 2.5px;
  }

  h2,
  .intro-grid h2,
  .stage-heading h2,
  .massive-heading h2,
  .problem-layout h2,
  .system-copy h2,
  .website-grid h2,
  .feature-copy h2,
  .quote-grid h2,
  .faq-grid h2,
  .final-grid h2 {
    font-size: 38px;
  }

  .hero {
    min-height: clamp(740px, calc(100svh - 88px), 820px);
  }

  .hero::after {
    inset: -12% -36% -20% 60%;
    opacity: 0.6;
  }

  .hero-bg-media {
    inset: -18% -40% -18% 52%;
    filter: blur(28px);
    opacity: 0.62;
  }

  .hero-shell {
    justify-content: center;
    padding: 122px 0 54px;
  }

  .hero h1 {
    gap: 0;
    font-size: 96px;
    line-height: 0.76;
  }

  .hero-title .desktop-line {
    display: none;
  }

  .hero-title .mobile-line {
    display: block;
  }

  .hero-title span {
    width: max-content;
  }

  .hero-title span:first-child {
    padding-left: 0;
  }

  .hero-title .mobile-line:nth-child(3) {
    padding-left: 18%;
  }

  .hero-title .mobile-line:nth-child(4) {
    padding-left: 3%;
  }

  .hero-title .accent-line {
    padding-left: 18%;
  }

  .hero-note {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
    bottom: 42px;
    justify-content: flex-start;
    margin-top: 0;
    padding-right: 0;
  }

  .hero-subhead {
    max-width: 350px;
    font-size: 23px;
    line-height: 1.18;
  }

  .intro-grid {
    min-height: auto;
    gap: 34px;
  }

  .intro-copy {
    max-width: none;
  }

  .intro-grid .belief-headline {
    max-width: none;
    font-size: 54px;
    line-height: 0.9;
  }

  .belief-headline span {
    white-space: nowrap;
  }

  .belief-headline span:nth-child(2) {
    padding-left: 0.45ch;
  }

  .belief-headline span:nth-child(3) {
    padding-left: 0.95ch;
  }

  .belief-headline span:nth-child(4) {
    padding-left: 0;
  }

  .intro-copy > p:last-of-type {
    font-size: 16px;
  }

  .belief-list article {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 15px 0;
  }

  .belief-icon {
    width: 48px;
    height: 48px;
  }

  .lead-path-visual {
    min-height: 660px;
    margin-top: 8px;
  }

  .journey-line {
    inset: 54px -34px auto -34px;
    width: calc(100% + 68px);
    height: 520px;
    transform: none;
  }

  .journey-card {
    width: 104px;
    min-height: 124px;
    padding: 14px 10px;
  }

  .journey-card h3,
  .growth-callout h3 {
    font-size: 15px;
  }

  .journey-card p,
  .growth-callout p {
    font-size: 12px;
  }

  .journey-card.seen {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .journey-card.clicked {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .journey-card.contacted {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .journey-card.followed {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .journey-card.converted {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
  }

  .growth-callout {
    right: 0;
    bottom: 0;
    width: min(100%, 330px);
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .intro-panel .shell {
    width: min(560px, calc(100% - 32px));
  }

  .intro-grid {
    display: block;
    aspect-ratio: auto;
    container-type: normal;
  }

  .intro-copy {
    position: static;
    width: auto;
  }

  .lead-path-visual {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin-top: 38px;
  }

  .journey-line {
    display: none;
  }

  .path-dotgrid {
    background-image: radial-gradient(rgba(147, 161, 180, 0.4) 1.5px, transparent 1.9px);
    background-size: 13px 13px;
  }

  .path-dotgrid-a {
    left: auto;
    right: 14px;
    top: 54px;
    width: 96px;
    height: 78px;
  }

  .path-dotgrid-b {
    left: 20px;
    top: auto;
    bottom: 18px;
    width: 120px;
    height: 66px;
  }

  .journey-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    z-index: 2;
    flex-direction: row;
    align-items: center;
    width: 100%;
    min-height: auto;
    gap: 15px;
    padding: 16px 18px;
    border-radius: 18px;
    text-align: left;
    transform: none;
  }

  .journey-card.converted,
  .journey-card.contacted,
  .journey-card.followed {
    width: 100%;
  }

  .journey-icon {
    width: 52px;
    height: 52px;
  }

  .journey-icon.check {
    box-shadow: 0 0 0 5px rgba(148, 201, 62, 0.18);
  }

  .journey-card h3 {
    margin-top: 0;
    font-size: 16px;
  }

  .journey-card p {
    margin-top: 3px;
    font-size: 13px;
  }

  .journey-connector {
    display: flex;
    height: 36px;
    padding-left: 33px;
  }

  .journey-connector-arrow {
    height: 46px;
  }

  .journey-connector svg {
    display: block;
    width: 22px;
    height: 100%;
    overflow: visible;
  }

  .growth-callout {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    margin-top: 26px;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
    transform: none;
  }

  .growth-callout h3 {
    font-size: 16px;
  }

  .growth-callout p {
    font-size: 15px;
  }

  .button-row .button {
    width: 100%;
  }

  .marquee-track {
    font-size: 18px;
  }

  .services-stage {
    padding: 68px 0 84px;
    border-radius: 0 0 32px 32px;
  }

  .services-heading {
    min-height: 290px;
  }

  .services-heading h2 {
    font-size: 64px;
  }

  .services-heading h2 span:last-child {
    padding-left: 12%;
  }

  .services-arrow {
    right: 4%;
    bottom: 54px;
    width: 72px;
    height: 72px;
  }

  .services-arrow::before {
    width: 56px;
    height: 3px;
  }

  .services-arrow::after {
    width: 34px;
    height: 34px;
    border-right-width: 3px;
    border-bottom-width: 3px;
  }

  .service-card-stack {
    gap: 18px;
  }

  .service-card {
    top: 78px;
    min-height: auto;
    gap: 18px;
    border-radius: 28px;
    padding: 20px;
  }

  .service-card:nth-child(2) {
    top: 88px;
  }

  .service-card:nth-child(3) {
    top: 98px;
  }

  .service-card h3 {
    font-size: 32px;
  }

  .service-card p {
    font-size: 15px;
  }

  .service-visual {
    min-height: 188px;
    border-radius: 20px;
  }

  .service-card-copy {
    gap: 14px;
  }

  .service-pills {
    gap: 7px;
  }

  .service-pills span {
    padding: 7px 10px;
    font-size: 12px;
  }

  .service-more {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 14px;
  }

  .promo-visual {
    gap: 10px;
    padding: 16px;
  }

  .metric-card,
  .promo-chart {
    border-radius: 16px;
    padding: 14px;
  }

  .metric-card strong {
    font-size: 40px;
  }

  .promo-chart {
    min-height: 84px;
  }

  .flow-visual {
    padding: 20px;
  }

  .flow-steps { gap: 16px; }

  .flow-ico { width: 44px; height: 44px; }
  .flow-ico svg { width: 20px; height: 20px; }

  .flow-label b { font-size: 17px; }
  .flow-label i { font-size: 12px; }

  .metric-card strong {
    font-size: 48px;
  }

  .flow-node {
    font-size: 22px;
  }

  .problem-list article,
  .map-node {
    grid-template-columns: 1fr;
  }

  .creative-board {
    grid-template-columns: 1fr;
  }

  .media-frame img {
    border-radius: 22px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 84px;
  }

  .hero-subhead {
    font-size: 21px;
  }

  .intro-grid .belief-headline {
    font-size: 48px;
  }
}

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

  .hero::after,
  .hero-bg-media {
    transition: none;
    transform: rotate(7deg);
  }
}

@media (min-width: 761px) {
  .section {
    padding: 110px 0;
  }

  .intro-grid,
  .problem-layout,
  .system-grid,
  .split-feature,
  .website-grid,
  .quote-grid,
  .faq-grid,
  .final-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-row {
    grid-template-columns: 80px 1fr 1.05fr;
  }

  .service-card {
    grid-template-columns: 1fr 0.92fr;
  }

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

  .proof-rows article {
    grid-template-columns: 0.45fr 0.9fr 1fr;
    align-items: center;
  }

  .reverse > :first-child {
    order: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1160px) {
  .hero h1 {
    font-size: 170px;
  }

  .intro-copy {
    left: 4.2%;
    top: 16%;
    width: 50%;
  }

  .intro-grid .belief-headline {
    font-size: 98px;
  }

  .services-heading h2 {
    font-size: 190px;
  }

  .oversized-word {
    font-size: 210px;
  }
}

@media (min-width: 1400px) {
  .intro-copy {
    left: 4.2%;
    top: 17%;
    width: 51%;
  }

  .lead-path-visual {
    transform: translateX(2%);
  }

  .intro-grid .belief-headline {
    font-size: 112px;
  }

  .intro-accent {
    width: 118px;
    height: 6px;
  }
}

@media (min-width: 1660px) {
  .intro-grid .belief-headline {
    font-size: 122px;
  }
}

@media (min-width: 761px) {
  .section.proof-scroll-section {
    padding: 96px 0 128px;
  }

  .section.proof-scroll-section .proof-slide {
    position: sticky;
    top: 96px;
    transform: none;
  }

  .section.proof-scroll-section .proof-slide[data-proof-slide="1"] {
    top: 108px;
  }

  .section.proof-scroll-section .proof-slide[data-proof-slide="2"] {
    top: 120px;
  }
}

.proof-kota-section {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, rgba(7, 9, 13, 0), rgba(7, 9, 13, 0.96) 38px),
    #030407;
  color: var(--white);
  padding: 0;
}

.proof-kota-section > .proof-sprite,
.proof-kota-section > .proof-sticky {
  display: none;
}

.proof-kota-shell {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 150px;
}

.proof-kota-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 44px;
}

.proof-kota-label {
  color: var(--accent);
}

.proof-kota-heading {
  display: grid;
  color: var(--white);
  font-size: clamp(96px, 14vw, 210px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
}

.proof-kota-heading span:last-child {
  margin-left: 0.42em;
}

.proof-kota-note {
  max-width: 530px;
  padding-bottom: 18px;
}

.proof-kota-note h3 {
  color: var(--white);
  font-size: clamp(34px, 3.7vw, 58px);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: 0;
}

.proof-kota-note p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  font-weight: 520;
  line-height: 1.45;
}

.proof-kota-feed {
  display: grid;
  gap: 38px;
}

.proof-kota-card {
  position: sticky;
  top: 96px;
  display: grid;
  min-height: min(720px, calc(100vh - 138px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px 92px 10px 10px;
  background: #07090d;
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.46);
}

.proof-kota-card[data-proof-kota-slide="0"] {
  z-index: 1;
}

.proof-kota-card[data-proof-kota-slide="1"] {
  top: 108px;
  z-index: 2;
}

.proof-kota-card[data-proof-kota-slide="2"] {
  top: 120px;
  z-index: 3;
}

.proof-work-card-meta {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 650;
}

.proof-work-card-meta span:last-child {
  color: var(--accent);
}

.proof-work-feature {
  background:
    linear-gradient(135deg, rgba(183, 255, 74, 0.12), transparent 34%),
    linear-gradient(160deg, #07090d 0%, #050608 54%, #0a1220 100%),
    #07090d;
}

.proof-work-feature-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: stretch;
  padding: 34px;
}

.proof-work-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 10px 8px;
}

.proof-work-feature-copy p,
.proof-system-copy p,
.proof-client-voice-head p {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-work-feature-copy h3 {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(48px, 5.2vw, 82px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0;
}

.proof-kota-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 17px 24px;
  font-size: 16px;
  font-weight: 850;
}

.proof-work-stage {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px 72px 8px 8px;
  background:
    linear-gradient(128deg, #b7ff4a 0%, #ecffd4 28%, #87ddff 56%, #2d7dff 100%);
  isolation: isolate;
}

.proof-work-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0) 38%),
    repeating-linear-gradient(90deg, rgba(7, 9, 13, 0.08) 0 1px, transparent 1px 10px);
  mix-blend-mode: soft-light;
}

.proof-site-preview {
  position: absolute;
  overflow: hidden;
  width: min(520px, 74%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: #0b0e13;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

/* Stacked browser windows: SG Aircon in front, Cosy Blinds peeking behind */
.proof-site-front {
  z-index: 2;
  left: 3%;
  bottom: 6%;
  transform: rotate(-2deg);
}

.proof-site-back {
  z-index: 1;
  right: 3%;
  top: 5%;
  transform: rotate(3deg);
}

.proof-site-shot {
  display: block;
  width: 100%;
  height: auto;
  background: #2a211c;
}

.proof-shot-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #14181f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-shot-chrome i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.proof-shot-chrome i:first-child { background: #ff5f57; }
.proof-shot-chrome i:nth-child(2) { background: #febc2e; }
.proof-shot-chrome i:nth-child(3) { background: #28c840; }

.proof-shot-chrome span {
  flex: 1;
  margin-left: 8px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 6px 12px;
}

/* Faithful rebuild of the live sgairconvic.com hero (real logo, photo, copy) */
.sgw { background: #0c2f73; color: #fff; }

.sgw-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 9px 16px;
}
.sgw-logo { height: 22px; width: auto; display: block; }
.sgw-menu { display: flex; gap: 14px; margin-left: auto; }
.sgw-menu span {
  color: #0c2f73;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sgw-elig {
  background: #f6c445;
  color: #0c2f73;
  font-size: 9.5px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  padding: 7px 11px;
  border-radius: 4px;
}

.sgw-subnav {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #0a1c46;
  padding: 8px 16px;
}
.sgw-subnav > span {
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sgw-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  color: #0c2f73 !important;
  border-radius: 999px;
  padding: 3px 9px;
}
.sgw-rating b { color: #4285f4; }
.sgw-rating em { color: #f6b01e; font-style: normal; letter-spacing: -1px; }
.sgw-active { color: #f6c445 !important; }
.sgw-phone { margin-left: auto; }

.sgw-hero {
  position: relative;
  min-height: 210px;
  overflow: hidden;
}
.sgw-tech {
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 56%;
  object-fit: cover;
  object-position: 62% top;
}
.sgw-hero-copy {
  position: relative;
  z-index: 1;
  padding: 22px 20px 24px;
  max-width: 60%;
}
.sgw-h1 {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 0.9;
  font-style: italic;
  text-transform: uppercase;
}
.sgw-h1 span { font-size: 21px; font-weight: 900; color: #fff; }
.sgw-h1 b { font-size: 29px; font-weight: 900; color: #e23b2e; margin: 1px 0; }
.sgw-hero-copy p {
  margin: 9px 0 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.28;
  color: #fff;
  max-width: 24ch;
}
.sgw-hero-copy p i { font-style: italic; }
.sgw-cta {
  display: inline-block;
  margin-top: 13px;
  background: #f6c445;
  color: #0c2f73;
  font-size: 11px;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  padding: 10px 17px;
  border-radius: 999px;
}

.sgw-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  background: #fff;
  padding: 10px 16px;
}
.sgw-trust span {
  position: relative;
  padding-left: 13px;
  color: #0c2f73;
  font-size: 9px;
  font-weight: 800;
}
.sgw-trust span::before {
  content: "\2714";
  position: absolute;
  left: 0;
  color: #e23b2e;
}

.proof-preview-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 18px 20px;
  color: var(--white);
}

.proof-preview-nav strong {
  font-size: 18px;
  font-weight: 900;
}

.proof-preview-nav span {
  border-radius: 999px;
  background: var(--accent);
  color: var(--ink);
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 900;
}

.proof-preview-hero {
  padding: 28px 24px 34px;
}

.proof-preview-hero span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-preview-hero h4 {
  max-width: 11ch;
  margin: 10px 0 0;
  color: var(--white);
  font-size: clamp(42px, 4.6vw, 64px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.proof-preview-hero p {
  max-width: 31ch;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 560;
}

.proof-preview-hero div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.proof-preview-hero i,
.proof-preview-strip span,
.proof-dashboard-tags span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  padding: 8px 12px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.proof-preview-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 20px 18px;
}

.proof-dashboard-preview {
  position: absolute;
  right: 4%;
  bottom: 7%;
  z-index: 2;
  width: min(340px, 40%);
  border-radius: 18px 54px 18px 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  padding: 22px;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.28);
}

.proof-dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.proof-dashboard-top strong {
  font-size: 20px;
  font-weight: 900;
}

.proof-dashboard-top span {
  color: #657082;
  font-size: 13px;
  font-weight: 800;
}

.proof-dashboard-bars {
  display: grid;
  gap: 13px;
  margin-top: 26px;
}

.proof-dashboard-bars span {
  height: 14px;
  width: var(--bar);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
}

.proof-dashboard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.proof-dashboard-tags span {
  border-color: #dde5f0;
  color: #111827;
}

.proof-work-systems {
  background:
    linear-gradient(132deg, #07101c 0%, #06070a 42%, #0b1307 100%),
    #07090d;
}

.proof-work-systems-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  padding: 34px;
}

.proof-system-copy {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 10px 8px;
}

.proof-system-copy h3 {
  max-width: 520px;
  color: var(--white);
  font-size: clamp(46px, 4.4vw, 72px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.proof-system-card {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px 76px 8px 8px;
  padding: 26px;
}

.proof-system-card-call {
  background:
    linear-gradient(145deg, rgba(45, 125, 255, 0.86), rgba(10, 18, 34, 0.96) 62%),
    #0b1324;
}

.proof-system-card-review {
  background:
    linear-gradient(145deg, rgba(183, 255, 74, 0.94), rgba(240, 255, 216, 0.9) 48%, rgba(255, 255, 255, 0.9)),
    #e8f6d0;
  color: var(--ink);
}

.proof-system-card span {
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-system-card-review span {
  background: rgba(7, 9, 13, 0.1);
}

.proof-system-card strong {
  display: block;
  max-width: 12ch;
  color: inherit;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.proof-call-list {
  display: grid;
  gap: 12px;
}

.proof-call-list i {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.11);
  padding: 14px;
  font-style: normal;
}

.proof-call-list b {
  color: var(--white);
  font-size: 15px;
  font-weight: 900;
}

.proof-call-list em {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-style: normal;
  font-weight: 750;
}

.proof-review-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  padding: 22px;
  box-shadow: 0 20px 60px rgba(7, 9, 13, 0.16);
}

.proof-review-card div {
  color: #ffb400;
  font-size: 28px;
  letter-spacing: 0;
}

.proof-review-card p {
  margin-top: 14px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.18;
}

.proof-review-two {
  display: grid;
  gap: 12px;
}

.proof-review-two .proof-review-card {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.9);
}

.proof-review-two .proof-review-card div {
  font-size: 20px;
}

.proof-review-two .proof-review-card p {
  margin-top: 8px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.24;
}

.proof-review-card small {
  display: block;
  margin-top: 9px;
  color: #5b6473;
  font-size: 11.5px;
  font-weight: 800;
}

.proof-client-voice-stage {
  background:
    linear-gradient(135deg, #07090d 0%, #050608 54%, #0c1519 100%),
    #07090d;
  padding: 48px;
}

.proof-client-voice-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.proof-client-voice-head h3 {
  color: var(--white);
  font-size: clamp(58px, 7vw, 116px);
  font-weight: 760;
  line-height: 0.92;
  letter-spacing: 0;
}

.proof-client-voice-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(280px, 0.52fr);
  gap: 34px;
  align-items: end;
}

.proof-quote-stack {
  position: absolute;
  left: 0;
  top: 28px;
  z-index: 0;
  width: min(830px, 68%);
  height: calc(100% - 40px);
  pointer-events: none;
}

.proof-quote-stack span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px 112px 8px 8px;
}

.proof-quote-stack span:first-child {
  transform: translate(-18px, 22px);
  background: #dff2ff;
}

.proof-quote-stack span:last-child {
  transform: translate(-34px, 44px);
  background: #eef8df;
}

.proof-quote-main {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: space-between;
  grid-column: 1;
  margin: 0;
  border-radius: 8px 112px 8px 8px;
  background: var(--accent);
  color: var(--ink);
  padding: 44px 48px 34px;
}

.proof-quote-main figcaption {
  color: rgba(7, 9, 13, 0.72);
  font-size: 18px;
  font-weight: 900;
}

.proof-quote-main blockquote {
  max-width: 880px;
  color: var(--ink);
  font-size: clamp(32px, 4.1vw, 64px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: 0;
}

.proof-quote-main footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.proof-quote-main strong,
.proof-quote-main span {
  display: block;
}

.proof-quote-main strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.proof-quote-main span {
  margin-top: 4px;
  color: rgba(7, 9, 13, 0.68);
  font-weight: 760;
}

.proof-quote-main a {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  font-size: 38px;
  font-weight: 760;
  line-height: 1;
}

.proof-client-proof-note {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px 72px 8px 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 26px;
}

.proof-client-proof-note span {
  color: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.proof-client-proof-note p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
  font-weight: 560;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .proof-kota-shell {
    width: min(900px, calc(100% - 32px));
    padding: 86px 0 120px;
  }

  .proof-kota-intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .proof-kota-heading {
    font-size: clamp(86px, 18vw, 164px);
  }

  .proof-kota-note {
    max-width: 720px;
  }

  .proof-kota-card {
    top: 86px;
    min-height: auto;
  }

  .proof-kota-card[data-proof-kota-slide="1"] {
    top: 98px;
  }

  .proof-kota-card[data-proof-kota-slide="2"] {
    top: 110px;
  }

  .proof-work-feature-grid,
  .proof-work-systems-grid,
  .proof-client-voice-grid {
    grid-template-columns: 1fr;
  }

  .proof-work-feature-copy,
  .proof-system-copy {
    min-height: 0;
  }

  .proof-work-stage {
    min-height: 520px;
  }

  .proof-system-card {
    min-height: 380px;
  }

  .proof-system-card strong {
    max-width: 12ch;
  }

  .proof-client-proof-note {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .proof-kota-section {
    overflow: visible;
  }

  .proof-kota-shell {
    width: min(560px, calc(100% - 20px));
    padding: 64px 0 96px;
  }

  .proof-kota-intro {
    margin-bottom: 28px;
  }

  .proof-kota-heading {
    font-size: clamp(78px, 25vw, 112px);
  }

  .proof-kota-heading span:last-child {
    margin-left: 0.26em;
  }

  .proof-kota-note {
    padding-bottom: 0;
  }

  .proof-kota-note h3 {
    font-size: 34px;
  }

  .proof-kota-note p {
    font-size: 17px;
  }

  .proof-kota-feed {
    gap: 22px;
  }

  .proof-kota-card {
    position: sticky;
    top: 92px;
    border-radius: 8px 48px 8px 8px;
  }

  .proof-kota-card[data-proof-kota-slide="1"] {
    top: 104px;
  }

  .proof-kota-card[data-proof-kota-slide="2"] {
    top: 116px;
  }

  .proof-work-card-meta {
    min-height: 48px;
    padding: 0 13px;
    font-size: 13px;
  }

  .proof-work-feature-grid,
  .proof-work-systems-grid {
    gap: 18px;
    padding: 18px;
  }

  .proof-work-feature-copy {
    gap: 22px;
    padding: 4px 0 0;
  }

  .proof-work-feature-copy h3,
  .proof-system-copy h3 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .proof-kota-pill {
    width: 100%;
    padding: 15px 16px;
    font-size: 15px;
  }

  .proof-work-stage {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 22px 16px;
    border-radius: 8px 44px 8px 8px;
  }

  .proof-site-preview {
    position: static;
    width: 100%;
    transform: none;
  }

  .proof-site-back {
    order: 2;
    transform: rotate(1.5deg);
  }

  .proof-site-front {
    order: 1;
    transform: rotate(-1.5deg);
  }

  .proof-preview-hero {
    padding: 28px 20px 34px;
  }

  .proof-preview-hero h4 {
    font-size: 50px;
  }

  .proof-dashboard-preview {
    left: 28px;
    right: 18px;
    bottom: 18px;
    width: auto;
    border-radius: 16px 42px 16px 16px;
  }

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

  .proof-system-copy {
    gap: 20px;
    padding: 4px 0 0;
  }

  .proof-system-card {
    min-height: 310px;
    border-radius: 8px 48px 8px 8px;
    padding: 22px;
  }

  .proof-system-card strong {
    font-size: 36px;
  }

  .proof-call-list {
    gap: 8px;
  }

  .proof-call-list i {
    padding: 11px 12px;
  }

  .proof-review-card {
    padding: 18px;
  }

  .proof-review-card p {
    font-size: 18px;
  }

  .proof-client-voice-stage {
    padding: 28px 18px 20px;
  }

  .proof-client-voice-head {
    display: grid;
    gap: 12px;
  }

  .proof-client-voice-head h3 {
    font-size: clamp(50px, 16vw, 72px);
  }

  .proof-client-voice-grid {
    gap: 22px;
  }

  .proof-quote-stack {
    left: 16px;
    top: 18px;
    width: calc(100% - 32px);
    height: 360px;
  }

  .proof-quote-stack span:first-child {
    transform: translate(-8px, 16px);
  }

  .proof-quote-stack span:last-child {
    transform: translate(-16px, 32px);
  }

  .proof-quote-main {
    min-height: 360px;
    border-radius: 8px 58px 8px 8px;
    padding: 30px 24px 24px;
  }

  .proof-quote-main blockquote {
    font-size: clamp(28px, 8vw, 38px);
  }

  .proof-quote-main footer {
    align-items: start;
  }

  .proof-quote-main a {
    width: 50px;
    height: 50px;
    border-width: 2px;
    font-size: 30px;
  }

  .proof-client-proof-note {
    border-radius: 8px 44px 8px 8px;
    padding: 22px;
  }
}

@media (max-width: 390px) {
  .proof-kota-heading {
    font-size: 72px;
  }

  .proof-preview-nav {
    align-items: center;
    flex-direction: row;
  }

  .proof-dashboard-tags span {
    font-size: 11px;
  }

  .proof-work-stage {
    min-height: 580px;
  }

  .proof-quote-main blockquote {
    font-size: 27px;
  }
}


/* Rolling website gallery (service card 01) */
.website-visual { padding: 0; }

.web-reel {
  position: absolute;
  inset: -16% -8%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  transform: rotate(-18deg) scale(1.3);
  transform-origin: center;
}

.web-col-track {
  display: block;
  will-change: transform;
}

.web-col:nth-child(1) .web-col-track { animation: web-down 14s linear infinite; }
.web-col:nth-child(2) .web-col-track { animation: web-up 11s linear infinite; }
.web-col:nth-child(3) .web-col-track { animation: web-down 17s linear infinite; }

@keyframes web-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@keyframes web-down {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

.web-card {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(7, 9, 13, 0.06);
  box-shadow: 0 12px 26px rgba(7, 9, 13, 0.16);
}
.web-card-bar { display: flex; gap: 4px; padding: 7px 9px; background: #eef1f6; }
.web-card-bar i { width: 5px; height: 5px; border-radius: 50%; background: #c8d0dc; }
.web-card-hero { display: grid; gap: 8px; padding: 14px 12px; background: var(--wc, #2d7dff); }
.web-card-hero b { height: 9px; width: 72%; border-radius: 4px; background: rgba(255, 255, 255, 0.92); }
.web-card-hero s { height: 13px; width: 46%; border-radius: 7px; background: rgba(255, 255, 255, 0.5); }
.web-card-body { display: grid; gap: 7px; padding: 12px; background: #fff; }
.web-card-body u { height: 6px; border-radius: 3px; background: #e7ebf2; }
.web-card-body u:nth-child(2) { width: 78%; }
.web-card-body em { height: 40px; border-radius: 8px; background: #eef1f7; margin-top: 3px; }

.wc-blue { --wc: #2d7dff; }
.wc-lime { --wc: #74c900; }
.wc-purple { --wc: #8a63f4; }
.wc-amber { --wc: #ff9f2e; }
.wc-navy { --wc: #0c2f73; }
.wc-rose { --wc: #e8617a; }

@media (prefers-reduced-motion: reduce) {
  .web-col-track { animation: none !important; }
}

.web-shot { display: block; width: 100%; height: auto; }

/* Legal pages (privacy, terms) + footer legal bar */
.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 24px;
}
.legal-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  font-size: 20px;
  text-decoration: none;
}
.legal-logo { height: 34px; width: auto; display: block; }

.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px 24px 96px;
  color: var(--ink);
}
.legal h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 8px 0 8px;
}
.legal .legal-updated { color: var(--muted); font-weight: 700; font-size: 14px; }
.legal .legal-note {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: #454b58;
  margin: 18px 0 8px;
}
.legal h2 { font-size: 22px; font-weight: 900; margin: 34px 0 10px; letter-spacing: -0.01em; }
.legal h3 { font-size: 17px; font-weight: 800; margin: 20px 0 6px; }
.legal p, .legal li { font-size: 16px; line-height: 1.62; color: #2b3140; }
.legal ul, .legal ol { margin: 8px 0 8px 22px; display: grid; gap: 6px; }
.legal a { color: var(--blue); }
.legal strong { color: var(--ink); }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-legal a { color: rgba(255, 255, 255, 0.78); }

@media (max-width: 640px) {
  .footer-legal { flex-direction: column; }
}


/* very subtle "Example concept" tag on non-real ad creatives */
.promo-card { position: relative; }
.promo-eg {
  position: absolute;
  right: 11px;
  bottom: 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(7, 9, 13, 0.26);
  pointer-events: none;
}
