/* App page styles — shared across all app pages */
/* Extracted from inline styles to avoid duplication */

.split-app {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 32px;
  flex-wrap: wrap;
}
.split-app-left {
  flex: 1 1 340px;
  min-width: 320px;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.split-app-right {
  flex: 0 0 340px;
  min-width: 260px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* Headline container - holds all headline lines */
.headline-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Each headline line - auto-shrinks to fit, wraps at min size if needed */
.headline-line {
  display: block;
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.headline-line-1 {
  color: var(--neon-pink);
}

.headline-line-2 {
  color: var(--mint);
  margin-bottom: 0.08em;
}

/* For Daily D's yellow headline */
.headline-line-2.yellow {
  color: #fff0da;
}

/* For nested colored text in headline (like "WIN NOW.") */
.headline-line-2 .win {
  color: #4fffa1;
}

.sub-headline {
  display: block;
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

/* Legacy main-headline support (for any remaining uses) */
.main-headline {
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 700;
  color: var(--neon-pink);
  margin-bottom: 0;
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.main-headline .green {
  color: var(--mint);
  display: block;
  margin-bottom: 0.08em;
  line-height: 1.08;
}
.main-headline .win {
  color: #4fffa1;
  display: inline;
}
.main-headline .yellow {
  color: #fff0da;
  display: block;
  margin-bottom: 0.08em;
  line-height: 1.08;
}

.desc {
  color: var(--ink-dim);
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.btn-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

/* App page pill (positioned absolutely) */
.app-pill {
  background: #2a1120;
  color: #ffd1ea;
  border: 2px solid var(--neon-pink);
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: .06em;
  display: inline-block;
  position: absolute;
  top: -16px;
  left: 18px;
  margin-bottom: 0;
}
.feature-box {
  background: var(--card);
  border: 2px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px 18px 22px;
  margin-bottom: 18px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.18);
  position: relative;
}
.feature-box h3 {
  margin-top: 18px;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 1.18rem;
  letter-spacing: 0.04em;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
}
.feature-list li {
  margin-bottom: 7px;
  display: flex;
  align-items: flex-start;  /* Changed from center - keeps bullet at top when text wraps */
  gap: 8px;
  font-size: 1rem;
  line-height: 1.4;
}
.dot {
  font-size: 1.2em;
  margin-right: 4px;
  flex-shrink: 0;  /* Prevent dot from shrinking */
  line-height: 1.4;  /* Match the li line-height */
}
.tag-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.goal-row {
  margin-bottom: 10px;
  font-size: 1rem;
  color: var(--mint);
  font-weight: 700;
}
.footer-note {
  color: #bfeecf;
  font-size: 1rem;
  margin-top: 18px;
  font-family: inherit;
}

/* App screenshot styling */
.app-screenshot {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
  background: #181818;
}

/* Google Play badge styling */
.store-badge {
  height: 44px;
  margin-left: 12px;
}

@media (max-width: 900px) {
  .split-app { flex-direction: column; gap: 32px; }
  .split-app-right { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .split-app-left, .split-app-right { min-width: 0; max-width: 100%; }
}
