:root {
  --bg: #fbfaf7;
  --bg-2: #f2eee6;
  --ink: #111111;
  --muted: #6f6a63;
  --line: #e2ddd4;
  --card: rgba(255,255,255,.72);
  --gold: #b08955;
  --red: #d75240;
  --yellow: #f1c756;
  --green: #8aae63;
  --shadow: 0 24px 70px rgba(31, 25, 18, .12);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 10% 10%, #fff 0, var(--bg) 38%, #f6f0e7 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, .76);
  border-bottom: 1px solid rgba(226, 221, 212, .74);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand img { width: 38px; height: 38px; border-radius: 10px; box-shadow: 0 8px 18px rgba(0,0,0,.08); }

.nav-links { display: flex; align-items: center; gap: 22px; font-size: 14px; color: var(--muted); }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

.button,
button.button {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  background: var(--ink);
  color: white;
  box-shadow: 0 18px 35px rgba(17,17,17,.16);
}
.button.secondary {
  background: rgba(255,255,255,.72);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}
.button.disabled {
  cursor: default;
  opacity: .72;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(176,137,85,.10);
  pointer-events: none;
}
.hero::before { width: 430px; height: 430px; right: -160px; top: 60px; }
.hero::after { width: 520px; height: 520px; left: -300px; bottom: -160px; }

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: 64px;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

h1, h2, h3, .serif {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  letter-spacing: -.055em;
  line-height: .98;
}
h1 { font-size: clamp(58px, 9vw, 112px); margin: 18px 0 24px; }
h2 { font-size: clamp(42px, 5.7vw, 72px); margin: 0 0 18px; }
h3 { font-size: clamp(26px, 3vw, 38px); margin: 0 0 12px; }
.lead { font-size: clamp(19px, 2.2vw, 25px); color: var(--muted); max-width: 670px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-note { margin-top: 24px; color: var(--muted); font-size: 14px; }

.phone-frame {
  border-radius: 42px;
  padding: 11px;
  background: #111;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.phone-screen {
  overflow: hidden;
  border-radius: 32px;
  background: white;
}
.phone-screen img { width: 100%; }

.badge-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 760px;
}
.badge {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.60);
  border-radius: 18px;
  padding: 16px;
  min-height: 94px;
}
.badge strong { display: block; font-size: 14px; }
.badge span { display: block; margin-top: 6px; color: var(--muted); font-size: 13px; }

section { padding: 82px 0; }
.section-head { max-width: 780px; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 19px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(226,221,212,.78);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(31,25,18,.06);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(176,137,85,.12);
  color: #8c6838;
  margin-bottom: 18px;
  font-size: 21px;
}
.card p { color: var(--muted); margin-bottom: 0; }

.color-row { display:flex; flex-wrap:wrap; gap:12px; margin-top:20px; }
.color-key { display:flex; align-items:center; gap:8px; color:var(--muted); font-size:14px; }
.swatch { width:18px; height:18px; border-radius:5px; border:1px solid rgba(0,0,0,.08); }
.swatch.red { background: var(--red); }
.swatch.yellow { background: var(--yellow); }
.swatch.green { background: var(--green); }
.swatch.star { background:#111; color:#fff; display:grid; place-items:center; font-size:11px; }
.swatch.future { background:transparent; border:1px solid #bdb7ad; }

.screenshots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.shot-card {
  overflow: hidden;
  border-radius: 32px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.shot-card img { width: 100%; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 52px;
  align-items: center;
}
.bullet-list { display:grid; gap:16px; margin:28px 0 0; padding:0; list-style:none; }
.bullet-list li { display:flex; gap:12px; color:var(--muted); }
.bullet-list li::before { content:"✓"; color:#806131; font-weight:900; }

.privacy-panel {
  background: #111;
  color: white;
  border-radius: 38px;
  padding: 44px;
  box-shadow: 0 30px 90px rgba(0,0,0,.22);
}
.privacy-panel p { color: rgba(255,255,255,.74); }
.privacy-panel .button.secondary { background: rgba(255,255,255,.10); color:white; border-color: rgba(255,255,255,.22); }

.cta {
  padding: 70px 0 90px;
}
.cta-box {
  border-radius: 44px;
  background: linear-gradient(135deg, #111 0%, #24211d 100%);
  color: white;
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, .9fr);
  gap: 36px;
  align-items: center;
  box-shadow: 0 30px 90px rgba(0,0,0,.23);
}
.cta-box p { color: rgba(255,255,255,.76); font-size: 18px; }
.cta-box .button { background:white; color:#111; }
.cta-box .button.secondary { background:rgba(255,255,255,.08); color:white; border-color:rgba(255,255,255,.18); }

.footer {
  border-top: 1px solid var(--line);
  padding: 38px 0;
  color: var(--muted);
}
.footer-grid { display:flex; justify-content:space-between; gap:22px; flex-wrap:wrap; }
.footer a { color: inherit; text-decoration: none; margin-left: 18px; }
.footer a:hover { color: var(--ink); }

.page-hero { padding: 74px 0 42px; }
.page-hero h1 { font-size: clamp(52px, 8vw, 88px); }
.page-content { padding: 34px 0 90px; }
.content-card {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(24px, 5vw, 56px);
  box-shadow: var(--shadow);
}
.content-card h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 42px; }
.content-card h2:first-child { margin-top: 0; }
.content-card h3 { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; letter-spacing: 0; line-height: 1.2; font-size: 22px; margin-top: 30px; }
.content-card p, .content-card li { color: #49443e; }
.content-card table { width:100%; border-collapse:collapse; margin:22px 0; background:white; border-radius:16px; overflow:hidden; }
.content-card th, .content-card td { text-align:left; vertical-align:top; padding:14px; border-bottom:1px solid var(--line); }
.content-card th { color:#111; background:#f4efe7; }
.notice { padding:16px 18px; border-radius:18px; background:#fff7e8; border:1px solid #ead7b9; color:#554431; }
.faq { display:grid; gap:16px; }
.faq details { background:white; border:1px solid var(--line); border-radius:20px; padding:18px 20px; }
.faq summary { cursor:pointer; font-weight:800; }
.faq p { margin-bottom:0; }
.support-grid { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap:18px; }

@media (max-width: 860px) {
  .nav { height: 68px; }
  .nav-links a:not(.button) { display:none; }
  .hero { padding-top: 58px; }
  .hero-grid, .split, .cta-box { grid-template-columns: 1fr; }
  .phone-frame { transform: none; max-width: 390px; margin: 0 auto; }
  .badge-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-grid, .screenshots, .support-grid { grid-template-columns: 1fr; }
  section { padding: 58px 0; }
  .privacy-panel { padding: 30px; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  h1 { font-size: 56px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .badge-row { grid-template-columns: 1fr; }
  .screenshots { gap: 16px; }
  .card, .content-card { border-radius: 24px; }
}
