:root {
  color-scheme: light;
  --bg: #f7f9fc;
  --surface: #ffffff;
  --ink: #07111f;
  --ink-soft: #172033;
  --muted: #617086;
  --muted-strong: #42516a;
  --line: #dfe6ef;
  --line-strong: #cbd6e4;
  --blue: #006cff;
  --cyan: #22e6ff;
  --green: #20c578;
  --amber: #f4a124;
  --red: #ec5166;
  --shadow-sm: 0 10px 30px rgba(10, 23, 46, 0.08);
  --shadow-md: 0 24px 70px rgba(10, 23, 46, 0.14);
  --radius: 8px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

code {
  background: #eef4fb;
  border: 1px solid #dbe6f2;
  border-radius: 6px;
  color: #173a67;
  font-size: 0.92em;
  padding: 0.08rem 0.32rem;
}

::selection {
  background: rgba(34, 230, 255, 0.32);
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(223, 230, 239, 0.86);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 22px;
  height: var(--header-height);
  justify-content: space-between;
  left: 50%;
  padding: 0 14px 0 18px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  width: min(1208px, calc(100% - 48px));
  z-index: 20;
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(203, 214, 228, 0.98);
  box-shadow: 0 18px 46px rgba(10, 23, 46, 0.12);
}

.brand,
.footer-brand {
  align-items: center;
  display: inline-flex;
  font-weight: 500;
  gap: 10px;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 108, 255, 0.2);
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 13px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #edf4ff;
  color: var(--blue);
}

.nav-toggle {
  align-items: center;
  background: #f1f5fa;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 44px;
}

.nav-toggle span {
  background: currentColor;
  border-radius: 999px;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease;
  width: 18px;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.94), rgba(247, 249, 252, 1) 68%),
    radial-gradient(circle at 80% 12%, rgba(34, 230, 255, 0.22), transparent 34%),
    radial-gradient(circle at 10% 16%, rgba(244, 161, 36, 0.18), transparent 30%);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  min-height: 92svh;
  overflow: hidden;
  padding: 138px max(24px, calc((100vw - 1160px) / 2)) 68px;
}

.hero-copy {
  max-width: 650px;
}

.eyebrow {
  color: #195ea8;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 24px;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
  margin-bottom: 16px;
}

h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 10px;
}

.hero-lede {
  color: var(--muted-strong);
  font-size: 20px;
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 620px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.store-badge {
  display: inline-flex;
  line-height: 0;
  transition: transform 160ms ease, filter 160ms ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.store-badge img {
  height: 52px;
  width: auto;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 500;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-secondary {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #9eb5d0;
}

.text-link {
  color: var(--blue);
  display: inline-flex;
  font-weight: 500;
  line-height: 1.2;
  padding: 10px 0;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: #004fbf;
  text-decoration: underline;
  transform: translateY(-1px);
}

.hero-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 16px 0 0;
  max-width: 610px;
}

.hero-facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 38px 0 0;
}

.hero-facts div {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
}

.hero-facts .fact-title {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: flex;
  gap: 8px;
  margin-bottom: 5px;
  padding: 0;
}

.hero-facts svg {
  color: #007aff;
  fill: currentColor;
  flex: 0 0 auto;
  height: 19px;
  width: 19px;
}

.hero-facts strong {
  color: var(--ink);
  display: inline;
  font-size: 15px;
  font-weight: 500;
}

.hero-facts span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.35;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: auto;
  position: relative;
}

.hero-watch-image {
  filter: drop-shadow(0 34px 70px rgba(7, 17, 31, 0.22));
  height: auto;
  max-height: min(70svh, 620px);
  object-fit: contain;
  transform: translate(-78px, -22px);
  width: min(520px, 100%);
}

.watch-scene {
  height: 100%;
  min-height: 610px;
  position: relative;
}

.app-tile,
.json-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(203, 214, 228, 0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: absolute;
  z-index: 3;
}

.app-tile {
  align-items: center;
  display: flex;
  gap: 16px;
  left: 0;
  padding: 16px;
  top: 34px;
  width: min(320px, 62%);
}

.app-tile img {
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(0, 108, 255, 0.22);
  height: 92px;
  width: 92px;
}

.app-tile span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 400;
}

.app-tile strong {
  display: block;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.12;
}

.watch-body {
  background: #0a0f18;
  border: 1px solid #2a3342;
  border-radius: 60px;
  box-shadow:
    inset 0 0 0 3px #161e2a,
    0 36px 90px rgba(7, 17, 31, 0.28);
  height: 540px;
  margin: 40px auto 0;
  padding: 20px;
  position: relative;
  width: 386px;
}

.watch-body::before,
.watch-body::after {
  background: #111927;
  border: 1px solid #2f3a4d;
  content: "";
  position: absolute;
}

.watch-body::before {
  border-radius: 20px 20px 0 0;
  height: 72px;
  left: 50%;
  top: -68px;
  transform: translateX(-50%);
  width: 126px;
}

.watch-body::after {
  border-radius: 0 20px 20px 0;
  height: 86px;
  right: -18px;
  top: 194px;
  width: 24px;
}

.watch-screen {
  background:
    radial-gradient(circle at center, rgba(0, 108, 255, 0.2), transparent 45%),
    #05070b;
  border-radius: 42px;
  color: #ffffff;
  height: 100%;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.watch-status {
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  font-size: 12px;
  font-weight: 400;
  justify-content: space-between;
}

.watch-face {
  height: 440px;
  margin-top: 8px;
  position: relative;
}

.dial {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  height: 250px;
  left: 50%;
  position: absolute;
  top: 82px;
  transform: translateX(-50%);
  width: 250px;
}

.dial::before {
  border: 8px solid rgba(34, 230, 255, 0.32);
  border-radius: 50%;
  content: "";
  inset: 26px;
  position: absolute;
}

.tick {
  background: #ffffff;
  border-radius: 999px;
  height: 22px;
  left: 50%;
  position: absolute;
  top: 14px;
  transform: translateX(-50%);
  width: 4px;
}

.tick.right {
  left: auto;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.tick.bottom {
  bottom: 14px;
  top: auto;
}

.tick.left {
  left: 14px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}

.hand {
  background: linear-gradient(#ffffff, rgba(255, 255, 255, 0.2));
  border-radius: 999px;
  bottom: 50%;
  height: 78px;
  left: calc(50% - 3px);
  position: absolute;
  transform: rotate(34deg);
  transform-origin: bottom center;
  width: 6px;
}

.complication {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #ffffff;
  position: absolute;
}

.corner {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  height: 66px;
  justify-content: center;
  left: 12px;
  top: 86px;
  width: 66px;
}

.corner.right {
  left: auto;
  right: 12px;
}

.rect {
  border-radius: 14px;
  bottom: 16px;
  left: 50%;
  padding: 10px 12px;
  transform: translateX(-50%);
  width: 204px;
}

.rect span {
  color: var(--cyan);
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.rect strong {
  display: block;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.rect small {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 12px;
  font-weight: 400;
}

.json-card {
  bottom: 2px;
  max-width: 320px;
  padding: 16px;
  right: -4px;
  width: 54%;
}

.card-title {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.card-title strong {
  font-weight: 500;
}

.card-title span {
  background: var(--green);
  border-radius: 50%;
  height: 10px;
  width: 10px;
}

pre {
  background: #07111f;
  border-radius: var(--radius);
  color: #dcecff;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
  overflow-x: auto;
  padding: 14px;
}

pre code {
  background: transparent;
  border: 0;
  color: inherit;
  padding: 0;
}

.trust-strip {
  align-items: center;
  background: var(--ink);
  color: #ffffff;
  display: flex;
  gap: 18px;
  justify-content: center;
  padding: 18px 24px;
  text-align: center;
}

.trust-strip p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.trust-strip a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.section,
.examples-section,
.limits-band {
  padding: 88px max(24px, calc((100vw - 1160px) / 2));
}

.section-heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted-strong);
  font-size: 18px;
  margin-bottom: 0;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.template-grid,
.examples-grid {
  display: grid;
  gap: 16px;
}

.examples-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.template-card,
.example-card,
.audience-card,
.plan-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(10, 23, 46, 0.06);
}

.example-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.example-card p,
.template-card p,
.audience-card p,
.plan-card p,
.detail-copy p,
.faq-item p {
  color: var(--muted-strong);
  margin-bottom: 0;
}

.setup-flow {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  position: relative;
}

.four-step-flow {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.setup-step {
  background: #ffffff;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.06);
  min-height: 190px;
  overflow: visible;
  padding: 24px;
  position: relative;
}

.setup-step:not(:last-child)::after {
  align-items: center;
  color: var(--blue);
  content: "→";
  display: flex;
  font-size: 18px;
  font-weight: 400;
  height: 24px;
  justify-content: center;
  line-height: 1;
  opacity: 0.72;
  position: absolute;
  right: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  z-index: 2;
}

.step-heading {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.step-heading h3 {
  margin: 0;
}

.step-number {
  align-items: center;
  background: rgba(0, 122, 255, 0.08);
  border: 1px solid rgba(0, 122, 255, 0.14);
  border-radius: 999px;
  color: #007aff;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 12px;
  height: 28px;
  justify-content: center;
  width: 38px;
}

.setup-step p {
  color: var(--muted-strong);
  margin-bottom: 0;
}

.limits-band {
  background: #ffffff;
  border-block: 1px solid var(--line);
}

.template-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.template-card {
  overflow: hidden;
  padding: 18px;
}

.template-preview {
  align-items: center;
  background: #000000;
  border-radius: 8px;
  display: flex;
  height: 150px;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
  padding: 16px;
}

.template-preview img {
  display: block;
  height: auto;
  max-height: 118px;
  max-width: 100%;
  object-fit: contain;
}

.template-preview.square img {
  max-height: 118px;
  max-width: 118px;
}

.mini-complication {
  background:
    radial-gradient(circle at 82% 18%, rgba(34, 230, 255, 0.26), transparent 30%),
    #07111f;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  color: #ffffff;
  min-height: 104px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.mini-complication::after {
  background: rgba(34, 230, 255, 0.72);
  border-radius: 999px;
  bottom: 14px;
  content: "";
  height: 4px;
  left: 16px;
  position: absolute;
  width: 56%;
}

.mini-complication span,
.mini-complication strong {
  display: block;
  position: relative;
  z-index: 1;
}

.mini-complication span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 5px;
}

.mini-complication strong {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.mini-complication.status-ok::after {
  background: var(--green);
}

.mini-complication.status-fail::after {
  background: var(--red);
}

.mini-complication.progress-preview::after {
  background: linear-gradient(90deg, var(--green) 68%, rgba(255, 255, 255, 0.16) 68%);
  width: calc(100% - 32px);
}

.examples-section {
  background: #eef4f9;
}

.example-card h3 {
  align-items: center;
  display: flex;
  gap: 9px;
}

.example-card h3::before {
  background: var(--amber);
  border-radius: 50%;
  content: "";
  height: 10px;
  width: 10px;
}

.audience-section {
  background: #f7f9fc;
}

.audience-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.audience-card {
  padding: 22px;
}

.audience-card h3 {
  font-size: 18px;
}

.plans {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.plan-card {
  padding: 28px;
}

.plan-badge {
  background: rgba(0, 108, 255, 0.1);
  border: 1px solid rgba(0, 108, 255, 0.16);
  border-radius: 999px;
  color: var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  padding: 5px 10px;
  text-transform: uppercase;
}

.plan-card.pro {
  border-color: rgba(0, 108, 255, 0.36);
  box-shadow: 0 22px 64px rgba(0, 108, 255, 0.12);
}

.plan-subtitle {
  font-size: 17px;
}

.plan-card ul {
  color: var(--muted-strong);
  margin: 24px 0 0;
  padding-left: 20px;
}

.plan-card li + li {
  margin-top: 9px;
}

.plan-cta {
  margin-top: 24px;
}

.plan-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
}

.detail-section {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list div {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.detail-list strong,
.detail-list span {
  display: block;
}

.detail-list strong {
  margin-bottom: 6px;
}

.detail-list span {
  color: var(--muted-strong);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(10, 23, 46, 0.05);
  padding: 0 20px;
}

.faq-item summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  list-style: none;
  padding: 19px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  color: var(--blue);
  content: "+";
  float: right;
  font-size: 22px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  border-top: 1px solid var(--line);
  padding: 16px 0 20px;
}

.site-footer {
  background: var(--ink);
  color: #ffffff;
  padding: 34px max(24px, calc((100vw - 1160px) / 2));
}

.footer-inner {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: #ffffff;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-watch-image {
    transform: translate(-54px, -12px);
    width: min(460px, 100%);
  }

  .examples-grid,
  .template-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .four-step-flow,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .four-step-flow .setup-step::after {
    display: none;
  }

  .detail-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    left: 14px;
    padding: 12px;
    position: fixed;
    right: 14px;
    top: 92px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius);
    width: 100%;
  }

  .hero {
    gap: 36px;
    min-height: auto;
    padding-top: 116px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-watch-image {
    max-height: 520px;
    transform: translate(-38px, -8px);
    width: min(420px, 100%);
  }

  .watch-body {
    height: 500px;
    width: min(360px, 100%);
  }

  .app-tile {
    width: min(300px, 78%);
  }

  .json-card {
    bottom: 10px;
    right: 0;
    width: min(310px, 78%);
  }

  .trust-strip,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .plans {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .site-header {
    width: calc(100% - 36px);
  }

  .brand img {
    height: 34px;
    width: 34px;
  }

  .hero,
  .section,
  .examples-section,
  .limits-band {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-bottom: 42px;
  }

  .hero-copy {
    max-width: 330px;
    width: min(100%, 330px);
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
    max-width: 330px;
  }

  .hero-lede,
  .hero-note {
    max-width: 100%;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .store-badge img {
    height: 48px;
  }

  .button {
    width: 100%;
  }

  .examples-grid,
  .template-grid,
  .audience-grid,
  .four-step-flow {
    grid-template-columns: 1fr;
  }

  .setup-flow {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .setup-step:not(:last-child)::after {
    bottom: -30px;
    content: "↓";
    display: flex;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-watch-image {
    max-height: none;
    transform: none;
    width: min(330px, 86vw);
  }

  .app-tile {
    left: 0;
    top: 0;
  }

  .app-tile img {
    height: 72px;
    width: 72px;
  }

  .app-tile strong {
    font-size: 18px;
  }

  .watch-body {
    border-radius: 46px;
    height: 470px;
    margin-top: 80px;
    padding: 16px;
  }

  .watch-body::before {
    height: 54px;
    top: -50px;
    width: 108px;
  }

  .watch-body::after {
    right: -12px;
    width: 18px;
  }

  .watch-screen {
    border-radius: 34px;
    padding: 18px;
  }

  .watch-face {
    height: 398px;
  }

  .dial {
    height: 218px;
    top: 72px;
    width: 218px;
  }

  .corner {
    font-size: 15px;
    height: 54px;
    width: 54px;
  }

  .rect {
    bottom: 18px;
    width: 190px;
  }

  .rect strong {
    font-size: 24px;
  }

  .json-card {
    bottom: 12px;
    right: 50%;
    transform: translateX(50%);
    width: min(320px, 88vw);
  }

  pre {
    font-size: 12px;
  }

  .section,
  .examples-section,
  .limits-band {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
