:root {
  --paper: #f7f5f2;
  --ink: #1a1917;
  --ink2: #5c5a55;
  --ink3: #a09d97;
  --vermilion: #e4572e;
  --card: #ffffff;
  --hairline: #e7e4df;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--ink); }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; position: relative; }
header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; text-decoration: none; }
nav a { text-decoration: none; color: var(--ink2); font-size: 15px; margin-left: 22px; }
nav a:hover { color: var(--ink); }

.hero { text-align: center; padding: 46px 0 30px; position: relative; }
.hero h1 {
  font-size: clamp(34px, 6vw, 58px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.05;
}
.hero h1 em { font-style: normal; color: var(--vermilion); }
.hero p.sub { font-size: 19px; color: var(--ink2); margin-top: 14px; }
.hero p.beats { font-size: 15px; color: var(--ink3); margin-top: 8px; }
.cta {
  display: inline-block; margin-top: 26px; background: var(--ink); color: #fff;
  border-radius: 999px; padding: 15px 30px; font-size: 17px; font-weight: 600; text-decoration: none;
}
.cta.soon { background: var(--card); color: var(--ink2); border: 1.5px solid var(--hairline); cursor: default; }

.phones { display: flex; justify-content: center; gap: 26px; padding: 44px 0 10px; flex-wrap: wrap; }
.phone {
  width: 250px; border-radius: 32px; overflow: hidden; background: #fff;
  border: 6px solid #fff;
  box-shadow: 0 18px 44px rgba(26,25,23,0.16);
}
.phone img { width: 100%; display: block; }
.phone:nth-child(1) { transform: rotate(-3deg) translateY(12px); }
.phone:nth-child(2) { transform: translateY(-6px); }
.phone:nth-child(3) { transform: rotate(3deg) translateY(12px); }

.sticker { position: absolute; pointer-events: none; filter: drop-shadow(0 8px 14px rgba(26,25,23,0.18)); animation: drift 5.4s ease-in-out infinite alternate; }
@keyframes drift {
  from { transform: translateY(0) rotate(var(--rot, -6deg)); }
  to { transform: translateY(-14px) rotate(calc(var(--rot, -6deg) + 5deg)); }
}
@media (prefers-reduced-motion: reduce) { .sticker { animation: none; } }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; padding: 60px 0; }
.feature {
  background: var(--card); border-radius: 22px; padding: 26px;
  box-shadow: 0 8px 26px rgba(26,25,23,0.07);
}
.feature .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--vermilion); margin-bottom: 14px; }
.feature h3 { font-size: 19px; margin-bottom: 8px; }
.feature p { font-size: 15px; color: var(--ink2); line-height: 1.5; }

footer.site {
  border-top: 1px solid var(--hairline); margin-top: 40px; padding: 28px 0 44px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 14px; color: var(--ink3);
}
footer.site a { color: var(--ink2); text-decoration: none; margin-right: 16px; }

.doc { max-width: 720px; margin: 0 auto; padding: 30px 24px 70px; }
.doc h1 { font-size: 34px; letter-spacing: -0.6px; margin-bottom: 6px; }
.doc p.updated { color: var(--ink3); font-size: 14px; margin-bottom: 26px; }
.doc h2 { font-size: 20px; margin: 26px 0 8px; }
.doc p, .doc li { font-size: 16px; line-height: 1.65; color: var(--ink2); }
.doc ul { padding-left: 22px; margin: 8px 0; }
.doc strong { color: var(--ink); }
