:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --card: #1a1a1a;
  --border: #262626;
  --text: #f5f5f5;
  --text-muted: #9a9a9a;
  --accent: #F5C842;
  --accent-soft: #FFE066;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

img, svg { display: block; max-width: 100%; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  padding: 22px 0;
  position: relative;
  z-index: 5;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.brand-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.2px;
}
.brand-name span {
  color: var(--accent);
}

/* Hero */
.hero {
  position: relative;
  padding: 40px 0 80px;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.32;
  z-index: 0;
}
.hero::before {
  background: var(--accent);
  top: -180px;
  left: -200px;
}
.hero::after {
  background: #6a4f00;
  bottom: -240px;
  right: -160px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 28px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.rating-stars { width: 130px; height: 24px; }
.rating-text {
  font-size: 15px;
  color: var(--text-muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 10px 30px rgba(245, 200, 66, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--accent-soft);
  box-shadow: 0 14px 36px rgba(245, 200, 66, 0.45);
}
.btn-store {
  background: transparent;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.15s ease;
}
.btn-store:hover { transform: translateY(-2px); }
.btn-store img { display: block; }

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual img {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* Reviews */
.reviews {
  padding: 20px 0 80px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
}
.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #0a0a0a;
  font-size: 16px;
}
.avatar.a1 { background: #F5C842; }
.avatar.a2 { background: #FFB088; }
.avatar.a3 { background: #B6D7A8; }
.avatar.a4 { background: #C9B6FF; }
.review-meta .name { font-weight: 700; font-size: 15px; }
.review-meta .stars { width: 88px; height: 16px; margin-top: 4px; }
.review-meta .stars svg { width: 100%; height: 100%; }
.review-text {
  font-size: 15.5px;
  color: #d8d8d8;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero h1 { font-size: 42px; }
  .hero-visual { order: -1; }
  .hero-visual img { max-width: 320px; }
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 34px; }
  .container { padding: 0 18px; }
  .btn { padding: 14px 22px; font-size: 15px; width: 100%; }
  .cta-row { flex-direction: column; }
  .btn-store { width: 100%; }
  .btn-store img { width: 100%; max-width: 220px; margin: 0 auto; }
}
