.lx-home {
  --lx-bg: #fff;
  --lx-fg: #2c3038;
  --lx-muted: #6b7285;
  --lx-secondary: #f7f8fa;
  --lx-shadow: 0 1px 2px rgba(32, 36, 48, 0.05), 0 6px 16px -12px rgba(32, 36, 48, 0.16);
  --lx-border: #e5e7eb;
  --lx-primary: #e03a28;
  --lx-primary-fg: #fff;
  --lx-radius: 14px;
  --lx-hero: linear-gradient(180deg, #fff 0%, #f7f8fa 100%);
  --lx-max: 80rem;
  margin: 0;
  background: var(--lx-bg);
  color: var(--lx-fg);
  font-family: "Roboto Condensed", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

html {
  margin: 0;
}

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

.lx-home figure,
.lx-home blockquote,
.lx-home p,
.lx-home h1,
.lx-home h2,
.lx-home h3,
.lx-home ul,
.lx-home ol,
.lx-home dl {
  margin: 0;
}

.lx-home h1,
.lx-home h2,
.lx-home h3,
.lx-home h4 {
  font-family: "Roboto Condensed", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  color: var(--lx-fg);
}

.lx-wrap {
  max-width: var(--lx-max);
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.lx-card {
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: var(--lx-radius);
  box-shadow: var(--lx-shadow);
}

.lx-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.lx-bar {
  background: var(--lx-primary);
}

.lx-bar a {
  display: block;
  color: var(--lx-primary-fg);
  text-align: center;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 1rem;
}

.lx-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--lx-border);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.lx-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.lx-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.lx-brand img {
  height: 2rem;
  width: auto;
}

.lx-openai {
  height: 2rem;
  width: auto;
}

.lx-brand-tag {
  display: block;
  margin-top: 0.25rem;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.lx-brand-tag span {
  color: var(--lx-primary);
}

.lx-menu {
  display: none;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lx-menu a {
  color: var(--lx-fg);
  text-decoration: none;
}

.lx-menu a:hover {
  color: var(--lx-primary);
}

.lx-hero {
  background: var(--lx-hero);
  border-bottom: 1px solid var(--lx-border);
}

.lx-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: calc(100vh - 7rem);
  padding: 1.5rem 0 5.5rem;
}

.lx-hero-img {
  display: none;
  width: 100%;
  height: auto;
  max-height: 28rem;
  object-fit: contain;
  object-position: center right;
}

.lx-kicker {
  margin: 0 0 0.75rem;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lx-primary);
}

.lx-hero h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
}

.lx-typed {
  margin: 1rem 0 0;
  min-height: 6rem;
  font-size: 1rem;
  color: var(--lx-muted);
}

.lx-caret {
  display: inline-block;
  width: 2px;
  height: 1rem;
  margin-left: 2px;
  margin-bottom: -2px;
  background: var(--lx-primary);
  animation: lx-pulse 1s ease infinite;
}

.lx-caret.is-done {
  opacity: 0;
  animation: none;
}

.lx-hero-cta {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.5rem;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.7s ease;
}

.lx-hero-cta.is-on {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.lx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.lx-btn-primary {
  background: var(--lx-primary);
  color: var(--lx-primary-fg);
}

.lx-btn-primary:hover {
  opacity: 0.9;
  color: var(--lx-primary-fg);
}

.lx-btn-ghost {
  background: transparent;
  color: var(--lx-fg);
  border-color: var(--lx-border);
}

.lx-btn-ghost:hover {
  background: var(--lx-secondary);
  color: var(--lx-fg);
}

.lx-hero-cta .lx-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.75rem;
  text-align: center;
}

.lx-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0 0 4rem;
  text-align: center;
}

.lx-badges img {
  height: 5rem;
  width: auto;
  object-fit: contain;
}

.lx-badges p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--lx-muted);
}

.lx-section {
  padding: 5rem 0;
}

.lx-band {
  background: var(--lx-secondary);
  border-top: 1px solid var(--lx-border);
  border-bottom: 1px solid var(--lx-border);
}

.lx-h2 {
  margin: 0;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-align: center;
}

.lx-lead {
  margin: 1rem auto 0;
  max-width: 48rem;
  color: var(--lx-muted);
  text-align: center;
}

.lx-copy {
  margin: 1rem 0 0;
  max-width: 56rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--lx-muted);
}

.lx-center {
  text-align: center;
}

.lx-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.lx-grid-2 {
  grid-template-columns: 1fr;
}

.lx-card-pad {
  padding: 1.5rem;
}

.lx-home figure.lx-card,
.lx-home .lx-card.lx-card-pad {
  padding: 1.5rem;
}

.lx-card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
}

.lx-card p,
.lx-muted {
  color: var(--lx-muted);
}

.lx-card p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

.lx-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
}

.lx-list li {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.lx-list span.lx-mark {
  color: var(--lx-primary);
}

.lx-avs {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.lx-avs img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--lx-bg);
  margin-left: -0.5rem;
}

.lx-avs img:first-child {
  margin-left: 0;
}

.lx-eyebrow {
  margin: 0.75rem auto 0;
  max-width: 48rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-align: center;
  color: var(--lx-muted);
}

.lx-accent {
  color: var(--lx-primary);
}

.lx-work img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  display: block;
}

.lx-chip {
  display: inline-block;
  margin: 0.25rem 0.25rem 0 0;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: var(--lx-secondary);
  font-size: 0.75rem;
  font-weight: 700;
}

.lx-domain {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lx-muted);
}

.lx-team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  align-items: stretch;
}

.lx-team-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 2px;
  background: #e8eaee;
}

.lx-team-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.lx-home .lx-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .lx-home .lx-reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.lx-home .lx-reviews figure {
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: 0.875rem;
  box-shadow: 0 1px 2px rgba(32, 36, 48, 0.06), 0 8px 24px -16px rgba(32, 36, 48, 0.35);
}

.lx-home .lx-reviews blockquote {
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  line-height: 1.625;
  font-weight: 400;
}

.lx-home .lx-reviews figcaption {
  display: block;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--lx-border);
  font-size: 0.875rem;
  font-weight: 700;
}

.lx-faq-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.lx-home .lx-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2.5rem;
}

.lx-home .lx-faq-list details {
  margin: 0;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--lx-border);
  border-radius: 0.875rem;
  box-shadow: 0 1px 2px rgba(32, 36, 48, 0.06), 0 8px 24px -16px rgba(32, 36, 48, 0.35);
}

.lx-home .lx-faq-list summary {
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}

.lx-home .lx-faq-list details p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--lx-muted);
}

.lx-stat {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
  color: var(--lx-primary);
}

.lx-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.lx-footer {
  border-top: 1px solid var(--lx-border);
  background: var(--lx-secondary);
  padding: 3rem 0;
  font-size: 0.875rem;
  color: var(--lx-muted);
}

.lx-footer img {
  height: 2rem;
  width: auto;
}

.lx-footer a {
  color: var(--lx-fg);
  font-weight: 700;
}

@keyframes lx-pulse {
  50% {
    opacity: 0.2;
  }
}

@media (min-width: 640px) {
  .lx-hero h1 {
    font-size: 1.875rem;
  }
  .lx-h2 {
    font-size: 3rem;
  }
  .lx-badges {
    grid-template-columns: repeat(3, 1fr);
  }
  .lx-team {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .lx-grid-2,
  .lx-grid-3,
  .lx-grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .lx-menu {
    display: flex;
  }
  .lx-kicker {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
  .lx-hero h1 {
    font-size: 3rem;
  }
  .lx-typed {
    margin-top: 1.5rem;
    min-height: 9rem;
    font-size: 1.125rem;
  }
  .lx-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    column-gap: 2rem;
    min-height: 0;
    padding: 2.5rem 0 1.5rem;
  }
  .lx-hero-img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    object-position: center right;
  }
  .lx-hero-cta {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
  }
  .lx-hero-cta .lx-btn {
    display: inline-flex;
    width: auto;
  }
  .lx-badges {
    grid-template-columns: repeat(6, 1fr);
  }
  .lx-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .lx-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .lx-team {
    grid-template-columns: repeat(7, 1fr);
  }
}
