@charset "UTF-8";
/* ==========================================================================
   Landing page — premium light with dark moments (brand-bound)
   Consumes --brand* + --landing-font-* from home/partials/landing-styles.blade.php.
   Always light base: marketing surface does not inherit app dark mode.
   Dark "moments" (showcase, final CTA) are opt-in via .landing-section--dark.
   ========================================================================== */
:root {
  --landing-border: rgba(10, 10, 10, 0.08);
  --landing-border-strong: rgba(10, 10, 10, 0.14);
  --landing-shadow-sm: 0 1px 2px rgba(10, 10, 10, 0.04);
  --landing-shadow-md: 0 1px 2px rgba(10, 10, 10, 0.04), 0 16px 40px -8px rgba(10, 10, 10, 0.1);
  --landing-shadow-lg: 0 2px 4px rgba(10, 10, 10, 0.04), 0 24px 64px -12px rgba(10, 10, 10, 0.18);
  --landing-shadow-hover: 0 4px 8px rgba(10, 10, 10, 0.05), 0 32px 80px -12px rgba(10, 10, 10, 0.22);
  --landing-surface: #ffffff;
  --landing-surface-2: #f5f5f4;
  --landing-canvas: #fafafa;
  --landing-ink: #0a0a0a;
  --landing-muted: #55555e;
  --landing-radius: 0.625rem;
  --landing-radius-lg: 1rem;
  --landing-radius-pill: 999px;
  /* Dark moments */
  --landing-dark: #0b0b0f;
  --landing-dark-2: #131318;
  --landing-dark-border: rgba(255, 255, 255, 0.1);
  --landing-dark-border-strong: rgba(255, 255, 255, 0.18);
  --landing-dark-ink: #f6f6f7;
  --landing-dark-muted: rgba(235, 235, 240, 0.64);
}

/* Shell typography + canvas */
.landing-page,
.landing-shell,
#header.landing-header {
  font-family: var(--landing-font-sans);
  color: var(--landing-ink);
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-page {
  background: var(--landing-canvas);
}

.landing-shell {
  background: radial-gradient(ellipse 90% 50% at 50% -8%, rgba(var(--brand-rgb), 0.06) 0%, transparent 60%), linear-gradient(180deg, #fcfcfc 0%, var(--landing-canvas) 30%, #ffffff 100%);
}

/* Motion — scroll reveal (elements only hide when JS flagged the root) */
.landing-reveal {
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.landing-anim .landing-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
}

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

.landing-reveal--delay-1 {
  transition-delay: 0.08s;
}

.landing-reveal--delay-2 {
  transition-delay: 0.16s;
}

.landing-reveal--delay-3 {
  transition-delay: 0.24s;
}

.landing-reveal--delay-4 {
  transition-delay: 0.32s;
}

@keyframes landing-dot-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(var(--brand-rgb), 0.35);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(var(--brand-rgb), 0.12);
  }
}
/* Rhythm and type */
.landing-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  scroll-margin-top: 6rem;
}

.landing-section--hero {
  padding-top: 3.5rem;
  padding-bottom: 0;
}

.landing-section--compact {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .landing-section {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  .landing-section--hero {
    padding-top: 5.5rem;
    padding-bottom: 0;
  }
  .landing-section--compact {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}
.landing-measure {
  max-width: 38rem;
}

.landing-title-hero {
  font-family: var(--landing-font-display);
  font-size: clamp(2.85rem, 7.5vw, 5.35rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--landing-ink);
  background: linear-gradient(180deg, var(--landing-ink) 55%, #46464f 140%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.landing-title-section {
  font-family: var(--landing-font-display);
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--landing-ink);
}

.landing-title-section-sm {
  font-family: var(--landing-font-display);
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--landing-ink);
}

.landing-title-final {
  max-width: 44rem;
  font-family: var(--landing-font-display);
  font-size: clamp(2.35rem, 5.4vw, 4rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--landing-ink);
}

.landing-lead,
.landing-section-subtitle,
.landing-body-lg {
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--landing-muted);
}

.landing-body {
  line-height: 1.65;
  color: var(--landing-ink);
}

.landing-source-note {
  font-size: 0.8125rem;
  letter-spacing: 0.01em;
}

/* Eyebrows / kickers */
.landing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--landing-radius-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--brand-ink);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(var(--brand-rgb), 0.22);
  box-shadow: var(--landing-shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.landing-eyebrow__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--brand);
  animation: landing-dot-pulse 2.4s ease-in-out infinite;
}

.landing-kicker {
  color: var(--brand-ink);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Cards and icons */
.landing-card {
  position: relative;
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius-lg);
  box-shadow: var(--landing-shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.landing-card:hover {
  transform: translateY(-3px);
  border-color: var(--landing-border-strong);
  box-shadow: var(--landing-shadow-md);
}

.landing-card:focus-within {
  border-color: rgba(var(--brand-rgb), 0.45);
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.12);
}

.landing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--landing-radius);
  color: var(--brand-ink);
  background: linear-gradient(180deg, rgba(var(--brand-rgb), 0.1) 0%, rgba(var(--brand-rgb), 0.04) 100%);
  border: 1px solid rgba(var(--brand-rgb), 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.landing-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: var(--ds-icon-stroke, 1.75);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-section svg:not(.brand-icon svg) {
  fill: none;
  stroke: currentColor;
  stroke-width: var(--ds-icon-stroke, 1.75);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--landing-radius-pill);
  font-family: var(--landing-font-display);
  font-weight: 600;
  font-size: 1.2rem;
  font-variant-numeric: tabular-nums;
  color: var(--landing-ink);
  background: var(--landing-surface);
  border: 1px solid var(--landing-border-strong);
  box-shadow: var(--landing-shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Product preview / mock frames */
.landing-mock-wrap {
  position: relative;
}

.landing-mock-wrap::before {
  content: "";
  position: absolute;
  inset: -12% -6%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(var(--brand-rgb), 0.14) 0%, transparent 70%);
  filter: blur(32px);
}

.landing-hero .landing-mock-wrap {
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .landing-hero .landing-mock-wrap {
    margin-top: 4.5rem;
  }
}
.landing-mock,
.landing-product-preview {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: var(--landing-radius-lg);
  border: 1px solid var(--landing-border-strong);
  background: var(--landing-surface);
  box-shadow: 0 0 0 6px rgba(10, 10, 10, 0.025), var(--landing-shadow-lg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.landing-hero .landing-mock,
.landing-hero .landing-product-preview {
  border-radius: var(--landing-radius-lg) var(--landing-radius-lg) 0 0;
  border-bottom: 0;
  transform: perspective(1600px) rotateX(3deg);
  transform-origin: center top;
}

.landing-mock-wrap:hover .landing-mock,
.landing-mock-wrap:hover .landing-product-preview {
  transform: translateY(-4px);
  box-shadow: 0 0 0 6px rgba(10, 10, 10, 0.03), var(--landing-shadow-hover);
}

.landing-hero .landing-mock-wrap:hover .landing-mock,
.landing-hero .landing-mock-wrap:hover .landing-product-preview {
  transform: perspective(1600px) rotateX(0deg) translateY(-4px);
}

.landing-product-preview__chrome,
.landing-mock__chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  height: 2.75rem;
  padding: 0 1rem;
  background: linear-gradient(180deg, #f7f7f6 0%, #f1f1ef 100%);
  border-bottom: 1px solid var(--landing-border);
}

.landing-product-preview__dot,
.landing-mock__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  flex-shrink: 0;
}

.landing-product-preview__dot--danger {
  background: #ff5f57;
}

.landing-product-preview__dot--warning {
  background: #ffbd2e;
}

.landing-product-preview__dot--success {
  background: #28c840;
}

.landing-product-preview__url {
  min-width: 0;
  max-width: 18rem;
  margin-inline-start: 0.5rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  color: var(--landing-muted);
  background: rgba(10, 10, 10, 0.045);
  border: 1px solid rgba(10, 10, 10, 0.04);
  font-size: 0.75rem;
  font-weight: 500;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.landing-product-preview__body {
  display: flex;
  min-height: 27rem;
}

.landing-product-preview__sidebar {
  display: none;
  width: 13.5rem;
  flex-shrink: 0;
  padding: 1.25rem;
  background: var(--landing-surface-2);
  border-right: 1px solid var(--landing-border);
}

@media (min-width: 768px) {
  .landing-product-preview__sidebar {
    display: block;
  }
}
.landing-product-preview__brand {
  margin-bottom: 1.5rem;
  color: var(--landing-ink);
  font-family: var(--landing-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.landing-product-preview__nav-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.25rem;
  margin-bottom: 0.25rem;
  padding: 0 0.65rem;
  border-radius: var(--landing-radius);
  color: var(--landing-muted);
  font-size: 0.8125rem;
  font-weight: 500;
}

.landing-product-preview__nav-item span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.18);
}

.landing-product-preview__nav-item.is-active {
  color: var(--landing-ink);
  background: rgba(10, 10, 10, 0.05);
  box-shadow: inset 0 0 0 1px rgba(10, 10, 10, 0.04);
}

.landing-product-preview__nav-item.is-active span {
  background: var(--brand);
}

.landing-product-preview__main {
  min-width: 0;
  flex: 1;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .landing-product-preview__main {
    padding: 1.75rem;
  }
}
.landing-product-preview__headline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.landing-product-preview__badge,
.landing-case-label {
  display: inline-flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0.625rem;
  padding: 0;
  border-radius: 0;
  color: var(--brand-ink);
  background: transparent;
  border: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-product-preview__headline h3 {
  margin: 0;
  color: var(--landing-ink);
  font-family: var(--landing-font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.landing-product-preview__headline p:not(.landing-product-preview__badge) {
  max-width: 33rem;
  margin: 0.5rem 0 0;
  color: var(--landing-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.landing-product-preview__status {
  display: none;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--landing-radius-pill);
  color: #166534;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.18);
  font-size: 0.72rem;
  font-weight: 600;
}

@media (min-width: 576px) {
  .landing-product-preview__status {
    display: inline-flex;
  }
}
.landing-product-preview__status span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #22c55e;
  animation: landing-dot-pulse 2.4s ease-in-out infinite;
}

.landing-product-preview__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.landing-product-preview__stats div,
.landing-product-preview__panel {
  border: 1px solid var(--landing-border);
  background: #fcfcfb;
  border-radius: var(--landing-radius);
}

.landing-product-preview__stats div {
  padding: 0.85rem;
}

.landing-product-preview__stats strong {
  display: block;
  color: var(--landing-ink);
  font-family: var(--landing-font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.landing-product-preview__stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--landing-muted);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.landing-product-preview__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 992px) {
  .landing-product-preview__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.85fr);
  }
}
.landing-product-preview__panel {
  padding: 0.9rem;
}

.landing-product-preview__panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  color: var(--landing-ink);
  font-size: 0.8125rem;
  font-weight: 600;
}

.landing-product-preview__panel-header small {
  color: var(--brand-ink);
  font-weight: 600;
}

.landing-product-preview__workflow-row,
.landing-product-preview__event-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--landing-border);
}

.landing-product-preview__workflow-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.4rem;
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

.landing-product-preview__workflow-row p,
.landing-product-preview__event-row p {
  margin: 0;
  color: var(--landing-ink);
  font-size: 0.85rem;
  line-height: 1.45;
}

.landing-product-preview__event-row {
  justify-content: space-between;
}

.landing-product-preview__event-row span {
  color: var(--brand-ink);
  font-size: 0.7rem;
  font-weight: 600;
}

.landing-product-preview--feature .landing-product-preview__body {
  min-height: 20rem;
}

.landing-product-preview--feature .landing-product-preview__sidebar {
  display: none;
}

.landing-product-preview--feature .landing-product-preview__grid {
  grid-template-columns: 1fr;
}

/* Social proof */
.landing-proof-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 992px) {
  .landing-proof-strip {
    flex-direction: row;
    gap: 2rem;
    text-align: start;
  }
}
.landing-proof-strip__label {
  color: var(--landing-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.landing-logo-row,
.landing-proof-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.landing-logo {
  height: 1.6rem;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.landing-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.landing-proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.95rem;
  border-radius: var(--landing-radius-pill);
  color: var(--landing-ink);
  background: var(--landing-surface);
  border: 1px solid var(--landing-border);
  box-shadow: var(--landing-shadow-sm);
  font-size: 0.8125rem;
  font-weight: 500;
}

.landing-proof-pill__icon {
  display: inline-flex;
  color: var(--brand-ink);
}

/* Metrics */
.landing-metric {
  height: 100%;
  padding: 1.75rem 0.5rem;
  border-top: 1px solid var(--landing-border-strong);
  background: transparent;
}

.landing-metric__value {
  margin: 0;
  color: var(--landing-ink);
  font-family: var(--landing-font-display);
  font-size: clamp(2.5rem, 4.8vw, 3.4rem);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.landing-metric__label {
  margin: 0.55rem 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--landing-muted);
}

/* Pricing teaser */
.landing-pricing-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .landing-pricing-teaser {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.4fr);
  }
}
.landing-pricing-card {
  padding: 1.75rem;
  border: 1px solid var(--landing-border);
  border-radius: var(--landing-radius-lg);
  background: var(--landing-surface);
  box-shadow: var(--landing-shadow-md);
}

.landing-pricing-card li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  color: var(--landing-ink);
  font-weight: 500;
  border-top: 1px solid var(--landing-border);
}

.landing-pricing-card li:first-child {
  border-top: 0;
}

.landing-pricing-card li span {
  display: inline-flex;
  color: var(--brand-ink);
  margin-top: 0.15rem;
}

/* Testimonials */
.landing-star {
  fill: #c4a35a;
}

.landing-quote-card .card-body {
  position: relative;
}

.landing-quote-mark {
  display: block;
  font-family: var(--landing-font-display);
  font-size: 3rem;
  font-weight: 600;
  line-height: 0.6;
  margin-bottom: 1rem;
  color: rgba(var(--brand-rgb), 0.35);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.landing-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  margin-inline-end: 0.75rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-strong) 100%);
  box-shadow: 0 0 0 2px var(--landing-surface), 0 0 0 3px rgba(var(--brand-rgb), 0.35);
  font-size: 0.75rem;
  font-weight: 600;
}

/* FAQ */
.landing-faq-item {
  border: 0;
  border-bottom: 1px solid var(--landing-border);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

.landing-faq-item:hover {
  border-color: var(--landing-border-strong);
}

.landing-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1.25rem;
  padding: 1.35rem 0;
  text-align: start;
  font-weight: 600;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--landing-ink);
  transition: color 0.2s ease;
}

.landing-faq-trigger:hover {
  color: var(--brand-ink);
}

.landing-faq-trigger:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.25);
}

.landing-faq-chevron {
  display: inline-flex;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  color: var(--landing-muted);
}

.landing-faq-trigger[aria-expanded=true] .landing-faq-chevron {
  transform: rotate(180deg);
}

.landing-faq-answer {
  line-height: 1.65;
  margin-top: -0.35rem;
  padding-bottom: 1.25rem !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Buttons */
.btn.btn-neutral {
  color: var(--landing-ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--landing-border-strong);
  border-radius: var(--landing-radius-pill);
  box-shadow: var(--landing-shadow-sm);
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn.btn-neutral:hover {
  background: #ffffff;
  border-color: rgba(10, 10, 10, 0.3);
  color: var(--landing-ink);
  transform: translateY(-1px);
}

.landing-cta .btn {
  border-radius: var(--landing-radius-pill);
  letter-spacing: -0.01em;
}

.landing-cta .btn-primary,
.landing-btn-primary {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 45%), var(--brand);
  border-color: var(--brand-strong);
  border-radius: var(--landing-radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(var(--brand-rgb), 0.35), 0 8px 20px -6px rgba(var(--brand-rgb), 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.landing-cta .btn-primary:hover,
.landing-btn-primary:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.02) 45%), var(--brand);
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 2px 4px rgba(var(--brand-rgb), 0.35), 0 14px 32px -6px rgba(var(--brand-rgb), 0.45);
}

.landing-cta .btn:focus-visible,
.btn.btn-neutral:focus-visible,
.landing-btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.3);
}

/* Section backgrounds */
.landing-hero-bg {
  position: relative;
  background: transparent;
  overflow: hidden;
}

.landing-hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, transparent 55%, var(--landing-canvas) 100%), radial-gradient(ellipse 70% 45% at 70% 0%, rgba(var(--brand-rgb), 0.05) 0%, transparent 60%), radial-gradient(ellipse 50% 40% at 15% 15%, rgba(var(--brand-rgb), 0.07) 0%, transparent 55%);
}

.landing-hero-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(10, 10, 10, 0.028) 1px, transparent 1px), linear-gradient(90deg, rgba(10, 10, 10, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 60% at 50% 0%, #000 0%, transparent 72%);
}

/* Dark moments — showcase + final CTA */
.landing-section--dark {
  position: relative;
  overflow: hidden;
  color: var(--landing-dark-ink);
  background: radial-gradient(ellipse 80% 55% at 50% -10%, rgba(var(--brand-rgb), 0.22) 0%, transparent 60%), radial-gradient(ellipse 60% 45% at 85% 110%, rgba(var(--brand-rgb), 0.12) 0%, transparent 60%), linear-gradient(180deg, var(--landing-dark) 0%, var(--landing-dark-2) 100%);
}

.landing-section--dark .landing-title-section,
.landing-section--dark .landing-title-section-sm,
.landing-section--dark .landing-title-final,
.landing-section--dark .landing-body {
  color: var(--landing-dark-ink);
}

.landing-section--dark .landing-section-subtitle,
.landing-section--dark .landing-lead,
.landing-section--dark .landing-body-lg {
  color: var(--landing-dark-muted);
}

.landing-section--dark .text-muted {
  color: var(--landing-dark-muted) !important;
}

.landing-section--dark .landing-kicker {
  color: var(--brand-soft);
}

.landing-section--dark .landing-eyebrow {
  color: var(--brand-soft);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--landing-dark-border);
  box-shadow: none;
}

.landing-section--dark .btn.btn-neutral {
  color: var(--landing-dark-ink);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--landing-dark-border-strong);
  box-shadow: none;
}

.landing-section--dark .btn.btn-neutral:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.landing-section--dark .landing-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--landing-dark-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: none;
}

.landing-section--dark .landing-card:hover {
  border-color: var(--landing-dark-border-strong);
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.5);
}

.landing-section--dark .landing-mock,
.landing-section--dark .landing-product-preview {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.04), 0 32px 96px -16px rgba(0, 0, 0, 0.7);
}

.landing-section--dark .landing-mock-wrap::before {
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(var(--brand-rgb), 0.3) 0%, transparent 70%);
  filter: blur(48px);
}

.landing-final-bg {
  border-top: 0;
}

/* How-it-works connector */
.landing-steps-connector {
  top: 6rem;
  left: calc(16.66% + 3.5rem);
  right: calc(16.66% + 3.5rem);
  height: 1px;
  background: repeating-linear-gradient(to right, rgba(10, 10, 10, 0.22) 0, rgba(10, 10, 10, 0.22) 6px, transparent 6px, transparent 12px);
  z-index: 0;
}

/* Alternating section surfaces */
.landing-section.bg-base-1 {
  background: #ffffff;
}

.landing-section.bg-base-0 {
  background: transparent;
}

/* Header — floating card nav */
#header.landing-header {
  background: transparent !important;
  box-shadow: none;
  border: 0;
  padding: 0.75rem 0 0;
}

.landing-nav {
  border-radius: 1.25rem;
  border: 1px solid var(--landing-border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: var(--landing-shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

#header.landing-header.is-scrolled .landing-nav {
  border-color: var(--landing-border-strong);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--landing-shadow-md);
}

.landing-nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--landing-muted);
  border-radius: var(--landing-radius);
  transition: color 0.18s ease, background-color 0.18s ease;
}

.landing-nav-link:hover {
  color: var(--landing-ink);
  background: rgba(10, 10, 10, 0.04);
}

.landing-nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.25);
}

#header.landing-header .landing-btn-primary {
  border-radius: var(--landing-radius-pill);
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .landing-nav .navbar-collapse {
    padding-top: 0.5rem;
    padding-bottom: 0.75rem;
  }
  .landing-nav .navbar-collapse .nav-link {
    padding: 0.55rem 0.75rem;
  }
}
.landing-mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1020;
  display: none;
  justify-content: center;
  border-radius: var(--landing-radius-pill);
}

/* Footer — landing scope only (.landing-page lives on <body> for the home route) */
.landing-page #footer {
  border-top: 1px solid var(--landing-border);
  background: var(--landing-canvas);
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.landing-page #footer .nav-link {
  color: var(--landing-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.18s ease;
}

.landing-page #footer .nav-link:hover {
  color: var(--landing-ink);
}

.landing-page #footer hr {
  border-top-color: var(--landing-border);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.landing-page #footer .text-muted {
  color: var(--landing-muted) !important;
  font-size: 0.875rem;
}

@media (max-width: 575.98px) {
  .landing-title-hero {
    letter-spacing: -0.03em;
  }
  .landing-product-preview__stats {
    grid-template-columns: 1fr;
  }
  .landing-cta .btn {
    width: 100%;
  }
  .landing-mobile-cta {
    display: inline-flex;
  }
}
@media (prefers-reduced-motion: reduce) {
  html.landing-anim .landing-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .landing-eyebrow__dot,
  .landing-product-preview__status span {
    animation: none;
  }
  .landing-card,
  .landing-cta .btn-primary,
  .landing-btn-primary,
  .btn.btn-neutral,
  .landing-faq-chevron,
  .landing-mock,
  .landing-product-preview,
  .landing-nav,
  #header.landing-header {
    transition: none;
  }
  .landing-hero .landing-mock,
  .landing-hero .landing-product-preview {
    transform: none;
  }
  .landing-card:hover,
  .landing-cta .btn-primary:hover,
  .landing-btn-primary:hover,
  .btn.btn-neutral:hover,
  .landing-mock-wrap:hover .landing-mock,
  .landing-mock-wrap:hover .landing-product-preview {
    transform: none;
  }
}
