:root {
  --cream: oklch(0.95 0.035 95);
  --paper: oklch(0.98 0.005 95);
  --ink: oklch(0.2 0.01 90);
  --orange: oklch(0.72 0.19 45);
  --lime: oklch(0.82 0.19 135);
  --sky: oklch(0.72 0.13 235);
  --display: 'Archivo Black', 'Arial Black', sans-serif;
  --body: 'Space Grotesk', 'Trebuchet MS', sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  overflow-x: hidden;
}

a { color: oklch(0.55 0.17 45); }
a:hover { color: oklch(0.45 0.17 45); }

h1, h2, h3 { font-family: var(--display); text-transform: uppercase; margin: 0; }

/* ---------- shared pieces ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--ink);
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.btn:hover { transform: translate(-2px, -2px); }
.btn:active { transform: translate(2px, 2px); }

.btn-nav {
  height: 52px; padding: 0 26px;
  background: var(--orange); color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: var(--body); font-weight: 700; font-size: 16px;
}
.btn-nav:hover { color: var(--ink); box-shadow: 7px 7px 0 var(--ink); }

.btn-dark {
  height: 64px; padding: 0 36px;
  background: var(--ink); color: var(--cream);
  box-shadow: 6px 6px 0 var(--lime);
  font-size: 18px;
}
.btn-dark:hover { color: var(--cream); box-shadow: 8px 8px 0 var(--lime); }

.btn-light {
  height: 64px; padding: 0 36px;
  background: var(--paper); color: var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  font-size: 18px;
}
.btn-light:hover { color: var(--ink); box-shadow: 8px 8px 0 var(--ink); }

.btn-small { height: 54px; padding: 0 28px; font-size: 15px; box-shadow: 5px 5px 0 var(--paper); }
.btn-small:hover { box-shadow: 7px 7px 0 var(--paper); }

.btn-email {
  height: 68px; padding: 0 44px; font-size: 18px;
  text-transform: lowercase;
  box-shadow: 8px 8px 0 var(--paper);
}
.btn-email:hover { box-shadow: 10px 10px 0 var(--paper); }

.sticker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 14px 22px;
  font-family: var(--display);
  font-size: 16px;
  text-transform: uppercase;
}
.sticker-lime { background: var(--lime); }
.sticker-sky { background: var(--sky); color: var(--paper); }
.sticker-paper { background: var(--paper); }

.highlight { padding: 0 16px; display: inline-block; }
.highlight-orange { background: var(--orange); box-shadow: 6px 6px 0 var(--ink); }
.highlight-lime { background: var(--lime); }
.statement .highlight-orange { box-shadow: none; padding: 2px 12px; }
.statement .highlight-lime { padding: 2px 12px; }
.tilt { transform: rotate(-1deg); }

/* ---------- nav ---------- */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 4vw, 56px);
  border-bottom: 3px solid var(--ink);
}

.nav-logo {
  background: var(--lime);
  border: 3px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 10px 18px;
  transform: rotate(-2deg);
  font-family: var(--display);
  font-size: clamp(12px, 1.5vw, 18px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a:not(.btn) {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(48px, 7vw, 88px) clamp(20px, 4vw, 56px) clamp(52px, 8vw, 96px);
}

.hero h1 {
  font-size: clamp(46px, 7.2vw, 104px);
  line-height: 1;
  letter-spacing: -2px;
  max-width: 1000px;
}

.hero-badge-1 { position: absolute; right: 8%; top: 72px; animation: bob 5s ease-in-out infinite; }
.hero-badge-2 { position: absolute; right: 15%; top: 300px; animation: bob2 6s ease-in-out infinite; }

.hero-sub {
  margin: 36px 0 0;
  max-width: 600px;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  font-weight: 500;
}

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

/* ---------- ticker ---------- */

.ticker {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
  overflow: hidden;
  padding: 16px 0;
}
.ticker-track { display: flex; width: max-content; animation: ticker 45s linear infinite; }
.ticker-row {
  display: flex;
  gap: 28px;
  padding-right: 28px;
  align-items: center;
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}
.chip { padding: 4px 12px; }
.chip-orange { background: var(--orange); }
.chip-lime { background: var(--lime); }
.chip-sky { background: var(--sky); color: var(--paper); }
.star { width: 16px; height: 16px; fill: var(--ink); flex-shrink: 0; }

/* ---------- sections ---------- */

.section { padding: clamp(56px, 7vw, 100px) clamp(20px, 4vw, 56px) clamp(48px, 6vw, 88px); }
.section h2 { font-size: clamp(30px, 3.6vw, 48px); letter-spacing: -1px; }
.section-sub { margin: 20px 0 0; max-width: 640px; font-size: clamp(15px, 1.5vw, 19px); line-height: 1.6; font-weight: 500; }

.section-band {
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--paper);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-top: clamp(32px, 4vw, 56px);
}

.card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 32px;
}
.tilt-l { transform: rotate(-1.2deg); }
.tilt-r { transform: rotate(1deg); }
.tilt-l2 { transform: rotate(-0.8deg); }

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 3px solid var(--ink);
}
.icon-orange { background: var(--orange); }
.icon-lime { background: var(--lime); }
.icon-sky { background: var(--sky); }

.card h3 { margin-top: 22px; font-size: 24px; }
.card p { margin: 12px 0 0; font-size: 16px; line-height: 1.65; font-weight: 500; }

.slot {
  border: 3px dashed var(--ink);
  background: var(--cream);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bob-1 { box-shadow: 5px 5px 0 var(--ink); padding: 12px 20px; animation: bob 5s ease-in-out infinite; }
.bob-2 { box-shadow: 5px 5px 0 var(--ink); padding: 12px 20px; animation: bob2 6s ease-in-out infinite; }

.card-orange {
  background: var(--orange);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}
.your-app h3 { margin-top: 0; font-size: 26px; letter-spacing: -0.5px; }

.statement {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 3.2vw, 42px);
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: -1px;
  max-width: 1100px;
}

/* ---------- contact + footer ---------- */

.contact {
  border-top: 3px solid var(--ink);
  background: var(--orange);
  padding: clamp(52px, 7vw, 88px) clamp(20px, 4vw, 56px);
  text-align: center;
}
.contact h2 { font-size: clamp(32px, 4.2vw, 56px); letter-spacing: -1px; }
.contact p { margin: 16px 0 36px; font-size: clamp(16px, 1.6vw, 20px); font-weight: 500; }

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 32px clamp(20px, 4vw, 56px);
  border-top: 3px solid var(--ink);
  font-weight: 500;
  font-size: 14px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; }
.footer-links a { color: var(--ink); }

/* ---------- motion ---------- */

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(-7deg); }
}
@keyframes bob2 {
  0%, 100% { transform: translateY(-6px) rotate(5deg); }
  50% { transform: translateY(10px) rotate(8deg); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .hero-badge-1, .hero-badge-2, .bob-1, .bob-2 { animation: none; }
  .btn { transition: none; }
}

/* ---------- responsive ---------- */

@media (max-width: 960px) {
  .hero-badge-1 { right: 4%; top: 40px; }
  .hero-badge-2 { display: none; }
  .cards { grid-template-columns: 1fr; gap: 28px; }
  .slot, .card-orange { min-height: 180px; }
}

@media (max-width: 720px) {
  .nav-links > a:not(.btn) { display: none; }
  .hero-badge-1 { position: static; margin-bottom: 24px; }
  .hero h1 { letter-spacing: -1px; }
  .hero h1 .highlight { padding: 0 8px; box-shadow: 4px 4px 0 var(--ink); }
  .hero-actions .btn { width: 100%; }
  .btn-email { width: 100%; padding: 0 12px; font-size: 14px; }
  .sticker { font-size: 13px; padding: 10px 16px; }
  .footer { flex-direction: column; align-items: flex-start; }
}
