@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --bg: #ffffff;
  --fg: lcha(56% 0 0 / 1);
  --head: lcha(0% 2 0 / 1);
  --muted: lcha(56% 0 0 / 0.80);
  --accent: var(--head);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font: 18px/1.75 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: var(--muted);
  background: var(--bg);
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.container { width: min(64rem, 92%); margin: 0 auto; }
.hero-head { display: flex; align-items: center; gap: 16px; }
.hero { text-align: left; padding: 32px 0 32px; }
.logo { width: 84px; height: 84px; box-shadow: 0 12px 30px rgba(0,0,0,0.15); }
h1 { font-size: 56px; margin: 18px 0 10px; letter-spacing: -0.02em; color: var(--head); font-weight: 600; }
.features h2 { color: var(--head); }
p { color: var(--muted); font-size: 20px; }
.tag { color: var(--muted); margin: 12px 0 20px; max-width: 52rem; font-size: 20px; }
.cta { display: inline-flex; gap: 32px; margin-top: 12px; }
.btn {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  /* Use fixed radii so all sides curve equally */
  border-radius: 14px;
  z-index: -1;
}
.btn.ghost { color: var(--muted); }
.btn.ghost::before { background: transparent; box-shadow: inset 0 0 0 1px color-mix(in lch, var(--head) 40%, transparent); }

.btn { position: static; display: inline; padding: 0; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1.2px; color: inherit; font-weight: 400; transition: color 120ms ease-in-out; }
.btn::before { display: none; content: none; }
.btn.ghost { color: inherit; }
.btn.ghost::before { display: none; box-shadow: none; }

.btn:hover { color: #747474; }

.shots { display: grid; grid-template-columns: 1fr; justify-items: center; gap: 12px; margin: 10px 0 8px; }
.shots figure { margin: 0; text-align: center; }
.shots img { width: 75%; height: auto; justify-self: center; box-shadow: 0 10px 24px rgba(0,0,0,0.12); background: #f2f2f2; }
.shots video { width: 90%; max-width: 820px; height: auto; display: block; justify-self: center; box-shadow: 0 10px 24px rgba(0,0,0,0.12); background: #f2f2f2; }
.shots figcaption { font-size: 12px; color: #747474; margin-top: 4px; }

.squircle { border-radius: 14% / 12%; overflow: hidden; }

video.squircle { border-radius: 28px; }

.logo.squircle { border-radius: 30% / 26%; }

.btn.squircle { overflow: visible; }

.features { padding: 8px 0 72px; }
.features h2 { margin: 0 0 8px; }
.features ul { margin: 0; padding-left: 18px; color: var(--muted); }

.foot { text-align: center; padding: 12px 0 24px; color: #5e5e5e; border-top: 1px solid color-mix(in lch, var(--head) 12%, transparent); }

.foot small { font-size: 14px; line-height: 1.4; letter-spacing: 0.1px; }
.foot a { color: inherit; text-decoration: none; }
.foot a:hover { color: inherit; text-decoration: underline; }
.foot a.ink { color: #171717; }
.foot a.ink:hover { color: #171717; text-decoration: underline; }

.hero .tag { max-width: 50vw; margin: 8px 0 2px; }
.ink { color: #171717; }

@media (max-width: 640px) {
  .hero { padding: 20px 0 20px; }
  h1 { font-size: 34px; margin: 12px 0 6px; }
  .logo { width: 64px; height: 64px; }
  p, .tag { font-size: 18px; }
  .hero .tag { max-width: 100%; }
  .shots { grid-template-columns: 1fr; gap: 20px; }
  .shots img { width: 90%; justify-self: center; }
  .shots video { width: 100%; max-width: 100%; }
}


