/* ============================================================
   Landing Page — Awwwards-Inspired Design (Linear + Stripe)
   Premium dark hero, bento grid, aurora gradients, glass effects
   ============================================================ */

/* ---- Reset for standalone page ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  font-family: var(--font-system);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lp-body {
  background-color: var(--color-bg);
  color: var(--color-label);
}


/* ============================================================
   HEADER
   ============================================================ */

.lp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-32);
  background: transparent;
  transition: background var(--duration-normal) var(--ease-default),
              border-color var(--duration-normal) var(--ease-default),
              backdrop-filter var(--duration-normal) var(--ease-default);
  border-bottom: 1px solid transparent;
}

.lp-header--scrolled {
  background: var(--glass-bg-thick);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom-color: var(--glass-border);
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  text-decoration: none;
  color: var(--color-label);
}

.lp-brand:hover {
  opacity: 1;
}

.lp-brand img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
}

.lp-brand span {
  font-size: var(--text-headline);
  font-weight: var(--weight-bold);
  letter-spacing: -0.02em;
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.lp-nav-link {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-16);
  font-size: var(--text-subheadline);
  font-weight: var(--weight-medium);
  color: var(--color-label-secondary);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: color var(--duration-fast) var(--ease-default),
              background var(--duration-fast) var(--ease-default);
}

.lp-nav-link:hover {
  color: var(--color-label);
  background: var(--color-fill-quaternary);
  opacity: 1;
}

.lp-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-6);
  margin-left: var(--space-8);
  padding: var(--space-8) var(--space-20);
  font-size: var(--text-subheadline);
  font-weight: var(--weight-semibold);
  color: #FFFFFF;
  background: var(--color-accent);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: filter var(--duration-fast) var(--ease-default),
              transform var(--duration-fast) var(--ease-default);
}

.lp-nav-cta:hover {
  filter: brightness(1.1);
  opacity: 1;
}

.lp-nav-cta:active {
  transform: scale(0.97);
}


/* ============================================================
   HERO
   ============================================================ */

.lp-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  padding: calc(3.75rem + var(--space-64)) var(--space-32) var(--space-48);
  text-align: center;
  overflow: hidden;
  background: #0A0A0F;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Aurora gradient blobs */
.lp-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: aurora-float 12s ease-in-out infinite alternate;
}

.lp-hero-glow--1 {
  width: 600px;
  height: 600px;
  top: -10%;
  left: 20%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.3) 0%, transparent 70%);
  animation-delay: 0s;
}

.lp-hero-glow--2 {
  width: 500px;
  height: 500px;
  top: 10%;
  right: 15%;
  background: radial-gradient(circle, rgba(175, 82, 222, 0.25) 0%, transparent 70%);
  animation-delay: -4s;
}

.lp-hero-glow--3 {
  width: 400px;
  height: 400px;
  bottom: 20%;
  left: 40%;
  background: radial-gradient(circle, rgba(94, 92, 230, 0.2) 0%, transparent 70%);
  animation-delay: -8s;
}

@keyframes aurora-float {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
  100% { transform: translate(10px, -10px) scale(1.02); }
}

/* Subtle dot grid overlay */
.lp-hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 40%, black 20%, transparent 70%);
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-6) var(--space-16);
  margin-bottom: var(--space-32);
  font-size: var(--text-caption1);
  font-weight: var(--weight-semibold);
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lp-hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.lp-hero-title {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: var(--weight-bold);
  letter-spacing: -0.045em;
  line-height: 1.06;
  color: #FFFFFF;
  margin-bottom: var(--space-24);
}

.lp-hero-gradient {
  background: linear-gradient(135deg, #0A84FF 0%, #BF5AF2 40%, #FF375F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-subtitle {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: var(--weight-regular);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--leading-relaxed);
  max-width: 560px;
  margin: 0 auto var(--space-40);
}

.lp-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-16);
  flex-wrap: wrap;
}


/* ============================================================
   BUTTONS
   ============================================================ */

.lp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-12) var(--space-32);
  font-family: var(--font-system);
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: #FFFFFF;
  background: var(--color-accent);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 20px rgba(10, 132, 255, 0.35),
              0 0 0 1px rgba(10, 132, 255, 0.1);
  transition: all var(--duration-fast) var(--ease-default);
}

.lp-btn-primary:hover {
  filter: brightness(1.12);
  box-shadow: 0 4px 28px rgba(10, 132, 255, 0.45),
              0 0 0 1px rgba(10, 132, 255, 0.2);
  transform: translateY(-1px);
  opacity: 1;
}

.lp-btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.lp-btn-primary.lp-btn-lg {
  padding: var(--space-16) var(--space-40);
  font-size: var(--text-headline);
}

.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-12) var(--space-24);
  font-family: var(--font-system);
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--duration-fast) var(--ease-default);
}

.lp-btn-ghost:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  opacity: 1;
}

.lp-btn-ghost:active {
  transform: scale(0.98);
}


/* ============================================================
   HERO DASHBOARD SVG (Product Mockup)
   ============================================================ */

.lp-hero-preview {
  margin-top: var(--space-64);
  perspective: 1200px;
}

.lp-hero-dashboard {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(255, 255, 255, 0.05),
              0 0 60px rgba(10, 132, 255, 0.08);
  transform: rotateX(2deg);
  transition: transform var(--duration-slow) var(--ease-out);
}

.lp-hero-dashboard:hover {
  transform: rotateX(0deg);
}


/* ============================================================
   TRUST BAR
   ============================================================ */

.lp-trust {
  padding: var(--space-40) var(--space-32);
  border-bottom: 1px solid var(--color-separator);
  background: var(--color-bg);
}

.lp-trust-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lp-trust-label {
  font-size: var(--text-caption1);
  font-weight: var(--weight-semibold);
  color: var(--color-label-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-32);
}

.lp-trust-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-40);
}

.lp-trust-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.lp-trust-value {
  font-size: var(--text-title1);
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  color: var(--color-label);
}

.lp-trust-desc {
  font-size: var(--text-caption1);
  font-weight: var(--weight-medium);
  color: var(--color-label-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lp-trust-divider {
  width: 1px;
  height: 2.5rem;
  background: var(--color-separator);
}


/* ============================================================
   SECTIONS
   ============================================================ */

.lp-section {
  padding: calc(var(--space-64) + var(--space-32)) var(--space-32);
}

.lp-section--dark {
  background: #0A0A0F;
  color: #FFFFFF;
}

.lp-section--dark .lp-section-title {
  color: #FFFFFF;
}

.lp-section--dark .lp-section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.lp-section--dark .lp-label {
  color: var(--color-blue);
}

.lp-section-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.lp-section-header {
  text-align: center;
  margin-bottom: var(--space-64);
}

.lp-label {
  display: inline-block;
  font-size: var(--text-caption1);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-16);
}

.lp-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--weight-bold);
  letter-spacing: -0.035em;
  line-height: var(--leading-tight);
  color: var(--color-label);
  margin-bottom: var(--space-16);
}

.lp-section-desc {
  font-size: var(--text-body);
  color: var(--color-label-secondary);
  line-height: var(--leading-relaxed);
  max-width: 500px;
  margin: 0 auto;
}


/* ============================================================
   BENTO GRID (Features)
   ============================================================ */

.lp-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-16);
}

.lp-bento-card {
  background: var(--color-bg-grouped-secondary);
  border: 1px solid var(--color-separator);
  border-radius: var(--radius-xl);
  padding: var(--space-32);
  transition: box-shadow var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-default),
              border-color var(--duration-normal) var(--ease-default);
  overflow: hidden;
}

.lp-bento-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--color-accent) 20%, var(--color-separator));
}

.lp-bento-card--large {
  grid-column: 1 / -1;
}

.lp-bento-card--wide {
  grid-column: 1 / -1;
}

.lp-bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-20);
}

.lp-bento-icon svg {
  width: 24px;
  height: 24px;
}

.lp-bi-green  { background: color-mix(in srgb, var(--color-green) 12%, transparent); }
.lp-bi-green svg  { stroke: var(--color-green); }
.lp-bi-blue   { background: color-mix(in srgb, var(--color-blue) 12%, transparent); }
.lp-bi-blue svg   { stroke: var(--color-blue); }
.lp-bi-orange { background: color-mix(in srgb, var(--color-orange) 12%, transparent); }
.lp-bi-orange svg { stroke: var(--color-orange); }
.lp-bi-purple { background: color-mix(in srgb, var(--color-purple) 12%, transparent); }
.lp-bi-purple svg { stroke: var(--color-purple); }

.lp-bento-card h3 {
  font-size: var(--text-title3);
  font-weight: var(--weight-semibold);
  color: var(--color-label);
  margin-bottom: var(--space-8);
}

.lp-bento-card p {
  font-size: var(--text-subheadline);
  color: var(--color-label-secondary);
  line-height: var(--leading-relaxed);
  max-width: 480px;
}

/* Split layout for large/wide bento cards: text + visual side by side */
.lp-bento-card--large,
.lp-bento-card--wide {
  display: flex;
  gap: var(--space-32);
  align-items: center;
}

.lp-bento-card--large .lp-bento-card-text,
.lp-bento-card--wide .lp-bento-card-text {
  flex: 1;
  min-width: 0;
}

.lp-bento-card--large .lp-bento-card-visual,
.lp-bento-card--wide .lp-bento-card-visual {
  flex: 1;
  min-width: 0;
}

/* Visual container for inline illustrations */
.lp-bento-card-visual {
  margin-top: var(--space-20);
}

.lp-bento-card-visual--sm {
  margin-top: var(--space-16);
}

.lp-feature-illust {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}


/* ============================================================
   HOW IT WORKS (Steps)
   ============================================================ */

.lp-steps {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.lp-step {
  display: flex;
  gap: var(--space-24);
  align-items: flex-start;
}

.lp-step-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}

.lp-step-icon svg {
  width: 64px;
  height: 64px;
}

.lp-step-body {
  flex: 1;
}

.lp-step-number {
  font-size: var(--text-caption1);
  font-weight: var(--weight-bold);
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #0A84FF, #BF5AF2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-8);
}

.lp-step-body h3 {
  font-size: var(--text-title3);
  font-weight: var(--weight-semibold);
  color: #FFFFFF;
  margin-bottom: var(--space-8);
}

.lp-step-body p {
  font-size: var(--text-subheadline);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--leading-relaxed);
}

.lp-step-connector {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(10, 132, 255, 0.3), rgba(175, 82, 222, 0.15));
  margin-left: 31px;
  flex-shrink: 0;
}


/* ============================================================
   INDUSTRY CARDS
   ============================================================ */

.lp-industries {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
}

.lp-industry-card {
  padding: var(--space-32) var(--space-24);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-separator);
  background: var(--color-bg-grouped-secondary);
  transition: box-shadow var(--duration-normal) var(--ease-default),
              transform var(--duration-normal) var(--ease-default),
              border-color var(--duration-normal) var(--ease-default);
}

.lp-industry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--color-accent) 20%, var(--color-separator));
}

.lp-industry-illust {
  margin-bottom: var(--space-20);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.lp-industry-illust svg {
  width: 100%;
  height: auto;
  display: block;
}

.lp-industry-card h3 {
  font-size: var(--text-title3);
  font-weight: var(--weight-semibold);
  color: var(--color-label);
  margin-bottom: var(--space-8);
}

.lp-industry-card p {
  font-size: var(--text-subheadline);
  color: var(--color-label-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-16);
}

.lp-industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  list-style: none;
}

.lp-industry-tags li {
  padding: var(--space-4) var(--space-12);
  background: var(--color-fill-quaternary);
  border-radius: var(--radius-full);
  font-size: var(--text-caption2);
  font-weight: var(--weight-medium);
  color: var(--color-label-tertiary);
}


/* ============================================================
   CTA SECTION
   ============================================================ */

.lp-cta-section {
  position: relative;
  padding: calc(var(--space-64) + var(--space-48)) var(--space-32);
  text-align: center;
  background: #0A0A0F;
  overflow: hidden;
}

.lp-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.lp-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.lp-cta-glow--1 {
  width: 500px;
  height: 500px;
  top: -20%;
  left: 30%;
  background: radial-gradient(circle, rgba(10, 132, 255, 0.2) 0%, transparent 70%);
}

.lp-cta-glow--2 {
  width: 400px;
  height: 400px;
  bottom: -10%;
  right: 25%;
  background: radial-gradient(circle, rgba(175, 82, 222, 0.15) 0%, transparent 70%);
}

.lp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.lp-cta-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--weight-bold);
  letter-spacing: -0.03em;
  line-height: var(--leading-tight);
  color: #FFFFFF;
  margin-bottom: var(--space-16);
}

.lp-cta-inner p {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-40);
}


/* ============================================================
   FOOTER
   ============================================================ */

.lp-footer {
  padding: var(--space-48) var(--space-32) var(--space-32);
  border-top: 1px solid var(--color-separator);
  background: var(--color-bg);
}

.lp-footer-inner {
  max-width: 1040px;
  margin: 0 auto;
}

.lp-footer-top {
  display: flex;
  justify-content: space-between;
  gap: var(--space-64);
  margin-bottom: var(--space-40);
}

.lp-footer-brand-col {
  max-width: 280px;
}

.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: var(--space-10);
  font-size: var(--text-headline);
  font-weight: var(--weight-bold);
  color: var(--color-label);
  margin-bottom: var(--space-12);
}

.lp-footer-brand img {
  border-radius: var(--radius-sm);
}

.lp-footer-tagline {
  font-size: var(--text-subheadline);
  color: var(--color-label-tertiary);
  line-height: var(--leading-relaxed);
}

.lp-footer-links {
  display: flex;
  gap: var(--space-64);
}

.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
}

.lp-footer-col h4 {
  font-size: var(--text-caption1);
  font-weight: var(--weight-semibold);
  color: var(--color-label-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: var(--space-4);
}

.lp-footer-col a {
  font-size: var(--text-subheadline);
  color: var(--color-label-secondary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-default);
}

.lp-footer-col a:hover {
  color: var(--color-label);
  opacity: 1;
}

.lp-footer-bottom {
  padding-top: var(--space-24);
  border-top: 1px solid var(--color-separator);
}

.lp-footer-copy {
  font-size: var(--text-caption1);
  color: var(--color-label-tertiary);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */

.lp-fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

.lp-fade-in.lp-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  .lp-header {
    padding: 0 var(--space-16);
  }

  .lp-nav-link {
    display: none;
  }

  .lp-hero {
    min-height: auto;
    padding: calc(3.75rem + var(--space-40)) var(--space-16) var(--space-32);
  }

  .lp-hero-title {
    font-size: clamp(2rem, 8vw, 2.75rem);
  }

  .lp-hero-subtitle {
    font-size: var(--text-body);
  }

  .lp-hero-glow--1 { width: 300px; height: 300px; }
  .lp-hero-glow--2 { width: 250px; height: 250px; }
  .lp-hero-glow--3 { width: 200px; height: 200px; }

  .lp-hero-actions {
    flex-direction: column;
    gap: var(--space-12);
  }

  .lp-hero-preview {
    margin-top: var(--space-40);
  }

  .lp-hero-dashboard {
    transform: none;
  }

  .lp-hero-dashboard:hover {
    transform: none;
  }

  .lp-trust {
    padding: var(--space-32) var(--space-16);
  }

  .lp-trust-metrics {
    flex-wrap: wrap;
    gap: var(--space-24);
  }

  .lp-trust-divider {
    display: none;
  }

  .lp-trust-metric {
    min-width: calc(50% - var(--space-12));
  }

  .lp-section {
    padding: var(--space-48) var(--space-16);
  }

  .lp-section-header {
    margin-bottom: var(--space-40);
  }

  .lp-bento {
    grid-template-columns: 1fr;
  }

  .lp-bento-card {
    padding: var(--space-24);
  }

  .lp-bento-card--large,
  .lp-bento-card--wide {
    grid-column: 1;
    flex-direction: column;
  }

  .lp-industries {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .lp-industry-card {
    padding: var(--space-24);
  }

  .lp-step {
    gap: var(--space-20);
  }

  .lp-step-connector {
    margin-left: 20px;
    height: 32px;
  }

  .lp-cta-section {
    padding: var(--space-64) var(--space-16);
  }

  .lp-footer {
    padding: var(--space-32) var(--space-16);
  }

  .lp-footer-top {
    flex-direction: column;
    gap: var(--space-32);
  }

  .lp-footer-brand-col {
    max-width: 100%;
  }

  .lp-footer-links {
    gap: var(--space-40);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .lp-header {
    padding: 0 var(--space-24);
  }

  .lp-hero {
    padding-left: var(--space-24);
    padding-right: var(--space-24);
  }

  .lp-trust-metrics {
    gap: var(--space-32);
  }

  .lp-industries {
    gap: var(--space-12);
  }

  .lp-section {
    padding-left: var(--space-24);
    padding-right: var(--space-24);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lp-header {
    transition: none;
  }

  .lp-hero-glow {
    animation: none;
  }

  .lp-hero-badge-dot {
    animation: none;
  }

  .lp-hero-dashboard {
    transform: none;
  }
}


/* ============================================================
   DARK MODE OVERRIDES FOR HERO ELEMENTS IN LIGHT MODE
   The hero & CTA sections are always dark.
   These selectors ensure non-dark sections use proper colors.
   ============================================================ */

/* The hero text colors are hardcoded to white — no override needed.
   Industry/feature cards inherit from the design system tokens.
   All section-specific colors are handled inline above. */
