:root {
  --teal-light: #01ab9e;
  --teal: #04999a;
  --teal-deep: #03748f;
  --ink: #15242a;
  --muted: #5d6f76;
  --bg: #f4f7f7;
  --card: #ffffff;
}

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

html { scroll-behavior: smooth; }

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

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

a { color: var(--teal-deep); }

/* ── Header ──────────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 56px);
  position: sticky;
  top: 0;
  background: rgba(244, 247, 247, 0.85);
  backdrop-filter: blur(12px);
  z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--ink);
}
.brand img { border-radius: 8px; }
.studio-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) clamp(20px, 5vw, 56px);
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.lede {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  max-width: 30ch;
}
.badges { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.badge {
  background: var(--teal-deep);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 9px 16px;
  border-radius: 999px;
}
.hero-shot img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 34px;
  box-shadow: 0 30px 60px -20px rgba(3, 116, 143, 0.45);
}

/* ── Features ────────────────────────────────────────── */
.features, .showcase, .how {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 56px);
}
.features h2, .showcase h2, .how h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: -0.02em;
  margin-bottom: 36px;
  text-align: center;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.card {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(21, 36, 42, 0.06);
}
.card-icon {
  font-size: 1.8rem;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-deep));
  border-radius: 14px;
  margin-bottom: 16px;
}
.card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.97rem; }

/* ── Showcase ────────────────────────────────────────── */
.showcase {
  background: linear-gradient(160deg, var(--teal-light), var(--teal-deep));
  max-width: none;
  color: #fff;
}
.showcase h2 { color: #fff; }
.shots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(20px, 4vw, 48px);
  max-width: 1100px;
  margin: 0 auto;
}
.shots figure { text-align: center; }
.shots img {
  width: 240px;
  border-radius: 28px;
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.5);
}
.shots figcaption {
  margin-top: 16px;
  font-weight: 600;
  opacity: 0.95;
}

/* ── Widgets ─────────────────────────────────────────── */
.widgets {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 56px);
  text-align: center;
}
.widgets h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.widgets-sub {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 38px;
}
.widget-shots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 4vw, 44px);
}
.widget-shots img {
  border-radius: 22px;
  box-shadow: 0 18px 42px -16px rgba(3, 116, 143, 0.45);
}
.widget-wide { width: min(440px, 92vw); }
.widget-small { width: min(170px, 44vw); }

/* ── Apple Watch ─────────────────────────────────────── */
.watch {
  background: linear-gradient(160deg, #1d2b30, #0b1315);
  max-width: none;
  color: #fff;
  text-align: center;
  padding: clamp(40px, 6vw, 84px) clamp(20px, 5vw, 56px);
}
.watch h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: #fff;
}
.watch-sub {
  color: rgba(255, 255, 255, 0.72);
  max-width: 48ch;
  margin: 0 auto 40px;
}
.watch-shots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(24px, 5vw, 56px);
}
.watch-shots figure { text-align: center; }
.watch-shots .frame {
  display: inline-block;
  background: #000;
  padding: 9px;
  border-radius: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 50px -16px rgba(0, 0, 0, 0.7);
}
.watch-shots img {
  display: block;
  width: 190px;
  border-radius: 38px;
}
.watch-shots figcaption {
  margin-top: 16px;
  font-weight: 600;
  opacity: 0.95;
}

/* ── How ─────────────────────────────────────────────── */
.steps {
  list-style: none;
  display: grid;
  gap: 16px;
  max-width: 640px;
  margin: 0 auto;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--card);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 1.05rem;
  box-shadow: 0 1px 3px rgba(21, 36, 42, 0.06);
}
.steps span {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light), var(--teal-deep));
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Legal pages ─────────────────────────────────────── */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 64px) clamp(20px, 5vw, 40px);
}
.legal h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: -0.02em;
}
.legal .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.legal .tldr {
  background: var(--card);
  border-left: 4px solid var(--teal);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(21, 36, 42, 0.06);
}
.legal h2 {
  font-size: 1.2rem;
  margin: 28px 0 8px;
}
.legal p {
  color: #33454c;
}

/* ── Footer ──────────────────────────────────────────── */
.site-footer {
  text-align: center;
  padding: 56px 20px 64px;
  color: var(--muted);
}
.site-footer img { margin: 0 auto 14px; border-radius: 10px; }
.site-footer a { font-weight: 700; }
.site-footer .fine { font-size: 0.85rem; margin-top: 8px; }

@media (max-width: 720px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero .lede { max-width: none; }
  .badges { justify-content: center; }
  .hero-shot { order: -1; }
}
