/* Abyssos marketing page */

.app-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  margin-top: 8px;
}

.app-header img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.app-header .app-name {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  line-height: 1;
}

.app-header .btn {
  margin-top: 4px;
}

.app-store-cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
}

.content-row {
  display: flex;
  align-items: flex-start;
  gap: 56px;
  max-width: var(--max-content);
  width: 100%;
}

.app-screenshot {
  flex: 0 0 auto;
  width: clamp(180px, 26vw, 280px);
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.app-screenshot.pair {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: clamp(280px, 42vw, 460px);
}

.app-screenshot img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-phone);
  display: block;
}

.app-screenshot.pair img {
  width: calc(50% - 6px);
  border-radius: 22px;
}

.description {
  flex: 1;
  text-align: left;
}

.description p {
  font-size: clamp(0.92rem, 2.2vw, 1.05rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.description p:last-child {
  margin-bottom: 0;
}

.description strong {
  font-weight: 500;
  color: var(--text-primary);
}

.description .tagline {
  margin-bottom: 24px;
}

.feature-section {
  max-width: var(--max-content);
  width: 100%;
  margin-top: 64px;
}

.feature-section-heading {
  text-align: center;
  margin-bottom: 64px;
}

.feature-section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  line-height: 1.15;
}

.feature-section-heading .sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 56px;
  margin-bottom: 72px;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-img {
  flex: 0 0 auto;
  width: clamp(180px, 28vw, 300px);
}

.feature-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-shot);
  display: block;
}

.feature-img.two-up {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-copy {
  flex: 1;
}

.feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.25;
}

.feature-copy p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-secondary);
}

.feature-copy p + p {
  margin-top: 16px;
}

.feature-copy strong {
  font-weight: 500;
  color: var(--text-primary);
}

@media (max-width: 640px) {
  .content-row {
    flex-direction: column;
    gap: 36px;
  }

  .app-screenshot {
    width: clamp(160px, 55vw, 240px);
    position: static;
    align-self: center;
  }

  .app-screenshot.pair {
    width: clamp(260px, 88vw, 420px);
  }

  .description {
    text-align: center;
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 28px;
  }

  .feature-img {
    width: clamp(160px, 70vw, 260px);
    align-self: center;
  }
}
