:root {
  --ink: #061026;
  --muted: #617089;
  --line: #dce5f2;
  --soft: #f4f8fe;
  --white: #ffffff;
  --night: #020817;
  --night-2: #0b1733;
  --blue: #1268ff;
  --cyan: #00a6ff;
  --violet: #7a3cff;
  --green: #19d98b;
  --amber: #f5a400;
  --shadow: 0 24px 80px rgba(6, 16, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

img,
svg {
  display: block;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 68px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(220, 229, 242, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 292px;
  height: 58px;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #273854;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 0;
}

.nav-cta {
  padding: 12px 18px !important;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 760px;
  display: block;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 116px clamp(24px, 6vw, 86px) 110px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(255, 255, 255, 0.24) 63%, rgba(255, 255, 255, 0.06) 100%),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(58px, 8vw, 118px);
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-title {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  color: #44536d;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button.primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 18px 44px rgba(6, 16, 38, 0.2);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 0;
}

.hero-stats div {
  min-height: 96px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(220, 229, 242, 0.86);
  border-radius: 8px;
}

.hero-stats dt {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 950;
}

.hero-stats dd {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.28;
}

.hero-controls {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 6vw, 86px);
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 229, 242, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(6, 16, 38, 0.11);
  backdrop-filter: blur(16px);
}

.hero-arrow,
.hero-dots button {
  border: 0;
  cursor: pointer;
}

.hero-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.hero-arrow svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-dots button {
  width: 34px;
  height: 8px;
  padding: 0;
  background: #b6c2d6;
  border-radius: 999px;
  transition: width 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  width: 48px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.strip {
  margin-top: -34px;
  padding: 0 clamp(20px, 6vw, 86px);
  position: relative;
  z-index: 3;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  gap: 10px;
  background: var(--white);
  color: #20314e;
  font-weight: 900;
  text-align: center;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.green { background: var(--green); }
.blue { background: var(--blue); }
.violet { background: var(--violet); }
.amber { background: var(--amber); }

.section {
  padding: 108px clamp(24px, 6vw, 86px);
}

.section-head {
  max-width: 850px;
  margin-bottom: 44px;
}

.problem-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  margin-bottom: 44px;
}

.problem-intro .section-head {
  margin-bottom: 0;
}

.problem-visual {
  margin: 0;
}

.problem-visual img {
  width: 100%;
  height: auto;
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 26px 46px rgba(18, 104, 255, 0.12));
}

.section-head p:not(.eyebrow),
.visual-copy p,
.cta-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.pain-grid,
.case-grid,
.pricing-grid,
.flow-steps {
  display: grid;
  gap: 22px;
}

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

.pain-grid article,
.flow-steps article,
.case-grid article,
.pricing-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pain-grid article {
  min-height: 244px;
  padding: 28px;
}

.pain-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pain-grid p,
.flow-steps p,
.case-grid p,
.pricing-grid p,
.pricing-grid li {
  color: var(--muted);
  line-height: 1.48;
}

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

.platform-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  align-items: center;
  gap: clamp(30px, 5vw, 78px);
  margin-bottom: 42px;
}

.platform-intro .section-head {
  margin-bottom: 0;
}

.platform-visual {
  margin: 0;
}

.platform-visual img {
  width: 100%;
  height: auto;
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(18, 104, 255, 0.13));
}

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

.flow-steps article {
  min-height: 248px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.flow-steps article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--blue);
}

.flow-steps article:nth-child(2)::before { background: var(--cyan); }
.flow-steps article:nth-child(3)::before { background: var(--violet); }
.flow-steps article:nth-child(4)::before { background: var(--green); }

.step-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
  color: var(--blue);
  background: rgba(18, 104, 255, 0.1);
  border: 1px solid rgba(18, 104, 255, 0.16);
  border-radius: 8px;
}

.step-icon i {
  font-size: 24px;
  line-height: 1;
}

.flow-steps article:nth-child(2) .step-icon {
  color: var(--cyan);
  background: rgba(0, 166, 255, 0.1);
  border-color: rgba(0, 166, 255, 0.18);
}

.flow-steps article:nth-child(3) .step-icon {
  color: var(--violet);
  background: rgba(122, 60, 255, 0.1);
  border-color: rgba(122, 60, 255, 0.18);
}

.flow-steps article:nth-child(4) .step-icon {
  color: var(--green);
  background: rgba(25, 217, 139, 0.12);
  border-color: rgba(25, 217, 139, 0.2);
}

.visual-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.visual-section.reverse {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  background: var(--night);
  color: var(--white);
}

.visual-section.reverse .visual-copy p,
.visual-section.reverse .mini-dashboard span {
  color: #b7c7df;
}

.visual-media {
  margin: 0;
  min-width: 0;
}

.visual-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #243657;
  font-weight: 750;
  line-height: 1.42;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--green);
}

.use-cases {
  background: var(--white);
}

.use-cases-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
  margin-bottom: 42px;
}

.use-cases-intro .section-head {
  margin-bottom: 0;
}

.use-cases-visual {
  margin: 0;
}

.use-cases-visual img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(18, 104, 255, 0.12));
}

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

.case-grid article {
  min-height: 244px;
  padding: 28px;
  background: var(--soft);
  position: relative;
  overflow: hidden;
}

.case-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--blue);
}

.case-grid article:nth-child(2)::before { background: var(--green); }
.case-grid article:nth-child(3)::before { background: var(--violet); }
.case-grid article:nth-child(4)::before { background: var(--amber); }

.case-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 26px;
  color: var(--blue);
  background: rgba(18, 104, 255, 0.1);
  border: 1px solid rgba(18, 104, 255, 0.16);
  border-radius: 8px;
}

.case-icon i {
  font-size: 24px;
  line-height: 1;
}

.case-grid article:nth-child(2) .case-icon {
  color: var(--green);
  background: rgba(25, 217, 139, 0.12);
  border-color: rgba(25, 217, 139, 0.2);
}

.case-grid article:nth-child(3) .case-icon {
  color: var(--violet);
  background: rgba(122, 60, 255, 0.1);
  border-color: rgba(122, 60, 255, 0.18);
}

.case-grid article:nth-child(4) .case-icon {
  color: var(--amber);
  background: rgba(245, 164, 0, 0.12);
  border-color: rgba(245, 164, 0, 0.22);
}

.case-grid strong {
  display: block;
  margin-bottom: 18px;
  font-size: 20px;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.mini-dashboard span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #243657;
  border-radius: 8px;
  background: #0b1733;
  font-weight: 800;
}

.architecture {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fe 100%);
}

.architecture-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: 42px;
}

.architecture-intro .section-head {
  margin-bottom: 0;
}

.architecture-proof {
  display: grid;
  gap: 14px;
}

.architecture-proof article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 86px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(6, 16, 38, 0.06);
}

.architecture-proof i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  color: var(--blue);
  background: rgba(18, 104, 255, 0.1);
  border-radius: 8px;
}

.architecture-proof strong,
.flow-node strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-weight: 950;
}

.architecture-proof span,
.flow-node span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.architecture-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.18fr) minmax(0, 0.95fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: stretch;
}

.architecture-flow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 22%;
  right: 22%;
  height: 2px;
  background: linear-gradient(90deg, rgba(18, 104, 255, 0), rgba(18, 104, 255, 0.42), rgba(122, 60, 255, 0.42), rgba(25, 217, 139, 0));
  transform: translateY(-50%);
}

.flow-column,
.orchestration-core {
  position: relative;
  z-index: 1;
}

.flow-column {
  display: grid;
  gap: 14px;
  align-content: center;
}

.flow-label {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.flow-node {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 106px;
  padding: 18px;
  border: 1px solid rgba(220, 229, 242, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 46px rgba(6, 16, 38, 0.07);
}

.flow-node > i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  color: var(--blue);
  background: rgba(18, 104, 255, 0.1);
  border-radius: 8px;
  font-size: 20px;
}

.flow-column:first-child .flow-node:nth-of-type(2) > i {
  color: var(--cyan);
  background: rgba(0, 166, 255, 0.1);
}

.flow-column:first-child .flow-node:nth-of-type(3) > i {
  color: var(--violet);
  background: rgba(122, 60, 255, 0.1);
}

.flow-column:last-child .flow-node:nth-of-type(1) > i {
  color: var(--green);
  background: rgba(25, 217, 139, 0.12);
}

.flow-column:last-child .flow-node:nth-of-type(2) > i {
  color: var(--violet);
  background: rgba(122, 60, 255, 0.1);
}

.flow-column:last-child .flow-node:nth-of-type(3) > i {
  color: var(--amber);
  background: rgba(245, 164, 0, 0.12);
}

.orchestration-core {
  min-height: 410px;
  padding: clamp(26px, 3.8vw, 42px);
  color: var(--white);
  background:
    radial-gradient(circle at 74% 18%, rgba(0, 166, 255, 0.22), transparent 34%),
    radial-gradient(circle at 18% 78%, rgba(122, 60, 255, 0.24), transparent 34%),
    var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(6, 16, 38, 0.24);
}

.core-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #a9d8ff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.orchestration-core h3 {
  margin: 26px 0 16px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.orchestration-core p {
  max-width: 620px;
  color: #c5d3e8;
  font-size: 17px;
  line-height: 1.52;
}

.orchestration-core ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.orchestration-core li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #edf5ff;
  line-height: 1.4;
}

.orchestration-core li i {
  margin-top: 3px;
  color: var(--green);
}

.architecture-map {
  display: none;
}

.offers {
  background: var(--white);
}

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

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 34px;
  position: relative;
}

.pricing-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-12px);
  box-shadow: 0 30px 72px rgba(6, 16, 38, 0.24);
}

.pricing-card.featured p,
.pricing-card.featured li,
.pricing-card.featured .feature-count span {
  color: #c6d5ea;
}

.pricing-card.featured .offer-level {
  color: #c7b7ff;
  background: rgba(122, 60, 255, 0.16);
  border-color: rgba(122, 60, 255, 0.42);
}

.offer-level {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  margin-bottom: 20px;
  color: var(--blue);
  background: rgba(18, 104, 255, 0.08);
  border: 1px solid rgba(18, 104, 255, 0.15);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  color: var(--blue) !important;
  font-size: 28px;
  font-weight: 950;
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--violet);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.feature-count {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  margin: 24px 0 8px;
  padding: 14px 16px;
  border: 1px solid rgba(220, 229, 242, 0.82);
  border-radius: 8px;
  background: rgba(244, 248, 254, 0.78);
}

.pricing-card.featured .feature-count {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.feature-count strong {
  color: var(--blue);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.pricing-card.featured .feature-count strong {
  color: var(--green);
}

.feature-count span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 32px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(220, 229, 242, 0.62);
}

.pricing-card.featured .feature-list li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.feature-list i {
  margin-top: 2px;
  color: var(--green);
  font-size: 15px;
  line-height: 1;
}

.feature-list span {
  line-height: 1.36;
}

.campaign-costs {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: 28px;
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(220, 229, 242, 0.92);
  border-radius: 8px;
  background:
    radial-gradient(circle at 96% 0%, rgba(32, 133, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 54%, #eef6ff 100%);
  box-shadow: 0 24px 68px rgba(6, 16, 38, 0.08);
}

.campaign-cost-copy h3 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

.campaign-cost-copy p {
  color: var(--muted);
  line-height: 1.55;
}

.campaign-cost-copy a {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(18, 104, 255, 0.08);
}

.campaign-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.campaign-cost-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(220, 229, 242, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.campaign-cost-grid i {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--green);
  background: rgba(18, 210, 151, 0.1);
  border-radius: 8px;
  font-size: 22px;
}

.campaign-cost-grid span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.campaign-cost-grid strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}

.campaign-cost-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.campaign-cost-note {
  grid-column: 1 / -1;
  margin: 0;
  padding: 16px 18px;
  color: #536782;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(220, 229, 242, 0.9);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.brochure-download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 28px;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 166, 255, 0.22), transparent 32%),
    var(--ink);
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(6, 16, 38, 0.2);
}

.brochure-download h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 26px;
}

.brochure-download p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  color: #c6d5ea;
  line-height: 1.45;
}

.brochure-download .button {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--white);
  box-shadow: none;
}

.brochure-download .button i {
  color: #e53935;
}

.cta-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: center;
  padding: 96px clamp(24px, 6vw, 86px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(3, 10, 26, 0.96) 0%, rgba(3, 10, 26, 0.88) 46%, rgba(3, 10, 26, 0.66) 100%),
    url("./assets/hero-data-performance.png") center right / cover fixed;
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 10, 26, 0.14), rgba(3, 10, 26, 0.76)),
    radial-gradient(circle at 78% 42%, rgba(30, 125, 255, 0.22), transparent 32%);
}

.cta-section > * {
  position: relative;
  z-index: 1;
}

.cta-copy {
  max-width: 820px;
}

.cta-panel {
  min-height: 220px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 32px;
  border: 1px solid #243657;
  border-radius: 8px;
  background: rgba(13, 29, 62, 0.76);
  backdrop-filter: blur(12px);
}

.cta-panel p {
  margin: 0;
  color: #a9bad4;
  line-height: 1.4;
}

.footer {
  min-height: 132px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px clamp(24px, 6vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.footer img {
  width: 190px;
  height: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.footer-links a,
.footer-links button,
.cookie-banner button:not(.button) {
  padding: 0;
  color: var(--muted);
  background: none;
  border: 0;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover,
.cookie-banner button:not(.button):hover {
  color: var(--blue);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(5, 16, 38, 0.18);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-banner p {
  max-width: 760px;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.button.ghost {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.demo-swal {
  width: min(720px, calc(100vw - 32px)) !important;
  border-radius: 8px !important;
  padding: 28px !important;
}

.demo-swal .swal2-title {
  color: var(--ink);
  font-size: 28px;
  letter-spacing: 0;
}

.demo-swal .swal2-html-container {
  margin: 16px 0 0;
}

.demo-form {
  position: relative;
  display: grid;
  gap: 14px;
  text-align: left;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.demo-form p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.demo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.demo-form label {
  display: grid;
  gap: 7px;
  color: #20314e;
  font-size: 13px;
  font-weight: 900;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  outline: none;
}

.demo-form textarea {
  min-height: 104px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(18, 104, 255, 0.12);
}

.demo-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.35;
}

.demo-consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  padding: 0;
}

.privacy-inline {
  color: var(--blue);
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-weight: 900;
  text-decoration: underline;
  cursor: pointer;
}

.legal-swal {
  width: min(760px, calc(100vw - 32px)) !important;
  border-radius: 8px !important;
  padding: 28px !important;
}

.legal-swal .swal2-html-container {
  margin: 14px 0 0;
  text-align: left;
}

.legal-content {
  display: grid;
  gap: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.legal-content h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
}

.legal-content p,
.legal-content ul {
  margin: 0;
}

.legal-content ul {
  padding-left: 18px;
}

.swal-confirm,
.swal-cancel {
  min-height: 46px;
  border-radius: 8px !important;
  font-weight: 900 !important;
}

.swal-confirm {
  background: var(--ink) !important;
}

.swal-cancel {
  color: var(--ink) !important;
  background: var(--soft) !important;
}

@media (max-width: 1040px) {
  .problem-intro {
    grid-template-columns: 1fr;
  }

  .problem-visual img {
    max-height: none;
  }

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

  .platform-visual img {
    max-height: none;
  }

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

  .use-cases-visual img {
    max-height: none;
  }

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

  .architecture-flow::before {
    display: none;
  }

  .orchestration-core {
    min-height: auto;
  }

  .pain-grid,
  .flow-steps,
  .case-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .campaign-costs {
    grid-template-columns: 1fr;
  }

  .campaign-cost-grid {
    grid-template-columns: 1fr;
  }

  .brochure-download {
    align-items: flex-start;
    flex-direction: column;
  }

  .visual-section,
  .visual-section.reverse,
  .cta-section {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .brand {
    width: 218px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 14px 22px 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: 720px;
  }

  .hero-slide {
    align-items: flex-start;
    padding: 102px 22px 94px;
  }

  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.3) 100%),
      var(--hero-image);
    background-position: center right;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero-stats,
  .strip-inner,
  .pain-grid,
  .flow-steps,
  .case-grid,
  .pricing-grid,
  .mini-dashboard,
  .architecture-map {
    grid-template-columns: 1fr;
  }

  .architecture-proof article,
  .flow-node {
    min-height: auto;
  }

  .architecture-proof,
  .flow-column {
    gap: 12px;
  }

  .orchestration-core {
    padding: 24px;
  }

  .orchestration-core h3 {
    font-size: 30px;
  }

  .strip {
    margin-top: 0;
    padding: 0 22px;
  }

  .hero-controls {
    left: 22px;
    right: auto;
    bottom: 22px;
  }

  .hero-dots button {
    width: 24px;
  }

  .hero-dots button.is-active {
    width: 34px;
  }

  .hero-stats {
    display: none;
  }

  .section {
    padding: 76px 22px;
  }

  .visual-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .pricing-grid .featured {
    transform: none;
  }

  .pricing-card {
    min-height: auto;
    padding: 28px;
  }

  .feature-count {
    min-height: 64px;
  }

  .brochure-download {
    padding: 24px;
  }

  .brochure-download .button {
    width: 100%;
  }

  .cta-section {
    padding: 72px 22px;
    background-attachment: scroll;
    background-position: center;
  }

  .footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: stretch;
    flex-direction: column;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .demo-form-grid {
    grid-template-columns: 1fr;
  }

  .demo-swal {
    max-height: calc(100dvh - 24px);
    overflow-y: auto;
    padding: 22px 18px !important;
  }

  .demo-swal .swal2-title {
    font-size: 24px;
  }

  .demo-swal .swal2-actions {
    display: grid !important;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 10px 0 0 !important;
  }

  .demo-form {
    gap: 8px;
  }

  .demo-form p {
    font-size: 12px;
  }

  .demo-form input,
  .demo-form select {
    min-height: 40px;
    padding: 9px 12px;
  }

  .demo-form textarea {
    min-height: 62px;
  }

  .swal-confirm,
  .swal-cancel {
    width: 100%;
    margin: 5px 0 !important;
  }
}
