/* ===========================================================
   KINE LANDING — DESIGN TOKENS
   Prefix: lnd-*  (keeps a clean namespace vs dlv-/vel-/cv-)
   =========================================================== */
:root {
  /* Brand palette — derived from guideline file, used sparingly */
  --lnd-purple: #614b9e;
  --lnd-purple-deep: #4a3a7d;
  --lnd-blue: #2a91cf;
  --lnd-teal: #00abb1;
  --lnd-cyan: #10a9e2;

  /* Neutrals — the 90% of the visual weight */
  --lnd-ink: #0b0d12;
  /* near-black, never pure black */
  --lnd-ink-80: #1e2128;
  --lnd-ink-60: #444851;
  --lnd-ink-40: #6b7280;
  --lnd-ink-20: #a7acb7;
  --lnd-line: #e5e7ec;
  --lnd-line-soft: #eef0f4;
  --lnd-bg: #ffffff;
  --lnd-bg-soft: #f7f8fa;

  /* Accents */
  --lnd-accent: var(--lnd-purple);
  --lnd-accent-soft: #ece8f5;

  /* Typography */
  --lnd-sans: 'Geist', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --lnd-mono: 'Geist Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Radii */
  --lnd-r-sm: 8px;
  --lnd-r-lg: 18px;

  /* Shadows — designed, not drop-shadow defaults */
  --lnd-shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 1px 1px rgba(15, 23, 42, .03);
}

.lnd-page {
  font-family: var(--lnd-sans);
  color: var(--lnd-ink);
  background: var(--lnd-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}

.lnd-page *,
.lnd-page *::before,
.lnd-page *::after {
  box-sizing: border-box;
}

.lnd-page * {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--lnd-bg);
  -webkit-font-smoothing: antialiased;
}

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

.lnd-page a {
  color: inherit;
  text-decoration: none;
}

.lnd-page button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.lnd-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===========================================================
   HERO — soft aurora atmosphere with embedded product video.
   Light gradient mesh + two drifting aurora blobs + video frame
   that visually belongs to the same atmospheric region.
   =========================================================== */
.lnd-hero {
  position: relative;
  padding: 200px 0 96px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 65% 55% at 50% 30%, rgba(97, 75, 158, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 55% at 88% 10%, rgba(42, 145, 207, 0.13), transparent 65%),
    radial-gradient(ellipse 45% 50% at 8% 85%, rgba(0, 171, 177, 0.12), transparent 65%),
    linear-gradient(180deg, #f7f3fc 0%, #fbfaff 40%, #ffffff 100%);
}

/* Soft drifting aurora — upper left, purple (TOP — unchanged) */
.lnd-hero::before {
  content: '';
  position: absolute;
  top: -140px;
  left: -140px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(97, 75, 158, 0.26), transparent 65%);
  filter: blur(70px);
  border-radius: 50%;
  animation: lnd-hero-aurora-1 11s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* Soft drifting aurora — right-center, teal (TOP — unchanged) */
.lnd-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -160px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 171, 177, 0.22), transparent 65%);
  filter: blur(80px);
  border-radius: 50%;
  animation: lnd-hero-aurora-2 13s ease-in-out infinite;
  animation-delay: -3s;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

@keyframes lnd-hero-aurora-1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(140px, 80px) scale(1.15);
  }

  66% {
    transform: translate(-60px, 160px) scale(0.95);
  }
}

@keyframes lnd-hero-aurora-2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(-120px, -80px) scale(1.18);
  }

  66% {
    transform: translate(80px, -140px) scale(0.9);
  }
}

/* Flowing gradient mesh — one large multi-stop gradient that animates
   its position, producing a real hue shift across the canvas as colors
   slide in and out of view. Not blobs — actual color flow. */
.lnd-gradient-field {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 25%,
      black 60%);
  -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.4) 25%,
      black 60%);

  /* Layered conic + linear gradients — when their background-position
 animates, colors truly flow across the surface */
  background:
    radial-gradient(ellipse 60% 70% at 20% 40%, rgba(97, 75, 158, 0.45), transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 30%, rgba(0, 171, 177, 0.40), transparent 60%),
    radial-gradient(ellipse 55% 65% at 50% 80%, rgba(42, 145, 207, 0.38), transparent 60%),
    radial-gradient(ellipse 45% 55% at 10% 80%, rgba(74, 58, 125, 0.35), transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 70%, rgba(16, 169, 226, 0.32), transparent 60%),
    linear-gradient(135deg,
      rgba(97, 75, 158, 0.22) 0%,
      rgba(42, 145, 207, 0.18) 25%,
      rgba(0, 171, 177, 0.22) 50%,
      rgba(42, 145, 207, 0.18) 75%,
      rgba(97, 75, 158, 0.22) 100%);
  background-size: 200% 200%, 220% 220%, 180% 180%, 240% 240%, 200% 200%, 300% 300%;
  filter: blur(40px);
  animation: lnd-mesh-flow 20s ease-in-out infinite;
}

@keyframes lnd-mesh-flow {
  0% {
    background-position:
      0% 50%, 100% 50%, 50% 100%,
      0% 0%, 100% 100%, 0% 50%;
  }

  33% {
    background-position:
      60% 30%, 40% 70%, 80% 40%,
      70% 60%, 30% 30%, 100% 50%;
  }

  66% {
    background-position:
      30% 80%, 70% 20%, 20% 60%,
      40% 80%, 60% 40%, 50% 100%;
  }

  100% {
    background-position:
      0% 50%, 100% 50%, 50% 100%,
      0% 0%, 100% 100%, 0% 50%;
  }
}


.lnd-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 500px) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

/* Headline copy — restrained, clamped so it doesn't stack on desktop */
.lnd-hero-copy {
  max-width: 500px;
  margin: 0;
  padding: 0 0 32px;
  text-align: left;
}

.lnd-hero-title {
  font-size: clamp(30px, 3.1vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.032em;
  font-weight: 600;
  color: var(--lnd-ink);
  margin: 0;
}

.lnd-hero-title em {
  font-style: normal;
  background: linear-gradient(135deg,
      var(--lnd-purple) 0%,
      var(--lnd-blue) 25%,
      var(--lnd-teal) 50%,
      var(--lnd-blue) 75%,
      var(--lnd-purple) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  animation: lnd-title-gradient 8s ease-in-out infinite;
}

@keyframes lnd-title-gradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Subtext — airy, generous spacing, slightly muted */
.lnd-hero-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--lnd-ink-60);
  max-width: 620px;
  margin: 22px 0 0;
  letter-spacing: -0.01em;
  font-weight: 400;
}

/* CTA row — generous gap, breathing room above */
.lnd-hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* Shared CTA base */
.lnd-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition:
    transform .25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow .25s,
    background .25s,
    color .25s;
  white-space: nowrap;
}

.lnd-hero-cta svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Primary — brand gradient with colored shadow + shine overlay */
.lnd-hero-cta--primary {
  position: relative;
  background: linear-gradient(135deg, var(--lnd-purple) 0%, var(--lnd-blue) 55%, var(--lnd-teal) 100%);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: white;
  box-shadow:
    0 1px 2px rgba(97, 75, 158, 0.25),
    0 8px 24px -6px rgba(97, 75, 158, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.lnd-hero-cta--primary::before {
  /* soft top highlight — the "lit from above" gloss that reads premium */
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 50%);
  pointer-events: none;
}

.lnd-hero-cta--primary>* {
  position: relative;
  z-index: 1;
}

.lnd-hero-cta--primary:hover {
  transform: translateY(-1px);
  background-position: 100% 50%;
  color: white;
  box-shadow:
    0 2px 4px rgba(97, 75, 158, 0.3),
    0 14px 32px -6px rgba(97, 75, 158, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.lnd-hero-cta--primary:active {
  transform: translateY(0);
}

/* Ghost — frosted glass with a subtle brand gradient RING (not border).
   Looks far more expensive than a flat 1px border. */
.lnd-hero-cta--ghost {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--lnd-ink);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 4px 12px -4px rgba(15, 23, 42, 0.06);
}

.lnd-hero-cta--ghost::before {
  /* the gradient ring — sits just inside the button's edge */
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(97, 75, 158, 0.35) 0%,
      rgba(42, 145, 207, 0.25) 50%,
      rgba(0, 171, 177, 0.35) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.lnd-hero-cta--ghost svg {
  color: var(--lnd-purple);
}

.lnd-hero-cta--ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.06),
    0 10px 24px -6px rgba(97, 75, 158, 0.18);
}

.lnd-hero-cta--ghost:active {
  transform: translateY(0);
}

/* Product video — lives inside the hero, breathes with the auroras.
   No hard frame edges — uses shadow + mask instead of border, so it
   dissolves into the hero background rather than sitting on top of it. */
.lnd-hero-video {
  position: relative;
  z-index: 3;
  isolation: isolate;
  width: 100%;
  max-width: 700px;
  justify-self: center;
  align-self: center;
  margin: 0 auto;
  padding: 0;
}

.lnd-hero-video-frame {
  position: relative;
  z-index: 3;
  isolation: isolate;
  border-radius: 16px;
  overflow: hidden;
  background: #fff !important;
  opacity: 1 !important;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.10),
    0 12px 36px -12px rgba(15, 23, 42, 0.18);
}

.lnd-hero-video-frame .sl-embed {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 420px;
  background: #fff !important;
}

.lnd-hero-video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  background: #fff !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}

.lnd-gradient-field {
  z-index: 0;
}

@media (max-width: 1024px) {
  .lnd-hero {
    padding: 156px 0 72px;
  }

  .lnd-hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lnd-hero-copy {
    max-width: 720px;
    margin: 0 auto;
    padding-bottom: 0;
    text-align: center;
  }

  .lnd-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .lnd-hero-ctas {
    justify-content: center;
  }

  .lnd-hero-video {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .lnd-hero-video-frame .sl-embed {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .lnd-hero {
    padding: 132px 0 56px;
  }

  .lnd-hero-title {
    font-size: clamp(28px, 9vw, 36px);
    line-height: 1.12;
  }

  .lnd-hero-sub {
    font-size: 15px;
    margin-top: 18px;
  }

  .lnd-hero-ctas {
    margin-top: 28px;
  }

  .lnd-hero-video {
    padding: 0 12px;
  }

  .lnd-hero-video-frame .sl-embed {
    height: 320px;
  }
}

.lnd-section-eyebrow {
  display: inline-block;
  font-family: var(--lnd-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lnd-purple);
  margin-bottom: 14px;
}

.lnd-section-title {
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--lnd-ink);
  margin: 0 0 14px;
}

/* ===========================================================
   TESTIMONIALS 
   =========================================================== */
.lnd-testi {
  background: white;
  padding: 48px 0 64px;
  position: relative;
}

.lnd-testi-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.lnd-testi-eyebrow {
  display: inline-block;
  font-family: var(--lnd-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lnd-purple);
  margin-bottom: 10px;
}

.lnd-testi-title {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--lnd-ink);
  margin: 0;
}

.lnd-testi-diptych {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

/* Brand-gradient seam between the cards */
.lnd-testi-diptych::before {
  content: '';
  position: absolute;
  top: 14%;
  bottom: 14%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(97, 75, 158, 0.25) 30%,
      rgba(0, 171, 177, 0.25) 70%,
      transparent 100%);
  transform: translateX(-0.5px);
  pointer-events: none;
  z-index: 1;
}

.lnd-testi-card {
  position: relative;
  background: var(--lnd-bg-soft);
  border-radius: var(--lnd-r-lg);
  padding: 24px 28px 22px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
  transition: transform .3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .3s;
}

.lnd-testi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg,
      rgba(97, 75, 158, 0.18) 0%,
      rgba(42, 145, 207, 0.10) 50%,
      rgba(0, 171, 177, 0.18) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
}

.lnd-testi-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -16px rgba(97, 75, 158, 0.18);
}

.lnd-testi-card--alt::before {
  background: linear-gradient(135deg,
      rgba(0, 171, 177, 0.18) 0%,
      rgba(42, 145, 207, 0.10) 50%,
      rgba(97, 75, 158, 0.18) 100%);
}

/* Decorative quote glyph — always top left */
.lnd-testi-quote-mark {
  position: absolute;
  top: 10px;
  left: 24px;
  font-family: var(--lnd-sans);
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  color: rgba(97, 75, 158, 0.1);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.lnd-testi-card--alt .lnd-testi-quote-mark {
  color: rgba(0, 171, 177, 0.14);
}

/* Top row: quote mark space left, logo pushed right */
.lnd-testi-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  /* leave space for the absolute quote mark */
  padding-left: 56px;
}

.lnd-testi-logo-slot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  min-width: 110px;
  padding: 6px 14px;
  background: white;
  border-radius: var(--lnd-r-sm);
  box-shadow: var(--lnd-shadow-sm);
  font-family: var(--lnd-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lnd-ink-40);
  position: relative;
  margin-left: auto;
}

.lnd-testi-logo-slot::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: 6px;
  pointer-events: none;
}

.lnd-testi-logo-slot img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.lnd-testi-logo-slot:has(img)::before {
  display: none;
}

.lnd-testi-logo-slot:has(img) {
  color: transparent;
}

/* Quote body — always left aligned */
.lnd-testi-quote {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--lnd-ink);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: left;
}

.lnd-testi-hl {
  color: var(--lnd-purple);
  font-weight: 600;
}

.lnd-testi-card--alt .lnd-testi-hl {
  color: var(--lnd-teal);
}

/* Author meta — always left aligned */
.lnd-testi-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.lnd-testi-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lnd-purple) 0%, var(--lnd-blue) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.lnd-testi-card--alt .lnd-testi-avatar {
  background: linear-gradient(135deg, var(--lnd-teal) 0%, var(--lnd-blue) 100%);
}

.lnd-testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--lnd-ink);
  line-height: 1.2;
}

.lnd-testi-role {
  font-size: 13px;
  color: var(--lnd-ink-60);
  margin-top: 2px;
}

@media (max-width: 860px) {
  .lnd-testi-diptych {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lnd-testi-diptych::before {
    display: none;
  }

  .lnd-testi-card {
    padding: 32px 28px;
    min-height: 0;
  }

  .lnd-testi-quote {
    font-size: 18px;
  }

  .lnd-testi-quote-mark {
    font-size: 100px;
  }
}


.lnd-intel {
  padding: 48px 0;
  background: #ffffff;
}

.lnd-intel .lnd-container {
  max-width: 1280px;
}

.lnd-intel-shell {
  padding: 44px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: #ffffff;
  border: 1px solid #e2e2e8;
  box-shadow:
    0 2px 4px rgba(15,23,42,0.04),
    0 12px 32px rgba(15,23,42,0.07);
  position: relative;
}

.lnd-intel-shell::before {
  display: none;
}

.lnd-intel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.lnd-intel-head-copy {
  max-width: 620px;
}

.lnd-intel-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 0;
  align-self: end;
}

.lnd-intel-tab {
  border: 1px solid var(--lnd-line);
  background: #fff;
  color: var(--lnd-ink-60);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 13.5px;
  font-weight: 500;
  transition: all .2s ease;
}

.lnd-intel-tab:hover {
  color: var(--lnd-ink);
  border-color: rgba(97, 75, 158, 0.28);
}

.lnd-intel-tab.is-active {
  background: linear-gradient(135deg, var(--lnd-purple) 0%, var(--lnd-blue) 55%, var(--lnd-teal) 100%);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: white;
  border-color: transparent;
  box-shadow: 0 10px 24px -10px rgba(97, 75, 158, 0.45);
}

.lnd-intel .lnd-section-eyebrow {
  color: var(--lnd-purple);
}

.lnd-intel .lnd-section-title {
  color: var(--lnd-ink);
}

.lnd-intel-stage {
  display: grid;
  grid-template-columns: 400px 1fr;
  height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background: #f4f5fa;
  border: 1px solid #e2e2e8;
  position: relative;
  isolation: isolate;
  z-index: 1;
}

.lnd-intel-copy {
  height: 100%;
  padding: 34px 32px 34px 34px;
  color: var(--lnd-ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.lnd-intel-visual {
  height: 100%;
  padding: 22px 22px 22px 8px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lnd-intel-frame {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  background: #ffffff;
  box-shadow:
    0 2px 6px rgba(15,23,42,0.04),
    0 12px 32px rgba(15,23,42,0.08);
  overflow: hidden;
}

.lnd-intel-frame-top {
  height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.78);
}

.lnd-intel-frame-dots {
  display: flex;
  gap: 7px;
}

.lnd-intel-frame-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d2d8e2;
}

.lnd-intel-frame-label {
  font-family: var(--lnd-mono);
  font-size: 11px;
  color: var(--lnd-ink-40);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lnd-intel-placeholder {
  height: calc(100% - 52px);
  padding: 0;
  background:
    linear-gradient(180deg, rgba(97, 75, 158, 0.04), transparent 28%),
    linear-gradient(135deg, rgba(42, 145, 207, 0.05), rgba(0, 171, 177, 0.07));
}

.lnd-intel-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}

.lnd-intel-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--lnd-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lnd-purple);
  margin-bottom: 14px;
}

.lnd-intel-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lnd-teal), var(--lnd-blue));
}

.lnd-intel-title {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--lnd-ink);
  margin-bottom: 12px;
  max-width: 320px;
}

.lnd-intel-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--lnd-ink-60);
  max-width: 310px;
  margin-bottom: 14px;
}

.lnd-intel-proof {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--lnd-line);
  font-size: 12px;
  color: var(--lnd-ink-40);
  max-width: 310px;
}

.lnd-intel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lnd-purple);
  font-size: 13px;
  font-weight: 500;
  width: fit-content;
}

@media (max-width: 1024px) {
  .lnd-intel-shell {
    padding: 48px 36px;
  }

  .lnd-intel-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .lnd-intel-tabs {
    justify-content: flex-start;
  }

  .lnd-intel-stage {
    grid-template-columns: 1fr;
    height: auto;
  }

  .lnd-intel-frame {
    height: auto;
  }
}

@media (max-width: 640px) {
  .lnd-intel {
    padding: 24px 0;
  }

  .lnd-intel-shell {
    padding: 36px 24px;
    border-radius: 16px;
  }

  .lnd-intel-head {
    gap: 18px;
    margin-bottom: 22px;
  }

  .lnd-intel-copy,
  .lnd-intel-visual {
    padding: 24px;
  }

  .lnd-intel-title {
    font-size: 26px;
  }

  .lnd-intel-desc {
    font-size: 14px;
  }

  .lnd-intel-frame {
    min-height: 300px;
  }

  .lnd-intel-ph-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   FINAL CTA — section 8
   =========================================================== */
.lnd-cta {
  padding: 84px 0 120px;
  background: #ffffff;
}

.lnd-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.lnd-cta-eyebrow {
  display: inline-block;
  font-family: var(--lnd-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lnd-purple);
  margin-bottom: 20px;
}

.lnd-cta-title {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--lnd-ink);
  margin: 0 0 16px;
}

.lnd-cta-title span {
  display: block;
  color: var(--lnd-ink-40);
}

.lnd-cta-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--lnd-ink-60);
  margin: 0 0 36px;
  font-weight: 400;
}

.lnd-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.lnd-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  background: linear-gradient(135deg, var(--lnd-purple) 0%, var(--lnd-blue) 55%, var(--lnd-teal) 100%);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: white;
  box-shadow: 0 12px 28px -12px rgba(97, 75, 158, 0.5);
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s, background-position .25s, color .25s;
  white-space: nowrap;
}

.lnd-cta-btn-primary:hover {
  transform: translateY(-1px);
  background-position: 100% 50%;
  color: white;
  box-shadow: 0 18px 36px -14px rgba(97, 75, 158, 0.6);
}

.lnd-cta-dashboards {
  position: relative;
  width: 100%;
  margin-top: 8px;
}

.lnd-slot-stage {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  pointer-events: none;
}

.lnd-slot-stage::before,
.lnd-slot-stage::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 10;
  pointer-events: none;
}

.lnd-slot-stage::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.lnd-slot-stage::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.lnd-slot-track {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  will-change: transform;
}

.lnd-slot-card {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
  will-change: transform, opacity;
  transform-origin: center center;
}

.lnd-slot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  pointer-events: none;
  user-select: none;
}

@media (max-width: 768px) {
  .lnd-cta {
    padding: 72px 0 104px;
  }

  .lnd-cta-actions {
    margin-bottom: 40px;
  }

  .lnd-slot-stage {
    height: 200px;
  }

  .lnd-slot-stage::before,
  .lnd-slot-stage::after {
    width: 72px;
  }

  .lnd-slot-track {
    gap: 14px;
  }

  .lnd-slot-card {
    width: 240px;
    height: 160px;
  }
}

/* ===========================================================
   AI INTELLIGENCE SECTION
   =========================================================== */

/* ── PAGE WRAPPER ── */
.rwy-page-wrap {
  background: #ffffff;
  padding: 40px 0;
}

/* ===========================================================
   RUNWAY — Feature switcher section
   Prefix: rwy-*
   =========================================================== */

.rwy-section {
  padding: 32px 40px;
  background: transparent;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.rwy-inner {
  position: relative;
  padding: 32px 36px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,250,252,0.98));
  border: 1px solid #e5e7ec;
  box-shadow: 0 8px 28px -22px rgba(15,23,42,0.14);
}

.rwy-inner::before {
  display: none;
}

.rwy-inner::after {
  display: none;
}

.rwy-header,
.rwy-body {
  position: relative;
  z-index: 1;
}

/* ── SECTION HEADER ── */
.rwy-header {
  margin-bottom: 28px;
}

.rwy-eyebrow {
  display: inline-block;
  font-family: var(--lnd-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lnd-purple);
  margin-bottom: 14px;
}

.rwy-title {
  font-size: clamp(30px, 2.8vw, 42px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--lnd-ink);
  max-width: 620px;
  margin: 0 0 16px;
}

.rwy-sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--lnd-ink-60);
  max-width: 640px;
}

/* ── LAYOUT ── */
.rwy-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
  height: 430px;
  overflow: hidden;
}

/* ── LEFT: FEATURE LIST ── */
.rwy-features {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.rwy-feature {
  padding: 18px 0;
  border-top: 1px solid var(--lnd-line);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.rwy-feature:last-child {
  border-bottom: 1px solid var(--lnd-line);
}

.rwy-feature-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rwy-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--lnd-bg-soft);
  transition: background 0.25s;
}

.rwy-feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--lnd-ink-20);
  transition: color 0.25s;
  stroke-width: 1.8px;
}

.rwy-feature.is-active .rwy-feature-icon {
  background: var(--lnd-accent-soft);
}

.rwy-feature.is-active .rwy-feature-icon svg {
  color: var(--lnd-purple);
}

.rwy-feature-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--lnd-ink-40);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.2s;
}

.rwy-feature.is-active .rwy-feature-name {
  color: var(--lnd-ink);
}

.rwy-feature-desc {
  font-size: 15px;
  color: var(--lnd-ink-60);
  line-height: 1.65;
  padding-left: 54px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease, margin-top 0.3s;
}

.rwy-feature.is-active .rwy-feature-desc {
  max-height: 120px;
  opacity: 1;
  margin-top: 10px;
}

.rwy-feature-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lnd-purple);
  text-decoration: none;
  padding-left: 54px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s ease 0.06s, margin-top 0.3s;
}

.rwy-feature.is-active .rwy-feature-link {
  max-height: 32px;
  opacity: 1;
  margin-top: 8px;
}

.rwy-feature-link svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.rwy-feature-link:hover svg {
  transform: translateX(3px);
}

/* ── RIGHT: VISUAL FRAME ── */
.rwy-visual {
  position: sticky;
  top: 100px;
}

.rwy-visual-frame {
  background: #f7f8fb;
  border: 1px solid #e5e7ec;
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  position: relative;
  box-shadow: 0 20px 48px -24px rgba(15,23,42,0.12);
}

.rwy-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  padding: 20px;
}

.rwy-panel.is-active {
  opacity: 1;
  pointer-events: all;
}

/* ── SHARED SHELL ── */
.rwy-shell {
  background: #ffffff;
  border-radius: 16px;
  width: 100%;
  border: 1px solid rgba(15,23,42,0.07);
  box-shadow:
0 2px 6px rgba(15,23,42,0.06),
0 16px 42px rgba(15,23,42,0.18);
  padding: 28px;
}

.rwy-shell-hdr {
  font-family: var(--lnd-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lnd-ink-20);
  margin-bottom: 16px;
}

/* ── PANEL 0: AI PREDICTIONS ── */
.pred-main-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
}

.pred-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lnd-purple);
  flex-shrink: 0;
  transition: background 0.3s;
}

.pred-text {
  font-size: 13px;
  color: var(--lnd-ink-60);
}

.pred-days-val {
  font-weight: 700;
  color: var(--lnd-ink);
  font-size: 14px;
}

.pred-bar-bg {
  height: 5px;
  background: var(--lnd-line-soft);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 7px;
}

.pred-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--lnd-purple), var(--lnd-blue));
  border-radius: 3px;
  transition: width 1s ease;
  width: 0%;
}

.pred-conf {
  font-family: var(--lnd-mono);
  font-size: 9.5px;
  color: var(--lnd-ink-20);
  margin-bottom: 20px;
}

.pred-rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pred-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pred-row-top {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--lnd-ink-60);
}

.pred-row-top strong {
  color: var(--lnd-ink);
  font-weight: 600;
}

.pred-row-bar {
  height: 4px;
  background: var(--lnd-line-soft);
  border-radius: 2px;
  overflow: hidden;
}

.pred-row-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1s ease;
  width: 0%;
}

.pred-row-fill--0 { background: linear-gradient(90deg, var(--lnd-teal), var(--lnd-blue)); }
.pred-row-fill--1 { background: linear-gradient(90deg, var(--lnd-purple), var(--lnd-blue)); }
.pred-row-fill--2 { background: linear-gradient(90deg, var(--lnd-blue), var(--lnd-cyan)); }

/* ── PANEL 1: CODE REVIEWER (light) ── */
.rwy-code-shell {
  background: #f8f9fb;
  border-radius: 16px;
  width: 100%;
  border: 1px solid var(--lnd-line);
  box-shadow:
0 2px 6px rgba(15,23,42,0.04),
0 12px 32px rgba(15,23,42,0.07);
  padding: 26px;
}

.rwy-code-shell .rwy-shell-hdr {
  color: var(--lnd-ink-20);
}

.rwy-code-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rwy-code-line {
  font-family: var(--lnd-mono);
  font-size: 10.5px;
  color: var(--lnd-ink-40);
  line-height: 1.55;
}

.rwy-ln {
  display: inline-block;
  width: 18px;
  font-size: 9px;
  color: var(--lnd-ink-20);
}

.rwy-code-line.rwy-issue.rwy-issue-active {
  color: #dc2626;
  background: rgba(220,38,38,0.05);
  border-radius: 3px;
  padding: 0 2px;
}

.rwy-scan-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--lnd-purple), var(--lnd-blue));
  opacity: 0.45;
  top: 0;
  border-radius: 1px;
}

.rwy-code-result {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.rwy-code-shell.rwy-show-result .rwy-code-block-wrap {
  display: none;
}

.rwy-code-shell.rwy-show-result .rwy-code-result {
  display: flex;
}

.rwy-result-hdr {
  display: grid;
  grid-template-columns: 30% 70%;
  font-family: var(--lnd-mono);
  font-size: 9px;
  color: var(--lnd-ink-20);
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--lnd-line);
}

.rwy-result-row {
  display: grid;
  grid-template-columns: 30% 70%;
  font-family: var(--lnd-mono);
  font-size: 10.5px;
  padding: 6px 0;
  border-bottom: 1px solid var(--lnd-line-soft);
}

.rwy-result-row.rwy-crit span:first-child { color: #dc2626; font-weight: 600; }
.rwy-result-row.rwy-med  span:first-child { color: #d97706; font-weight: 600; }
.rwy-result-row.rwy-low  span:first-child { color: var(--lnd-ink-40); }
.rwy-result-row span:last-child { color: var(--lnd-ink-60); }

.rwy-ai-block {
  margin-top: 12px;
  padding: 12px 14px;
  background: var(--lnd-accent-soft);
  border: 1px solid rgba(97,75,158,0.12);
  border-radius: 10px;
  font-family: var(--lnd-mono);
  font-size: 10px;
}

.rwy-ai-hdr {
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--lnd-purple-deep);
}

.rwy-ai-line {
  min-height: 12px;
  margin-bottom: 2px;
  color: var(--lnd-ink-60);
}

/* ── PANEL 2: NUDGES ── */
.rwy-nudge-shell {
  position: relative;
  min-height: 240px;
}

.rwy-nudge-metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.rwy-n-label {
  font-size: 11.5px;
  color: var(--lnd-ink-60);
  margin-bottom: 7px;
}

.rwy-n-bar-bg {
  height: 5px;
  background: var(--lnd-line-soft);
  border-radius: 3px;
  overflow: hidden;
}

.rwy-n-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--lnd-purple), var(--lnd-blue));
  opacity: 0.2;
  transition: width 1.2s ease, opacity 0.5s;
}

.rwy-n-bar-fill.rwy-n-spike {
  opacity: 1;
}

.rwy-nudge-popup {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  background: #fff;
  border: 1px solid rgba(97,75,158,0.15);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow:
0 4px 12px rgba(97,75,158,0.08),
0 20px 48px rgba(97,75,158,0.12);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}

.rwy-nudge-popup.rwy-visible {
  opacity: 1;
  transform: translateY(0);
}

.rwy-nudge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--lnd-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--lnd-accent-soft);
  color: var(--lnd-purple-deep);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.rwy-nudge-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lnd-purple);
  flex-shrink: 0;
}

.rwy-nudge-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--lnd-ink);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}

.rwy-nudge-body {
  font-size: 12.5px;
  color: var(--lnd-ink-60);
  line-height: 1.6;
}

/* ── PANEL 3: KineGPT ── */
.rwy-gpt-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rwy-gpt-prompt {
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 10px 24px -20px rgba(15,23,42,0.18);
}

.rwy-gpt-prompt-label,
.rwy-gpt-response-label {
  display: inline-block;
  font-family: var(--lnd-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.rwy-gpt-prompt-label {
  color: var(--lnd-ink-20);
}

.rwy-gpt-prompt-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--lnd-ink);
}

.rwy-gpt-response {
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(97,75,158,0.10), rgba(16,169,226,0.08));
  border: 1px solid rgba(97,75,158,0.14);
  box-shadow: 0 14px 28px -22px rgba(15,23,42,0.2);
}

.rwy-gpt-response-label {
  color: var(--lnd-purple);
}

.rwy-gpt-response-text {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--lnd-ink-80);
}

.rwy-gpt-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.rwy-gpt-card {
  padding: 12px 10px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
}

.rwy-gpt-value {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--lnd-ink);
  margin-bottom: 4px;
}

.rwy-gpt-label {
  font-size: 10.5px;
  line-height: 1.45;
  color: var(--lnd-ink-60);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rwy-body {
grid-template-columns: 1fr 1fr;
gap: 56px;
  }
}

@media (max-width: 860px) {
  .rwy-section { padding: 40px 20px; }
  .rwy-body {
grid-template-columns: 1fr;
gap: 40px;
  }
  .rwy-visual { position: static; }
  .rwy-visual-frame { height: 400px; }
  .rwy-title { max-width: 100%; }
}

@media (max-width: 580px) {
  .rwy-page-wrap { padding: 48px 0; }
  .rwy-section { padding: 24px 16px; }
  .rwy-visual-frame { height: 360px; }
  .rwy-panel { padding: 14px; }
}
/* ===========================================================
   KINEGPT BANNER
   =========================================================== */
.lnd-kgpt {
  background: linear-gradient(135deg, #f0ecfb 0%, #e6f4fb 50%, #e6f7f8 100%);
  border-top: 1px solid rgba(97, 75, 158, 0.08);
  border-bottom: 1px solid rgba(97, 75, 158, 0.08);
  overflow: hidden;
  position: relative;
}

.lnd-kgpt::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(97, 75, 158, 0.12), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}

.lnd-kgpt-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 0 40px;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 160px;
}

/* Robot image */
.lnd-kgpt-robot {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  position: relative;
  z-index: 1;
}

.lnd-kgpt-robot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Copy */
.lnd-kgpt-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.lnd-kgpt-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(97, 75, 158, 0.1);
  color: var(--lnd-purple-deep);
  font-family: var(--lnd-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 2px;
}

.lnd-kgpt-pill-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--lnd-purple), var(--lnd-blue));
  flex-shrink: 0;
}

.lnd-kgpt-headline {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--lnd-ink);
}

.lnd-kgpt-sub {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lnd-ink-60);
  font-weight: 400;
  max-width: 480px;
}

/* CTA */
.lnd-kgpt-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, var(--lnd-purple) 0%, var(--lnd-blue) 55%, var(--lnd-teal) 100%);
  background-size: 180% 180%;
  background-position: 0% 50%;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 16px -4px rgba(97, 75, 158, 0.4);
  transition: transform .25s cubic-bezier(.22, 1, .36, 1), box-shadow .25s, background-position .25s, color .25s;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.lnd-kgpt-cta:hover {
  transform: translateY(-1px);
  background-position: 100% 50%;
  color: white;
  box-shadow: 0 8px 24px -4px rgba(97, 75, 158, 0.5);
}

.lnd-kgpt-cta svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .lnd-kgpt-inner {
    flex-wrap: wrap;
    padding: 32px 20px;
    min-height: auto;
    gap: 20px;
  }

  .lnd-kgpt-robot {
    width: 80px;
    height: 80px;
  }
}

.lnd-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--lnd-ink);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
  transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s, color .25s, background .25s;
  white-space: nowrap;
}

.lnd-cta-btn-ghost:hover {
  transform: translateY(-1px);
  color: var(--lnd-purple);
  background: #fafbff;
  box-shadow: inset 0 0 0 1px rgba(97, 75, 158, 0.28);
}

/* ===========================================================
   ROLES SECTION
   =========================================================== */
.lnd-roles {
  background: #ffffff;
  padding: 64px 0;
}

.lnd-roles .lnd-container {
  max-width: 1300px;
}

.lnd-roles-head {
  margin-bottom: 32px;
}

.lnd-roles-eyebrow {
  display: inline-block;
  font-family: var(--lnd-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lnd-purple);
  margin-bottom: 14px;
}

.lnd-roles-title {
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--lnd-ink);
  margin-bottom: 14px;
}

.lnd-roles-sub {
  font-size: 15px;
  line-height: 1.65;
  color: var(--lnd-ink-60);
  font-weight: 400;
  max-width: 580px;
}

.lnd-roles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lnd-roles-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: box-shadow .25s, transform .3s cubic-bezier(.22, 1, .36, 1);
}

.lnd-roles-card:hover {
  box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
}

.lnd-roles-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.lnd-roles-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lnd-roles-copy {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lnd-roles-card-title {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--lnd-ink);
  margin-bottom: 8px;
}

.lnd-roles-desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--lnd-ink-60);
  font-weight: 400;
  flex: 1;
  margin-bottom: 14px;
}

.lnd-roles-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--lnd-purple);
  text-decoration: none;
  transition: gap .2s ease;
  width: fit-content;
  margin-top: auto;
}

.lnd-roles-cta:hover {
  gap: 8px;
}

.lnd-roles-cta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform .2s ease;
}

.lnd-roles-cta:hover svg {
  transform: translateX(2px);
}

@media (max-width: 860px) {
  .lnd-roles-grid {
    grid-template-columns: 1fr;
  }

  .lnd-roles {
    padding: 48px 0;
  }
}

/* ===========================================================
   STORYTELLING — tab switcher 
   =========================================================== */
.lnd-story {
  margin: 48px auto;
  max-width: 1300px;
  padding: 0 40px;
}

.lnd-story-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.1),
    0 24px 64px -16px rgba(0, 0, 0, 0.25);
  background: #000;
  min-height: 720px;
  display: flex;
  flex-direction: column;
}

/* Video layer */
.lnd-story-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.lnd-story-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient overlay — heavier at bottom for text */
.lnd-story-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.60) 30%,
      rgba(0, 0, 0, 0.25) 60%,
      transparent 100%);
}

/* Content sits above video + overlay */
.lnd-story-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px 80px 40px;
  min-height: 720px;
}

/* ── TAB SWITCHER PANELS ── */
.lnd-story-panel {
  display: none;
  animation: lnd-story-fadein 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.lnd-story-panel.is-active {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
}

@keyframes lnd-story-fadein {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lnd-story-left {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 640px;
}

.lnd-story-tag {
  font-family: var(--lnd-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  width: fit-content;
}

.lnd-story-title {
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
}

.lnd-story-body {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.lnd-story-body p {
  margin-bottom: 10px;
}

.lnd-story-body p:last-child {
  margin-bottom: 0;
}

.lnd-story-body strong {
  color: #fff;
  font-weight: 600;
}

.lnd-story-closing {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  max-width: 500px;
}

/* ── BUCKETS (panel 3 right column) ── */
.lnd-story-buckets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 280px;
}

.lnd-story-bucket-title {
  font-family: var(--lnd-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
}

.lnd-story-bucket-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lnd-story-bucket-item {
  font-size: 11px;
  font-family: var(--lnd-mono);
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.lnd-story-bucket-item:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

/* ── PROGRESS TABS at bottom ── */
.lnd-story-tabs {
  display: flex;
  gap: 10px;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.lnd-story-tab {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}

.lnd-story-tab:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* Animated fill bar */
.lnd-story-tab-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #ffffff;
  border-radius: 2px;
  transition: none;
}

.lnd-story-tab.is-active .lnd-story-tab-fill {
  animation: lnd-tab-progress var(--lnd-tab-duration, 5s) linear forwards;
}

.lnd-story-tab.is-done .lnd-story-tab-fill {
  width: 100%;
}

@keyframes lnd-tab-progress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Tab labels */
.lnd-story-tab-label {
  display: block;
  font-family: var(--lnd-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  transition: color 0.2s;
  white-space: nowrap;
  user-select: none;
}

.lnd-story-tab.is-active .lnd-story-tab-label,
.lnd-story-tab:hover .lnd-story-tab-label {
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 1024px) {
  .lnd-story-panel.is-active {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .lnd-story-buckets {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .lnd-story {
    padding: 0 16px;
    margin: 24px auto;
  }

  .lnd-story-content {
    padding: 32px 60px 28px;
    min-height: 520px;
  }

  .lnd-story-title {
    font-size: 24px;
  }

  .lnd-story-body {
    font-size: 15px;
  }

  .lnd-story-tab-label {
    display: none;
  }
}

/* Story nav arrows */
.lnd-story-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 3;
}

.lnd-story-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lnd-story-arrow:hover {
  background: rgba(255, 255, 255, 0.26);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.08);
}

.lnd-story-arrow svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .lnd-story-arrows {
    padding: 0 12px;
  }

  .lnd-story-arrow {
    width: 36px;
    height: 36px;
  }
}

 


#header { background-color: #FFF; }
