/* Landing home — matches mockup layout with DigitalWall theme tokens */

.landing-page {
  --landing-dark: var(--ink);
  --landing-dark-2: var(--charcoal-2);
  --landing-surface: var(--charcoal);
  --landing-surface-2: var(--charcoal-2);
  --landing-text: var(--white);
  --landing-text-muted: var(--muted);
  --landing-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  --landing-shadow-lg: 0 28px 64px rgba(0, 0, 0, 0.45);
  --glow-a: rgba(245, 130, 12, 0.16);
  --glow-b: rgba(34, 197, 94, 0.1);
  --glow-c: rgba(56, 189, 248, 0.08);
  --section-base: #17181B;
  --section-base-alt: #1C1D22;
  overflow-x: clip;
  background: var(--section-base);
}

.landing-page section {
  --bg-x1: 12%;
  --bg-y1: 8%;
  --bg-x2: 88%;
  --bg-y2: 18%;
  --bg-x3: 50%;
  --bg-y3: 100%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 72px 0;
  color: var(--white);
  border-top: 1px solid var(--hairline);
  background-color: var(--section-base);
  background-image:
    radial-gradient(ellipse 75% 55% at var(--bg-x1) var(--bg-y1), var(--glow-a), transparent 58%),
    radial-gradient(ellipse 65% 50% at var(--bg-x2) var(--bg-y2), var(--glow-b), transparent 55%),
    radial-gradient(ellipse 80% 45% at var(--bg-x3) var(--bg-y3), var(--glow-c), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 35%, rgba(0, 0, 0, 0.18));
  background-size: 160% 160%, 150% 150%, 140% 140%, 100% 100%;
  background-position: 0% 40%, 100% 0%, 50% 100%, 0 0;
  animation: landing-mesh-drift 28s ease-in-out infinite alternate;
}

.landing-page section > .wrap {
  position: relative;
  z-index: 1;
}

/* Soft animated grid + sheen */
.landing-page section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, #000 20%, transparent 75%);
  opacity: 0.35;
  animation: landing-grid-pan 48s linear infinite;
}

/* Floating orb */
.landing-page section::after {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  top: -12%;
  right: -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--glow-a), transparent 68%);
  filter: blur(8px);
  opacity: 0.85;
  animation: landing-orb-float 16s ease-in-out infinite;
}

/* Alternate section palette / orb placement */
.landing-page section:nth-child(even) {
  --glow-a: rgba(34, 197, 94, 0.12);
  --glow-b: rgba(245, 130, 12, 0.14);
  --glow-c: rgba(56, 189, 248, 0.1);
  background-color: var(--section-base-alt);
  animation-duration: 32s;
  animation-direction: alternate-reverse;
}

.landing-page section:nth-child(even)::after {
  top: auto;
  bottom: -18%;
  right: auto;
  left: -10%;
  background: radial-gradient(circle at 60% 40%, var(--glow-b), transparent 68%);
  animation-duration: 20s;
  animation-direction: reverse;
}

.landing-page section:nth-child(3n)::after {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: 35%;
  right: 8%;
  left: auto;
  bottom: auto;
  background: radial-gradient(circle at 50% 50%, var(--glow-c), transparent 70%);
  animation-duration: 22s;
}

.landing-page .landing-hero {
  --glow-a: rgba(245, 130, 12, 0.2);
  --glow-b: rgba(34, 197, 94, 0.1);
  --glow-c: rgba(56, 189, 248, 0.08);
  padding: 144px 0 144px;
  min-height: calc(100vh - var(--header-h, 82px));
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--hairline);
  animation-duration: 24s;
}

.landing-page .landing-hero::after {
  width: min(60vw, 640px);
  height: min(60vw, 640px);
  top: -18%;
  right: -12%;
  opacity: 1;
}

main:has(.landing-page) {
  padding-top: 0;
}

.landing-section--light {
  color: var(--white);
}

.landing-section--light .landing-eyebrow {
  color: var(--accent);
}

.landing-section--light .landing-section-title {
  color: var(--white);
}

.landing-section--light .landing-section-subtitle {
  color: var(--muted);
}

@keyframes landing-mesh-drift {
  0% {
    background-position: 0% 40%, 100% 0%, 50% 100%, 0 0;
  }
  50% {
    background-position: 40% 10%, 60% 50%, 30% 80%, 0 0;
  }
  100% {
    background-position: 80% 60%, 20% 30%, 70% 20%, 0 0;
  }
}

@keyframes landing-grid-pan {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 56px 56px, 56px 56px;
  }
}

@keyframes landing-orb-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(-4%, 6%, 0) scale(1.08);
  }
  66% {
    transform: translate3d(5%, -4%, 0) scale(0.94);
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page section,
  .landing-page section::before,
  .landing-page section::after {
    animation: none !important;
  }
}

@media (max-width: 900px) {
  .landing-page section {
    background-size: 120% 120%, 120% 120%, 120% 120%, 100% 100%;
    animation-duration: 36s;
  }

  .landing-page section::before {
    opacity: 0.22;
    animation-duration: 60s;
  }

  .landing-page section::after {
    width: min(70vw, 360px);
    height: min(70vw, 360px);
    filter: blur(12px);
    opacity: 0.7;
  }
}

/* Hero */
.landing-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.landing-hero__content {
  text-align: left;
}

.landing-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 20px;
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
}

.landing-hero h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.08;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 540px;
}

.landing-hero h1 .accent {
  color: var(--accent);
}

.landing-hero__desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 500px;
  margin-bottom: 28px;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.landing-btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.landing-btn-arrow svg {
  width: 18px;
  height: 18px;
}

.landing-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.landing-btn-play svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.landing-hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.landing-pill {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--hairline-2);
  background: rgba(255, 255, 255, 0.04);
}

/* Hero preview — dashboard + mobile live preview */
.landing-hero__visual {
  position: relative;
  min-height: 480px;
}

.landing-hero-preview {
  position: relative;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  padding-bottom: 8px;
  padding-top: 12px;
}

.landing-hero-preview__dashboard {
  position: relative;
  z-index: 1;
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--landing-shadow-lg);
  margin-left: 110px;
  min-height: 320px;
}

.landing-hero-preview__window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.landing-hero-preview__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.landing-hero-preview__dot--accent { background: var(--accent); }
.landing-hero-preview__dot--eco { background: var(--eco); }
.landing-hero-preview__dot--muted { background: var(--muted-2); }

.landing-hero-preview__window-title {
  margin-left: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}

.landing-hero-preview__dash-mock {
  margin: 0;
  padding: 20px;
  border-radius: 12px;
}

.landing-hero-preview__dash-mock .dash-row {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.landing-hero-preview__dash-mock .dash-stat .num {
  font-size: 22px;
}

.landing-hero-preview__dash-mock .dash-stat .lbl {
  font-size: 13px;
}

.landing-hero-preview__mobile {
  position: absolute;
  left: 0;
  bottom: -150px;
  z-index: 2;
  width: 300px;
  margin: 10px;
}

.landing-hero-preview__phone-outer {
  width: 300px;
  height: calc(300px * 844 / 390);
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 28px 64px -16px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: var(--ink);
}

.landing-hero-preview__phone-inner {
  width: 390px;
  height: 844px;
  transform: scale(calc(300 / 390));
  transform-origin: top left;
}

.landing-hero-preview__phone-inner iframe {
  width: 390px !important;
  height: 844px !important;
  border: none !important;
  display: block;
  transform: none !important;
  overflow: hidden;
}

.landing-hero-preview__mobile .dash-caption {
  font-size: 12px;
  margin-top: 12px;
  text-align: center;
  max-width: 300px;
}

/* Trusted */
.landing-trusted {
  padding: 56px 0;
}

.landing-trusted__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C8CCD4;
  margin: 0 0 28px;
}

.landing-trusted__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.landing-trusted__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--hairline-2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.landing-trusted__logo:hover {
  border-color: rgba(245, 130, 12, 0.4);
  background: rgba(245, 130, 12, 0.06);
  transform: translateY(-2px);
}

.landing-trusted__mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(245, 130, 12, 0.28);
}

.landing-trusted__name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #E4E7ED;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* Section header */
.landing-section-header {
  margin-bottom: 48px;
}

.landing-section-header--center {
  text-align: center;
}

.landing-section-header--center .landing-section-subtitle {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.landing-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 25px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.landing-section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 12px;
}

.landing-section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

/* Stats */
.landing-stats {
  padding: 56px 0;
}

.landing-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.landing-stat {
  text-align: center;
  padding: 12px 8px;
}

.landing-stat__icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.landing-stat__value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.landing-stat__label {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* Comparison VS */
.landing-vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}

.landing-vs__card {
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--hairline-2);
  background: var(--charcoal-2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.landing-vs__card--old {
  background: linear-gradient(160deg, rgba(220, 60, 50, 0.18) 0%, rgba(40, 22, 22, 0.95) 55%, rgba(28, 20, 20, 0.98) 100%);
  border-color: rgba(248, 113, 113, 0.45);
}

.landing-vs__card--new {
  background: linear-gradient(160deg, rgba(245, 130, 12, 0.2) 0%, rgba(42, 30, 16, 0.95) 55%, rgba(28, 24, 18, 0.98) 100%);
  border-color: rgba(245, 130, 12, 0.55);
}

.landing-vs__card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.landing-vs__card--old .landing-vs__card-title {
  color: #FCA5A5;
}

.landing-vs__card--new .landing-vs__card-title {
  color: #FFB04A;
}

.landing-vs__list {
  list-style: none;
  font-size: 15px;
  line-height: 1.9;
  color: #E8ECF2;
  font-weight: 500;
}

.landing-vs__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 2px;
}

.landing-vs__list--old li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #F87171;
  font-weight: 700;
  font-size: 13px;
}

.landing-vs__list--new li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFB04A;
  font-weight: 700;
}

.landing-vs__badge {
  align-self: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #2A2F38;
  border: 2px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 1;
  flex-shrink: 0;
}

/* Smart Networking highlight */
.landing-smart-network__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.landing-smart-network__card {
  background: var(--charcoal-2);
  border: 1px solid var(--hairline-2);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: var(--landing-shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.landing-smart-network__card:hover {
  border-color: rgba(245, 130, 12, 0.45);
  transform: translateY(-2px);
}

.landing-smart-network__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
  background: rgba(245, 130, 12, 0.14);
  border: 1px solid rgba(245, 130, 12, 0.28);
}

.landing-smart-network__card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 8px;
}

.landing-smart-network__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #D5DBE6;
}

.landing-smart-network__cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.landing-smart-network__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 650;
  font-size: 15px;
  text-decoration: none;
}

.landing-smart-network__link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.landing-smart-network__link:hover svg {
  transform: translateX(3px);
}

/* Process */
.landing-process__track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}

.landing-process-step {
  position: relative;
  text-align: center;
  padding: 20px 12px;
  background: var(--charcoal-2);
  border: 1px solid var(--hairline-2);
  border-radius: 16px;
  box-shadow: var(--landing-shadow);
}

.landing-process-step__arrow {
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: var(--muted-2);
}

.landing-process-step__arrow svg {
  width: 20px;
  height: 20px;
}

.landing-process-step__icon {
  font-size: 32px;
  margin-bottom: 8px;
  line-height: 1;
}

.landing-process-step__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #17181B;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.landing-process-step__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.landing-process-step__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

/* Feature cards */
.landing-solutions {
  position: relative;
}

.landing-trusted__logo,
.landing-smart-network__card,
.landing-process-step,
.landing-feature-card,
.landing-testimonial {
  backdrop-filter: blur(6px);
}

.landing-solutions__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.landing-feature-card {
  --feature-tone: var(--accent);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--charcoal-2);
  border: 1px solid var(--hairline-2);
  border-radius: 18px;
  padding: 26px 22px 22px;
  box-shadow: var(--landing-shadow);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.landing-feature-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--feature-tone), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.landing-feature-card--link {
  cursor: pointer;
}

.landing-feature-card--link:hover,
.landing-feature-card--link:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(245, 130, 12, 0.45);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
  outline: none;
}

.landing-feature-card--link:hover::before,
.landing-feature-card--link:focus-visible::before {
  opacity: 1;
}

.landing-feature-card--link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.landing-feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  border: 1px solid color-mix(in srgb, var(--feature-tone) 30%, transparent);
  background: color-mix(in srgb, var(--feature-tone) 16%, transparent);
  transition: transform 0.25s ease;
}

.landing-feature-card--link:hover .landing-feature-card__icon {
  transform: scale(1.06);
}

.landing-feature-card--accent { --feature-tone: var(--accent); }
.landing-feature-card--blue { --feature-tone: #5B9CFF; }
.landing-feature-card--teal { --feature-tone: #2DD4BF; }
.landing-feature-card--sky { --feature-tone: #38BDF8; }
.landing-feature-card--purple { --feature-tone: #A78BFA; }
.landing-feature-card--orange { --feature-tone: #FB923C; }
.landing-feature-card--eco { --feature-tone: #4ADE80; }

.landing-feature-card__body {
  flex: 1 1 auto;
}

.landing-feature-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.landing-feature-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: #D0D5DE;
  margin: 0 0 20px;
}

.landing-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
  font-size: 14px;
  font-weight: 650;
  color: var(--accent);
}

.landing-feature-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.landing-feature-card--link:hover .landing-feature-card__link svg,
.landing-feature-card--link:focus-visible .landing-feature-card__link svg {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .landing-trusted__logo,
  .landing-feature-card,
  .landing-feature-card__icon,
  .landing-feature-card__link svg {
    transition: none;
  }

  .landing-trusted__logo:hover,
  .landing-feature-card--link:hover,
  .landing-feature-card--link:focus-visible {
    transform: none;
  }
}

/* Testimonials */
.landing-testimonials__carousel {
  position: relative;
  padding: 0 44px;
}

.landing-testimonials-swiper {
  overflow: hidden;
  padding: 4px 2px 8px;
}

.landing-testimonials-swiper .swiper-slide {
  height: auto;
}

.landing-testimonial {
  background: var(--charcoal-2);
  border: 1px solid var(--hairline-2);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--landing-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.landing-testimonials-swiper .swiper-slide-active .landing-testimonial {
  border-color: rgba(245, 130, 12, 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.landing-testimonials__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--hairline-2);
  background: var(--charcoal-2);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.landing-testimonials__nav:hover {
  background: var(--charcoal);
  border-color: var(--accent);
  color: var(--accent);
}

.landing-testimonials__nav--prev {
  left: 0;
}

.landing-testimonials__nav--next {
  right: 0;
}

.landing-testimonial__quote-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 8px;
}

.landing-testimonial__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 20px;
}

.landing-testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-testimonial__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.landing-testimonial__name {
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}

.landing-testimonial__role {
  font-size: 13px;
  color: var(--muted);
}

.landing-testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  position: static;
}

.landing-testimonials__dots .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hairline-2);
  opacity: 1;
  margin: 0 !important;
  transition: width 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.landing-testimonials__dots .swiper-pagination-bullet-active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* CTA band */
.landing-cta-band {
  padding: 48px 0 80px;
}

.landing-cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 36px 40px;
  background:
    linear-gradient(135deg, rgba(245, 130, 12, 0.14), transparent 42%),
    linear-gradient(160deg, rgba(42, 43, 48, 0.96), rgba(28, 29, 34, 0.98));
  border: 1px solid var(--accent-line);
  border-radius: 20px;
  box-shadow: var(--landing-shadow-lg);
  backdrop-filter: blur(8px);
}

.landing-cta-band__icon {
  font-size: 40px;
  flex-shrink: 0;
  line-height: 1;
}

.landing-cta-band__copy {
  flex: 1;
  min-width: 0;
}

.landing-cta-band__title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.landing-cta-band__subtitle {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.landing-cta-band__btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Nav text CTAs (home layout) */
body.landing-site .nav-controls .nav-auth-btn--text,
body.landing-site .nav-controls .nav-cta--text {
  width: auto;
  height: auto;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  gap: 0;
}

body.landing-site .nav-controls .nav-auth-btn--text svg,
body.landing-site .nav-controls .nav-cta--text svg {
  display: none;
}

body.landing-site .nav-controls .nav-auth-btn--text {
  border: 1px solid var(--hairline-2);
  background: transparent;
  color: var(--white);
}

body.landing-site .nav-controls .nav-cta--text {
  padding: 10px 22px;
}

/* Responsive */
@media (max-width: 1100px) {
  .landing-smart-network__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-solutions__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .landing-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .landing-page section {
    padding: 56px 0;
  }

  .landing-page .landing-hero {
    padding: 112px 0 64px;
    min-height: auto;
  }

  .landing-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .landing-hero__content {
    text-align: center;
  }

  .landing-hero h1,
  .landing-hero__desc {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero__actions,
  .landing-hero__pills {
    justify-content: center;
  }

  .landing-hero__actions {
    flex-direction: column;
    align-items: stretch;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .landing-hero__actions .btn-primary,
  .landing-hero__actions .btn-secondary,
  .landing-hero__actions .landing-btn-arrow,
  .landing-hero__actions .landing-btn-play {
    width: 100%;
    justify-content: center;
  }

  .landing-hero__visual {
    min-height: 0;
    overflow: hidden;
  }

  .landing-hero__visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .landing-hero-preview {
    margin: 0 auto;
    max-width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
  }

  /* Stack phone above dashboard on tablet/mobile */
  .landing-hero-preview__dashboard {
    margin-left: 0;
    margin-top: 0;
    order: 2;
  }

  .landing-hero-preview__mobile {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(280px, 72vw);
    margin: 0 auto 20px;
    order: 1;
  }

  .landing-hero-preview__phone-outer {
    width: 100%;
    height: calc(min(280px, 72vw) * 844 / 390);
    margin: 0 auto;
  }

  .landing-hero-preview__phone-inner {
    transform: scale(calc(min(280px, 72vw) / 390));
  }

  .landing-hero-preview__mobile .dash-caption {
    max-width: none;
  }

  .landing-trusted {
    padding: 40px 0;
  }

  .landing-trusted__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .landing-section-header {
    margin-bottom: 32px;
  }

  .landing-vs {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .landing-vs__badge {
    margin: 0 auto;
  }

  .landing-vs__card {
    padding: 24px;
  }

  .landing-process__track {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 16px;
  }

  .landing-process-step__arrow {
    display: none;
  }

  .landing-solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-testimonials__carousel {
    padding: 0 36px;
  }

  .landing-cta-band__inner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .landing-cta-band__btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .landing-page section {
    padding: 48px 0;
  }

  .landing-page .landing-hero {
    padding: 96px 0 48px;
  }

  .landing-hero h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .landing-hero__desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .landing-badge {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }

  .landing-hero__pills {
    gap: 8px;
  }

  .landing-pill {
    font-size: 12px;
    padding: 6px 10px;
  }

  .landing-stats {
    padding: 40px 0;
  }

  .landing-stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
  }

  .landing-stat {
    padding: 10px 6px;
  }

  .landing-stat__icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .landing-stat__label {
    font-size: 12px;
  }

  .landing-trusted__logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-trusted__logo {
    min-height: 52px;
    padding: 10px 12px;
  }

  .landing-trusted__name {
    font-size: 14px;
  }

  .landing-solutions__grid {
    grid-template-columns: 1fr;
  }

  .landing-smart-network__grid {
    grid-template-columns: 1fr;
  }

  .landing-feature-card {
    padding: 22px 18px;
  }

  .landing-testimonial {
    padding: 22px;
  }

  .landing-testimonials__carousel {
    padding: 0 28px;
  }

  .landing-testimonials__nav {
    width: 34px;
    height: 34px;
  }

  .landing-vs__card {
    padding: 20px;
  }

  .landing-vs__list {
    font-size: 14px;
    line-height: 1.75;
  }

  .landing-section-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .landing-section-subtitle {
    font-size: 15px;
  }

  .landing-hero-preview__mobile {
    width: min(260px, 78vw);
    margin: 0 auto 16px;
  }

  .landing-hero-preview__phone-outer {
    width: 100%;
    height: calc(min(260px, 78vw) * 844 / 390);
  }

  .landing-hero-preview__phone-inner {
    transform: scale(calc(min(260px, 78vw) / 390));
  }

  .landing-hero-preview__dash-mock {
    padding: 14px;
  }

  .landing-hero-preview__dash-mock .dash-row {
    grid-template-columns: 1fr;
  }

  .landing-cta-band__inner {
    padding: 28px 18px;
  }

  .landing-cta-band__title {
    font-size: 22px;
  }

  .landing-cta-band__subtitle {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .landing-stats__grid {
    grid-template-columns: 1fr;
  }

  .landing-hero__actions {
    max-width: none;
  }
}

@media (max-width: 1320px) {
  body.landing-site .nav-controls .nav-auth-btn--text,
  body.landing-site .nav-controls .nav-cta--text {
    padding: 8px 14px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  body.landing-site .nav-controls .nav-auth-btn--text span,
  body.landing-site .nav-controls .nav-cta--text span {
    display: none;
  }

  body.landing-site .nav-controls .nav-auth-btn--text,
  body.landing-site .nav-controls .nav-cta--text {
    width: 38px;
    height: 38px;
    padding: 0;
    border-radius: 50%;
  }

  body.landing-site .nav-controls .nav-auth-btn--text svg,
  body.landing-site .nav-controls .nav-cta--text svg {
    display: block;
  }
}
