:root {
  --bg: #f6efe4;
  --card: #fff;
  --border: #ecdcc4;
  --accent: #b4540a;
  --text: #3a2a18;
  --sub: #8a7355;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
}

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 60px 0 40px;
}

.hero-copy { flex: 1 1 320px; }

.hero h1 {
  font-size: 40px;
  margin: 0 0 8px;
  color: var(--accent);
}

.hero .tagline {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.hero .subtext {
  font-size: 16px;
  color: var(--sub);
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 42ch;
}

.badges { display: flex; gap: 12px; flex-wrap: wrap; }

.badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 8px 16px;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  opacity: 0.55;
  cursor: default;
  user-select: none;
  font-size: 11px;
}

.badge .store-name { font-size: 15px; font-weight: 700; }
.badge .soon-tag { font-size: 10px; letter-spacing: 0.04em; text-transform: uppercase; color: #ffd23f; }

/* Phone mockup */

.phone-frame {
  flex: 0 0 240px;
  width: 240px;
  background: #000;
  border-radius: 32px;
  padding: 10px;
  margin: 0 auto;
}

.lock-screen {
  background: linear-gradient(180deg, #3a4a7a 0%, #7a5a6a 45%, #e0a870 100%);
  border-radius: 22px;
  height: 480px;
  position: relative;
  overflow: hidden;
  padding: 16px 10px;
}

.lock-screen .clock {
  text-align: center;
  color: #fff;
}

.lock-screen .date { font-size: 13px; font-weight: 600; opacity: 0.9; }
.lock-screen .time { font-size: 54px; font-weight: 600; letter-spacing: -1px; margin-top: 2px; }

.notifications {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 16px;
  display: flex;
  flex-direction: column-reverse;
  gap: 6px;
}

.ntf {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  transform: translateY(-14px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  animation: fadeStay 0.5s ease forwards;
}

.ntf .icon { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; margin-top: 1px; }
.ntf .txt { font-size: 10px; line-height: 1.35; color: #1a1a1a; }
.ntf .txt b { font-size: 10px; }
.ntf .time { float: right; color: #555; font-weight: 400; font-size: 9px; letter-spacing: normal; margin-top: 0; }

.ntf1 { animation-delay: 0.3s; }
.ntf2 { animation-delay: 2.8s; }
.ntf3 { animation-delay: 5.3s; }
.ntf4 { animation-delay: 7.8s; }

@keyframes fadeStay {
  0%   { opacity: 0; transform: translateY(-14px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* How it works */

.how {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
}

.how h2 {
  font-size: 24px;
  margin: 0 0 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p { margin: 0; line-height: 1.5; }

/* Footer */

footer {
  border-top: 1px solid var(--border);
  padding: 24px 0 40px;
  color: var(--sub);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

footer a { color: var(--sub); }

@media (max-width: 640px) {
  .hero { flex-direction: column-reverse; text-align: center; }
  .hero .subtext { max-width: none; }
  .badges { justify-content: center; }
}
