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

body {
  background: #15141b;
  color: #bdbdbd;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #8464c6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

nav {
  background: #1e1d28;
  border-bottom: 1px solid #29263c;
  padding: 16px 24px;
  display: flex;
  align-items: center;
}

nav .logo-link {
  display: flex;
  align-items: center;
}

nav .logo {
  height: 28px;
}

nav .nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

nav .nav-links a {
  color: #a0a0ab;
  font-size: 14px;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: #8464c6;
  text-decoration: none;
}

main {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  width: 100%;
}

.home-hero {
  text-align: center;
}

.home-hero .logo-large {
  height: 56px;
  margin-bottom: 32px;
}

.home-hero h1 {
  color: #edecee;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 8px;
}

.home-hero .tagline {
  color: #a0a0ab;
  font-size: 18px;
  margin-bottom: 48px;
}

.home-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.home-links a {
  background: #1e1d28;
  border: 1px solid #29263c;
  color: #bdbdbd;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}

.home-links a:hover {
  border-color: #8464c6;
  color: #8464c6;
  text-decoration: none;
}

.home-links a.app-store {
  background: #8464c6;
  border-color: #8464c6;
  color: #edecee;
  font-weight: 600;
}

.home-links a.app-store:hover {
  background: #9b7dd4;
  border-color: #9b7dd4;
  color: #fff;
  text-decoration: none;
}

.features {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #29263c;
}

.screenshots {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 64px;
}

.screenshots img {
  max-height: 500px;
  max-width: calc((100% - 48px) / 3);
  object-fit: contain;
  border-radius: 12px;
}

.features p.intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.feature-group {
  margin-bottom: 36px;
}

.feature-group h2 {
  font-size: 18px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #29263c;
}

.feature-group ul {
  list-style: none;
  padding: 0;
}

.feature-group li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #a0a0ab;
}

.feature-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8464c6;
}

.disclaimer {
  margin-top: 48px;
  padding: 16px;
  background: #1e1d28;
  border: 1px solid #29263c;
  border-radius: 8px;
  color: #6d6d6d;
  font-size: 14px;
}

h2 {
  color: #edecee;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

h3 {
  color: #edecee;
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
}

footer {
  text-align: center;
  padding: 24px;
  color: #6d6d6d;
  font-size: 13px;
  border-top: 1px solid #29263c;
}
