:root {
  --bg: #0e0e0c;
  --surface: #171714;
  --fg: #f3f1ec;
  --muted: #9c9890;
  --subtle: #6e6b64;
  --accent: #e8e4db;
  --accent-fg: #0e0e0c;
  --border: #2a2925;
  --font: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --display: "Fraunces", ui-serif, Georgia, serif;
}
* { box-sizing: border-box; }
html { color-scheme: dark; scroll-behavior: smooth; }
html, body { margin: 0; background: var(--bg); color: var(--fg); font-family: var(--font); }
.skip {
  position: absolute; left: 12px; top: -48px;
  background: var(--accent); color: var(--accent-fg);
  padding: 8px 12px; border-radius: 8px; z-index: 20; font-size: 13px;
}
.skip:focus { top: 12px; }
body { min-height: 100dvh; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
header.site, footer.site { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
header.site { padding: 20px 0 8px; }
footer.site { padding: 40px 0 48px; border-top: 1px solid var(--border); margin-top: 64px; }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.wordmark::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 62%,
    #f3f1ec 0 12%,
    rgba(243, 241, 236, 0.38) 30%,
    transparent 70%
  );
}
nav a { font-size: 13px; color: var(--muted); min-height: 44px; display: inline-flex; align-items: center; }
nav a:hover { color: var(--fg); }
.kicker { font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0; }
h1, h2 { font-family: var(--display); font-weight: 500; letter-spacing: -0.03em; text-wrap: balance; }
h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.1; margin: 12px 0 0; max-width: 18ch; }
h2 { font-size: 28px; margin: 0 0 8px; }
p { color: var(--muted); line-height: 1.6; text-wrap: pretty; }
.lede { max-width: 42ch; font-size: 16px; }
.hero-img { border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin: 24px 0 32px; }
.hero-img img { width: 100%; height: 280px; object-fit: cover; object-position: bottom; }
.btn { display: inline-flex; align-items: center; justify-content: center; height: 48px; padding: 0 20px; border-radius: 12px; background: var(--accent); color: var(--accent-fg); font-size: 14px; font-weight: 500; }
.grid { display: grid; gap: 12px; margin-top: 24px; }
@media (min-width: 800px) {
  .grid.three { grid-template-columns: 1fr 1fr 1fr; }
  .grid.two { grid-template-columns: 1fr 1fr; }
  .hero-img img { height: 360px; }
}
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px; }
.card p { margin: 8px 0 0; }
section { padding-top: 56px; }
.legal { max-width: 640px; padding: 24px 0 0; }
.legal h2 { font-size: 22px; margin: 28px 0 8px; color: var(--fg); }
.legal p { margin: 0 0 12px; }
.legal a { text-decoration: underline; text-underline-offset: 3px; color: var(--fg); }

.phones { margin: 48px 0 8px; display: flex; align-items: flex-end; justify-content: center; gap: 16px; }
.iphone {
  position: relative; flex: 0 0 auto; width: 196px;
  background: linear-gradient(165deg, #4a4a46, #1c1c1a 40%, #0b0b0a);
  border-radius: 38px; padding: 9px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.07) inset, 0 28px 60px rgba(0,0,0,.5);
}
.iphone.hero { width: 268px; z-index: 2; }
.iphone.left { transform: rotate(-8deg) translateY(28px); }
.iphone.right { transform: rotate(8deg) translateY(28px); }
.iphone .glass {
  position: relative; overflow: hidden; border-radius: 30px; background: #0e0e0c;
  aspect-ratio: 402 / 874;
}
.iphone .glass img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; }
.iphone .island {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 68px; height: 20px; background: #000; border-radius: 12px; z-index: 3;
}
.iphone .rail { position: absolute; width: 3px; background: #2a2a26; border-radius: 1px; }
.iphone .rail.action { left: -3px; top: 16%; height: 14px; }
.iphone .rail.vol { left: -3px; top: 22%; height: 28px; }
.iphone .rail.vol2 { left: -3px; top: 32%; height: 28px; }
.iphone .rail.power { right: -3px; top: 28%; height: 48px; }
.phones-cap { text-align: center; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--subtle); margin: 28px 0 0; }
@media (max-width: 800px) {
  .iphone.left, .iphone.right { display: none; }
  .iphone.hero { width: min(280px, 72vw); }
}
