/* Home page specific styles extracted from design */

:root {
  --bg: oklch(0.985 0.006 300);
  --bg-soft: oklch(0.965 0.018 285);
  --bg-softer: oklch(0.95 0.025 285);
  --surface: #ffffff;
  --ink: oklch(0.20 0.04 285);
  --ink2: oklch(0.46 0.03 285);
  --ink3: oklch(0.62 0.02 285);
  --brand: oklch(0.55 0.22 280);
  --brand2: oklch(0.65 0.22 280);
  --brand-soft: oklch(0.94 0.04 280);
  --accent-orange: oklch(0.72 0.18 55);
  --accent-pink: oklch(0.72 0.17 10);
  --accent-green: oklch(0.72 0.16 155);
  --accent-blue: oklch(0.72 0.14 240);
  --border: oklch(0.20 0.04 285 / 0.09);
  --dark: oklch(0.27 0.08 275);
  --dark2: oklch(0.22 0.08 275);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 28px;
  height: 60px;
  background: oklch(1 0 0 / 0.75);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 100px;
  width: calc(100% - 48px);
  max-width: 1180px;
  box-shadow: 0 4px 24px -8px oklch(0.2 0.04 285 / 0.08);
}
.logo {
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* logo-mark uses shared adlesa.css + adlesa.js SVG (same as subpages) */
nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
nav ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink2);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--ink); }
.nav-right { display: flex; gap: 8px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
  font-family: inherit;
}
.btn-ghost { background: transparent; color: var(--ink2); }
.btn-ghost:hover { color: var(--ink); }
.btn-brand {
  background: var(--brand);
  color: white;
  box-shadow: 0 4px 12px -2px oklch(0.55 0.22 280 / 0.4);
}
.btn-brand:hover { background: var(--brand2); transform: translateY(-1px); box-shadow: 0 6px 18px -2px oklch(0.55 0.22 280 / 0.5); }
.btn-dark {
  background: var(--ink);
  color: white;
}
.btn-dark:hover { background: oklch(0.28 0.04 285); transform: translateY(-1px); }
.btn-white {
  background: white;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 6px 16px -4px oklch(0.2 0.04 285 / 0.15); }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ── HERO ── */
.hero {
  padding: 140px 48px 60px;
  text-align: center;
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-bg {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 700px;
  background: radial-gradient(ellipse at center top, oklch(0.88 0.08 280) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink2);
  margin-bottom: 28px;
  box-shadow: 0 4px 12px -4px oklch(0.2 0.04 285 / 0.08);
  animation: fadeUp .5s ease both;
}
.eyebrow-pill {
  background: var(--brand);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(44px, 5.8vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  max-width: 940px;
  margin: 0 auto;
  animation: fadeUp .5s .05s ease both;
}
.hero h1 span {
  position: relative;
  white-space: nowrap;
  color: var(--brand);
}
.hero h1 span::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 8px;
  background: var(--brand);
  opacity: 0.18;
  border-radius: 6px;
  z-index: -1;
}
.hero-sub {
  margin: 24px auto 0;
  font-size: 18px;
  color: var(--ink2);
  line-height: 1.65;
  max-width: 600px;
  font-weight: 400;
  animation: fadeUp .5s .1s ease both;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  animation: fadeUp .5s .15s ease both;
}

/* Floating stage */
.stage {
  position: relative;
  max-width: 1100px;
  margin: 80px auto 0;
  height: 380px;
  animation: fadeUp .7s .25s ease both;
}

.center-dash {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 440px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 24px 60px -12px oklch(0.2 0.04 285 / 0.18), 0 8px 20px -6px oklch(0.2 0.04 285 / 0.08);
  padding: 22px;
  z-index: 3;
}
.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.dash-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}
.dash-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 4px oklch(0.72 0.16 155 / 0.2);
}
.dash-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--brand-soft);
  color: var(--brand);
  border-radius: 100px;
}
.dash-big {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.dash-big-sub { font-size: 12px; color: var(--ink3); margin-bottom: 14px; }
.dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 68px;
  margin-bottom: 16px;
}
.bar {
  flex: 1;
  background: linear-gradient(to top, var(--brand-soft), var(--brand));
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: barIn .8s ease both;
}
@keyframes barIn {
  from { transform: scaleY(0); }
}
.dash-legend {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.leg-cell .leg-l { font-size: 10px; color: var(--ink3); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.leg-cell .leg-v { font-size: 16px; font-weight: 700; letter-spacing: -0.02em; margin-top: 3px; }
.leg-cell .leg-v em { font-style: normal; font-size: 11px; font-weight: 600; color: var(--accent-green); margin-left: 4px; }

/* Floating cards */
.fcard {
  position: absolute;
  background: white;
  border-radius: 14px;
  box-shadow: 0 12px 30px -8px oklch(0.2 0.04 285 / 0.15), 0 4px 10px -2px oklch(0.2 0.04 285 / 0.06);
  padding: 14px 16px;
  animation: float 6s ease-in-out infinite;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}
.fcard.fc1 { top: 30px; left: 0; --r: -4deg; animation-delay: 0s; }
.fcard.fc2 { top: 10px; right: 20px; --r: 3deg; animation-delay: -1.5s; }
.fcard.fc3 { bottom: 30px; left: 40px; --r: 2deg; animation-delay: -3s; }
.fcard.fc4 { bottom: 50px; right: 0; --r: -3deg; animation-delay: -4.5s; }

.fc-avatar {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.fc-text .fc-t { font-size: 12px; color: var(--ink3); font-weight: 500; }
.fc-text .fc-v { font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.fc-text .fc-v em { font-style: normal; color: var(--accent-green); font-size: 11px; margin-left: 4px; }

/* decorative sparkles */
.sparkle {
  position: absolute;
  width: 22px; height: 22px;
  opacity: 0.7;
  z-index: 1;
}
.sp1 { top: 60px; left: 22%; }
.sp2 { top: 180px; right: 18%; }
.sp3 { bottom: 40px; left: 40%; }

/* ── LOGO STRIP ── */
.strip {
  padding: 80px 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.strip-label {
  font-size: 13px;
  color: var(--ink3);
  margin-bottom: 32px;
  font-weight: 500;
}
.logo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px 48px;
  opacity: 0.7;
  filter: grayscale(1);
}
.ls-item {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.ls-item::before {
  content: '';
  width: 22px; height: 22px;
  background: var(--ink);
  border-radius: 6px;
  flex-shrink: 0;
}
.ls-item:nth-child(1)::before { border-radius: 50%; }
.ls-item:nth-child(2)::before { transform: rotate(45deg); border-radius: 3px; }
.ls-item:nth-child(3)::before { clip-path: polygon(50% 0, 100% 100%, 0 100%); background: transparent; border: none; border-left: 11px solid transparent; border-right: 11px solid transparent; border-bottom: 19px solid var(--ink); border-radius: 0; height: 0; width: 0; }
.ls-item:nth-child(5)::before { border-radius: 50% 0 50% 0; }
.ls-item:nth-child(6)::before { clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.ls-item:nth-child(7)::before { border-radius: 50% 50% 0 50%; }

/* ── SPLIT: IMAGES + TEXT ── */
.split {
  max-width: 1280px;
  margin: 60px auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  height: 520px;
}
.split-media > div {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.split-media .m1 {
  background: linear-gradient(160deg, #FFE4D4 0%, #FFCDB8 100%);
  grid-row: span 2;
}
.split-media .m2 {
  background: linear-gradient(160deg, #E4DEFF 0%, #C8BEFF 100%);
}
.split-media .m3 {
  background: linear-gradient(160deg, #D4F2E0 0%, #B4E6C9 100%);
}
.sm-label {
  font-size: 12px;
  font-weight: 700;
  color: oklch(0.3 0.05 40);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.m2 .sm-label { color: oklch(0.3 0.1 280); }
.m3 .sm-label { color: oklch(0.3 0.1 155); }
.sm-label::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.sm-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: oklch(0.18 0.05 40);
  line-height: 1.25;
  z-index: 2;
  position: relative;
  max-width: 80%;
}
.m2 .sm-title { color: oklch(0.2 0.08 280); }
.m3 .sm-title { color: oklch(0.2 0.08 155); }
.sm-art {
  position: absolute;
  pointer-events: none;
}
/* m1: Dashboard illustration */
.m1 .sm-title { max-width: 70%; }
.m1-chart {
  background: white;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 12px 32px -8px oklch(0.3 0.1 40 / 0.25);
  position: absolute;
  right: 18px; bottom: 18px;
  width: 62%;
  z-index: 1;
}
.m1c-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.m1c-t { font-size: 10px; font-weight: 700; color: var(--ink3); letter-spacing: 0.04em; text-transform: uppercase; }
.m1c-b { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 8px; }
.m1c-bars { display: flex; align-items: flex-end; gap: 3px; height: 42px; }
.m1c-bars > div { flex: 1; background: linear-gradient(to top, #FF8559, #FFB591); border-radius: 2px; }

/* m2: Publisher network */
.m2 .sm-title { max-width: 60%; }
.m2 .sm-art {
  right: 0; bottom: 0;
  width: 46%;
  height: 62%;
}
.m2-nodes { }
.m2-node {
  position: absolute;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 6px 16px -4px oklch(0.2 0.1 280 / 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
}
.m2-node.big { width: 52px; height: 52px; font-size: 18px; background: var(--brand); color: white; box-shadow: 0 8px 20px -4px oklch(0.4 0.15 280 / 0.5); }

/* m3: Real-time report */
.m3 .sm-title { max-width: 55%; }
.m3 .sm-art {
  right: 0; bottom: 0;
  width: 52%;
  height: 62%;
}
.m3-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 22px -6px oklch(0.2 0.1 155 / 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.m3-card .dot { width: 8px; height: 8px; border-radius: 50%; }

.split-text h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin-bottom: 20px;
}
.split-text h2 span { color: var(--brand); }
.split-text p {
  font-size: 16px;
  color: var(--ink2);
  line-height: 1.75;
  margin-bottom: 24px;
}
.split-check {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.split-check li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.split-check li::before {
  content: '';
  width: 22px; height: 22px;
  background: var(--brand-soft) url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%236a30d0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center/14px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── DARK PARTNER SLIDER SECTION ── */
.dark-sec {
  background: var(--dark);
  color: white;
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.dark-sec::before, .dark-sec::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(60px);
}
.dark-sec::before {
  background: var(--brand2);
  top: -100px; left: -100px;
}
.dark-sec::after {
  background: var(--accent-orange);
  bottom: -150px; right: -100px;
}
.dark-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.dark-head {
  text-align: center;
  margin-bottom: 48px;
}
.dark-head h2 {
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.dark-head h2 span { color: oklch(0.82 0.12 60); }
.dark-head p {
  font-size: 16px;
  color: oklch(1 0 0 / 0.65);
  margin-top: 16px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.slider-wrap {
  position: relative;
}
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.55s cubic-bezier(.22, 1, .36, 1);
}
.partner-card {
  flex-shrink: 0;
  width: 220px;
  background: white;
  border-radius: 18px;
  padding: 24px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s;
}
.partner-card:hover { transform: translateY(-4px); }
.pc-logo {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 22px;
}
.pc-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.pc-cat {
  font-size: 13px;
  color: var(--ink3);
}
.pc-stats {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.pc-stat { font-size: 11px; color: var(--ink3); }
.pc-stat strong { display: block; font-size: 15px; color: var(--ink); font-weight: 700; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}
.sl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.1);
  border: 1px solid oklch(1 0 0 / 0.15);
  color: white;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.sl-btn:hover { background: white; color: var(--ink); border-color: white; }
.sl-dots { display: flex; gap: 6px; }
.sl-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: oklch(1 0 0 / 0.25);
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.sl-dot.on { background: white; width: 22px; border-radius: 4px; }

/* ── FEATURES ── */
.feats {
  max-width: 1280px;
  margin: 0 auto;
  padding: 110px 48px;
  text-align: center;
}
.feats h2 {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.feats h2 span { color: var(--brand); }
.feats-sub {
  font-size: 16px;
  color: var(--ink2);
  max-width: 540px;
  margin: 18px auto 0;
  line-height: 1.7;
}
.feats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 32px;
  margin-top: 72px;
  text-align: left;
}
.feat {
  padding: 4px 0;
}
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feat-icon.i1 { background: oklch(0.94 0.06 280); color: var(--brand); }
.feat-icon.i2 { background: oklch(0.94 0.07 55); color: var(--accent-orange); }
.feat-icon.i3 { background: oklch(0.94 0.06 10); color: var(--accent-pink); }
.feat-icon.i4 { background: oklch(0.94 0.06 155); color: var(--accent-green); }
.feat-icon.i5 { background: oklch(0.94 0.05 240); color: var(--accent-blue); }
.feat-icon.i6 { background: oklch(0.94 0.04 285); color: var(--brand); }
.feat h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.feat p {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.65;
}

/* ── COLOR CTA BANNER ── */
.banner-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 80px;
}
.banner {
  background: var(--dark);
  border-radius: 28px;
  padding: 48px 56px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  overflow: hidden;
  position: relative;
  color: white;
}
.banner::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--accent-orange);
  opacity: 0.25;
  filter: blur(60px);
}
.banner h3 {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.banner p {
  font-size: 15px;
  color: oklch(1 0 0 / 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.banner-btns {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.btn-orange {
  background: var(--accent-orange);
  color: oklch(0.2 0.1 55);
}
.btn-orange:hover { background: oklch(0.78 0.18 55); }
.btn-border {
  background: transparent;
  color: white;
  border: 1.5px solid oklch(1 0 0 / 0.3);
}
.btn-border:hover { background: oklch(1 0 0 / 0.1); }

.banner-viz {
  position: relative;
  height: 260px;
}
.viz-tile {
  position: absolute;
  border-radius: 14px;
  background: white;
  padding: 12px 14px;
  color: var(--ink);
  box-shadow: 0 12px 30px -8px oklch(0 0 0 / 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}
.viz-tile .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.vt1 { top: 20px; left: 10px; --r: -4deg; }
.vt2 { top: 80px; right: 30px; --r: 3deg; animation-delay: -1s; }
.vt3 { top: 150px; left: 60px; --r: 2deg; animation-delay: -2s; }
.vt4 { bottom: 20px; right: 10px; --r: -2deg; animation-delay: -3s; }
@keyframes float2 {
  0%,100% { transform: translateY(0) rotate(var(--r,0deg)); }
  50% { transform: translateY(-8px) rotate(var(--r,0deg)); }
}
.viz-tile { animation-name: float2; }

/* ── BOTTOM CTA ── */
.end-cta {
  text-align: center;
  padding: 100px 48px 120px;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.end-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 720px; height: 420px;
  background: radial-gradient(ellipse at center, oklch(0.92 0.06 280) 0%, transparent 65%);
  z-index: -1;
}
.end-cta h2 {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.end-cta h2 span { color: var(--brand); }
.end-cta p {
  font-size: 17px;
  color: var(--ink2);
  margin: 20px auto 36px;
  max-width: 520px;
  line-height: 1.65;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
  padding: 100px 48px 48px;
}
.footer-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.footer-deco .ring {
  position: absolute;
  border-radius: 50%;
  border: 60px solid var(--brand);
  opacity: 0.7;
}
.footer-deco .ring.r1 { width: 320px; height: 320px; top: 10%; left: 50%; transform: translateX(-60%); border-color: oklch(0.6 0.2 280); }
.footer-deco .ring.r2 { width: 380px; height: 380px; bottom: -180px; left: 8%; border-color: oklch(0.58 0.2 280); }
.footer-deco .ring.r3 { width: 260px; height: 260px; bottom: -60px; left: 36%; border-color: oklch(0.62 0.22 280); }
.footer-deco .ring.r4 { width: 220px; height: 220px; bottom: -100px; left: 62%; border-color: oklch(0.6 0.2 280); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 24px;
  padding: 52px 56px 32px;
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 60px -20px oklch(0.25 0.1 280 / 0.18), 0 8px 20px -6px oklch(0.25 0.1 280 / 0.08);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer-brand .logo { font-size: 22px; }
.footer-col h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col a {
  font-size: 14px;
  color: var(--ink3);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink3);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 13px;
}
.footer-social-icon {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 13px;
}

/* ── ANIMS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.r { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.r.vis { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .split, .banner, .hero-right, .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .feats-grid { grid-template-columns: 1fr 1fr; }
  nav {
    width: calc(100% - 24px);
    padding: 10px 10px 10px 18px;
  }
  nav ul { display: none !important; }
  .nav-right { display: none !important; }
  .nav-toggle { display: flex !important; margin-left: auto; }
  nav.nav-open ul.nav-links {
    display: flex !important;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 16px 40px -12px oklch(0.2 0.04 285 / 0.18);
  }
  nav.nav-open .nav-right {
    display: flex !important;
    position: absolute;
    top: calc(100% + 220px);
    left: 0;
    right: 0;
    justify-content: stretch;
    gap: 8px;
    padding: 0 12px 12px;
    background: white;
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 16px 40px -12px oklch(0.2 0.04 285 / 0.18);
  }
  nav.nav-open .nav-right .btn { flex: 1; justify-content: center; }
  nav ul.nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .hero {
    padding: 110px 20px 40px;
    overflow: hidden;
  }
  .hero-bg {
    width: 140%;
    max-width: none;
    height: 520px;
  }
  .hero h1 {
    font-size: clamp(34px, 9vw, 48px);
  }
  .hero h1 span { white-space: normal; }
  .hero-sub { font-size: 16px; margin-top: 18px; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 28px;
  }
  .hero-actions .btn { justify-content: center; width: 100%; }

  .stage {
    height: auto;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .center-dash {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 100%;
  }
  .fcard {
    position: static;
    margin: 0;
    display: flex;
    width: 100%;
    max-width: 100%;
    --r: 0deg;
    animation: none;
  }

  .strip,
  .split,
  .dark-sec,
  .feats,
  .banner-wrap,
  .end-cta {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .strip { padding-top: 48px; padding-bottom: 24px; }
  .logo-strip {
    justify-content: center;
    gap: 20px 28px;
  }
  .sec-head { margin-bottom: 36px; }
  .split {
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .split-media { height: 260px; }
  .banner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 28px;
  }
  .banner-viz { min-height: 200px; }
  .feats { padding-top: 72px; padding-bottom: 72px; }
  .dark-sec { padding-top: 72px; padding-bottom: 72px; }
  .end-cta {
    padding-top: 72px !important;
    padding-bottom: 88px !important;
  }
  .end-bg { width: 140%; }
  .end-cta .actions {
    flex-direction: column;
    align-items: stretch;
  }
  .end-cta .actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .feats-grid { grid-template-columns: 1fr; }
  .partner-card { width: min(220px, 78vw); }
  .slider-wrap { margin: 0 -4px; }
  .ls-item { font-size: 15px; }
}


