:root {
  --bg: #0b0b0c;
  --panel: #161618;
  --panel2: #1f1f22;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
u { text-decoration: underline; text-underline-offset: 3px; }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px; position: sticky; top: 0;
  background: rgba(11,11,12,0.8); backdrop-filter: blur(12px);
  border-bottom: 1px solid #232327; z-index: 10;
}
.brand { font-weight: 700; font-size: 20px; display: flex; align-items: center; gap: 10px; }
.logo {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--accent); color: #000; font-weight: 800;
}
.nav nav { display: flex; align-items: center; gap: 22px; }
.nav nav a { color: var(--muted); font-size: 15px; }
.nav nav a:hover { color: var(--text); }

.btn {
  display: inline-block; background: var(--accent); color: #000;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  white-space: nowrap;
  transition: transform .08s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-small { padding: 8px 16px; font-size: 14px; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid #3a3a40; }
.btn.disabled { opacity: .45; pointer-events: none; }

section { padding: 72px 28px; max-width: 1080px; margin: 0 auto; }
h1 { font-size: clamp(30px, 6vw, 52px); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(24px, 4vw, 34px); margin-bottom: 28px; letter-spacing: -0.01em; }
h3 { font-size: 19px; margin-bottom: 8px; }

.hero { text-align: center; padding-top: 80px; padding-bottom: 40px; }
.hero .sub { color: var(--muted); font-size: 18px; max-width: 640px; margin: 22px auto 32px; }
.cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.shot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; }
.phone {
  background: var(--panel); border: 1px solid #26262b; border-radius: 28px;
  padding: 14px; text-align: center;
}
.phone img { width: 100%; border-radius: 18px; display: block; }
.phone.placeholder img { display: none; }
.phone.placeholder {
  aspect-ratio: 9 / 19; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  background: repeating-linear-gradient(135deg, #161618, #161618 12px, #19191c 12px, #19191c 24px);
}
.phone figcaption { color: var(--muted); font-size: 14px; margin-top: 12px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card { background: var(--panel); border: 1px solid #26262b; border-radius: 18px; padding: 26px; }
.card .ic { font-size: 28px; margin-bottom: 12px; }
.card p { color: var(--muted); }

.privacy { text-align: center; }
.privacy p { color: var(--muted); max-width: 680px; margin: 0 auto; font-size: 17px; }

.getkey .apology { color: var(--muted); max-width: 680px; margin: 0 auto 30px; text-align: center; }
.keys { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.keycard { background: var(--panel); border: 1px solid #26262b; border-radius: 18px; padding: 24px; }
.keycard h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.keycard .free, .keycard .paid { font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 999px; }
.keycard .free { color: #0b0b0c; background: #5fd08a; }
.keycard .paid { color: var(--muted); border: 1px solid #3a3a40; }
.keycard ol { color: var(--muted); padding-left: 20px; line-height: 1.8; margin-bottom: 14px; }
.keycard a { color: var(--text); text-decoration: underline; }
.ss { border: 1px solid #26262b; border-radius: 12px; padding: 8px; }
.ss img { width: 100%; border-radius: 8px; display: block; }
.ss.placeholder img { display: none; }
.ss.placeholder { aspect-ratio: 16 / 10; display: flex; align-items: flex-end; justify-content: center; background: repeating-linear-gradient(135deg, #161618, #161618 12px, #19191c 12px, #19191c 24px); }
.ss figcaption { color: var(--muted); font-size: 13px; text-align: center; margin-top: 8px; }

.get { text-align: center; }
.get p { color: var(--muted); margin-bottom: 18px; }
.beta-note { color: var(--text); font-size: 18px; max-width: 560px; margin: 0 auto 18px; }
.beta-steps { display: inline-block; text-align: left; color: var(--muted); max-width: 460px; margin: 0 auto 26px; padding-left: 20px; line-height: 1.9; }
.beta-steps a { color: var(--text); text-decoration: underline; }

.legal { max-width: 760px; }
.legal h1 { margin-bottom: 6px; }
.legal .updated { color: var(--muted); margin-bottom: 28px; }
.legal h2 { font-size: 22px; margin: 30px 0 12px; }
.legal p, .legal li { color: var(--muted); }
.legal ul { padding-left: 22px; line-height: 1.8; }
.legal a { color: var(--text); text-decoration: underline; }
.brand a { color: inherit; }

.lang { border: 1px solid #3a3a40; border-radius: 999px; padding: 6px 12px; font-size: 13px; font-weight: 700; color: var(--muted); }
.lang:hover { color: var(--text); }

.android { text-align: center; }
.android p { color: var(--muted); max-width: 620px; margin: 0 auto 26px; }
.interest { max-width: 460px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.interest input, .interest textarea {
  background: var(--panel); border: 1px solid #2a2a30; border-radius: 12px;
  padding: 14px; color: var(--text); font-size: 15px; font-family: inherit;
}
.interest textarea { min-height: 80px; resize: vertical; }
.interest input::placeholder, .interest textarea::placeholder { color: #6b6b73; }
.interest .btn { border: none; cursor: pointer; margin-top: 4px; }
.formnote { color: var(--muted); font-size: 13px; text-align: center; margin-top: 6px; }

footer { border-top: 1px solid #232327; padding: 28px; text-align: center; color: var(--muted); font-size: 14px; }
footer a { color: var(--text); }

/* Mobile: keep the nav on one tidy row — hide the in-page anchor links (the page
   scrolls anyway), keep brand · Get the beta · language. */
@media (max-width: 640px) {
  .nav { padding: 14px 16px; }
  .nav nav { gap: 12px; }
  .nav nav a:not(.btn):not(.lang) { display: none; }
  .brand { font-size: 18px; }
  h1 { font-size: clamp(26px, 8vw, 40px); }
  section { padding: 56px 22px; }
}
