@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

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

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1A1D26;
  background-color: #FAFBFD;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  color: #1A2744;
}

h1 {
  font-size: clamp(2.4rem, 5vw + 0.5rem, 4.2rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw + 0.3rem, 2.8rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.3rem, 2vw + 0.2rem, 1.6rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
}

p {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.7;
  color: #4A5068;
  max-width: 65ch;
}

a {
  color: #D44DA5;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #B83A8C;
}

/* === UTILITY === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* === HEADER / NAV === */
.lt-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 251, 253, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 39, 68, 0.06);
}

.lt-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: clamp(64px, 8vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.lt-header__nav-left,
.lt-header__nav-right {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  flex: 1;
}

.lt-header__nav-right {
  justify-content: flex-end;
}

.lt-header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #1A2744;
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.lt-header__logo:hover {
  color: #D44DA5;
}

.lt-header__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #D44DA5, #1A2744);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 600;
}

.lt-header__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A5068;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.lt-header__link:hover {
  color: #D44DA5;
  background: rgba(212, 77, 165, 0.06);
}

.lt-header__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #1A2744;
  padding: 0.55rem 1.3rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.lt-header__cta:hover {
  background: #D44DA5;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 77, 165, 0.3);
}

.lt-header__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.lt-header__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A2744;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === HERO === */
.lt-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.lt-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 77, 165, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.lt-hero__content {
  position: relative;
  z-index: 1;
}

.lt-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.75rem, 1.2vw, 0.85rem);
  font-weight: 500;
  color: #D44DA5;
  background: rgba(212, 77, 165, 0.08);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.lt-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: #39FF85;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.lt-hero__title {
  font-size: clamp(2.4rem, 5.5vw + 0.3rem, 4.2rem);
  font-weight: 800;
  color: #1A2744;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.lt-hero__title-accent {
  background: linear-gradient(135deg, #D44DA5, #E879A8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lt-hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: #5A6178;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.lt-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === BUTTONS === */
.lt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.lt-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #D44DA5, #C43D96);
  box-shadow: 0 2px 12px rgba(212, 77, 165, 0.25);
}

.lt-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 77, 165, 0.35);
  color: #fff;
}

.lt-btn--secondary {
  color: #1A2744;
  background: #fff;
  border: 1.5px solid rgba(26, 39, 68, 0.12);
}

.lt-btn--secondary:hover {
  border-color: #D44DA5;
  color: #D44DA5;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.lt-btn--outline {
  color: #D44DA5;
  background: transparent;
  border: 1.5px solid rgba(212, 77, 165, 0.3);
}

.lt-btn--outline:hover {
  background: rgba(212, 77, 165, 0.06);
  border-color: #D44DA5;
}

/* === SECTIONS === */
.lt-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.lt-section--alt {
  background: #F0F2F8;
}

.lt-section--dark {
  background: #1A2744;
  color: #fff;
}

.lt-section--dark h2,
.lt-section--dark h3,
.lt-section--dark h4 {
  color: #fff;
}

.lt-section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.lt-section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.lt-section__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.7rem, 1vw, 0.8rem);
  font-weight: 600;
  color: #D44DA5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: block;
}

.lt-section__heading {
  margin-bottom: 1rem;
}

.lt-section__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: #5A6178;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === CARDS === */
.lt-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.lt-card {
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(26, 39, 68, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.lt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.08);
  border-color: rgba(212, 77, 165, 0.15);
}

.lt-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.lt-card__icon--pink {
  background: rgba(212, 77, 165, 0.1);
  color: #D44DA5;
}

.lt-card__icon--blue {
  background: rgba(26, 39, 68, 0.08);
  color: #1A2744;
}

.lt-card__icon--green {
  background: rgba(57, 255, 133, 0.12);
  color: #00B359;
}

.lt-card__title {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: 700;
  color: #1A2744;
  margin-bottom: 0.6rem;
}

.lt-card__text {
  font-size: 0.92rem;
  color: #5A6178;
  line-height: 1.65;
}

/* === CODE BLOCK === */
.lt-code-block {
  background: #1A2744;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  color: #E4E6ED;
  overflow-x: auto;
  line-height: 1.8;
  position: relative;
}

.lt-code-block--light {
  background: #F0F2F8;
  color: #4A5068;
  border: 1px solid rgba(26, 39, 68, 0.06);
}

.lt-code-keyword { color: #D44DA5; }
.lt-code-string { color: #39FF85; }
.lt-code-comment { color: #6B7280; font-style: italic; }
.lt-code-func { color: #60A5FA; }

.lt-code-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 1rem;
}

.lt-code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.lt-code-dots span:nth-child(1) { background: #FF5F57; }
.lt-code-dots span:nth-child(2) { background: #FEBC2E; }
.lt-code-dots span:nth-child(3) { background: #28C840; }

/* === STATS BAR === */
.lt-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.lt-stat {
  text-align: center;
}

.lt-stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1A2744;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.lt-stat__number--accent {
  color: #D44DA5;
}

.lt-stat__label {
  font-size: 0.85rem;
  color: #5A6178;
  font-weight: 500;
}

/* === PRICING CARDS === */
.lt-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: start;
}

.lt-pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(1.8rem, 3vw, 2.5rem);
  border: 1.5px solid rgba(26, 39, 68, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

.lt-pricing-card--featured {
  border-color: #D44DA5;
  box-shadow: 0 8px 40px rgba(212, 77, 165, 0.12);
}

.lt-pricing-card--featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #D44DA5;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.lt-pricing-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1A2744;
  margin-bottom: 0.3rem;
}

.lt-pricing-card__desc {
  font-size: 0.85rem;
  color: #5A6178;
  margin-bottom: 1.5rem;
}

.lt-pricing-card__price {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #1A2744;
  letter-spacing: -0.03em;
  margin-bottom: 0.2rem;
}

.lt-pricing-card__price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #5A6178;
}

.lt-pricing-card__period {
  font-size: 0.8rem;
  color: #8B92A5;
  margin-bottom: 1.5rem;
}

.lt-pricing-card__features {
  list-style: none;
  margin-bottom: 2rem;
}

.lt-pricing-card__features li {
  font-size: 0.9rem;
  color: #4A5068;
  padding: 0.4rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lt-pricing-card__features li::before {
  content: '✓';
  color: #39FF85;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* === INTEGRATION LOGOS === */
.lt-integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
}

.lt-integration-item {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(26, 39, 68, 0.06);
  transition: all 0.25s ease;
  font-weight: 600;
  font-size: 0.85rem;
  color: #4A5068;
}

.lt-integration-item:hover {
  border-color: rgba(212, 77, 165, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.lt-integration-item__icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: block;
}

/* === DOCS SIDEBAR === */
.lt-docs-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  min-height: 60vh;
}

.lt-docs-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.lt-docs-nav {
  list-style: none;
}

.lt-docs-nav li {
  margin-bottom: 0.25rem;
}

.lt-docs-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.88rem;
  color: #5A6178;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.lt-docs-nav a:hover,
.lt-docs-nav a--active {
  color: #D44DA5;
  background: rgba(212, 77, 165, 0.06);
}

.lt-docs-nav a--active {
  font-weight: 600;
}

.lt-docs-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.lt-docs-content p {
  margin-bottom: 1rem;
}

/* === CASE STUDY === */
.lt-case-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 39, 68, 0.06);
  transition: all 0.3s ease;
}

.lt-case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 39, 68, 0.08);
}

.lt-case-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.lt-case-card__body {
  padding: clamp(1.25rem, 2.5vw, 2rem);
}

.lt-case-card__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  font-weight: 600;
  color: #D44DA5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  display: block;
}

.lt-case-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1A2744;
  margin-bottom: 0.5rem;
}

.lt-case-card__text {
  font-size: 0.9rem;
  color: #5A6178;
  line-height: 1.6;
}

/* === FOOTER === */
.lt-footer {
  background: #1A2744;
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.lt-footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lt-footer__brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lt-footer__brand-desc {
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.5);
}

.lt-footer__col-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.lt-footer__links {
  list-style: none;
}

.lt-footer__links li {
  margin-bottom: 0.5rem;
}

.lt-footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.lt-footer__links a:hover {
  color: #D44DA5;
}

.lt-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  flex-wrap: wrap;
  gap: 1rem;
}

.lt-footer__socials {
  display: flex;
  gap: 1rem;
}

.lt-footer__socials a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
  font-size: 1rem;
}

.lt-footer__socials a:hover {
  color: #D44DA5;
}

/* === IMAGES === */
.lt-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.lt-image--hero {
  max-width: 900px;
  margin: 3rem auto 0;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(26, 39, 68, 0.1);
}

/* === HERO VISUAL (terminal mockup) === */
.lt-terminal {
  background: #1A2744;
  border-radius: 16px;
  overflow: hidden;
  max-width: 750px;
  margin: 3rem auto 0;
  box-shadow: 0 24px 64px rgba(26, 39, 68, 0.15);
  text-align: left;
}

.lt-terminal__bar {
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.lt-terminal__bar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lt-terminal__bar-dot--red { background: #FF5F57; }
.lt-terminal__bar-dot--yellow { background: #FEBC2E; }
.lt-terminal__bar-dot--green { background: #28C840; }

.lt-terminal__body {
  padding: 1.5rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(0.72rem, 1vw, 0.85rem);
  line-height: 1.9;
  color: #B0B5C8;
  overflow-x: auto;
}

.lt-terminal__line {
  display: block;
}

.lt-terminal__prompt {
  color: #39FF85;
}

.lt-terminal__success {
  color: #39FF85;
}

.lt-terminal__warn {
  color: #FEBC2E;
}

.lt-terminal__error {
  color: #FF5F57;
}

.lt-terminal__dim {
  color: #4A5068;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .lt-docs-layout {
    grid-template-columns: 1fr;
  }

  .lt-docs-sidebar {
    position: static;
  }

  .lt-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .lt-header__nav-left,
  .lt-header__nav-right {
    display: none;
  }

  .lt-header__mobile-toggle {
    display: block;
  }

  .lt-header__inner {
    justify-content: center;
  }

  .lt-header__inner .lt-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .lt-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lt-footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .lt-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .lt-btn {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .lt-card-grid {
    grid-template-columns: 1fr;
  }

  .lt-pricing-grid {
    grid-template-columns: 1fr;
  }

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

  .lt-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* === ANIMATIONS === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lt-animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.lt-animate-in--delay-1 { animation-delay: 0.1s; opacity: 0; }
.lt-animate-in--delay-2 { animation-delay: 0.2s; opacity: 0; }
.lt-animate-in--delay-3 { animation-delay: 0.3s; opacity: 0; }
.lt-animate-in--delay-4 { animation-delay: 0.4s; opacity: 0; }

/* === MISC === */
.lt-divider {
  height: 1px;
  background: rgba(26, 39, 68, 0.06);
  border: none;
  margin: 0;
}

.lt-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.lt-badge--green {
  background: rgba(57, 255, 133, 0.1);
  color: #00B359;
}

.lt-badge--pink {
  background: rgba(212, 77, 165, 0.08);
  color: #D44DA5;
}

.lt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.lt-table th,
.lt-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(26, 39, 68, 0.06);
}

.lt-table th {
  font-weight: 600;
  color: #1A2744;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lt-table td {
  color: #4A5068;
}

.lt-table tr:hover td {
  background: rgba(212, 77, 165, 0.02);
}

.lt-highlight-bar {
  height: 4px;
  background: linear-gradient(90deg, #D44DA5, #39FF85);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.lt-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.lt-text-center { text-align: center; }
.lt-text-left { text-align: left; }

.lt-mb-0 { margin-bottom: 0; }
.lt-mb-1 { margin-bottom: 1rem; }
.lt-mb-2 { margin-bottom: 2rem; }
.lt-mb-3 { margin-bottom: 3rem; }

.lt-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lt-gap-1 { gap: 1rem; }
.lt-gap-2 { gap: 2rem; }

.lt-relative { position: relative; }
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
