:root {
  --cream: #fff6e5;
  --ink: #141414;
  --yellow: #ffd23f;
  --tomato: #e3524d;
  --pink: #ff6fb5;
  --orange: #ff8a3d;
  --green: #3bb273;
  --blue: #4d9de0;
  --muted: #5b5750;
  --shadow: 6px 6px 0 var(--ink);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font: 17px/1.55 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- type ---------- */
.display {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  line-height: .9;
  font-size: clamp(64px, 12vw, 150px);
  margin: 0;
}
.display span {
  display: block;
  color: var(--yellow);
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 6px 6px 0 var(--ink);
}
.display span + span { color: var(--tomato); }
.display-md {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  margin: 0 0 32px;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}
.light { color: #fff; }
.outline.light { color: transparent; -webkit-text-stroke-color: #fff; }
.tagline {
  display: inline-block;
  margin: 22px 0 0;
  padding: 6px 16px;
  background: var(--pink);
  color: #fff;
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  text-transform: uppercase;
  transform: rotate(-2deg);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.lede { font-size: 19px; color: var(--muted); max-width: 520px; margin: 24px 0 32px; }
.lede.light { color: #d8d4cc; }
.kicker {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--tomato);
  margin: 0 0 10px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--orange);
  color: var(--ink);
  font-family: Anton, Impact, sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 30px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(4px, 4px); box-shadow: 2px 2px 0 var(--ink); }
.btn-small { font-size: 16px; padding: 8px 16px; box-shadow: 4px 4px 0 var(--ink); }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: var(--cream);
  border-bottom: 3px solid var(--ink);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 9px; border: 2px solid var(--ink); }
.nav nav { display: flex; align-items: center; gap: 22px; font-weight: 600; font-size: 15px; }
.nav nav a:not(.btn) { text-decoration: none; }
.nav nav a:not(.btn):hover { text-decoration: underline; }

/* ---------- hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 96px) clamp(16px, 4vw, 48px) 64px;
}
.hero-devices { position: relative; min-height: 600px; display: grid; place-items: center; }
.hero-devices .float {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 22%;
  z-index: 3;
  transform: rotate(var(--r));
  filter: drop-shadow(4px 5px 0 rgba(20, 20, 20, .9));
  animation: bob 4s ease-in-out var(--d) infinite;
}
.hero-devices .iphone { position: relative; left: 8%; }
.hero-devices .awatch { position: absolute; left: 2%; bottom: 2%; z-index: 2; }
.tilt-left { transform: rotate(-4deg); }
.tilt-right { transform: rotate(7deg); }

/* ---------- device mockups (pure CSS around real screenshots) ---------- */
.iphone {
  width: 290px;
  aspect-ratio: 1206 / 2622;
  padding: 11px;
  border-radius: 52px;
  background: #1b1b1d;
  box-shadow:
    0 0 0 3px #5a5a5f,
    0 0 0 6px var(--ink),
    14px 14px 0 6px var(--ink);
  position: relative;
}
.iphone::before, .iphone::after {
  /* side buttons */
  content: "";
  position: absolute;
  width: 5px;
  border-radius: 3px;
  background: #3a3a3c;
  border: 2px solid var(--ink);
}
.iphone::before { left: -12px; top: 18%; height: 11%; }
.iphone::after { right: -12px; top: 24%; height: 16%; }
.iphone img { width: 100%; height: 100%; object-fit: cover; border-radius: 42px; }
.iphone.large { width: min(340px, 78vw); }

.awatch { width: 190px; display: grid; justify-items: center; }
.awatch .case {
  position: relative;
  width: 100%;
  aspect-ratio: 410 / 502;
  padding: 12px;
  border-radius: 52px;
  background: #1c1c1e;
  box-shadow: 0 0 0 3px #5a5a5f, 0 0 0 6px var(--ink), 10px 10px 0 6px var(--ink);
  z-index: 1;
}
.awatch .case::after {
  /* digital crown */
  content: "";
  position: absolute;
  right: -16px;
  top: 24%;
  width: 12px;
  height: 18%;
  border-radius: 5px;
  background: #3a3a3c;
  border: 3px solid var(--ink);
}
.awatch .case img { width: 100%; height: 100%; object-fit: cover; border-radius: 40px; }
.awatch .band { width: 72%; height: 70px; background: var(--pink); border: 3px solid var(--ink); }
.awatch .band-top { border-radius: 26px 26px 0 0; border-bottom: none; margin-bottom: -6px; }
.awatch .band-bottom { border-radius: 0 0 26px 26px; border-top: none; margin-top: -6px; }
.awatch.large { width: min(260px, 64vw); }
.awatch.large .band { height: 110px; }

.device-stage {
  display: grid;
  place-items: center;
  padding: 48px 24px;
  background: var(--stage);
  border: 3px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-1deg);
}
.dark-stage { box-shadow: 10px 10px 0 #fff; }

@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* ---------- tape ---------- */
.tape {
  background: var(--yellow);
  border-block: 3px solid var(--ink);
  transform: rotate(-2deg);
  margin: 24px -20px 40px;
  overflow: hidden;
  white-space: nowrap;
}
.tape-track { display: inline-flex; animation: scroll 28s linear infinite; }
.tape-track span {
  font-family: Anton, Impact, sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  padding: 10px 0;
  letter-spacing: .02em;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { max-width: 1240px; margin: 0 auto; padding: clamp(56px, 8vw, 112px) clamp(16px, 4vw, 48px); }
.card {
  background: #fff;
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--c, var(--ink));
  padding: 24px;
}
.card h3 { font-size: 21px; margin: 6px 0 8px; }
.card p { margin: 0; color: var(--muted); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; }
.steps .card:nth-child(odd) { transform: rotate(-1deg); }
.steps .card:nth-child(even) { transform: rotate(1deg); }
.num { font-family: Anton, Impact, sans-serif; font-size: 40px; color: var(--c); -webkit-text-stroke: 1.5px var(--ink); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.ticks li { padding-left: 38px; position: relative; color: var(--muted); }
.ticks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  border: 2px solid var(--ink);
}
.ticks b { color: var(--ink); }

.dark { background: var(--ink); color: #fff; border-block: 3px solid var(--ink); }
.split.reverse > :first-child { order: 0; }



.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; max-width: 820px; }
.plan { position: relative; }
.plan h3 { font-family: Anton, Impact, sans-serif; text-transform: uppercase; font-size: 30px; margin: 0; }
.price { font-family: Anton, Impact, sans-serif; font-size: 56px; margin: 4px 0 12px !important; color: var(--ink) !important; }
.price small { font-family: Inter, sans-serif; font-size: 16px; color: var(--muted); }
.plan ul { margin: 0; padding-left: 20px; color: var(--muted); display: grid; gap: 6px; }
.featured { transform: rotate(1deg); }
.badge {
  position: absolute;
  top: -18px;
  right: 16px;
  background: var(--yellow);
  border: 3px solid var(--ink);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  transform: rotate(4deg);
}

.cta { text-align: center; padding: clamp(32px, 6vw, 64px); }
.cta .lede { margin: 0 auto 28px; }

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 32px 16px 48px;
  font-size: 14px;
  color: var(--muted);
  border-top: 3px solid var(--ink);
}
.footer img { width: 28px; height: 28px; border-radius: 7px; border: 2px solid var(--ink); }

/* ---------- small screens ---------- */
@media (max-width: 820px) {
  .nav nav a:not(.btn) { display: none; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero-devices { min-height: 520px; }
  .hero-devices .iphone { width: 240px; left: 10%; }
  .hero-devices .awatch { width: 140px; left: 0; }
  .hero-devices .float { width: 24%; }
  .split.reverse > :first-child { order: 1; }
  .display span { -webkit-text-stroke-width: 2px; text-shadow: 4px 4px 0 var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-devices .float, .tape-track { animation: none; }
}
