/* Home */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  padding: 80px 0 64px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero__grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 24px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__preview {
  position: relative;
}

.hero__preview-glow {
  position: absolute;
  inset: -20% -10%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.04), transparent 70%);
  pointer-events: none;
}

.hero__preview-frame {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #09090b;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03),
    0 24px 80px rgba(0, 0, 0, 0.6);
}

.hero__preview-frame img,
.hero__preview-frame svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Features */
.features {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 48px;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.feature-card {
  padding: 32px 28px;
  background: var(--bg-elevated);
}

.feature-card__icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text);
}

.feature-card__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* CTA */
.cta {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.cta__box {
  text-align: center;
  padding: 64px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
}

.cta__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.cta__text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 440px;
  margin-inline: auto;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Showcase sections */
.showcase {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 960px) {
  .showcase__grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
  }

  .showcase__grid--reverse .showcase__content {
    order: -1;
  }
}

.showcase__preview {
  position: relative;
}

.showcase__preview-glow {
  position: absolute;
  inset: -15% -8%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.03), transparent 70%);
  pointer-events: none;
}

.showcase__preview-frame {
  position: relative;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #09090b;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.showcase__preview-frame img,
.showcase__preview-frame svg {
  width: 100%;
  height: auto;
  display: block;
}

.section-title--compact {
  margin-bottom: 16px;
}

.showcase__text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 480px;
}

.showcase__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.showcase__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
}

/* How it works */
.how-it-works {
  padding: 96px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.step {
  padding: 36px 32px;
  background: var(--bg);
}

.step__number {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.step__title {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.step__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
}

/* Models */
.models {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}

.models__intro {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: -32px 0 40px;
}

.models__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 640px) {
  .models__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .models__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.model-chip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  transition: border-color 0.15s, background 0.15s;
}

.model-chip:hover {
  border-color: var(--border-strong);
  background: var(--bg-surface);
}

.model-chip__name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.model-chip__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Stats strip */
.stats {
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-elevated);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.stat {
  text-align: center;
}

.stat__value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 8px;
}

.stat__label {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-muted);
}
