:root {
  --bg: #f3efe6;          /* cream */
  --bg-alt: #ece6d7;
  --ink: #0e0e0e;
  --ink-soft: #2a2a2a;
  --mute: #6a6558;
  --acid: #d2f04a;        /* lime */
  --hot: #ff4d2e;         /* hot orange-red */
  --paper: #fffaf0;
  --line: rgba(14,14,14,.12);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
}
.ticker__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  padding: .55rem 0;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: tick 38s linear infinite;
}
.ticker__track span { display: inline-block; }
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  position: sticky;
  top: 0;
  background: rgba(243, 239, 230, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 50;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.25rem;
  letter-spacing: -.01em;
}
.brand__mark {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-size: .85rem;
  transform: rotate(-8deg);
}
.nav__links {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
}
.nav__links a:hover { color: var(--hot); }
@media (max-width: 720px) {
  .nav__links { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid var(--ink);
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
  cursor: pointer;
}
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 4px 4px 0 var(--acid);
}
.btn--primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--acid);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--bg);
}
.btn--big { padding: 1.05rem 1.7rem; font-size: 1.05rem; }
.btn--full { width: 100%; }
.nav__cta { font-size: .9rem; padding: .65rem 1.1rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.25rem, 5vw, 4rem) 4rem;
  max-width: 1280px;
  margin: 0 auto;
}
.hero__title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.6rem, 8.5vw, 7rem);
  line-height: .95;
  letter-spacing: -.025em;
  margin: 0 0 1.5rem;
  text-transform: lowercase;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 640px;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}
.hero__cta {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 640px;
  border-top: 2px solid var(--ink);
  padding-top: 1.5rem;
}
.hero__meta > div { display: flex; flex-direction: column; }
.hero__meta b {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}
.hero__meta span { font-size: .85rem; color: var(--mute); }

.hl {
  background: var(--acid);
  padding: 0 .15em;
  box-shadow: 0 .08em 0 var(--ink) inset;
}
.hl-dim {
  background: linear-gradient(180deg, transparent 60%, var(--acid) 60%);
  padding: 0 .1em;
}
.strike { text-decoration: line-through; text-decoration-thickness: .08em; color: var(--mute); }

.hero__sticker {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-size: clamp(1.1rem, 1.6vw, 1.6rem);
  padding: .6rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  line-height: 1.1;
  z-index: 2;
}
.hero__sticker--1 {
  top: 5rem; right: clamp(1rem, 6vw, 6rem);
  transform: rotate(6deg);
  background: var(--hot);
  color: var(--paper);
}
.hero__sticker--2 {
  bottom: 12rem; right: clamp(2rem, 10vw, 10rem);
  transform: rotate(-4deg);
  background: var(--acid);
}
@media (max-width: 820px) {
  .hero__sticker--1 { top: auto; bottom: -1rem; right: 1rem; }
  .hero__sticker--2 { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--acid);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  overflow: hidden;
  padding: 1rem 0;
  transform: rotate(-1.5deg) translateY(.5rem);
  margin: 1rem 0 3rem;
}
.marquee__track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  text-transform: lowercase;
  animation: tick 30s linear infinite;
}

/* ---------- Sections ---------- */
.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 6rem) clamp(1.25rem, 5vw, 4rem);
}
.section--alt {
  background: var(--bg-alt);
  max-width: none;
  margin: 0;
  padding-left: clamp(1.25rem, 5vw, 4rem);
  padding-right: clamp(1.25rem, 5vw, 4rem);
}
.section--alt > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section__head { margin-bottom: 3rem; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  font-weight: 700;
  padding: .35rem .7rem;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section__head h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 0;
  text-transform: lowercase;
}

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }
.step {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 6px 6px 0 var(--ink);
}
.step:nth-child(2) { transform: translateY(.6rem); }
.step:nth-child(3) { transform: translateY(1.2rem); }
@media (max-width: 880px) {
  .step:nth-child(2),
  .step:nth-child(3) { transform: none; }
}
.step__num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.2rem;
  display: inline-block;
  padding: .1rem .6rem;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.35rem;
  margin: 0 0 .75rem;
  line-height: 1.05;
  text-transform: lowercase;
  letter-spacing: -.01em;
}
.step p { margin: 0; color: var(--ink-soft); }

/* ---------- Features ---------- */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}
.feat {
  grid-column: span 2;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}
.feat--big { grid-column: span 3; }
.feat--dark { background: var(--ink); color: var(--bg); }
.feat--dark p { color: rgba(255,250,240,.85); }
@media (max-width: 980px) {
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .feat, .feat--big { grid-column: span 1; }
  .feat--big { grid-column: span 2; }
}
@media (max-width: 640px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat--big { grid-column: span 1; }
}
.feat__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: .3rem .65rem;
  background: var(--acid);
  border: 2px solid var(--ink);
  border-radius: 999px;
  margin-bottom: 1rem;
}
.feat__tag--light { background: var(--hot); color: var(--paper); border-color: var(--paper); }
.feat h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  line-height: 1.05;
  margin: 0 0 .75rem;
  text-transform: lowercase;
  letter-spacing: -.01em;
}
.feat p { margin: 0 0 1rem; }
.checks {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .95rem;
}

/* Phone mock */
.phone-mock {
  margin-top: auto;
  align-self: flex-end;
  width: 200px;
  aspect-ratio: 9/19;
  background: linear-gradient(160deg, #1a1a1a, #000);
  border: 3px solid var(--ink);
  border-radius: 26px;
  padding: 1.2rem 1rem;
  color: var(--paper);
  position: relative;
  box-shadow: 6px 6px 0 var(--acid);
  transform: rotate(4deg);
}
.phone-mock__notch {
  width: 60px; height: 14px;
  background: #000;
  border-radius: 999px;
  margin: 0 auto .8rem;
}
.phone-mock__time {
  text-align: center;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.phone-mock__lock {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: .4rem;
}
.phone-mock__app {
  text-align: center;
  font-weight: 700;
  margin-bottom: .8rem;
}
.phone-mock__msg {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: .55rem;
  font-size: .72rem;
  text-align: center;
  line-height: 1.3;
}

/* ---------- Snitch demo ---------- */
.snitch {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) { .snitch { grid-template-columns: 1fr; } }
.snitch h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1;
  margin: .5rem 0 1rem;
  text-transform: lowercase;
  letter-spacing: -.02em;
}
.snitch p { color: rgba(255,250,240,.75); max-width: 460px; }
.snitch .eyebrow { background: var(--acid); color: var(--ink); }
.snitch__feed {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.notif {
  display: flex;
  gap: .8rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: .9rem 1rem;
  font-size: .95rem;
}
.notif b { color: var(--acid); font-weight: 700; }
.notif__dot {
  width: 10px; height: 10px;
  background: var(--hot);
  border-radius: 50%;
  margin-top: .45rem;
  flex-shrink: 0;
}
.notif--win .notif__dot { background: var(--acid); }
.notif span b { color: var(--paper); }

/* ---------- Pricing ---------- */
.price-card {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 10px 10px 0 var(--ink);
  max-width: 760px;
  margin: 0 auto;
}
.price-card__sticker {
  position: absolute;
  top: -16px; right: 1.5rem;
  background: var(--hot);
  color: var(--paper);
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  padding: .3rem .9rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  transform: rotate(3deg);
}
.price-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  border-bottom: 2px dashed var(--line);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.price-card__top h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.6rem;
  margin: 0 0 .4rem;
  text-transform: lowercase;
}
.price-card__top p { margin: 0; color: var(--mute); }
.price-card__price { text-align: right; }
.price-card__num {
  display: block;
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
}
.price-card__unit { color: var(--mute); font-size: .9rem; }
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem 1.5rem;
}
@media (max-width: 640px) { .price-card__list { grid-template-columns: 1fr; } }
.price-card__list li { padding: .15rem 0; }
.price-card__fine {
  text-align: center;
  margin-top: 1rem;
  color: var(--mute);
  font-size: .85rem;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq details {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  transition: box-shadow .15s ease, transform .15s ease;
}
.faq details[open] {
  box-shadow: 4px 4px 0 var(--ink);
}
.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.05rem;
  letter-spacing: -.005em;
  text-transform: lowercase;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary span {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-size: 1rem;
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq details[open] summary span { transform: rotate(45deg); }
.faq p {
  margin: .9rem 0 .25rem;
  color: var(--ink-soft);
}

/* ---------- Final ---------- */
.final {
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.final h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: .95;
  margin: 0 0 2rem;
  text-transform: lowercase;
  letter-spacing: -.02em;
}
.final p { color: var(--mute); margin-top: 1.25rem; }

/* ---------- Footer ---------- */
.foot {
  border-top: 2px solid var(--ink);
  padding: 2rem clamp(1.25rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--bg);
}
.foot__brand { font-family: 'Archivo Black', sans-serif; }
.foot__links { display: flex; gap: 1.25rem; font-size: .9rem; }
.foot__links a:hover { color: var(--acid); }
.foot__small { width: 100%; font-size: .8rem; color: rgba(255,250,240,.5); margin-top: .5rem; }
