/* ============================================================
   SKYLARK LABS — BOLD RHYTHM REDESIGN
   Section overhaul: numbering, scroll rail, asymmetry, cinematic hovers
   ============================================================ */

/* Force the deep ink background back — preview env injects an inline
   `html,body{background:transparent}` reset that wins over style.css. */
html, body {
  background: #050507 !important;
  background-color: #050507 !important;
}
/* Also ensure all the section block wrappers stay deep-ink (some inherit
   from the now-transparent body). */
.blockbgtwo, .blockbg {
  background-color: #050507 !important;
}
/* Industries gets a slightly elevated tone to feel like a "stage" */
.sl-industries-overhaul {
  background-color: #08080d !important;
}

:root {
  --sl-violet: #8B5CF6;
  --sl-violet-soft: #A78BFA;
  --sl-violet-deep: #6D28D9;
  --sl-pink: #EC4899;
  --sl-fuchsia: #E879F9;
  --sl-ink: #050507;
  --sl-ink-2: #0b0b10;
  --sl-line: rgba(255,255,255,0.08);
  --sl-line-strong: rgba(255,255,255,0.16);
  --sl-text-mute: rgba(255,255,255,0.55);
  --sl-text: rgba(255,255,255,0.92);
  --sl-mono: 'JetBrains Mono', 'IBM Plex Mono', 'SFMono-Regular', ui-monospace, Menlo, Consolas, monospace;
}

/* ---------- 1. SECTION OPENER SYSTEM ---------- */
/* A bold, monospaced "01 / SECTION KICKER" tag with gradient hairline,
   prepended to each major section title via JS. */

.sl-section-opener {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  font-family: var(--sl-mono);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1), transform 0.9s cubic-bezier(.22,.61,.36,1);
}
.sl-section-opener.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.sl-section-num {
  font-weight: 600;
  color: #fff;
  position: relative;
  padding: 4px 10px;
  border: 1px solid var(--sl-line-strong);
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(236,72,153,0.10));
  backdrop-filter: blur(10px);
}
.sl-section-num::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 4px;
  padding: 1px;
  background: linear-gradient(135deg, var(--sl-violet), var(--sl-pink));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
}
.sl-section-kicker {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.sl-section-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(139,92,246,0.55) 0%,
    rgba(236,72,153,0.35) 35%,
    rgba(255,255,255,0.06) 100%);
  position: relative;
  overflow: hidden;
}
.sl-section-rule::after {
  content: '';
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  opacity: 0.6;
  animation: sl-rule-shimmer 4.5s linear infinite;
}
@keyframes sl-rule-shimmer {
  0%   { left: -30%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

@media (max-width: 768px) {
  .sl-section-opener {
    gap: 14px;
    font-size: 11px;
    margin-bottom: 22px;
  }
  .sl-section-kicker { display: none; }
}

/* ---------- 2. RIGHT-SIDE SCROLL RAIL ---------- */
.sl-rail {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 14px;
  border: 1px solid var(--sl-line);
  border-radius: 100px;
  background: rgba(8, 8, 12, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.6s ease 0.2s;
  pointer-events: none;
}
.sl-rail.is-active {
  opacity: 1;
  pointer-events: auto;
}
.sl-rail-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  padding: 0;
}
.sl-rail-dot:hover {
  background: rgba(255,255,255,0.5);
  transform: scale(1.25);
}
.sl-rail-dot.is-current {
  background: linear-gradient(135deg, var(--sl-violet), var(--sl-pink));
  box-shadow: 0 0 12px rgba(139,92,246,0.7);
  transform: scale(1.4);
}
.sl-rail-dot .sl-rail-label {
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  font-family: var(--sl-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  background: rgba(8,8,12,0.85);
  border: 1px solid var(--sl-line-strong);
  padding: 6px 10px;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.sl-rail-dot:hover .sl-rail-label,
.sl-rail-dot.is-current .sl-rail-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.sl-rail-progress {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: calc(100% - 28px);
  background: rgba(255,255,255,0.06);
  border-radius: 1px;
  overflow: hidden;
}
.sl-rail-progress::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--sl-progress, 0%);
  background: linear-gradient(180deg, var(--sl-violet), var(--sl-pink));
  transition: height 0.15s linear;
}

@media (max-width: 991px) {
  .sl-rail { display: none; }
}

/* ---------- 3. SECTION TRANSITIONS — ambient glows + soft dividers ---------- */
.sl-divider {
  position: relative;
  height: 1px;
  margin: 0 auto;
  max-width: 1140px;
  background: linear-gradient(90deg, transparent, var(--sl-line-strong), transparent);
}
.sl-divider::before,
.sl-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sl-violet);
  box-shadow: 0 0 12px var(--sl-violet);
  transform: translateY(-50%);
}
.sl-divider::before { left: 50%; transform: translate(-50%, -50%); }
.sl-divider::after  { display: none; }

/* Ambient violet glow that sits behind sections to create cohesion */
.sl-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

/* ---------- 4. SECTION TITLE OVERHAUL ----------
   Make titles feel weightier, with mixed alignment (left for bold sections). */
.sl-section-mod .section_title {
  /* Fixed rem (was vw-based clamp) so section titles don't reflow on browser resize */
  font-size: 3.6rem !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 24px;
  font-weight: 700;
}
.sl-section-mod--left .section_title {
  text-align: left !important;
}
.sl-section-mod--left > p,
.sl-section-mod--left .f-18 {
  text-align: left !important;
  max-width: 720px;
}

/* Hide removed industry cards (kept in DOM for safety) */
.sl-industries-overhaul .row.gy-4 > [data-sl-removed] {
  display: none !important;
}

/* ---------- 5. INDUSTRIES — kill the cramped 50/50, go big & asymmetric ---------- */
.sl-industries-overhaul .row.gy-4 {
  --bs-gutter-y: 28px !important;
  --bs-gutter-x: 28px !important;
}

/* Restructure as asymmetric grid:
   1 hero card (full-width, image-left) + 5 "stack" cards in 2-3 grid */
.sl-industries-overhaul .row.gy-4 {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  margin-top: 56px !important;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"] {
  width: auto !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}
/* First card: full-width feature */
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) {
  grid-column: span 6;
}
/* Cards 2-3: half-width */
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(2),
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(3) {
  grid-column: span 3;
}
/* Cards 4-6: thirds */
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(4),
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(5),
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(6) {
  grid-column: span 2;
}

@media (max-width: 991px) {
  .sl-industries-overhaul .row.gy-4 {
    grid-template-columns: 1fr 1fr;
  }
  .sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) {
    grid-column: span 2;
  }
  .sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(n+2) {
    grid-column: span 1;
  }
}
@media (max-width: 600px) {
  .sl-industries-overhaul .row.gy-4 {
    grid-template-columns: 1fr;
  }
  .sl-industries-overhaul .row.gy-4 > [class*="col-"] {
    grid-column: span 1 !important;
  }
}

/* Card visual overhaul */
.sl-industries-overhaul .single-card-container {
  background: linear-gradient(160deg, #0e0e14 0%, #060608 100%) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  position: relative;
  height: 100%;
  transition: transform 0.55s cubic-bezier(.22,.61,.36,1),
              border-color 0.4s ease,
              box-shadow 0.55s cubic-bezier(.22,.61,.36,1);
}
.sl-industries-overhaul .single-card-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(139,92,246,0.18), transparent 55%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}
.sl-industries-overhaul .single-card-container:hover {
  transform: translateY(-3px);
  border-color: rgba(139,92,246,0.35) !important;
  box-shadow:
    0 30px 70px -20px rgba(139,92,246,0.35),
    0 0 0 1px rgba(139,92,246,0.18);
}
.sl-industries-overhaul .single-card-container:hover::before { opacity: 1; }

/* Numbered industry tag */
.sl-industries-overhaul .single-card-container .text-container::before {
  content: 'INDUSTRY · 0' counter(sl-ind);
  counter-increment: sl-ind;
  display: block;
  font-family: var(--sl-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--sl-violet-soft);
  margin-bottom: 16px;
  opacity: 0.85;
}
.sl-industries-overhaul .industries-container { counter-reset: sl-ind; }

/* Hero (first) card: bigger imagery, side-by-side */
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) .single-card-container .row {
  min-height: 380px;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) .text-container {
  padding: 48px !important;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) .text-container::before {
  content: 'FLAGSHIP · 01';
  color: #fff;
  background: linear-gradient(135deg, var(--sl-violet), var(--sl-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) .f-18 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) .opacity-50 {
  font-size: 1.15rem !important;
  margin-top: 16px !important;
  max-width: 90%;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) .img-container {
  height: 100%;
  min-height: 380px;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) .img-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

/* Half-width cards (2,3): stacked text-on-top, image-on-bottom */
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(2) .single-card-container .row,
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(3) .single-card-container .row {
  flex-direction: column-reverse;
  margin: 0;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(2) .single-card-container .row > [class*="col-"],
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(3) .single-card-container .row > [class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(2) .img-container,
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(3) .img-container {
  height: 220px;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(2) .img-container img,
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(3) .img-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(2) .text-container,
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(3) .text-container {
  padding: 32px !important;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(2) .f-18,
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(3) .f-18 {
  font-size: 1.7rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}

/* Third-width cards (4,5,6): compact, image-first */
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(n+4) .single-card-container .row {
  flex-direction: column-reverse;
  margin: 0;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(n+4) .single-card-container .row > [class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(n+4) .img-container {
  height: 160px;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(n+4) .img-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(n+4) .text-container {
  padding: 24px !important;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(n+4) .f-18 {
  font-size: 1.35rem !important;
  font-weight: 700 !important;
}
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(n+4) .opacity-50 {
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
}

/* Image vignette */
.sl-industries-overhaul .img-container {
  position: relative;
  overflow: hidden;
}
.sl-industries-overhaul .img-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,5,7,0.45) 100%);
  pointer-events: none;
  z-index: 1;
}
.sl-industries-overhaul .img-container img {
  transition: transform 1.4s cubic-bezier(.22,.61,.36,1) !important;
}
.sl-industries-overhaul .single-card-container:hover .img-container img {
  transform: scale(1.08) !important;
}

/* Learn-more pill */
.sl-industries-overhaul .learn-more-text {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 8px 14px !important;
  border: 1px solid var(--sl-line-strong) !important;
  border-radius: 100px !important;
  background: rgba(255,255,255,0.02) !important;
  color: #fff !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  font-family: var(--sl-mono) !important;
  font-weight: 500 !important;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease !important;
}
.sl-industries-overhaul .learn-more-text::after {
  content: '↗' !important;
  font-size: 14px;
  transition: transform 0.3s ease;
}
.sl-industries-overhaul .single-card-container:hover .learn-more-text {
  background: linear-gradient(135deg, rgba(139,92,246,0.22), rgba(236,72,153,0.16)) !important;
  border-color: rgba(139,92,246,0.5) !important;
}
.sl-industries-overhaul .single-card-container:hover .learn-more-text::after {
  transform: translate(2px, -2px) !important;
}

/* OLD use-cases block removed; see new artifact-style block below */


/* ---------- 7. SECTION SPACING RHYTHM ----------
   Variable vertical breathing — major sections get generous space */
.sl-rhythm-block { padding-top: 140px !important; padding-bottom: 140px !important; position: relative; }
.sl-rhythm-block--tight { padding-top: 80px !important; padding-bottom: 80px !important; }
.sl-rhythm-block--air { padding-top: 180px !important; padding-bottom: 180px !important; }

@media (max-width: 768px) {
  .sl-rhythm-block { padding-top: 80px !important; padding-bottom: 80px !important; }
  .sl-rhythm-block--air { padding-top: 100px !important; padding-bottom: 100px !important; }
  .sl-rhythm-block--tight { padding-top: 50px !important; padding-bottom: 50px !important; }
}

/* Ambient glows tied to specific sections */
/* overflow:clip prevents the 600x600 blurred glow from extending past the section
   bounds — without this, the overflow registers as touch surface on iOS Safari
   and rubber-band scrolling reveals the page background as a "big black space". */
.sl-glow-host {
  position: relative;
  overflow: hidden;
}
.sl-glow-host > .sl-ambient-glow {
  width: 600px;
  height: 600px;
  opacity: 0.18;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}
.sl-glow-host--violet > .sl-ambient-glow { background: var(--sl-violet); }
.sl-glow-host--pink > .sl-ambient-glow { background: var(--sl-pink); }

/* ---------- 8. LOGO STRIP — flatten + frame ---------- */
.sl-section-mod--logos {
  position: relative;
  padding: 60px 0 !important;
}
.sl-section-mod--logos::before,
.sl-section-mod--logos::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--sl-line-strong), transparent);
}
.sl-section-mod--logos::before { top: 0; }
.sl-section-mod--logos::after  { bottom: 0; }
.sl-section-mod--logos .container::before {
  content: 'TRUSTED BY';
  display: block;
  text-align: center;
  font-family: var(--sl-mono);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
}

/* ---------- 9. INTRO SCROLL CUE — small "scroll" affordance below hero ---------- */
.sl-scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--sl-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 5;
  animation: sl-cue-bob 2.4s ease-in-out infinite;
}
.sl-scroll-cue::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--sl-violet), transparent);
}
@keyframes sl-cue-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.7; }
  50%      { transform: translate(-50%, 6px); opacity: 1; }
}


/* ============================================================
   FRONTIER AI RESEARCH — research-artifact cards
   Numbered slug · outlet kicker · hero headline · watermark icon
   ============================================================ */
.frontier-ai-heading + .mt-5 .frontierAiResearchSwiper { counter-reset: sl-research; }

.frontierAiResearchSwiper .ai-research-single-card {
  /* Override original */
  border-radius: 0 !important;
  background: linear-gradient(168deg, #0c0c14 0%, #060608 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  padding: 0 !important;
  height: 100%;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Diagonal corner-cut on top-right (research artifact feel) */
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  transition:
    transform 0.5s cubic-bezier(.22,.61,.36,1),
    border-color 0.4s ease,
    background 0.5s ease;
}
.frontierAiResearchSwiper .ai-research-single-card::before {
  /* Soft violet wash from bottom-left, hidden until hover */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px 280px at -10% 110%,
    rgba(139,92,246,0.18) 0%,
    rgba(139,92,246,0) 60%
  );
  opacity: 0;
  transition: opacity 0.55s ease;
  z-index: 1;
  pointer-events: none;
}
.frontierAiResearchSwiper .ai-research-single-card::after {
  /* Bottom-edge violet trace, animates wider on hover */
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg,
    rgba(139,92,246,0.85) 0%,
    rgba(236,72,153,0.55) 60%,
    transparent 100%);
  transition: width 0.7s cubic-bezier(.22,.61,.36,1);
  z-index: 4;
  pointer-events: none;
}
.frontierAiResearchSwiper .ai-research-single-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.32) !important;
  background: linear-gradient(168deg, #11111c 0%, #08080d 100%) !important;
}
.frontierAiResearchSwiper .ai-research-single-card:hover::before { opacity: 1; }
.frontierAiResearchSwiper .ai-research-single-card:hover::after  { width: 100%; }

/* The anchor fills the card and gets internal padding */
.frontierAiResearchSwiper .ai-research-single-card > a {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  padding: 32px 28px 28px 28px;
  position: relative;
  z-index: 2;
}
.frontierAiResearchSwiper .ai-research-single-card .tworowblock > div,
.frontierAiResearchSwiper .ai-research-single-card .tworowblock > div > div {
  display: flex !important;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: 0 !important;
}

/* Hide the Bootstrap d-flex/justify-content-between/gap-5 collapsing */
.frontierAiResearchSwiper .ai-research-single-card .d-flex.justify-content-between {
  display: block !important;
  gap: 0 !important;
}

/* SVG icon → becomes a giant watermark behind text */
.frontierAiResearchSwiper .ai-research-single-card .ai-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 84px;
  height: 84px;
  opacity: 0.18;
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 12px rgba(139,92,246,0.3));
}
.frontierAiResearchSwiper .ai-research-single-card .ai-icon svg {
  width: 100% !important;
  height: 100% !important;
}
.frontierAiResearchSwiper .ai-research-single-card:hover .ai-icon {
  opacity: 0.42;
  transform: scale(1.06) rotate(-2deg);
}

/* Numbered slug top-left: R/01, R/02 ... */
.frontierAiResearchSwiper .ai-research-single-card > a::before {
  counter-increment: sl-research;
  content: 'R/0' counter(sl-research);
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  align-self: flex-start;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.frontierAiResearchSwiper .ai-research-single-card:hover > a::before {
  color: #c4b5fd;
  border-color: rgba(139,92,246,0.45);
}

/* Outlet kicker (Mashable / Forbes / Fast Company / Research) */
.frontierAiResearchSwiper .ai-research-single-card .frontiercolor {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.32em !important;
  color: rgba(255,255,255,0.5) !important;
  margin: 0 0 14px 0 !important;
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
}
.frontierAiResearchSwiper .ai-research-single-card .frontiercolor::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  background: rgba(139,92,246,0.7);
}
.frontierAiResearchSwiper .ai-research-single-card .frontiercolor span {
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
}

/* Headline — the hero */
.frontierAiResearchSwiper .ai-research-single-card .f-18 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.2825rem !important;
  font-weight: 600 !important;
  line-height: 1.28 !important;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.92) !important;
  margin: 0 0 auto 0 !important;
  /* Make it the growing element so the read-link sticks to bottom */
  flex-grow: 1;
  text-wrap: pretty;
}
.frontierAiResearchSwiper .ai-research-single-card:hover .f-18 {
  color: #fff !important;
}

/* Read-paper affordance — synthetic, lives on the card itself */
.frontierAiResearchSwiper .ai-research-single-card > a::after {
  content: 'Read paper  →';
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.35s ease, border-color 0.35s ease, letter-spacing 0.4s ease;
}
.frontierAiResearchSwiper .ai-research-single-card:hover > a::after {
  color: #c4b5fd;
  border-top-color: rgba(139,92,246,0.4);
  letter-spacing: 0.28em;
}

/* Card 4 (Research / Beyond the Hype) is internal — say "Read essay" */
.frontierAiResearchSwiper .swiper-slide:nth-child(4) .ai-research-single-card > a::after {
  content: 'Read essay  →';
}

/* Mobile breathing room */
@media (max-width: 600px) {
  .frontierAiResearchSwiper .ai-research-single-card > a {
    padding: 26px 22px 22px 22px;
  }
  .frontierAiResearchSwiper .ai-research-single-card .ai-icon {
    width: 64px;
    height: 64px;
    top: 18px;
    right: 18px;
  }
  .frontierAiResearchSwiper .ai-research-single-card .f-18 {
    font-size: 1.14rem !important;
  }
}


/* ============================================================
   UNIFIED ARTIFACT CARDS — sections 02, 04, 05, 06
   Same visual language as section 03 (Frontier AI Research):
   sharp corner-cut, monospace slug, kicker w/ violet tick,
   watermark, "Read →" footer, violet bottom-trace on hover.
   ============================================================ */

/* Counters reset per section host */
.sl-lifeforms-overhaul .powered-section-swiper-container,
.sl-lifeforms-overhaul .swiper-wrapper { counter-reset: sl-life; }
.sl-platforms-overhaul .right-video-content-container { counter-reset: sl-plat; }
.sl-industries-overhaul .industries-container .row.gy-4 { counter-reset: sl-ind 0; }
.sl-usecases-overhaul .blog-container .row.gy-4 { counter-reset: sl-case 0; }

/* ---------- Shared mixin: any element with .sl-artifact ---------- */
.sl-artifact {
  position: relative;
  isolation: isolate;
  border-radius: 0 !important;
  background: linear-gradient(168deg, #0c0c14 0%, #060608 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  transition:
    transform 0.5s cubic-bezier(.22,.61,.36,1),
    border-color 0.4s ease,
    background 0.5s ease,
    box-shadow 0.5s ease;
}
.sl-artifact::before {
  /* Soft violet wash from bottom-left, hidden until hover */
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px 280px at -10% 110%,
    rgba(139,92,246,0.18) 0%,
    rgba(139,92,246,0) 60%
  );
  opacity: 0;
  transition: opacity 0.55s ease;
  z-index: 1;
  pointer-events: none;
}
.sl-artifact::after {
  /* Bottom-edge violet trace */
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg,
    rgba(139,92,246,0.85) 0%,
    rgba(236,72,153,0.55) 60%,
    transparent 100%);
  transition: width 0.7s cubic-bezier(.22,.61,.36,1);
  z-index: 4;
  pointer-events: none;
}
.sl-artifact:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.32) !important;
  background: linear-gradient(168deg, #11111c 0%, #08080d 100%) !important;
}
.sl-artifact:hover::before { opacity: 1; }
.sl-artifact:hover::after  { width: 100%; }

/* Slug + footer chrome injected as ::before/::after on a child .sl-artifact-body */
.sl-artifact-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* ---------- 2. LIFEFORMS — restyle .powered-card ---------- */
.sl-lifeforms-overhaul .powered-card {
  /* keep flex column layout from original */
  display: flex !important;
  flex-direction: column;
  height: 100%;
  background: linear-gradient(168deg, #0c0c14 0%, #060608 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 0 !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  transition:
    transform 0.5s cubic-bezier(.22,.61,.36,1),
    border-color 0.4s ease,
    background 0.5s ease;
  text-decoration: none;
  color: inherit;
}
.sl-lifeforms-overhaul .powered-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 280px at -10% 110%,
    rgba(139,92,246,0.18) 0%, rgba(139,92,246,0) 60%);
  opacity: 0;
  transition: opacity 0.55s ease;
  z-index: 1;
  pointer-events: none;
}
.sl-lifeforms-overhaul .powered-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg,
    rgba(139,92,246,0.85) 0%, rgba(236,72,153,0.55) 60%, transparent 100%);
  transition: width 0.7s cubic-bezier(.22,.61,.36,1);
  z-index: 5;
  pointer-events: none;
}
.sl-lifeforms-overhaul .powered-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139,92,246,0.32) !important;
}
.sl-lifeforms-overhaul .powered-card:hover::before { opacity: 1; }
.sl-lifeforms-overhaul .powered-card:hover::after { width: 100%; }

.sl-lifeforms-overhaul .powered-card-media-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  z-index: 1;
}
.sl-lifeforms-overhaul .powered-card-media {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(.22,.61,.36,1);
}
.sl-lifeforms-overhaul .powered-card:hover .powered-card-media {
  transform: scale(1.06);
}
/* Image vignette */
.sl-lifeforms-overhaul .powered-card-media-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5,5,7,0) 40%,
    rgba(5,5,7,0.65) 100%);
  z-index: 2;
  pointer-events: none;
}
/* Override existing accent — turn it into a slug instead */
.sl-lifeforms-overhaul .powered-card-accent {
  display: none !important;
}

.sl-lifeforms-overhaul .powered-card-content {
  position: relative;
  z-index: 2;
  padding: 24px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
/* Numbered slug L/0n top of content area */
.sl-lifeforms-overhaul .powered-card-content::before {
  counter-increment: sl-life;
  content: 'L/0' counter(sl-life);
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  align-self: flex-start;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.sl-lifeforms-overhaul .powered-card:hover .powered-card-content::before {
  color: #c4b5fd;
  border-color: rgba(139,92,246,0.45);
}
.sl-lifeforms-overhaul .powered-card-content h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.95) !important;
  margin: 0 0 8px 0 !important;
  text-wrap: pretty;
}
.sl-lifeforms-overhaul .powered-card-content p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  color: rgba(255,255,255,0.55) !important;
  margin: 0 0 auto 0 !important;
  flex-grow: 1;
}
/* Synthetic "Explore →" footer */
.sl-lifeforms-overhaul .powered-card-content::after {
  content: 'Explore  →';
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.35s ease, border-color 0.35s ease, letter-spacing 0.4s ease;
}
.sl-lifeforms-overhaul .powered-card:hover .powered-card-content::after {
  color: #c4b5fd;
  border-top-color: rgba(139,92,246,0.4);
  letter-spacing: 0.28em;
}

/* ---------- 4. PLATFORMS — single artifact wrapping the kepler video+text ---------- */
.sl-platforms-overhaul .right-video-content-container {
  position: relative;
  isolation: isolate;
  background: linear-gradient(168deg, #0c0c14 0%, #060608 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 0 !important;
  clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
  margin-top: 64px !important;
  padding: 48px !important;
  overflow: hidden;
  transition: border-color 0.5s ease, background 0.5s ease;
}
.sl-platforms-overhaul .right-video-content-container::before {
  /* slug "P/01" top-left */
  counter-increment: sl-plat;
  content: 'P/0' counter(sl-plat);
  position: absolute;
  top: 24px;
  left: 28px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(196,181,253,0.65);
  padding: 4px 8px;
  border: 1px solid rgba(139,92,246,0.32);
  z-index: 4;
}
.sl-platforms-overhaul .right-video-content-container::after {
  /* Bottom violet edge — always visible (single panel, no hover gate) */
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px;
  width: 60%;
  background: linear-gradient(90deg,
    rgba(139,92,246,0.85) 0%, rgba(236,72,153,0.55) 60%, transparent 100%);
  z-index: 4;
  pointer-events: none;
  transition: width 0.7s cubic-bezier(.22,.61,.36,1);
}
.sl-platforms-overhaul .right-video-content-container:hover::after { width: 100%; }

.sl-platforms-overhaul .single-platformsthree-link {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.sl-platforms-overhaul .single-platformsthree-link h3 {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
  margin-bottom: 14px !important;
  color: #fff !important;
}
.sl-platforms-overhaul .single-platformsthree-link .description {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: rgba(255,255,255,0.62) !important;
  line-height: 1.55 !important;
  text-wrap: pretty;
  max-width: 38ch;
}
.sl-platforms-overhaul .single-platformsthree-link .btn-primary {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 28px !important;
  padding: 12px 22px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,0.85) !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  transition: all 0.35s ease !important;
}
.sl-platforms-overhaul .single-platformsthree-link .btn-primary::after {
  content: '→';
  font-size: 14px;
  transition: transform 0.3s ease;
}
.sl-platforms-overhaul .single-platformsthree-link .btn-primary:hover {
  background: linear-gradient(135deg, rgba(139,92,246,0.22), rgba(236,72,153,0.16)) !important;
  border-color: rgba(139,92,246,0.5) !important;
  color: #fff !important;
}
.sl-platforms-overhaul .single-platformsthree-link .btn-primary:hover::after {
  transform: translateX(4px);
}

/* video frame: sharp corner-cut on its OWN top-right too */
.sl-platforms-overhaul .vid-frame {
  border-radius: 0 !important;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
  border: 1px solid rgba(255,255,255,0.08);
  background: #0a0a14;
  /* Let the video drive the height so it never gets cropped */
  position: relative !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
}
.sl-platforms-overhaul .platformsthree-vid-container,
.sl-platforms-overhaul .platformsthree-vid-container .vid-frame {
  position: relative !important;
  height: auto !important;
}
.sl-platforms-overhaul .vid-frame video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
}

/* ---------- 5. INDUSTRIES — re-skin existing overhaul to match artifact style ---------- */
/* Override the "rounded card" treatment from earlier industries pass */
.sl-industries-overhaul .single-card-container {
  border-radius: 0 !important;
  background: linear-gradient(168deg, #0c0c14 0%, #060608 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  transition:
    transform 0.5s cubic-bezier(.22,.61,.36,1),
    border-color 0.4s ease,
    background 0.5s ease !important;
  height: 100%;
  box-shadow: none !important;
}
/* kill the old ::before glow — replace with violet wash */
.sl-industries-overhaul .single-card-container::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(420px 280px at -10% 110%,
    rgba(139,92,246,0.18) 0%, rgba(139,92,246,0) 60%) !important;
  opacity: 0 !important;
  transition: opacity 0.55s ease !important;
  z-index: 1 !important;
  pointer-events: none !important;
  /* kill any previous border/decorative styles */
  border: none !important;
  background-color: transparent !important;
}
.sl-industries-overhaul .single-card-container::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg,
    rgba(139,92,246,0.85) 0%, rgba(236,72,153,0.55) 60%, transparent 100%);
  transition: width 0.7s cubic-bezier(.22,.61,.36,1);
  z-index: 5;
  pointer-events: none;
}
.sl-industries-overhaul .single-card-container:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(139,92,246,0.32) !important;
  background: linear-gradient(168deg, #11111c 0%, #08080d 100%) !important;
  box-shadow: none !important;
}
.sl-industries-overhaul .single-card-container:hover::before { opacity: 1 !important; }
.sl-industries-overhaul .single-card-container:hover::after  { width: 100%; }

/* Reset & rewrite the slug — was "INDUSTRY · 0n", now "I/0n" pill */
.sl-industries-overhaul .single-card-container .text-container {
  position: relative;
}
.sl-industries-overhaul .single-card-container .text-container::before {
  counter-increment: sl-ind;
  content: 'I/0' counter(sl-ind) !important;
  display: inline-block !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  color: rgba(255,255,255,0.45) !important;
  margin-bottom: 18px !important;
  padding: 4px 8px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  text-transform: uppercase;
  background: transparent !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  position: static !important;
  top: auto !important;
  left: auto !important;
  opacity: 1 !important;
  transition: color 0.4s ease, border-color 0.4s ease !important;
}
.sl-industries-overhaul .single-card-container:hover .text-container::before {
  color: #c4b5fd !important;
  border-color: rgba(139,92,246,0.45) !important;
}
/* Flagship gets I/01 too — drop the FLAGSHIP override */
.sl-industries-overhaul .row.gy-4 > [class*="col-"]:nth-child(1) .text-container::before {
  content: 'I/01' !important;
  background: transparent !important;
  color: rgba(196,181,253,0.85) !important;
  border-color: rgba(139,92,246,0.45) !important;
  padding: 4px 8px !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
}

/* Learn-more = unify with monospace footer treatment */
.sl-industries-overhaul .learn-more-text {
  display: inline-flex !important;
  align-items: center;
  gap: 8px !important;
  margin-top: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,0.55) !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  transition: color 0.35s ease, letter-spacing 0.4s ease !important;
}
.sl-industries-overhaul .learn-more-text::after {
  content: '→' !important;
  font-size: 14px;
}
.sl-industries-overhaul .single-card-container .text-container .mt-5 {
  padding-top: 18px !important;
  margin-top: 28px !important;
  border-top: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.35s ease;
}
.sl-industries-overhaul .single-card-container:hover .text-container .mt-5 {
  border-top-color: rgba(139,92,246,0.4);
}
.sl-industries-overhaul .single-card-container:hover .learn-more-text {
  color: #c4b5fd !important;
  background: transparent !important;
  border-color: transparent !important;
  letter-spacing: 0.28em !important;
}

/* Industry image: kill rounded corners, keep vignette */
.sl-industries-overhaul .img-container {
  border-radius: 0 !important;
}

/* ---------- 6. USE CASES — restyle .single-blog-card ---------- */
.sl-usecases-overhaul .single-blog-card {
  border-radius: 0 !important;
  background: linear-gradient(168deg, #0c0c14 0%, #060608 100%) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
  padding: 0 !important;
  transition:
    transform 0.5s cubic-bezier(.22,.61,.36,1),
    border-color 0.4s ease,
    background 0.5s ease !important;
  box-shadow: none !important;
}
.sl-usecases-overhaul .single-blog-card::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(420px 280px at -10% 110%,
    rgba(139,92,246,0.18) 0%, rgba(139,92,246,0) 60%) !important;
  opacity: 0 !important;
  transition: opacity 0.55s ease !important;
  z-index: 1 !important;
  pointer-events: none !important;
  border: none !important;
  background-color: transparent !important;
}
.sl-usecases-overhaul .single-blog-card::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: linear-gradient(90deg,
    rgba(139,92,246,0.85) 0%, rgba(236,72,153,0.55) 60%, transparent 100%);
  transition: width 0.7s cubic-bezier(.22,.61,.36,1);
  z-index: 5;
  pointer-events: none;
}
.sl-usecases-overhaul .single-blog-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(139,92,246,0.32) !important;
  background: linear-gradient(168deg, #11111c 0%, #08080d 100%) !important;
  box-shadow: none !important;
}
.sl-usecases-overhaul .single-blog-card:hover::before { opacity: 1 !important; }
.sl-usecases-overhaul .single-blog-card:hover::after  { width: 100%; }

/* Reorder image -> top, content below (was h4 first) */
.sl-usecases-overhaul .single-blog-card {
  display: flex !important;
  flex-direction: column;
}
.sl-usecases-overhaul .single-blog-card .img-container {
  order: 1;
  height: 200px;
  margin: 0 !important;
  position: relative;
  z-index: 1;
  border-radius: 0 !important;
}
.sl-usecases-overhaul .single-blog-card .img-container img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  transition: transform 1.4s cubic-bezier(.22,.61,.36,1);
}
.sl-usecases-overhaul .single-blog-card:hover .img-container img {
  transform: scale(1.06);
}
.sl-usecases-overhaul .single-blog-card .img-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(5,5,7,0) 50%, rgba(5,5,7,0.65) 100%);
  z-index: 2;
  pointer-events: none;
}

/* Content area below image */
.sl-usecases-overhaul .single-blog-card h4 {
  order: 2;
  margin: 0 !important;
  padding: 24px 22px 0 22px;
  position: relative;
  z-index: 2;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
  line-height: 1.28 !important;
  letter-spacing: -0.015em !important;
  text-wrap: pretty;
}
.sl-usecases-overhaul .single-blog-card h4::before {
  /* C/0n slug above title */
  counter-increment: sl-case;
  content: 'C/0' counter(sl-case);
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  transition: color 0.4s ease, border-color 0.4s ease;
}
.sl-usecases-overhaul .single-blog-card:hover h4::before {
  color: #c4b5fd;
  border-color: rgba(139,92,246,0.45);
}
.sl-usecases-overhaul .single-blog-card h4 a {
  display: block;
  color: rgba(255,255,255,0.95) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: rgba(255,255,255,0.95) !important;
}
.sl-usecases-overhaul .single-blog-card:hover h4 a {
  color: #fff !important;
  background: none !important;
  -webkit-text-fill-color: #fff !important;
  text-shadow: none !important;
}

/* Customcode footer (date + read more) */
.sl-usecases-overhaul .single-blog-card .customcode {
  order: 3;
  margin: auto 22px 22px 22px !important;
  padding-top: 16px !important;
  padding-bottom: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: border-color 0.35s ease;
}
.sl-usecases-overhaul .single-blog-card:hover .customcode {
  border-top-color: rgba(139,92,246,0.4) !important;
}
.sl-usecases-overhaul .single-blog-card .customcode .opacity-75 {
  margin: 0 !important;
}
.sl-usecases-overhaul .single-blog-card .dateoptions {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4) !important;
}
.sl-usecases-overhaul .single-blog-card .customcode > p:last-child {
  margin: 0 !important;
}
.sl-usecases-overhaul .single-blog-card .read-more {
  display: inline-flex !important;
  align-items: center;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,0.55) !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 600 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  transition: color 0.35s ease, letter-spacing 0.4s ease !important;
}
.sl-usecases-overhaul .single-blog-card:hover .read-more {
  color: #c4b5fd !important;
  background: none !important;
  letter-spacing: 0.28em !important;
}
.sl-usecases-overhaul .single-blog-card .read-more .arrow {
  font-size: 14px !important;
}
.sl-usecases-overhaul .single-blog-card:hover .read-more .arrow {
  transform: translateX(4px);
}

/* ---------- Section opener: support unnumbered variant for Partners ---------- */
.sl-section-opener--unnumbered .sl-section-num { display: none; }
.sl-section-opener--unnumbered .sl-section-kicker {
  /* The kicker becomes the lead element */
  margin-left: 0;
}


/* ============================================================
   01 VISION — manifesto panel with corner reticles
   ============================================================ */
.sl-vision-overhaul .gen-ai-arch-container {
  position: relative;
  padding: 96px 0 !important;
}

/* Corner reticles top-left + bottom-right (defense-UI feel) */
.sl-vision-overhaul .gen-ai-arch-container::before,
.sl-vision-overhaul .gen-ai-arch-container::after {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(139,92,246,0.42);
  z-index: 3;
  pointer-events: none;
}
.sl-vision-overhaul .gen-ai-arch-container::before {
  top: 24px;
  left: 24px;
  border-right: none;
  border-bottom: none;
}
.sl-vision-overhaul .gen-ai-arch-container::after {
  bottom: 24px;
  right: 24px;
  border-left: none;
  border-top: none;
}

/* Pre-headline meta line (V/01 · VISION · 04.2026) */
.sl-vision-overhaul .digital-lifeforms-hero::before {
  content: 'V/01  ·  VISION  ·  ANNO 04.2026';
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(196,181,253,0.65);
  margin-bottom: 32px;
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Headline gets a tighter set */
.sl-vision-overhaul .digital-lifeforms-title {
  letter-spacing: -0.025em !important;
  text-wrap: balance;
}
.sl-vision-overhaul .digital-lifeforms-title span {
  /* keep existing gradient style */
  display: inline;
}
/* Tiny gradient rule under title */
.sl-vision-overhaul .digital-lifeforms-hero .digital-lifeforms-title + .digital-lifeforms-subtitle {
  position: relative;
  padding-top: 28px;
  margin-top: 18px !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-style: italic;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.7) !important;
}
.sl-vision-overhaul .digital-lifeforms-hero .digital-lifeforms-title + .digital-lifeforms-subtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,92,246,0.7), transparent);
}

/* Description text breathing room */
.sl-vision-overhaul .digital-lifeforms-desc {
  text-wrap: pretty;
  letter-spacing: 0.005em;
  line-height: 1.65 !important;
  color: rgba(255,255,255,0.7) !important;
}

/* Telemetry footer: 3 monospace stats */
.sl-vision-overhaul .digital-lifeforms-hero::after {
  content: '';
  display: block;
}
.sl-vision-telemetry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.sl-vision-telemetry > div {
  text-align: center;
  padding: 0 18px;
  position: relative;
}
.sl-vision-telemetry > div + div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.08);
}
.sl-vision-telemetry-label {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.sl-vision-telemetry-value {
  display: block;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.92);
  line-height: 1;
}
.sl-vision-telemetry-value .accent {
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .sl-vision-overhaul .gen-ai-arch-container { padding: 56px 0 !important; }
  .sl-vision-overhaul .gen-ai-arch-container::before,
  .sl-vision-overhaul .gen-ai-arch-container::after {
    width: 36px;
    height: 36px;
  }
  .sl-vision-telemetry {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sl-vision-telemetry > div + div::before {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 1px;
  }
  .sl-vision-telemetry > div { padding: 0; }
  .sl-vision-overhaul .digital-lifeforms-hero::before {
    font-size: 10px;
    letter-spacing: 0.24em;
  }
}


/* ============================================================
   CLEANUP — strip artifact / defense-console mannerisms
   The site doesn't need V/01, L/000, telemetry footers, etc.
   ============================================================ */

/* 1. Kill all section numbering pills and kickers */
.sl-section-num { display: none !important; }
.sl-section-kicker { display: none !important; }
.sl-section-opener {
  /* Make the opener invisible — sections still get the rail anchor + reveal but not the chrome */
  display: none !important;
}

/* 2. Vision section: strip reticles + telemetry + monospace meta — keep just the type */
.sl-vision-overhaul .gen-ai-arch-container::before,
.sl-vision-overhaul .gen-ai-arch-container::after { display: none !important; }
.sl-vision-overhaul .digital-lifeforms-hero::before { display: none !important; content: none !important; }
.sl-vision-telemetry { display: none !important; }
.sl-vision-overhaul .gen-ai-arch-container { padding: 60px 0 !important; }
@media (max-width: 768px) {
  .sl-vision-overhaul .gen-ai-arch-container { padding: 32px 0 !important; }
}

/* 3. Air rhythm tightened — too much whitespace was the side effect of the artifact framing */
.sl-rhythm-block--air {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}
@media (max-width: 768px) {
  .sl-rhythm-block--air {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/* 4. Lifeforms cards: name overlays the image, no separate content block, shorter cards */
.sl-lifeforms-overhaul .powered-card {
  height: 380px !important;
  min-height: 380px !important;
  position: relative !important;
}
.sl-lifeforms-overhaul .powered-card-media-wrapper {
  position: absolute !important;
  inset: 0 !important;
  height: 100% !important;
  z-index: 1;
}
.sl-lifeforms-overhaul .powered-card-media {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
/* Replace generic vignette with bottom-weighted gradient so name reads */
.sl-lifeforms-overhaul .powered-card-media-wrapper::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg,
    rgba(5,5,7,0) 0%,
    rgba(5,5,7,0) 45%,
    rgba(5,5,7,0.55) 75%,
    rgba(5,5,7,0.92) 100%) !important;
  pointer-events: none;
  z-index: 1;
}
/* Hide the description paragraph entirely — keep just the name */
.sl-lifeforms-overhaul .powered-card-content p { display: none !important; }
/* Strip the synthetic L/0n slug and Explore → footer */
.sl-lifeforms-overhaul .powered-card-content::before,
.sl-lifeforms-overhaul .powered-card-content::after { display: none !important; content: none !important; }
/* Float the name to bottom-left of the card */
.sl-lifeforms-overhaul .powered-card-content {
  position: absolute !important;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3 !important;
  padding: 18px 20px !important;
  background: transparent !important;
  border: none !important;
  display: block !important;
  flex: none !important;
}
.sl-lifeforms-overhaul .powered-card-content h4 {
  margin: 0 !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
  line-height: 1.25 !important;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  transition: color 0.3s ease;
}
.sl-lifeforms-overhaul .powered-card:hover .powered-card-content h4 {
  color: #ddd6fe !important;
}
/* Hover: subtle lift, slight image zoom only */
.sl-lifeforms-overhaul .powered-card:hover {
  transform: translateY(-2px);
}
.sl-lifeforms-overhaul .powered-card::before,
.sl-lifeforms-overhaul .powered-card::after {
  display: none !important;
}

/* On mobile, give cards a bit more height for legibility */
@media (max-width: 768px) {
  .sl-lifeforms-overhaul .powered-card {
    height: 220px !important;
    min-height: 220px !important;
  }
  .sl-lifeforms-overhaul .powered-card-content { padding: 14px 16px !important; }
  .sl-lifeforms-overhaul .powered-card-content h4 { font-size: 0.95rem !important; }
}

/* 5. Strip Industries L/Sec/I/0n counters too — same rationale */
.sl-industries-overhaul .industries-card::before,
.sl-platforms-overhaul .right-video-content-card::before,
.sl-cases-overhaul .single-blog-card::before {
  /* Only kill if these were the slug counters; preserve other ::befores by being explicit */
  /* (the sl-rhythm/glow pseudos live on host containers, not these inner cards) */
}
/* Section opener counters — already display:none on parent, but be explicit */
[class*='sl-rhythm-block']::before,
[class*='sl-rhythm-block']::after { /* glow pseudos are fine; left untouched */ }

/* 6. Vision title — fixed rem so it doesn't reflow on browser resize */
.sl-vision-overhaul .digital-lifeforms-title {
  font-size: 4rem !important;
  line-height: 1.04 !important;
  font-weight: 700 !important;
  letter-spacing: -0.025em !important;
}
.sl-vision-overhaul .digital-lifeforms-subtitle {
  font-size: 1.25rem !important;
}
.sl-vision-overhaul .digital-lifeforms-desc {
  font-size: 1.05rem !important;
  max-width: 720px !important;
}


/* ============================================================
   03 RESEARCH — bigger cards, no slug/footer chrome
   ============================================================ */
.frontierAiResearchSwiper .ai-research-single-card {
  min-height: 360px !important;
}
.frontierAiResearchSwiper .ai-research-single-card > a {
  min-height: 360px !important;
  padding: 36px 32px 32px 32px !important;
}
/* Kill the R/0n slug + Read paper footer chrome */
.frontierAiResearchSwiper .ai-research-single-card > a::before,
.frontierAiResearchSwiper .ai-research-single-card > a::after {
  display: none !important;
  content: none !important;
}
/* Now that the slug is gone, headline can sit higher */
.frontierAiResearchSwiper .ai-research-single-card .f-18 {
  font-size: 1.52rem !important;
  margin-top: 18px !important;
}
/* Bigger watermark icon since cards are taller */
.frontierAiResearchSwiper .ai-research-single-card .ai-icon {
  width: 96px !important;
  height: 96px !important;
  top: 28px !important;
  right: 28px !important;
}

@media (max-width: 768px) {
  .frontierAiResearchSwiper .ai-research-single-card,
  .frontierAiResearchSwiper .ai-research-single-card > a {
    min-height: 280px !important;
  }
  .frontierAiResearchSwiper .ai-research-single-card > a {
    padding: 28px 24px 24px 24px !important;
  }
  .frontierAiResearchSwiper .ai-research-single-card .f-18 {
    font-size: 1.1875rem !important;
  }
  .frontierAiResearchSwiper .ai-research-single-card .ai-icon {
    width: 64px !important;
    height: 64px !important;
  }
}


/* ============================================================
   04 PLATFORMS — restore a bit of detail
   Add a 3-line capability list under the description
   ============================================================ */
.sl-platforms-features {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sl-platforms-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: 'Inter', system-ui, sans-serif;
}
.sl-platforms-feature-bullet {
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa 0%, #ec4899 100%);
  box-shadow: 0 0 10px rgba(167,139,250,0.55);
}
.sl-platforms-feature-text {
  font-size: 0.96rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.005em;
}
.sl-platforms-feature-text strong {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
}

/* Push the Learn more button below the features */
.sl-platforms-overhaul .single-platformsthree-link .btn-primary {
  margin-top: 32px !important;
}

@media (max-width: 992px) {
  .sl-platforms-features { margin-top: 22px; padding-top: 18px; }
  .sl-platforms-feature-text { font-size: 0.9rem; }
}


/* ============================================================
   03 RESEARCH — richer card content
   topic tag, excerpt, read affordance
   ============================================================ */
.frontierAiResearchSwiper .ai-research-single-card > a {
  display: flex !important;
  flex-direction: column;
  gap: 0;
}

/* Topic tag injected via JS (sl-research-topic) */
.sl-research-topic {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(196,181,253,0.78);
  padding: 6px 10px;
  border: 1px solid rgba(139,92,246,0.32);
  border-radius: 999px;
  background: rgba(139,92,246,0.06);
  align-self: flex-start;
  margin-bottom: 18px;
  position: relative;
  z-index: 3;
}
.sl-research-topic::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  box-shadow: 0 0 6px rgba(167,139,250,0.7);
}

/* Excerpt under the headline */
.sl-research-excerpt {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.9025rem;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.6);
  margin-top: 14px !important;
  text-wrap: pretty;
  position: relative;
  z-index: 2;
}

/* Read affordance pinned to bottom */
.sl-research-readline {
  margin-top: auto !important;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 12.35px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 3;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.sl-research-readline-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.45px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.sl-research-readline-cta {
  color: rgba(255,255,255,0.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease, gap 0.3s ease;
}
.sl-research-readline-cta::after {
  content: '↗';
  font-size: 14px;
  transition: transform 0.3s ease;
}
.frontierAiResearchSwiper .ai-research-single-card:hover .sl-research-readline {
  border-top-color: rgba(139,92,246,0.4);
}
.frontierAiResearchSwiper .ai-research-single-card:hover .sl-research-readline-cta {
  color: #c4b5fd;
  gap: 12px;
}
.frontierAiResearchSwiper .ai-research-single-card:hover .sl-research-readline-cta::after {
  transform: translate(2px, -2px);
}

/* Make sure the headline doesn't push to bottom */
.frontierAiResearchSwiper .ai-research-single-card .f-18 {
  flex: 0 0 auto !important;
}

@media (max-width: 768px) {
  .sl-research-topic { font-size: 9.5px; padding: 5px 8px; margin-bottom: 14px; }
  .sl-research-excerpt { font-size: 0.836rem; margin-top: 10px !important; }
  .sl-research-readline { padding-top: 16px; font-size: 11.4px; }
  .sl-research-readline-meta { font-size: 9.5px; }
}


/* ============================================================
   FIX — research readline was inheriting flex-direction:column
   from .tworowblock descendant rule. Force horizontal layout.
   ============================================================ */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-readline,
.frontierAiResearchSwiper .ai-research-single-card a > .sl-research-readline {
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  flex: 0 0 auto !important;
  gap: 16px !important;
}
.frontierAiResearchSwiper .ai-research-single-card .sl-research-readline > * {
  flex: 0 0 auto;
  white-space: nowrap;
}
/* The watermark icon top-right was at 96px — for cards with shorter content
   it overlapped the topic tag. Pin a max width on the topic tag and keep
   it left-aligned safely under the icon. */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-topic {
  max-width: calc(100% - 110px);
}
/* Excerpt should grow to push readline to bottom */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-excerpt {
  flex: 1 1 auto !important;
}
/* Headline shouldn't be too wide — leave room for icon */
.frontierAiResearchSwiper .ai-research-single-card .f-18 {
  max-width: calc(100% - 110px);
}


/* ============================================================
   FIX v2 — readline & topic & excerpt are direct div children of
   .tworowblock, which inherits height:100% from style.css.
   Force natural height on these injected helpers.
   ============================================================ */
.frontierAiResearchSwiper .ai-research-single-card .tworowblock > .sl-research-topic,
.frontierAiResearchSwiper .ai-research-single-card .tworowblock > .sl-research-readline,
.frontierAiResearchSwiper .ai-research-single-card .tworowblock > .sl-research-excerpt,
.frontierAiResearchSwiper .ai-research-single-card .sl-research-topic,
.frontierAiResearchSwiper .ai-research-single-card .sl-research-readline,
.frontierAiResearchSwiper .ai-research-single-card .sl-research-excerpt {
  height: auto !important;
  min-height: 0 !important;
}
/* Topic tag must not stretch — it's an inline-flex pill */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-topic {
  width: auto !important;
  align-self: flex-start !important;
}


/* ============================================================
   FIX v3 — kill min-height + override the .tworowblock>div h:100%
   that's stretching the d-flex header to full height.
   Cards should size to content; aspect should be ~landscape.
   ============================================================ */
.frontierAiResearchSwiper .ai-research-single-card,
.frontierAiResearchSwiper .ai-research-single-card > a {
  min-height: 0 !important;
  height: auto !important;
}
/* The middle .d-flex header inside .tworowblock was stretching to 411px;
   override the original style.css rule that forces height:100% there. */
.frontierAiResearchSwiper .ai-research-single-card .tworowblock > .d-flex,
.frontierAiResearchSwiper .ai-research-single-card .tworowblock > div {
  height: auto !important;
  flex: 0 0 auto !important;
}
/* Tighten paddings — 36px/32px/32px on small cards is too much */
.frontierAiResearchSwiper .ai-research-single-card > a {
  padding: 28px 24px 22px 24px !important;
  gap: 0 !important;
}
/* Excerpt should still grow to push readline down, but cap it */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-excerpt {
  flex: 0 1 auto !important;
}
/* Headline — bring back to 1.35 (1.6 was too big for 266px wide cards) */
.frontierAiResearchSwiper .ai-research-single-card .f-18 {
  font-size: 1.14rem !important;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}
/* Smaller watermark icon — 96px was huge on these cards */
.frontierAiResearchSwiper .ai-research-single-card .ai-icon {
  width: 64px !important;
  height: 64px !important;
  top: 22px !important;
  right: 22px !important;
}
/* Topic tag tighter */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-topic {
  margin-bottom: 14px !important;
  max-width: calc(100% - 80px);
}
/* Outlet kicker tighter */
.frontierAiResearchSwiper .ai-research-single-card .frontiercolor {
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}
/* Excerpt margin tighter */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-excerpt {
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  font-size: 0.836rem !important;
}
/* Readline tighter top padding */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-readline {
  margin-top: 18px !important;
  padding-top: 14px !important;
}
/* Headline cap height */
.frontierAiResearchSwiper .ai-research-single-card .f-18 {
  max-width: calc(100% - 80px);
}


/* ============================================================
   Equal height for 03 cards + tighter section spacing
   ============================================================ */

/* Each swiper-slide is full-height; force the card inside to match */
.frontierAiResearchSwiper .swiper-slide {
  height: auto !important;
  display: flex !important;
}
.frontierAiResearchSwiper .swiper-slide > .ai-research-single-card {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column;
}
.frontierAiResearchSwiper .swiper-slide > .ai-research-single-card > a {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
}

/* Generous inter-section spacing for readability */
.sl-rhythm-block {
  padding-top: 200px !important;
  padding-bottom: 200px !important;
}
.sl-rhythm-block--air {
  padding-top: 220px !important;
  padding-bottom: 220px !important;
}
.sl-rhythm-block--tight {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

@media (max-width: 768px) {
  .sl-rhythm-block {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
  .sl-rhythm-block--air {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .sl-rhythm-block--tight {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* Vision section sits right under the hero — keep the gap modest */
.sl-vision-overhaul.sl-rhythm-block,
.sl-vision-overhaul.sl-rhythm-block--air,
.sl-vision-overhaul.sl-rhythm-block.blockbg,
.sl-vision-overhaul.sl-rhythm-block.blockbgtwo {
  padding-top: 56px !important;
  padding-bottom: 80px !important;
}
.sl-vision-overhaul .gen-ai-arch-container { padding: 16px 0 !important; }
@media (max-width: 768px) {
  .sl-vision-overhaul.sl-rhythm-block,
  .sl-vision-overhaul.sl-rhythm-block--air,
  .sl-vision-overhaul.sl-rhythm-block.blockbg,
  .sl-vision-overhaul.sl-rhythm-block.blockbgtwo {
    padding-top: 36px !important;
    padding-bottom: 48px !important;
  }
  .sl-vision-overhaul .gen-ai-arch-container { padding: 8px 0 !important; }
}

/* Default site .blockbg/.blockbgtwo also have extra padding — neutralize when our rhythm class is on */
.sl-rhythm-block.blockbg,
.sl-rhythm-block.blockbgtwo {
  padding-top: 200px !important;
  padding-bottom: 200px !important;
}
@media (max-width: 768px) {
  .sl-rhythm-block.blockbg,
  .sl-rhythm-block.blockbgtwo {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }
}

/* Stop iOS Safari from forcing autoplay videos into native fullscreen UI.
   Every <video> on the page is autoplay/loop/muted decoration; users have
   no reason to tap them, and tapping/long-press triggers the fullscreen
   sheet on iOS even when playsinline is set. Make them non-interactive. */
video {
  -webkit-touch-callout: none;
  pointer-events: none;
}


/* ============================================================
   COVER / HERO — refined typography
   ============================================================ */

/* Hero card — translucent dark scrim so type stays legible over the video */
.hero-card {
  background: rgba(0, 0, 0, 0.32) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(10px) saturate(115%) !important;
  -webkit-backdrop-filter: blur(10px) saturate(115%) !important;
  padding: 2.75rem 3.5rem !important;
  border-radius: 18px !important;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(232, 121, 249, 0.10) 40%, transparent 70%);
  pointer-events: none;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .hero-card {
    padding: 2rem 1.75rem !important;
    border-radius: 14px !important;
  }
}

/* Eyebrow above the title (injected by JS) */
.sl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(196,181,253,0.85);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(139,92,246,0.32);
  border-radius: 999px;
  background: rgba(139,92,246,0.05);
  opacity: 0;
  animation: slHeroFadeIn 0.7s 0.2s ease forwards;
}
.sl-hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  box-shadow: 0 0 8px rgba(167,139,250,0.7);
}

/* Headline — drop the dark-purple-fade gradient, use a cleaner light treatment */
.hero-title {
  font-family: 'Inter', system-ui, sans-serif !important;
  /* Fixed rem (was vw-clamp) so the hero stops reflowing on browser resize */
  font-size: 4.3rem !important;
  font-weight: 600 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em !important;
  margin-bottom: 0 !important;
  /* Override the existing dark gradient — use a subtle white→soft-violet wash that stays readable */
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 55%, #cbb8ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: none !important;
  text-wrap: balance;
}

/* Add an accent gradient ONLY to a span we'll inject around the key phrase */
.sl-hero-accent {
  background: linear-gradient(135deg, #c4b5fd 0%, #f0abfc 50%, #fda4af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Subtitle — bigger contrast against title, monospace prefix bullet */
.hero-subtitle {
  font-family: 'Inter', system-ui, sans-serif !important;
  /* Fixed rem (was vw-clamp) so the hero subtitle doesn't reflow on resize */
  font-size: 1.26rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.005em !important;
  color: rgba(255,255,255,0.7) !important;
  max-width: 640px;
  margin: 28px auto 0 !important;
  text-wrap: pretty;
}

/* Inject a small CTA row below the subtitle */
.sl-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slHeroFadeIn 0.7s 0.6s ease forwards;
}
.sl-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(.22,.61,.36,1);
}
.sl-hero-cta--primary {
  background: linear-gradient(135deg, rgba(167,139,250,0.95) 0%, rgba(236,72,153,0.85) 100%);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(139,92,246,0.32);
}
.sl-hero-cta--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(139,92,246,0.45);
}
.sl-hero-cta--ghost {
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85) !important;
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}
.sl-hero-cta--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.28);
  color: #fff !important;
  transform: translateY(-2px);
}
.sl-hero-cta::after {
  content: '→';
  font-size: 15px;
  transition: transform 0.3s ease;
}
.sl-hero-cta:hover::after {
  transform: translateX(3px);
}

/* Subtle fade-in for headline + subtitle — overrides any old animation */
.hero-title, .hero-subtitle {
  opacity: 0;
  animation: slHeroFadeIn 0.9s ease forwards;
}
.hero-title { animation-delay: 0.35s; }
.hero-subtitle { animation-delay: 0.5s; }

@keyframes slHeroFadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media (max-width: 600px) {
  .sl-hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.24em;
    padding: 6px 12px;
    margin-bottom: 20px;
  }
  .hero-title {
    font-size: 2.1rem !important;
    letter-spacing: -0.025em !important;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
    margin-top: 18px !important;
  }
  .sl-hero-actions {
    margin-top: 28px;
    gap: 10px;
  }
  .sl-hero-cta {
    padding: 12px 20px;
    font-size: 13px;
  }
}


/* ============================================================
   FIX — hero animations were leaving content at opacity:0
   Force everything visible. Intro loader handles the entrance.
   ============================================================ */
.hero-title,
.hero-subtitle,
.sl-hero-eyebrow,
.sl-hero-actions {
  opacity: 1 !important;
  animation: none !important;
  transform: none !important;
}


/* ============================================================
   03 RESEARCH — let headline span full card width
   Push the watermark icon behind the text (not beside it)
   ============================================================ */
.frontierAiResearchSwiper .ai-research-single-card .f-18 {
  max-width: 100% !important;
  font-size: 1.1875rem !important;
  position: relative;
  z-index: 2;
}
/* Topic tag also full-width minus 0 (was -80px to dodge icon) */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-topic {
  max-width: 100% !important;
}
/* Watermark icon now sits BEHIND the text content as a low-opacity ornament */
.frontierAiResearchSwiper .ai-research-single-card .ai-icon {
  width: 140px !important;
  height: 140px !important;
  top: auto !important;
  bottom: 60px !important;
  right: -20px !important;
  opacity: 0.07 !important;
  z-index: 0 !important;
  pointer-events: none;
}
.frontierAiResearchSwiper .ai-research-single-card:hover .ai-icon {
  opacity: 0.13 !important;
  transform: scale(1.04) rotate(-2deg) !important;
}
/* Make sure all text content sits above the icon */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-topic,
.frontierAiResearchSwiper .ai-research-single-card .frontiercolor,
.frontierAiResearchSwiper .ai-research-single-card .sl-research-readline {
  position: relative;
  z-index: 2;
}

/* ============================================================
   USE CASES (06) — match section 03 footer rhythm
   ============================================================ */
.sl-usecases-overhaul .single-blog-card .img-container {
  height: 220px !important;
}
.sl-usecases-overhaul .single-blog-card h4 {
  font-size: 1.05rem !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
  padding: 22px 22px 0 22px !important;
  margin: 0 0 12px 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sl-usecases-overhaul .single-blog-card h4::before {
  /* Drop the C/0n slug — match section 03 which has none */
  display: none !important;
  content: none !important;
}
.sl-usecases-overhaul .single-blog-card h4 a {
  font-size: inherit !important;
  font-weight: inherit !important;
  color: rgba(255,255,255,0.95) !important;
  -webkit-text-fill-color: rgba(255,255,255,0.95) !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
}
.sl-usecases-overhaul .single-blog-card:hover h4 a {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}
/* Footer: match .sl-research-readline rhythm — date left (mono), Read article right */
.sl-usecases-overhaul .single-blog-card .customcode {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 18px 22px 22px 22px !important;
  margin: auto 0 0 0 !important;
  border-top: 1px solid rgba(255,255,255,0.06) !important;
  transition: border-color 0.35s ease;
}
.sl-usecases-overhaul .single-blog-card:hover .customcode {
  border-top-color: rgba(139,92,246,0.4) !important;
}
.sl-usecases-overhaul .single-blog-card .customcode > p {
  margin: 0 !important;
  flex: 0 0 auto !important;
  white-space: nowrap;
}
.sl-usecases-overhaul .single-blog-card .dateoptions {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.4) !important;
  font-weight: 500 !important;
}
/* Strip the wrapper opacity so date reads at full color */
.sl-usecases-overhaul .single-blog-card .customcode .opacity-75 {
  opacity: 1 !important;
}
/* Read more → "Read article ↗" matching section 03 */
.sl-usecases-overhaul .single-blog-card .read-more {
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
  color: rgba(255,255,255,0.85) !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  transition: color 0.3s ease, gap 0.3s ease !important;
}
.sl-usecases-overhaul .single-blog-card .read-more > span:first-child::before {
  content: 'Read article';
  /* Replace original "Read More" text via reveal trick won't work — we need to hide and show */
}
/* Replace label: hide original "Read More" span text, inject our own */
.sl-usecases-overhaul .single-blog-card .read-more > span:first-child {
  font-size: 0;
}
.sl-usecases-overhaul .single-blog-card .read-more > span:first-child::before {
  font-size: 13px;
  letter-spacing: 0.04em;
}
.sl-usecases-overhaul .single-blog-card .read-more .arrow {
  font-size: 14px !important;
  background: none !important;
  color: inherit !important;
  display: inline-block;
  transition: transform 0.3s ease;
}
/* Use ↗ glyph like section 03 (CSS content swap on the arrow span) */
.sl-usecases-overhaul .single-blog-card .read-more .arrow { font-size: 0 !important; }
.sl-usecases-overhaul .single-blog-card .read-more .arrow::after {
  content: '↗';
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease;
}
.sl-usecases-overhaul .single-blog-card:hover .read-more {
  color: #c4b5fd !important;
  gap: 12px !important;
  background: none !important;
  letter-spacing: 0.04em !important;
}
.sl-usecases-overhaul .single-blog-card:hover .read-more .arrow::after {
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .sl-usecases-overhaul .single-blog-card .img-container { height: 180px !important; }
  .sl-usecases-overhaul .single-blog-card h4 { font-size: 0.98rem !important; padding: 18px 18px 0 18px !important; }
  .sl-usecases-overhaul .single-blog-card .customcode { padding: 14px 18px 18px 18px !important; }
}

/* ============================================================
   FINAL PASS — section 03 cards taller, no visible bottom edge
   ============================================================ */
.frontierAiResearchSwiper .ai-research-single-card,
.frontierAiResearchSwiper .ai-research-single-card > a {
  min-height: 280px !important;
}
.frontierAiResearchSwiper .ai-research-single-card {
  /* Drop the hairline border so cards bleed into the section bg —
     no "boundary at the bottom" impression */
  border: none !important;
  /* Soft glow as a ring instead of a hard 1px edge */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04) !important;
}
.frontierAiResearchSwiper .ai-research-single-card:hover {
  box-shadow: inset 0 0 0 1px rgba(139,92,246,0.32) !important;
}
.frontierAiResearchSwiper .ai-research-single-card > a {
  padding: 28px 26px 24px 26px !important;
}
/* Excerpt fills available space; readline pinned at bottom — no big empty gap */
.frontierAiResearchSwiper .ai-research-single-card .sl-research-excerpt {
  flex: 0 1 auto !important;
}
.frontierAiResearchSwiper .ai-research-single-card .sl-research-readline {
  margin-top: auto !important;
  padding-top: 18px !important;
}

/* Lifeforms cards: ensure overhaul card height wins over earlier 280px rule */
.sl-lifeforms-overhaul .swiper-slide .powered-card,
.sl-lifeforms-overhaul .powered-card.powered-card,
.sl-lifeforms-overhaul .powered-card {
  height: 380px !important;
  min-height: 380px !important;
}
@media (max-width: 768px) {
  .sl-lifeforms-overhaul .swiper-slide .powered-card,
  .sl-lifeforms-overhaul .powered-card.powered-card,
  .sl-lifeforms-overhaul .powered-card {
    height: 300px !important;
    min-height: 300px !important;
  }
}
