:root {
  --ink: #101010;
  --paper: #fbfbf2;
  --surface: #ffffff;
  --muted: #525252;
  --line: #101010;
  --yellow: #ffe15c;
  --cyan: #47d7ff;
  --pink: #ff5c8a;
  --green: #69f0ae;
  --blue: #4f7cff;
  --red: #ff6b57;
  --shadow-sm: 4px 4px 0 var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --shadow-lg: 11px 11px 0 var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 16, 16, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 1000;
  background: var(--yellow);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
  padding: 10px 14px;
  font-weight: 900;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 251, 242, 0.94);
  border-bottom: 3px solid var(--ink);
  backdrop-filter: blur(10px);
}

.header-inner,
.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-logo {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.brand-text {
  display: grid;
  gap: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 950;
  line-height: 1.1;
}

.brand-tagline {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 9px 11px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--yellow);
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--cyan);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--ink);
  content: "";
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -8px;
}

.nav-toggle-lines::after {
  top: 8px;
}

.section {
  padding: 74px 0;
}

.section.tight {
  padding: 46px 0;
}

.hero {
  padding: 70px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 46px;
}

.hero-copy {
  position: relative;
}

.hero-markers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
  transform: rotate(-1deg);
}

.hero-marker {
  display: inline-flex;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--yellow);
  box-shadow: var(--shadow-sm);
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-marker:nth-child(2) {
  background: var(--cyan);
  transform: translateY(8px) rotate(2deg);
}

.hero-marker:nth-child(3) {
  background: var(--pink);
  transform: rotate(-2deg);
}

.hero-title-lockup {
  position: relative;
  display: block;
  width: fit-content;
  max-width: min(100%, 680px);
  margin: 0 0 18px;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background: var(--green);
  box-shadow: var(--shadow-sm);
  padding: 9px 14px 12px;
  isolation: isolate;
  transform: rotate(-1.5deg);
}

.hero-title-lockup::after {
  position: absolute;
  right: -48px;
  top: -22px;
  border: 3px solid var(--ink);
  border-radius: 6px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 7px 10px;
  content: "APP LAB";
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  transform: rotate(5deg);
}

.hero-title-lockup h1 {
  margin-bottom: 0;
  max-width: 100%;
  text-shadow: 3px 3px 0 var(--yellow);
}

.brutal-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  max-width: 620px;
  margin: 0 0 20px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 12px;
  font-weight: 850;
}

.brutal-note-key {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--blue);
  color: var(--surface);
  font-weight: 950;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 16px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--green);
  box-shadow: var(--shadow-sm);
  padding: 7px 12px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1,
.page-title {
  margin-bottom: 20px;
  font-size: 64px;
  line-height: 0.98;
  font-weight: 950;
}

h2,
.section-title {
  margin-bottom: 14px;
  font-size: 40px;
  line-height: 1.05;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 950;
}

.lead {
  max-width: 680px;
  color: #232323;
  font-size: 20px;
  font-weight: 650;
}

.copy {
  color: var(--muted);
  font-weight: 650;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 3px solid var(--ink);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
  outline: none;
}

.button.primary {
  background: var(--yellow);
}

.button.secondary {
  background: var(--cyan);
}

.button.dark {
  background: var(--ink);
  color: var(--surface);
}

.button.pink {
  background: var(--pink);
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
  max-width: 650px;
}

.meta-item {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  padding: 14px;
}

.meta-value {
  display: block;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.meta-label {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.hero-board {
  position: relative;
  border: 4px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42) 0 10px, transparent 10px 20px),
    linear-gradient(90deg, var(--yellow), var(--cyan));
  background-size: 28px 28px, auto;
  box-shadow: var(--shadow-lg);
  padding: 22px;
  transform: rotate(1deg);
  overflow: visible;
}

.hero-board::before,
.hero-board::after {
  position: absolute;
  z-index: 2;
  border: 3px solid var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-board::before {
  top: -22px;
  left: 22px;
  background: var(--yellow);
  content: "Watch face stack";
  transform: rotate(-3deg);
}

.hero-board::after {
  right: 18px;
  bottom: -20px;
  background: var(--cyan);
  content: "Coupons + drops";
  transform: rotate(3deg);
}

.hero-board-inner {
  position: relative;
  min-height: 560px;
}

.hero-shot {
  position: absolute;
  width: 37%;
  height: 360px;
  border: 3px solid var(--ink);
  border-radius: 7px;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-shot:nth-child(2) {
  left: 0;
  top: 22px;
  transform: rotate(-5deg);
  z-index: 1;
}

.hero-shot:nth-child(3) {
  right: 0;
  bottom: 24px;
  width: 40%;
  transform: rotate(5deg);
  z-index: 2;
}

.hero-shot.large {
  left: 25%;
  top: 0;
  z-index: 3;
  width: 49%;
  height: 520px;
  transform: rotate(1deg);
  box-shadow: var(--shadow-lg);
}

.hero-shot:hover {
  transform: translate(-2px, -2px) rotate(0deg);
  box-shadow: 12px 12px 0 var(--ink);
}

.hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shot-label {
  position: absolute;
  left: 10px;
  bottom: 10px;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  box-shadow: 3px 3px 0 var(--ink);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 950;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head p {
  max-width: 560px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

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

.product-card,
.info-card,
.step-card,
.app-card,
.contact-card,
.legal-panel {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.product-card {
  display: grid;
  overflow: hidden;
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 318px;
  border-bottom: 3px solid var(--ink);
  background: var(--yellow);
  overflow: hidden;
}

.product-media::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0 10px, transparent 10px 20px),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.55) 0 7px, transparent 8px),
    radial-gradient(circle at 82% 72%, rgba(16, 16, 16, 0.12) 0 9px, transparent 10px);
  background-size: 30px 30px, 90px 90px, 110px 110px;
  content: "";
}

.product-card:nth-child(4n + 1) .product-media {
  background: var(--cyan);
}

.product-card:nth-child(4n + 2) .product-media {
  background: var(--green);
}

.product-card:nth-child(4n + 3) .product-media {
  background: var(--pink);
}

.product-media img {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 288px;
  object-fit: contain;
  border: 3px solid var(--ink);
  border-radius: 7px;
  background: #050505;
  box-shadow: 6px 6px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.product-card:nth-child(even) .product-media img {
  transform: rotate(1.5deg);
}

.product-body {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-card h3 {
  min-height: 54px;
  margin-bottom: 0;
}

.badge-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge,
.tag {
  display: inline-flex;
  width: fit-content;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--yellow);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag {
  background: var(--surface);
  text-transform: none;
  letter-spacing: 0;
}

.badge.blue {
  background: var(--cyan);
}

.badge.pink {
  background: var(--pink);
}

.badge.green {
  background: var(--green);
}

.card-link {
  justify-self: start;
  color: var(--ink);
  font-weight: 950;
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.band {
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background: var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.info-card {
  padding: 28px;
}

.info-card.accent-cyan {
  background: var(--cyan);
}

.info-card.accent-yellow {
  background: var(--yellow);
}

.info-card.accent-pink {
  background: var(--pink);
}

.info-card.accent-green {
  background: var(--green);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.rule-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.check-list li::before,
.rule-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
  background: var(--surface);
  box-shadow: 2px 2px 0 var(--ink);
  content: "";
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.mini-steps {
  display: grid;
  gap: 16px;
}

.mini-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  border-top: 3px solid var(--ink);
  padding-top: 16px;
}

.mini-step:first-child {
  border-top: 0;
  padding-top: 0;
}

.step-card {
  padding: 24px;
}

.step-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 950;
}

.page-hero {
  padding: 58px 0 34px;
}

.page-hero .lead {
  max-width: 780px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.split .app-grid {
  grid-template-columns: 1fr;
}

.app-card {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.app-icon {
  width: 86px;
  height: 86px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.deal-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.rule-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.notice {
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--pink);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  font-weight: 900;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-card {
  padding: 22px;
}

.legal-panel {
  max-width: 900px;
  padding: 34px;
}

.legal-panel h2 {
  margin-top: 34px;
  font-size: 28px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel ul {
  padding-left: 22px;
}

.legal-panel li {
  margin-bottom: 10px;
}

.legal-meta {
  display: inline-flex;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: var(--shadow-sm);
  padding: 7px 12px;
  font-weight: 950;
}

.footer {
  border-top: 4px solid var(--ink);
  background: var(--ink);
  color: var(--surface);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 32px;
}

.footer a {
  color: var(--surface);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px;
}

.footer-title {
  margin: 0 0 12px;
  font-weight: 950;
}

.small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1020px) {
  h1,
  .page-title {
    font-size: 50px;
  }

  h2,
  .section-title {
    font-size: 34px;
  }

  .hero-grid,
  .split,
  .deal-panel {
    grid-template-columns: 1fr;
  }

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

  .hero-board {
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-tagline {
    display: none;
  }

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

  .site-nav {
    flex-basis: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .is-enhanced .site-nav {
    display: none;
  }

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

  .site-nav a {
    border-color: var(--ink);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
    text-align: center;
  }

  .section {
    padding: 54px 0;
  }

  .hero {
    padding: 42px 0 46px;
  }

  h1,
  .page-title {
    font-size: 38px;
  }

  h2,
  .section-title {
    font-size: 30px;
  }

  .lead {
    font-size: 18px;
  }

  .hero-markers,
  .hero-marker:nth-child(2),
  .hero-marker:nth-child(3) {
    transform: none;
  }

  .hero-title-lockup {
    width: 100%;
    padding: 8px 10px 10px;
    transform: none;
  }

  .hero-title-lockup h1 {
    font-size: clamp(32px, 9vw, 38px);
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .meta-strip,
  .product-grid,
  .product-grid.featured,
  .step-grid,
  .app-grid,
  .contact-grid,
  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .hero-board {
    transform: none;
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 14px;
  }

  .hero-board::before,
  .hero-board::after {
    display: none;
  }

  .hero-board-inner {
    display: block;
    min-height: 520px;
  }

  .hero-shot.large,
  .hero-shot {
    position: absolute;
    height: 330px;
    box-shadow: var(--shadow-sm);
  }

  .hero-shot.large {
    left: 21%;
    top: 18px;
    width: 58%;
    height: 430px;
    transform: rotate(1deg);
  }

  .hero-shot:nth-child(2),
  .hero-shot:nth-child(3) {
    width: 44%;
    height: 315px;
  }

  .hero-shot:nth-child(2) {
    left: 0;
    top: 150px;
    transform: rotate(-4deg);
  }

  .hero-shot:nth-child(3) {
    right: 0;
    bottom: 32px;
    transform: rotate(4deg);
  }

  .product-media img {
    max-height: 250px;
  }

  .hero-title-lockup::after {
    right: 6px;
    top: -34px;
  }

  .legal-panel {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .header-inner,
  .container {
    width: min(100% - 22px, 1160px);
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .action-row {
    gap: 10px;
  }
}
