/* ============================================================
   SHIPPED. — poster edition
   Electric ultramarine. Condensed black type. Acid yellow.
   Flat planes, hairlines, huge numerals. No glass, no glow.
   ============================================================ */

:root {
  --poster: #0c5f38;
  --accent: #ffd02e;
  --paper: #f1eee5;
  --ink: #111114;
  --paper-line: rgba(17, 17, 20, 0.18);
  --white-line: rgba(255, 255, 255, 0.32);
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Archivo", Helvetica, Arial, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, monospace;
  --ticker-duration: 30s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: var(--ink); }

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.tag {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-acc {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--ink);
}

.btn-acc:hover { background: var(--ink); color: var(--accent); }

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-ghost-light:hover { background: #fff; color: var(--poster); }

.btn-acc.on-dark { border-color: var(--accent); }

.btn-acc.on-dark:hover { background: transparent; color: var(--accent); }

.btn .arr { font-family: var(--body); font-weight: 400; }

/* ---------- top bar ---------- */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background: var(--ink);
  color: #fff;
  border-bottom: 2px solid var(--ink);
}

.topbar .brand {
  font-family: var(--display);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 12px 22px;
}

.topbar .brand em { color: var(--accent); font-style: normal; }

.topbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  padding-right: 28px;
}

.topbar-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.15s ease;
}

.topbar-links a:hover { color: var(--accent); }

.topbar .cta {
  display: flex;
  align-items: center;
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 26px;
  transition: background 0.15s ease, color 0.15s ease;
}

.topbar .cta:hover { background: #fff; }

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

.hero {
  background: var(--poster);
  color: #fff;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
}

.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 40px;
}

.hero .tag {
  color: var(--accent);
  display: block;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(3.6rem, 12.5vw, 11rem);
}

.hero h1 .l1 { display: block; color: #fff; }

.hero h1 .l2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
}

.hero h1 .l3 { display: block; color: var(--accent); }

.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(32px, 5vh, 60px);
}

.hero-sub {
  max-width: 44ch;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.85);
  text-wrap: pretty;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; flex: none; }

.hero .btn-acc { border-color: var(--accent); }

.hero .btn-acc:hover { background: #fff; border-color: #fff; color: var(--poster); }

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

.ticker {
  border-top: 2px solid #fff;
  background: var(--poster);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}

.ticker-track {
  display: flex;
  flex: none;
  animation: ticker var(--ticker-duration) linear infinite;
}

.ticker span {
  font-family: var(--display);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 0;
}

.ticker span i {
  font-style: normal;
  color: var(--accent);
  padding: 0 22px;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- section scaffolding ---------- */

section { padding: clamp(80px, 11vh, 130px) 0; }

.sec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 18px;
  margin-bottom: 0;
}

.sec-head h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.sec-head .tag { color: rgba(17, 17, 20, 0.55); flex: none; }

/* ---------- manifesto ---------- */

.manifesto { padding-bottom: 0; }

.manifesto p {
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 26ch;
  text-wrap: pretty;
}

.manifesto .hl {
  background: var(--accent);
  padding: 0 0.18em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.manifesto .tag {
  display: block;
  margin-bottom: 26px;
  color: rgba(17, 17, 20, 0.55);
}

/* ---------- method ---------- */

.move {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) 2fr 2fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
  padding: clamp(36px, 5vw, 56px) 0;
  border-bottom: 1px solid var(--paper-line);
}

.move-num {
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 0.85;
  color: var(--poster);
}

.move h3 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 0.95;
}

.move .move-sub {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 20, 0.55);
  display: block;
  margin-top: 12px;
}

.move p {
  color: rgba(17, 17, 20, 0.78);
  font-size: 0.98rem;
  max-width: 46ch;
  text-wrap: pretty;
}

/* ---------- schedule ---------- */

.sched-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) 2fr 2fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--paper-line);
}

.sched-day {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: var(--poster);
  line-height: 1;
}

.sched-title {
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.sched-desc {
  color: rgba(17, 17, 20, 0.72);
  font-size: 0.94rem;
  max-width: 46ch;
  text-wrap: pretty;
}

.sched-row.demo {
  background: var(--accent);
  border-bottom: 1px solid var(--ink);
  margin: 0 calc(-1 * clamp(12px, 1.5vw, 20px));
  padding-left: clamp(12px, 1.5vw, 20px);
  padding-right: clamp(12px, 1.5vw, 20px);
}

.sched-row.demo .sched-day { color: var(--ink); }

/* stats strip */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--ink);
  margin-top: clamp(48px, 7vw, 80px);
}

.stat {
  padding: clamp(20px, 3vw, 34px);
  border-right: 1px solid var(--paper-line);
}

.stat:last-child { border-right: none; }

.stat b {
  display: block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.9;
}

.stat span {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(17, 17, 20, 0.6);
}

/* ---------- pricing (dark) ---------- */

.pricing {
  background: var(--ink);
  color: #fff;
}

.pricing .sec-head { border-color: #fff; }

.pricing .sec-head .tag { color: rgba(255, 255, 255, 0.5); }

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 90px);
  padding-top: clamp(40px, 6vw, 70px);
  align-items: start;
}

.price-big {
  font-family: var(--display);
  font-size: clamp(6rem, 16vw, 15rem);
  line-height: 0.85;
  color: var(--accent);
}

.price-note {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: block;
  margin-top: 20px;
}

.price-list { list-style: none; }

.price-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid var(--white-line);
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
}

.price-list li::before {
  content: "→";
  color: var(--accent);
  flex: none;
}

.pricing .btn { margin-top: 30px; }

.guarantee {
  margin-top: 22px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 44ch;
  text-wrap: pretty;
}

.guarantee b { color: #fff; }

/* ---------- faq ---------- */

.faq-list { padding-top: 8px; }

.faq-list details { border-bottom: 1px solid var(--paper-line); }

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  list-style: none;
  cursor: pointer;
  padding: 26px 0;
  font-weight: 700;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary .plus {
  flex: none;
  font-family: var(--body);
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-list details[open] summary .plus { transform: rotate(45deg); }

.faq-list details p {
  padding: 0 0 30px;
  max-width: 58ch;
  color: rgba(17, 17, 20, 0.78);
  font-size: 0.98rem;
  text-wrap: pretty;
}

/* ---------- final ---------- */

.final {
  background: var(--poster);
  color: #fff;
  text-align: left;
}

.final h2 {
  font-size: clamp(3.4rem, 11vw, 9.5rem);
}

.final h2 .l1 { display: block; color: #fff; }

.final h2 .l2 { display: block; color: var(--accent); }

.final .final-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(36px, 6vw, 60px);
  flex-wrap: wrap;
}

.final p {
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.85);
  text-wrap: pretty;
}

/* ---------- footer ---------- */

footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.6);
  padding: 26px 0;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
}

footer .brand {
  font-family: var(--display);
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
}

footer .brand em { color: var(--accent); font-style: normal; }

footer small { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; }

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

@media (max-width: 900px) {
  .move, .sched-row { grid-template-columns: 1fr; gap: 10px; }
  .move p, .sched-desc { max-width: 60ch; }
  .move-num { font-size: 3rem; }
  .price-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--paper-line); }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .topbar-links { display: none; }
}

@media (max-width: 560px) {
  .topbar .brand { font-size: 1rem; padding: 12px 14px; }
  .topbar .cta { font-size: 0.7rem; padding: 0 14px; }
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  *, *::before, *::after { transition: none !important; }
}
