:root {
  --bg: #fbfaf8;
  --surface: #ffffff;
  --text: #161616;
  --muted: #5e5e5e;
  --accent: #ff3b4e;
  --accent-2: #ff7a59;
  --outline: #e4e2df;
  --shadow: 0 20px 50px rgba(25, 25, 25, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Space Grotesk", system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(1200px 800px at 15% -10%, rgba(255, 59, 78, 0.14), transparent 60%),
    radial-gradient(900px 700px at 110% 10%, rgba(255, 122, 89, 0.16), transparent 55%),
    linear-gradient(160deg, #fffefc 0%, #f5f0ea 60%, #f1ebe5 100%);
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 36px 16px 48px;
}

.lang-switch {
  position: fixed;
  top: 18px;
  right: 18px;
  display: inline-flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--outline);
  border-radius: 999px;
  padding: 6px;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.1);
  z-index: 10;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  padding: 6px 10px;
  font-weight: 600;
  font-size: 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--text);
  color: #fff;
}

.shell {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  align-items: center;
  animation: fadeIn 700ms ease-out;
}

.hero {
  padding: 28px 28px 24px;
  background: var(--surface);
  border-radius: 22px;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.home-hero {
  min-height: 100%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 220px at 85% 0%, rgba(255, 59, 78, 0.12), transparent 60%);
  pointer-events: none;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 59, 78, 0.2);
  background: rgba(255, 59, 78, 0.08);
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 4vw, 42px);
  margin: 18px 0 12px;
}

h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.lead {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}

.preview {
  background: #0e0e0e;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid #1f1f1f;
  position: relative;
  display: grid;
  place-items: center;
}

.preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.preview .placeholder {
  color: #f1f1f1;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}

.meta {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.title {
  font-size: 18px;
  font-weight: 600;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(255, 59, 78, 0.3);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text);
  border: 1px solid var(--outline);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.store-cta {
  margin-top: 12px;
}

.card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 59, 78, 0.15);
  padding: 18px 20px;
  border-radius: 18px;
  font-size: 13px;
  color: var(--muted);
}

.privacy-link {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
}

.privacy-link:hover {
  text-decoration: underline;
}

.section-title {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.feature-grid {
  display: grid;
  gap: 16px;
}

.feature {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 122, 89, 0.2);
}

.info-panel {
  align-self: stretch;
}

.warning {
  font-size: 14px;
  background: rgba(255, 59, 78, 0.08);
  border: 1px solid rgba(255, 59, 78, 0.2);
}

.home {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.home .full {
  grid-column: 1 / -1;
}

.row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(255, 122, 89, 0.15);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .home {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    padding: 24px 14px 36px;
  }

  .hero {
    padding: 22px;
  }

  .lang-switch {
    position: static;
    margin-bottom: 14px;
  }
}
