.sl-landing {
  --sl-ink: #101828;
  --sl-muted: #5b6678;
  --sl-line: rgba(16, 24, 40, 0.12);
  --sl-red: #dc143c;
  --sl-green: #0f766e;
  --sl-blue: #2563eb;
  --sl-gold: #f59e0b;
  --sl-surface: #ffffff;
  overflow: hidden;
  background: #f6f8fb;
  color: var(--sl-ink);
}

.sl-landing *,
.sl-landing *::before,
.sl-landing *::after {
  box-sizing: border-box;
}

.sl-landing-shell {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.sl-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 74px));
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 11, 24, 0.96), rgba(12, 23, 44, 0.9)),
    url("../images/sections/findme.avif") center / cover no-repeat;
  color: #fff;
}

.sl-hero-canvas,
.sl-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.sl-hero-canvas {
  display: none;
}

.sl-hero-grid {
  background:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 100%);
}

.sl-hero-shell {
  width: calc(100% - 60px);
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  gap: 34px;
  align-items: center;
  padding: 46px 0 74px;
}

.sl-hero-copy {
  max-width: 680px;
}

.sl-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 850;
  backdrop-filter: blur(18px);
}

.sl-hero h1 {
  margin: 18px 0;
  max-width: 660px;
  color: #fff;
  font-size: clamp(44px, 5.8vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
}

.sl-hero p {
  max-width: 590px;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.58;
}

.sl-hero-actions,
.sl-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.sl-hero-actions {
  flex-wrap: nowrap;
  align-items: center;
}

.sl-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.sl-hero-actions .sl-btn {
  width: 240px;
  flex: 0 0 240px;
}

.sl-btn:hover,
.sl-btn:focus-visible {
  transform: translateY(-3px);
}

.sl-btn-primary {
  background: #fff;
  color: #111827;
  box-shadow: 0 20px 44px rgba(0,0,0,0.26);
}

.sl-btn-secondary {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.1);
  color: #fff;
  backdrop-filter: blur(18px);
}

.sl-hero-trust {
  align-items: center;
  gap: 14px;
}

.sl-trust-faces {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.sl-trust-faces img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.92);
  object-fit: cover;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.26);
}

.sl-trust-faces img + img {
  margin-left: -13px;
}

.sl-trust-copy {
  display: grid;
  gap: 2px;
  color: rgba(255,255,255,0.86);
  font-size: 14px;
  line-height: 1.2;
}

.sl-trust-copy strong {
  color: #fff;
  font-weight: 950;
}

.sl-trust-stars {
  display: flex;
  gap: 3px;
  color: #fbbf24;
  font-size: 16px;
}

.sl-device-stage {
  position: relative;
  min-height: 438px;
  perspective: 1200px;
}

.sl-laptop {
  position: absolute;
  right: 0;
  top: 18px;
  width: min(100%, 560px);
  transform: rotateY(-11deg) rotateX(5deg);
  transform-style: preserve-3d;
  animation: sl-float-laptop 7s ease-in-out infinite;
}

.sl-laptop-screen {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 12px solid #111827;
  border-radius: 18px 18px 10px 10px;
  background: #f8fafc;
  box-shadow: 0 34px 90px rgba(0,0,0,0.42);
  display: flex;
  flex-direction: column;
}

.sl-laptop-base {
  width: 86%;
  height: 18px;
  margin: 0 auto;
  border-radius: 0 0 28px 28px;
  background: linear-gradient(180deg, #cbd5e1, #64748b);
  box-shadow: 0 22px 42px rgba(0,0,0,0.26);
}

.sl-browser-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  background: #e5e7eb;
}

.sl-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #94a3b8;
}

.sl-device-screen-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sl-laptop-screen .sl-device-screen-img {
  min-height: 0;
  flex: 1 1 auto;
}

.sl-dashboard-preview {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: #101828;
}

.sl-dashboard-preview small,
.sl-driver-card-head span,
.sl-section-head span,
.sl-driver-copy span {
  color: var(--sl-red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sl-dashboard-preview strong {
  display: block;
  margin-top: 4px;
  font-size: 32px;
}

.sl-preview-search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--sl-line);
  border-radius: 14px;
  background: #fff;
  color: #667085;
}

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

.sl-preview-grid span,
.sl-mini-feature,
.sl-request-preview span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px;
  border: 1px solid var(--sl-line);
  border-radius: 16px;
  background: #fff;
  color: #344054;
  font-weight: 800;
}

.sl-preview-grid i,
.sl-mini-feature i,
.sl-request-preview i {
  color: var(--sl-green);
}

.sl-phone {
  position: absolute;
  left: 8px;
  bottom: 14px;
  width: 194px;
  padding: 10px;
  border-radius: 34px;
  background: #111827;
  box-shadow: 0 28px 70px rgba(0,0,0,0.38);
  animation: sl-float-phone 6.5s ease-in-out infinite;
}

.sl-phone-notch {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 72px;
  height: 18px;
  border-radius: 0 0 14px 14px;
  background: #111827;
  transform: translateX(-50%);
  z-index: 2;
}

.sl-phone-screen {
  overflow: hidden;
  min-height: 364px;
  border-radius: 26px;
  background: #f8fafc;
  padding: 0;
  color: #111827;
}

.sl-phone-screen .sl-device-screen-img {
  min-height: 364px;
}

.sl-service-rail-section {
  width: 100%;
  overflow: hidden;
  padding: 16px 0;
  background: #fff;
  border-bottom: 1px solid rgba(16,24,40,0.08);
}

.sl-service-rail {
  display: block;
  width: 100% !important;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent !important;
  color: inherit;
  box-shadow: none;
  overflow: hidden;
}

.sl-service-rail-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  animation: sl-service-rail 42s linear infinite;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.sl-service-rail:hover .sl-service-rail-track,
.sl-service-rail:focus-visible .sl-service-rail-track {
  animation-play-state: paused;
}

.sl-service-rail-track span {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 16px 7px 8px;
  border: 1px solid rgba(16,24,40,0.09);
  border-radius: 999px;
  background: #f8fafc;
  color: #101828;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(16,24,40,0.08);
}

.sl-service-rail-track img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}

.sl-service-rail-section + .sl-feature-strip {
  margin-top: 64px;
}

.sl-phone-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 26px;
}

.sl-phone-card {
  display: grid;
  gap: 6px;
  margin-bottom: 10px;
  padding: 14px;
  border: 1px solid var(--sl-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(16,24,40,0.09);
}

.sl-phone-card.is-active {
  background: #111827;
  color: #fff;
}

.sl-phone-card small,
.sl-phone-card span {
  color: #667085;
  font-size: 11px;
}

.sl-phone-card.is-active small,
.sl-phone-card.is-active span {
  color: rgba(255,255,255,0.72);
}

.sl-phone-nav {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  display: flex;
  justify-content: space-around;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  color: #667085;
  box-shadow: 0 16px 30px rgba(16,24,40,0.12);
}

.sl-feature-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 54px;
  margin-bottom: 26px;
}

.sl-action-card,
.sl-capability,
.sl-flow-preview,
.sl-driver-card,
.sl-faq-list details {
  border: 1px solid rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.86);
  box-shadow: 0 22px 54px rgba(16,24,40,0.12);
  backdrop-filter: blur(22px);
}

.sl-action-card {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border-radius: 24px;
  border-color: rgba(255,255,255,0.82);
  background:
    radial-gradient(circle at 18% 12%, rgba(220,20,60,0.10), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.96), rgba(255,255,255,0.74));
  color: var(--sl-ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.sl-action-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.62) 44%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 0.64s cubic-bezier(.22,.68,0,1);
  pointer-events: none;
}

.sl-action-card:hover,
.sl-action-card:focus-visible {
  transform: translateY(-7px);
  border-color: rgba(220,20,60,0.22);
  box-shadow: 0 34px 74px rgba(16,24,40,0.14);
}

.sl-action-card:hover::after,
.sl-action-card:focus-visible::after {
  transform: translateX(120%);
}

.sl-action-card > i,
.sl-capability > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(220,20,60,0.1);
  color: var(--sl-red);
}

.sl-action-card strong,
.sl-capability h3 {
  margin: 0;
  color: var(--sl-ink);
  font-size: 18px;
}

.sl-action-card span,
.sl-capability p,
.sl-flow-step small,
.sl-flow-preview p,
.sl-driver-copy p,
.sl-faq-list p {
  margin: 0;
  color: var(--sl-muted);
  font-size: 14px;
  line-height: 1.55;
}

.sl-section {
  padding: 92px 0 0;
}

.sl-cinema-section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  min-height: 930px;
  margin-left: 0;
  margin-right: 0;
  padding: 104px 0 38px;
  isolation: isolate;
  overflow: hidden;
  border-radius: 0;
  perspective: 1400px;
}

.sl-cinema-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 74% 18%, rgba(220,20,60,0.16), transparent 32%),
    radial-gradient(circle at 8% 58%, rgba(15,118,110,0.14), transparent 34%),
    linear-gradient(180deg, rgba(248,250,252,0.96), rgba(255,255,255,0.88));
}

.sl-cinema-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.44;
  background-image:
    linear-gradient(rgba(15,23,42,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: translateY(calc(var(--sl-cinema-scroll, 0) * -0.08px));
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 82%, transparent);
}

.sl-cinema-bg,
.sl-cinema-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sl-cinema-bg {
  z-index: -1;
  filter: blur(2px);
}

.sl-cinema-bg span {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  opacity: 0.22;
  background: radial-gradient(circle, rgba(220,20,60,0.42), transparent 68%);
  animation: sl-cinema-light 12s ease-in-out infinite;
}

.sl-cinema-bg span:nth-child(1) { left: -90px; top: 110px; }
.sl-cinema-bg span:nth-child(2) { right: 9%; top: 20px; background: radial-gradient(circle, rgba(15,118,110,0.35), transparent 68%); animation-delay: -4s; }
.sl-cinema-bg span:nth-child(3) { right: 30%; bottom: -150px; background: radial-gradient(circle, rgba(37,99,235,0.30), transparent 68%); animation-delay: -8s; }

.sl-section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.sl-cinema-section .sl-section-head {
  position: relative;
  z-index: 5;
  max-width: 730px;
  margin-left: max(32px, calc((100vw - 1260px) / 2 + 32px));
  padding-left: 0;
}

.sl-section-head h2,
.sl-driver-copy h2 {
  margin: 8px 0 0;
  color: var(--sl-ink);
  font-size: clamp(30px, 4.5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

.sl-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sl-capability-grid {
  position: absolute;
  inset: 370px 0 0;
  z-index: 4;
  width: min(100% - 64px, 1260px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  transform-style: preserve-3d;
}

.sl-capability {
  --mx: 50%;
  --my: 50%;
  position: absolute;
  display: grid;
  align-content: start;
  gap: 12px;
  width: min(292px, 28vw);
  min-height: 220px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.68);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,0.72), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.48), rgba(255,255,255,0.16));
  box-shadow: 0 34px 80px rgba(15,23,42,0.14);
  backdrop-filter: blur(30px);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.22,.68,0,1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.sl-service-orbit {
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-bottom: 2px;
}

.sl-service-orbit img {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,0.92);
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(15,23,42,0.18);
  background: #fff;
}

.sl-service-orbit img + img {
  margin-left: -14px;
}

.sl-service-orbit img:nth-child(2) {
  transform: translateY(-5px);
}

.sl-service-orbit img:nth-child(3) {
  transform: translateY(4px);
}

.sl-capability::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(220,20,60,0.58), rgba(15,118,110,0.42), transparent);
  background-size: 240% 240%;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: sl-card-border 7s linear infinite;
  pointer-events: none;
}

.sl-capability::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.42) 45%, transparent 62%);
  transform: translateX(-130%);
  animation: sl-card-sweep 8s ease-in-out infinite;
  pointer-events: none;
}

.sl-capability:nth-child(1) {
  left: 2%;
  top: 10px;
  transform: translate3d(calc(var(--sl-cinema-scroll, 0) * -0.05px), calc(var(--sl-cinema-scroll, 0) * 0.02px), 120px) rotateY(-16deg) rotateZ(-1deg);
}

.sl-capability:nth-child(2) {
  left: 33%;
  top: 48px;
  width: min(274px, 26vw);
  transform: translate3d(0, calc(var(--sl-cinema-scroll, 0) * -0.04px), 60px) rotateY(12deg) rotateZ(1deg);
}

.sl-capability:nth-child(3) {
  left: 8%;
  top: 320px;
  width: min(322px, 30vw);
  transform: translate3d(calc(var(--sl-cinema-scroll, 0) * 0.04px), calc(var(--sl-cinema-scroll, 0) * -0.03px), 150px) rotateY(-10deg) rotateZ(1deg);
}

.sl-capability:nth-child(4) {
  right: 2%;
  top: 270px;
  width: min(304px, 29vw);
  transform: translate3d(calc(var(--sl-cinema-scroll, 0) * 0.05px), calc(var(--sl-cinema-scroll, 0) * -0.02px), 90px) rotateY(15deg) rotateZ(-1deg);
}

.sl-capability:hover {
  border-color: rgba(220,20,60,0.34);
  box-shadow: 0 42px 94px rgba(220,20,60,0.16), 0 28px 70px rgba(15,23,42,0.12);
}

.sl-cinema-mascot {
  position: absolute;
  z-index: 6;
  right: max(16%, calc((100vw - 1260px) / 2 + 190px));
  bottom: -250px;
  width: min(390px, 30vw);
  height: 760px;
  overflow: hidden;
  filter: drop-shadow(0 42px 62px rgba(15,23,42,0.28));
  transform: translate3d(0, calc(var(--sl-cinema-scroll, 0) * -0.035px), 220px);
}

.sl-cinema-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transform: translateY(0);
  transform-origin: 50% 75%;
}

.sl-cinema-mascot.sl-reveal {
  filter: blur(40px) brightness(0.4) drop-shadow(0 42px 62px rgba(15,23,42,0.18));
  opacity: 0;
  transform: translate3d(0, 120px, 220px);
  transition: opacity 2.4s cubic-bezier(.16,1,.3,1), filter 2.4s cubic-bezier(.16,1,.3,1), transform 2.4s cubic-bezier(.16,1,.3,1);
}

.sl-cinema-mascot.sl-reveal.is-visible {
  opacity: 1;
  filter: blur(0) brightness(1) drop-shadow(0 42px 62px rgba(15,23,42,0.28));
  transform: translate3d(0, calc(var(--sl-cinema-scroll, 0) * -0.035px), 220px);
}

.sl-cinema-particles span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--sl-red);
  opacity: 0.5;
  animation: sl-particle-drift 9s ease-in-out infinite;
}

.sl-cinema-particles span:nth-child(1) { left: 18%; top: 29%; }
.sl-cinema-particles span:nth-child(2) { left: 71%; top: 22%; background: #0f766e; animation-delay: -2s; }
.sl-cinema-particles span:nth-child(3) { left: 83%; top: 55%; background: #2563eb; animation-delay: -4s; }
.sl-cinema-particles span:nth-child(4) { left: 35%; top: 72%; background: #f59e0b; animation-delay: -6s; }
.sl-cinema-particles span:nth-child(5) { left: 54%; top: 38%; background: #dc143c; animation-delay: -8s; }

.sl-flow-section {
  margin-top: 92px;
  padding: 76px 0;
  background: #101828;
  color: #fff;
}

.sl-flow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.7fr) minmax(300px, 0.85fr);
  gap: 24px;
  align-items: center;
}

.sl-flow-section .sl-section-head h2 {
  color: #fff;
}

.sl-flow-list {
  display: grid;
  gap: 12px;
}

.sl-flow-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 5px 12px;
  align-items: start;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.sl-flow-step span {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  font-weight: 950;
}

.sl-flow-step.is-selected {
  border-color: rgba(220,20,60,0.58);
  background: rgba(220,20,60,0.18);
}

.sl-flow-preview {
  min-height: 300px;
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  color: var(--sl-ink);
}

.sl-flow-preview i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(15,118,110,0.12);
  color: var(--sl-green);
  font-size: 24px;
}

.sl-flow-preview strong {
  font-size: 26px;
}

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

.sl-mini-feature {
  min-height: 76px;
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(16,24,40,0.08);
}

.sl-driver-section {
  margin-top: 92px;
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(220,20,60,0.1), rgba(37,99,235,0.1)),
    #fff;
}

.sl-driver-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.sl-driver-card {
  display: grid;
  gap: 22px;
  padding: 24px;
  border-radius: 28px;
}

.sl-driver-card-head strong {
  display: block;
  margin-top: 8px;
  font-size: 30px;
}

.sl-request-preview {
  display: grid;
  gap: 12px;
}

.sl-driver-copy p {
  max-width: 580px;
  margin: 16px 0 24px;
  font-size: 16px;
}

.sl-driver-copy .sl-btn-primary {
  background: var(--sl-red);
  color: #fff;
  box-shadow: 0 18px 40px rgba(220,20,60,0.24);
}

.sl-driver-copy .sl-btn-primary i,
.sl-driver-copy .sl-btn-primary span {
  color: #fff;
}

.sl-faq-list {
  display: grid;
  gap: 12px;
  padding-bottom: 88px;
}

.sl-faq-list details {
  padding: 18px 20px;
  border-radius: 18px;
}

.sl-faq-list summary {
  cursor: pointer;
  color: var(--sl-ink);
  font-weight: 900;
}

.sl-faq-list p {
  margin-top: 12px;
}

.sl-reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  transition: opacity 0.72s cubic-bezier(.22,.68,0,1), transform 0.72s cubic-bezier(.22,.68,0,1);
  transition-delay: var(--sl-delay, 0ms);
}

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

@keyframes sl-float-laptop {
  0%, 100% { transform: rotateY(-11deg) rotateX(5deg) translate3d(0, 0, 0); }
  50% { transform: rotateY(-8deg) rotateX(4deg) translate3d(0, -16px, 0); }
}

@keyframes sl-float-phone {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(8px, -14px, 0) rotate(1deg); }
}

@keyframes sl-cinema-light {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.2; }
  50% { transform: translate3d(32px, -24px, 0) scale(1.16); opacity: 0.32; }
}

@keyframes sl-card-border {
  0% { background-position: 0% 50%; }
  100% { background-position: 240% 50%; }
}

@keyframes sl-card-sweep {
  0%, 54% { transform: translateX(-130%); opacity: 0; }
  64% { opacity: 1; }
  78%, 100% { transform: translateX(130%); opacity: 0; }
}

@keyframes sl-particle-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -24px, 0); }
}

@keyframes sl-service-rail {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .sl-reveal,
  .sl-laptop,
  .sl-phone,
  .sl-btn,
  .sl-action-card,
  .sl-service-rail-track,
  .sl-cinema-bg span,
  .sl-cinema-particles span,
  .sl-capability::before,
  .sl-capability::after {
    animation: none;
    transition: none;
  }

  .sl-reveal,
  .sl-cinema-mascot.sl-reveal,
  .sl-cinema-mascot.sl-reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1040px) {
  .sl-hero-shell {
    width: min(1160px, calc(100% - 36px));
  }

  .sl-hero-shell,
  .sl-flow-layout,
  .sl-driver-layout {
    grid-template-columns: 1fr;
  }

  .sl-device-stage {
    min-height: 520px;
  }

  .sl-capability-grid,
  .sl-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sl-cinema-section {
    min-height: 920px;
  }

  .sl-cinema-mascot {
    right: 8%;
    width: min(330px, 34vw);
  }
}

@media (max-width: 760px) {
  .sl-landing-shell {
    width: min(100% - 28px, 560px);
  }

  .sl-hero {
    text-align: center;
  }

  .sl-hero-copy {
    max-width: none;
    display: grid;
    justify-items: center;
  }

  .sl-hero h1,
  .sl-hero p {
    max-width: none;
  }

  .sl-pill {
    justify-content: center;
  }

  .sl-hero {
    min-height: auto;
  }

  .sl-hero-shell {
    gap: 34px;
    padding: 44px 0 86px;
  }

  .sl-hero h1 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .sl-hero-actions .sl-btn {
    flex-basis: auto;
    width: 100%;
  }

  .sl-hero-actions {
    width: min(100%, 360px);
    flex-direction: column;
    align-items: stretch;
  }

  .sl-hero-trust {
    justify-content: center;
    text-align: center;
  }

  .sl-trust-copy {
    justify-items: center;
  }

  .sl-trust-stars {
    justify-content: center;
  }

  .sl-service-rail-section {
    padding: 12px 0;
  }

  .sl-service-rail-track {
    gap: 9px;
    animation-duration: 34s;
  }

  .sl-service-rail-track span {
    min-height: 48px;
    padding-right: 13px;
    font-size: 13px;
  }

  .sl-service-rail-track img {
    width: 34px;
    height: 34px;
  }

  .sl-feature-strip,
  .sl-feature-grid {
    grid-template-columns: 1fr;
  }

  .sl-feature-strip {
    gap: 16px;
    margin-top: 34px;
    margin-bottom: 18px;
  }

  .sl-action-card {
    min-height: 180px;
    padding: 24px;
    border-radius: 22px;
  }

  .sl-cinema-section {
    width: 100%;
    max-width: none;
    min-height: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 72px 0 38px;
    border-radius: 0;
    background: #fff;
  }

  .sl-cinema-section::before {
    background:
      radial-gradient(circle at 58% 18%, rgba(220,20,60,0.16), transparent 38%),
      radial-gradient(circle at 8% 42%, rgba(15,118,110,0.12), transparent 34%),
      linear-gradient(180deg, #ffffff 0%, #f8fafc 56%, #ffffff 100%);
  }

  .sl-cinema-section .sl-section-head {
    width: min(100% - 28px, 560px);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    text-align: left;
  }

  .sl-cinema-section .sl-section-head h2 {
    color: var(--sl-ink);
    font-size: clamp(34px, 11vw, 48px);
  }

  .sl-cinema-section .sl-section-head span {
    color: var(--sl-red);
  }

  .sl-cinema-world {
    position: relative;
    min-height: 980px;
    padding-top: 360px;
  }

  .sl-cinema-mascot {
    left: 50%;
    right: auto;
    top: -8px;
    bottom: auto;
    width: min(270px, 70vw);
    height: 500px;
    transform: translate3d(-50%, calc(var(--sl-cinema-scroll, 0) * -0.025px), 0) scale(1.02);
  }

  .sl-cinema-mascot.sl-reveal {
    transform: translate3d(-50%, 90px, 0) scale(0.96);
  }

  .sl-cinema-mascot.sl-reveal.is-visible {
    transform: translate3d(-50%, calc(var(--sl-cinema-scroll, 0) * -0.025px), 0) scale(1.02);
  }

  .sl-capability-grid {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    z-index: 8;
    display: grid;
    grid-template-columns: 1fr;
    width: min(100% - 28px, 560px);
    margin: 0 auto;
    gap: 16px;
    padding: 0 0 10px;
    transform: none;
  }

  .sl-capability {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100% !important;
    min-height: 190px;
    padding: 22px;
    transform: translate3d(var(--sl-mobile-shift, -44px), 0, 0) rotateZ(var(--sl-mobile-rotate, -2deg)) !important;
  }

  .sl-service-orbit img {
    width: 42px;
    height: 42px;
  }

  .sl-capability:nth-child(even) {
    --sl-mobile-shift: 44px;
    --sl-mobile-rotate: 2deg;
  }

  .sl-capability.is-visible {
    transform: translate3d(var(--sl-gyro-x, 0px), var(--sl-gyro-y, 0px), 0) rotateZ(0deg) !important;
  }

  .sl-device-stage {
    min-height: 470px;
  }

  .sl-laptop {
    top: 10px;
    width: 100%;
    transform: none;
  }

  .sl-phone {
    left: auto;
    right: 12px;
    bottom: 0;
    width: 184px;
  }

  .sl-phone-screen {
    min-height: 352px;
  }

  .sl-preview-grid {
    grid-template-columns: 1fr;
  }

  .sl-section,
  .sl-flow-section,
  .sl-driver-section {
    margin-top: 64px;
    padding-top: 58px;
  }
}
