:root {
  --bg: #f7f5f0;
  --card: #ffffff;
  --ink: #16181f;
  --muted: #6f7480;
  --border: #e4e0d6;
  --accent: #4f46e5;
  --accent2: #8b5cf6;
  --gold: #e8940a;
  --positive: #1fa971;
  --radius: 20px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e1014;
    --card: #191d26;
    --ink: #ecedf2;
    --muted: #9aa1b3;
    --border: #2a3040;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }

header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 44px; height: 44px; border-radius: 11px; }
.brand span { font-size: 20px; font-weight: 700; }
nav a { color: var(--muted); text-decoration: none; margin-left: 22px; font-size: 15px; font-weight: 600; }
nav a:hover { color: var(--accent); }

.hero {
  position: relative; overflow: hidden;
  border-radius: 28px; margin: 12px 0 56px;
  background: linear-gradient(135deg, #2b2668 0%, #4f46e5 55%, #8b5cf6 100%);
  color: #fff;
}
.hero-inner {
  display: flex; align-items: center; gap: 48px;
  padding: 72px 56px;
  position: relative; z-index: 1;
}
.hero-art {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.24;
}
.hero h1 { font-size: clamp(34px, 5vw, 56px); line-height: 1.12; letter-spacing: -0.02em; }
.hero p.tag { font-size: clamp(17px, 2.2vw, 21px); margin-top: 16px; opacity: 0.92; max-width: 34em; }
.hero .cta { margin-top: 28px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 14px;
  font-weight: 700; font-size: 16px; text-decoration: none;
  background: #fff; color: #2b2668;
  box-shadow: 0 4px 0 rgba(0,0,0,0.25);
}
.btn.ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); box-shadow: none; }
.badge-soon { font-size: 13px; opacity: 0.8; }

.phone-shot {
  width: min(300px, 34vw); border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.2);
}

section.features { margin: 72px 0; }
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; margin-top: 32px;
}
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
}
.card .icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.card h3 { font-size: 18px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 15px; }

h2.section { font-size: clamp(26px, 3.4vw, 36px); letter-spacing: -0.01em; }
p.section-sub { color: var(--muted); margin-top: 8px; max-width: 40em; }

.gallery {
  display: flex; gap: 22px; overflow-x: auto; padding: 28px 4px 12px;
  scroll-snap-type: x mandatory;
}
.gallery img {
  width: 250px; border-radius: 26px; scroll-snap-align: start;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(20, 18, 60, 0.18);
}

.privacy-callout {
  margin: 72px 0; padding: 40px;
  border-radius: 28px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap;
}
.privacy-callout .lock { font-size: 40px; }
.privacy-callout h2 { font-size: 26px; }
.privacy-callout p { color: var(--muted); margin-top: 8px; max-width: 46em; }

footer.site {
  border-top: 1px solid var(--border);
  margin-top: 80px; padding: 36px 0 60px;
  color: var(--muted); font-size: 14px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
footer.site a { color: var(--muted); margin-right: 18px; }

article.legal { padding: 24px 0 40px; }
article.legal h1 { font-size: 34px; margin: 22px 0 6px; letter-spacing: -0.01em; }
article.legal p.updated { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
article.legal h2 { font-size: 21px; margin: 30px 0 8px; }
article.legal p, article.legal li { color: var(--ink); font-size: 16px; }
article.legal ul { padding-left: 22px; margin: 10px 0; }
article.legal .note { color: var(--muted); }

@media (max-width: 760px) {
  .hero-inner { flex-direction: column; padding: 48px 28px; text-align: center; }
  .hero .cta { justify-content: center; }
  .phone-shot { width: min(280px, 70vw); }
}
