:root {
  --primary: #0EA5E9;
  --secondary: #FB7185;
  --tertiary: #B45309;
  --background: #F7FBFF;
  --surface: #FFFFFF;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --border-radius: 16px;
  --font-family: 'Roboto', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
  background-color: var(--background);
  color: var(--text-primary);
  line-height: 1.6;
}

h1,
h2,
h3 {
  color: var(--text-primary);
  font-weight: 800;
  margin-top: 0;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  appearance: none;
  background: var(--surface);
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  font-family: var(--font-family);
  font-weight: 600;
  color: var(--text-primary);
}

.lang-switcher:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
}

.logo img {
  height: 40px;
  width: auto;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.store-badge img {
  height: 44px;
  width: auto;
  display: block;
}

/* Using local, official badges. Keep them the same height for a perfect match. */

.store-badge.coming-soon {
  cursor: default;
}

.coming-soon-pill {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--secondary);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(251, 113, 133, 0.35);
  transform: rotate(10deg);
  letter-spacing: 0.3px;
}

/* Features Section */
.features {
  padding: 60px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  margin: 20px 0 10px;
  font-size: 24px;
}

.feature-card p {
  color: var(--text-secondary);
}

.screenshot-container {
  background: #000;
  border-radius: 24px;
  padding: 8px;
  display: inline-block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.screenshot {
  display: block;
  width: 100%;
  max-width: 240px;
  /* Mobile phone width approx */
  border-radius: 18px;
  height: auto;
}

/* Footer */
footer {
  background-color: var(--surface);
  padding: 60px 0 20px;
  margin-top: 80px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.copyright {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  padding-top: 20px;
}