:root {
  --accent: #5c67f2;
  --background: #ffffff;
  --text: #333333;
  --gray: #666666;
  --light: #f7f8fc;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

header {
  background: var(--light);
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

nav a {
  margin-left: 1rem;
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
}

.hero {
  background: var(--accent);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: white;
  color: var(--accent);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}

.cta-button:hover {
  background: #e4e7ff;
}

.features {
  background: var(--light);
  padding: 4rem 0;
}

.features h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.feature h4 {
  margin-bottom: 0.5rem;
  color: var(--accent);
}

/* Small feature dividers */
.feature-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  margin: 0 0 1rem 0;
  border-radius: 2px;
}

.feature-divider.purple {
  background: linear-gradient(90deg, #da2e9f, transparent);
}

.feature-divider.blue {
  background: linear-gradient(90deg, #5c67f2, transparent);
}

.feature-divider.green {
  background: linear-gradient(90deg, #28a745, transparent);
}

.feature-divider.orange {
  background: linear-gradient(90deg, #fd7e14, transparent);
}

.feature-divider.teal {
  background: linear-gradient(90deg, #20c997, transparent);
}

.feature-divider.indigo {
  background: linear-gradient(90deg, #6f42c1, transparent);
}

.about, .download {
  padding: 4rem 0;
  text-align: center;
}

.about h3, .download h3 {
  margin-bottom: 1rem;
}

footer {
  background: var(--light);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  border-top: 1px solid #eee;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  color: var(--gray);
  margin: 0 0.5rem;
  text-decoration: none;
}

/* Section Dividers */
.section-divider {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  justify-content: center;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 1rem;
}

.section-divider.purple::before,
.section-divider.purple::after {
  background: linear-gradient(90deg, transparent, #da2e9f, transparent);
}

.section-divider.blue::before,
.section-divider.blue::after {
  background: linear-gradient(90deg, transparent, #5c67f2, transparent);
}

.section-divider.green::before,
.section-divider.green::after {
  background: linear-gradient(90deg, transparent, #28a745, transparent);
}

.section-divider.orange::before,
.section-divider.orange::after {
  background: linear-gradient(90deg, transparent, #fd7e14, transparent);
}

.section-divider-icon {
  background: white;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--accent);
}

.section-divider.purple .section-divider-icon {
  color: #da2e9f;
}

.section-divider.blue .section-divider-icon {
  color: #5c67f2;
}

.section-divider.green .section-divider-icon {
  color: #28a745;
}

.section-divider.orange .section-divider-icon {
  color: #fd7e14;
}

/* App Store Button Styling */
.app-store-button {
  display: inline-block;
  margin-top: 1rem;
  transition: transform 0.2s ease;
}

.app-store-button:hover {
  transform: scale(1.05);
}

.app-store-button img {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.app-screenshot {
	max-width: 350px;
}