:root {
  --ink: #0b0b0d;
  --muted: #5c5c66;
  --line: rgba(11, 11, 13, 0.08);
  --bg: #f6f5f2;
  --paper: #fffcf8;
  --accent: #2f6bff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 85% 8%, rgba(47, 107, 255, 0.14), transparent 60%),
    radial-gradient(700px 420px at 12% 18%, rgba(255, 214, 170, 0.28), transparent 55%),
    var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  backdrop-filter: blur(16px);
  background: rgba(246, 245, 242, 0.72);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 640;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 560;
  font-size: 15px;
  letter-spacing: -0.02em;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-1px); background: #1a1a1f; }

.btn-sm { padding: 8px 14px; font-size: 13px; }

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 7vw 40px;
  min-height: calc(100vh - 72px);
}

.hero-copy h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 1.05;
  font-weight: 670;
}

.hero-copy h1 { font-size: clamp(42px, 6vw, 72px); }

.hero-copy p,
.feature-copy p,
.lede {
  color: var(--muted);
  font-size: 18px;
  max-width: 38ch;
  margin-top: 16px;
}

.hero-copy .btn { margin-top: 28px; }

.fine {
  margin-top: 12px !important;
  font-size: 13px !important;
  color: #8a8a93 !important;
}

.kicker {
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent) !important;
  margin-top: 0 !important;
}

.shortcut {
  display: inline-block;
  margin-top: 18px !important;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 14px !important;
  font-weight: 640;
  color: var(--ink) !important;
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 10px;
}

code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.92em;
  background: rgba(11, 11, 13, 0.06);
  padding: 1px 6px;
  border-radius: 6px;
}

.window {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 28px 70px rgba(20, 20, 30, 0.16);
  border: 1px solid rgba(11, 11, 13, 0.06);
}

.chrome {
  display: flex;
  gap: 7px;
  padding: 11px 14px 8px;
  background: #eceae6;
}

.chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d0cc;
}

.chrome span:nth-child(1) { background: #ff5f57; }
.chrome span:nth-child(2) { background: #febc2e; }
.chrome span:nth-child(3) { background: #28c840; }

.window img { width: 100%; height: auto; }

.window.bare .chrome { display: none; }

.hero-shot { transform: perspective(1400px) rotateY(-8deg) rotateX(3deg); }

.feature {
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 56px;
  align-items: center;
  padding: 100px 7vw;
}

.feature.flip { grid-template-columns: 1fr minmax(260px, 380px); }
.feature.flip .feature-copy { order: 2; }

.feature h2,
.privacy h2,
.cta h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  margin-top: 8px;
}

.privacy,
.cta {
  text-align: center;
  padding: 110px 7vw;
}

.privacy .lede,
.cta .fine { margin-left: auto; margin-right: auto; }

.pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.pills li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 530;
}

.cta-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 22px;
}

.cta .btn { margin-top: 36px; }

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 7vw 40px;
  color: #8a8a93;
  font-size: 13px;
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .hero,
  .feature,
  .feature.flip {
    grid-template-columns: 1fr;
    min-height: unset;
    padding: 48px 6vw;
    gap: 28px;
  }
  .feature.flip .feature-copy { order: 0; }
  .hero-shot { transform: none; }
  .nav { padding: 14px 6vw; }
}
