/* SkyStream Learn More page */

:root {
  --tas-gold: #f3b20c;
  --tas-gold-bright: #ffc107;
  --tas-gradient-top: #3a3d40;
  --tas-gradient-mid: #2a2d31;
  --tas-gradient-bottom: #121212;
  --tas-purple-border: #613fe7;
  --tas-text-muted: #9ca3af;
  --tas-text-light: #d1d5db;
  --tas-nav-pill: #0d0d0d;
  --tas-max: 1200px;
  --tas-font-display: "Clash Grotesk", "Segoe UI", system-ui, sans-serif;
  --tas-font-body: "Manrope", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
}

body.tas-learn-more-page {
  margin: 0;
  min-height: 100vh;
  color: #fff;
  font-family: var(--tas-font-body);
  -webkit-font-smoothing: antialiased;
  background: #121212;
}

/* Full-page scroll gradient: lighter charcoal at top → near-black at bottom */
.lm-page-gradient {
  background: linear-gradient(
    180deg,
    #5c6066 0%,
    #4e5258 8%,
    #43474d 16%,
    #3a3d40 28%,
    #32363a 42%,
    #2a2d31 56%,
    #222528 70%,
    #1a1c1f 84%,
    #121212 100%
  );
  min-height: 100vh;
}

#main {
  position: relative;
  background: transparent;
}

.lm-skip {
  position: absolute;
  left: -9999px;
}

/* Header */
.lm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 24px;
}

.lm-header__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.lm-logo img {
  width: 36px;
  height: 75px;
  flex: 0 0 36px;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
}

.lm-logo span {
  font-family: var(--tas-font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--tas-gold);
  letter-spacing: 0.2px;
}

.lm-nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background: var(--tas-nav-pill);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.lm-nav-pill a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}

.lm-nav-pill a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.lm-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  background: #202020;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 7px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.lm-contact-btn:hover {
  background: #2a2a2a;
}

/* Hero */
.lm-hero {
  background: transparent;
  padding: 120px 24px 64px;
}

.lm-hero__inner {
  max-width: var(--tas-max);
  margin: 0 auto;
}

.lm-hero h1 {
  font-family: var(--tas-font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: -0.02em;
}

.lm-hero h1 .lm-gold {
  color: var(--tas-gold);
}

.lm-hero__desc {
  max-width: 920px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--tas-text-light);
  margin: 0 0 40px;
}

.lm-dashboard {
  border: 2px solid var(--tas-purple-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  background: #15171e;
}

.lm-dashboard img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
  min-height: 0;
  max-height: none;
}

/* Enterprise */
.lm-enterprise {
  background: transparent;
  padding: 100px 24px 120px;
  text-align: center;
}

.lm-enterprise h2 {
  font-family: var(--tas-font-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.lm-enterprise__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--tas-text-light);
  margin: 0 auto 36px;
  max-width: 640px;
  line-height: 1.5;
}

.lm-btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #000;
  color: #fff;
  font-family: var(--tas-font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  margin-bottom: 80px;
  transition: transform 0.2s, background 0.2s;
}

.lm-btn-demo:hover {
  background: #1a1a1a;
  transform: translateY(-1px);
}

.lm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.lm-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lm-grid-item svg {
  width: 40px;
  height: 40px;
  stroke: var(--tas-text-light);
  fill: none;
  stroke-width: 1.5;
}

.lm-grid-item span {
  font-family: var(--tas-font-display);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

/* Mission */
.lm-mission {
  background: transparent;
  padding: 100px 24px 120px;
}

.lm-mission__inner {
  max-width: var(--tas-max);
  margin: 0 auto;
}

.lm-mission__intro {
  margin-bottom: 64px;
}

.lm-mission__intro h2 {
  font-family: var(--tas-font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  color: #f3f4f6;
  margin: 0 0 20px;
  max-width: 900px;
}

.lm-mission__intro h2 .lm-gold {
  color: var(--tas-gold);
}

.lm-mission__intro p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--tas-text-muted);
  margin: 0;
  max-width: 820px;
  line-height: 1.45;
}

.lm-process {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 80px;
}

.lm-process__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--tas-text-muted);
}

.lm-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: center;
}

.lm-stat__value {
  font-family: var(--tas-font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  color: var(--tas-gold);
  line-height: 1;
  margin-bottom: 12px;
}

.lm-stat__label {
  font-size: 1rem;
  color: var(--tas-text-muted);
}

/* Brand content block (sits on page gradient; site footer follows below) */
.lm-brand {
  background: transparent;
  padding: 80px 24px 48px;
}

.lm-brand__inner {
  max-width: var(--tas-max);
  margin: 0 auto;
}

.lm-brand h2 {
  font-family: var(--tas-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.15;
  color: #fff;
}

.lm-brand h2 .lm-gold {
  color: var(--tas-gold);
}

.lm-brand h3 {
  font-family: var(--tas-font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px;
}

.lm-brand__tagline {
  font-size: 13px;
  color: #6b7280;
  margin: 0 0 32px;
}

.lm-brand p {
  color: var(--tas-text-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 0 20px;
}

.lm-trusted {
  margin-top: 48px;
}

.lm-trusted h4 {
  font-size: 14px;
  color: var(--tas-text-muted);
  font-weight: 500;
  margin: 0 0 20px;
}

.lm-trusted__list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.lm-trusted__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.lm-trusted__icon {
  width: 20px;
  height: 20px;
  border: 1.5px solid #fff;
  flex-shrink: 0;
}

.lm-trusted__icon--circle {
  border-radius: 50%;
}

.lm-trusted__icon--triangle {
  width: 0;
  height: 0;
  border: none;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #fff;
}

.lm-shared-footer {
  width: 100%;
  margin-top: 0;
  background: #000;
}

.lm-shared-footer #footer {
  width: 100%;
}

/* Scroll reveal */
html.tas-animations-ready .lm-scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 48px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--lm-reveal-delay, 0ms);
}

html.tas-animations-ready .lm-scroll-reveal.lm-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .lm-scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 900px) {
  .lm-nav-pill {
    display: none;
  }

  .lm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

}

/* Framer footer bundle resets body; keep page gradient visible */
html body.tas-learn-more-page {
  background: #121212 !important;
}

@media (max-width: 560px) {
  .lm-stats {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .lm-grid {
    grid-template-columns: 1fr 1fr;
  }
}
