:root {
  --bg: #f2f2ef;
  --ink: #101010;
  --muted: #5a5a55;
  --line: #d5d5ce;
  --green: #1f6b45;
  --green-2: #144a30;
  --panel: #fafaf7;
  --display: "Space Grotesk", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--display);
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(16,16,16,0.03) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(16,16,16,0.03) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--bg);
  line-height: 1.5;
}

a { color: var(--green); }
.mono { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); }

.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 50;
  background: transparent;
}
.progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--green);
  transition: width 0.1s linear;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 1.25rem 0.5rem;
  width: min(1080px, 100%);
  margin-inline: auto;
}
.logo {
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: 1.1rem;
}
.logo em { color: var(--green); font-style: normal; }
.top-meta { font-family: var(--mono); font-size: 0.75rem; color: var(--muted); }

.proof {
  padding: 1rem 0 0.5rem;
  overflow: hidden;
}
.proof-inner { width: min(1080px, calc(100% - 2rem)); margin-inline: auto; }
.ticker {
  margin-top: 0.5rem;
  border-block: 1px solid var(--line);
  background: var(--panel);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  padding: 0.85rem 0;
  animation: tick 28s linear infinite;
  font-family: var(--mono);
  font-size: 0.82rem;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.convert {
  width: min(1080px, calc(100% - 2rem));
  margin: 2rem auto 3rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.convert h1 {
  margin: 0;
  font-size: clamp(2rem, 5.5vw, 3.3rem);
  letter-spacing: -0.05em;
  line-height: 1.05;
  max-width: 14ch;
}
.convert-copy > p {
  color: var(--muted);
  max-width: 42ch;
  font-size: 1.05rem;
}
.cta {
  display: inline-flex;
  margin-top: 0.5rem;
  text-decoration: none;
  color: #fff !important;
  background: var(--green);
  padding: 0.95rem 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 4px;
  box-shadow: 6px 6px 0 #101010;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #101010;
  background: var(--green-2);
}
.fine {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.85rem;
}
.convert-visual {
  position: relative;
  justify-self: center;
}
.orbit {
  position: absolute;
  inset: -12% -8%;
  border: 1px dashed rgba(31, 107, 69, 0.45);
  border-radius: 50%;
  animation: spin 22s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-shot {
  position: relative;
  width: min(260px, 70vw);
  border: 1px solid var(--ink);
  border-radius: 18px;
  display: block;
  background: #fff;
  animation: pop 0.9s var(--ease) both;
}
@keyframes pop {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.mosaic, .matrix, .reviews, .faq, .final {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto 3.5rem;
}
h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}
h2 .mono { margin-right: 0.55rem; }

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
.tile {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  aspect-ratio: 3/4;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.tile:hover img { transform: scale(1.05); }
.tile span {
  position: absolute;
  left: 0.6rem;
  bottom: 0.55rem;
  background: rgba(250, 250, 247, 0.92);
  border: 1px solid var(--ink);
  padding: 0.2rem 0.45rem;
  font-family: var(--mono);
  font-size: 0.7rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--panel);
  border: 1px solid var(--ink);
  font-size: 0.95rem;
}
th, td {
  text-align: left;
  padding: 0.75rem 0.7rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
th {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #ebebe6;
}
tbody tr { transition: background 0.2s; }
tbody tr:hover { background: rgba(31, 107, 69, 0.06); }

.review-stack { display: grid; gap: 0.75rem; }
.review-stack article {
  border: 1px solid var(--ink);
  background: var(--panel);
  padding: 1.1rem 1.15rem;
}
.stars { margin: 0 0 0.35rem; color: var(--green); letter-spacing: 0.08em; }
.review-stack p { margin: 0; }
.who {
  margin-top: 0.65rem !important;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--muted);
}
.disclaimer {
  margin-top: 0.85rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}

.faq-two { display: grid; gap: 0.55rem; }
details {
  border: 1px solid var(--ink);
  background: var(--panel);
  padding: 0.75rem 0.9rem;
}
summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); margin: 0.55rem 0 0; }

.final-grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  border: 1px solid var(--ink);
  background: #fff;
  padding: 1rem;
}
.final-grid img {
  width: min(220px, 60vw);
  border: 1px solid var(--ink);
  border-radius: 14px;
  justify-self: center;
}
.final h2 { margin-bottom: 1rem; }

footer {
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto 2.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (min-width: 860px) {
  .convert { grid-template-columns: 1.15fr 0.85fr; margin-top: 3rem; }
  .mosaic-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 180px);
  }
  .t1 { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
  .t2 { grid-column: span 2; aspect-ratio: auto; }
  .t3 { grid-column: span 2; aspect-ratio: auto; }
  .t4, .t5, .t6 { grid-column: span 2; aspect-ratio: auto; }
  .review-stack { grid-template-columns: repeat(3, 1fr); }
  .faq-two { grid-template-columns: 1fr 1fr; }
  .final-grid { grid-template-columns: 0.7fr 1.3fr; padding: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .orbit, .hero-shot { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
