/* skipops.app marketing page. Brand tokens lifted from app.css (keep in sync). */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --tarmac: #131216;
  --raised: #1b1a1f;
  --raised-2: #211f26;
  --inset: #0f0e12;
  --border: #2c2a31;
  --border-strong: #3c3a43;
  --ink: #f7f5f1;
  --soft: #c6c1b8;
  --muted: #928e84;
  --amber: #f7a11a;
  --on-amber: #17150f;
  --amber-text: #ffc24b;
  --go: #2bd576;
  --pin-gen: #f5c518;
  --pin-wood: #22c55e;
  --pin-metal: #3b82f6;
  --font-display: 'Archivo Black', 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --wrap: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--tarmac);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
::selection { background: var(--amber); color: var(--on-amber); }

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

/* ---------- type ---------- */
h1, h2, .mark { font-family: var(--font-display); font-weight: 400; line-height: 1.05; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); text-transform: uppercase; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.4rem); margin-bottom: 14px; text-wrap: balance; }
h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 6px; }
p { max-width: 62ch; }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--soft); }

/* ---------- buttons ---------- */
.btn, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px; border-radius: 12px;
  font-family: var(--font-body); font-weight: 800; font-size: 1.02rem;
  text-decoration: none; cursor: pointer; border: 0;
  transition: transform 160ms var(--ease), filter 160ms var(--ease), background-color 160ms var(--ease);
}
.btn { background: var(--amber); color: var(--on-amber); }
.btn:hover { filter: brightness(1.07); }
.btn:active { transform: scale(0.98); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--raised); }
.btn-ghost:active { transform: scale(0.98); }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--amber); outline-offset: 2px;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: var(--tarmac);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.mark { font-size: 1.25rem; text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 10px; }
.mark i { width: 14px; height: 14px; background: var(--amber); border-radius: 4px; }
.nav .btn { min-height: 44px; padding: 0 18px; font-size: 0.95rem; }

/* ---------- hero ---------- */
.hero .wrap {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
  padding-top: clamp(40px, 7vh, 88px); padding-bottom: clamp(40px, 6vh, 72px);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero .lede { margin-top: 18px; }
.phone {
  width: min(340px, 100%); margin-left: auto;
  border: 1px solid var(--border-strong); border-radius: 34px;
  padding: 10px; background: var(--inset);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.4), 0 40px 80px -40px rgb(0 0 0 / 0.7);
}
.phone img { border-radius: 26px; }
.phone figcaption { font-size: 0.85rem; color: var(--muted); text-align: center; padding: 10px 6px 4px; }

/* hero load-in: one orchestrated stagger, ease-out, fixed duration */
@media (prefers-reduced-motion: no-preference) {
  .hero [data-load] { animation: rise 0.7s var(--ease) both; }
  .hero [data-load='2'] { animation-delay: 90ms; }
  .hero [data-load='3'] { animation-delay: 180ms; }
  .hero [data-load='4'] { animation-delay: 300ms; }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}

/* ---------- sections ---------- */
section { padding-block: clamp(56px, 9vh, 104px); }
section + section { border-top: 1px solid var(--border); }

/* how it works: three numbered moves */
.steps { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); margin-top: 34px; counter-reset: step; }
.steps li { counter-increment: step; padding-top: 16px; border-top: 3px solid var(--border-strong); }
.steps li::before {
  content: counter(step);
  font-family: var(--font-display); font-size: 2.4rem; color: var(--amber-text);
  display: block; margin-bottom: 10px;
}
.steps p { color: var(--soft); }

/* load strip band */
.band { background: var(--raised); }
.band .wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.band p { color: var(--soft); }
.loadstrip {
  background: var(--raised-2); border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 24px 20px;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.35), 0 30px 60px -36px rgb(0 0 0 / 0.6);
}
.strip-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.strip-van { font-weight: 800; }
.strip-count { color: var(--amber-text); font-weight: 700; font-variant-numeric: tabular-nums; }
.strip-cells { display: grid; grid-template-columns: repeat(16, 1fr); gap: 4px; height: 44px; }
.strip-cells i {
  border-radius: 5px; background: var(--inset); border: 1px solid var(--border);
  transform-origin: bottom;
}
.strip-cells i[data-w='gen'] { background: var(--pin-gen); border-color: transparent; }
.strip-cells i[data-w='wood'] { background: var(--pin-wood); border-color: transparent; }
.strip-cells i[data-w='metal'] { background: var(--pin-metal); border-color: transparent; }
.strip-legend { list-style: none; display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; font-size: 0.92rem; color: var(--soft); }
.strip-legend li { display: flex; align-items: center; gap: 7px; }
.sw { width: 11px; height: 11px; border-radius: 3px; display: inline-block; }
.sw-gen { background: var(--pin-gen); }
.sw-wood { background: var(--pin-wood); }
.sw-metal { background: var(--pin-metal); }
@media (prefers-reduced-motion: no-preference) {
  html.js .loadstrip.reveal i[data-w] { transform: scaleY(0); opacity: 0; }
  html.js .loadstrip.reveal.in i[data-w] {
    transform: none; opacity: 1;
    transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
    transition-delay: calc(var(--i) * 55ms);
  }
}

/* proof grid: three unequal panels */
.proof-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 18px; margin-top: 34px; }
.panel { border-radius: 16px; padding: clamp(22px, 3vw, 34px); }
.panel p { color: var(--soft); }
.panel-a { grid-row: span 2; background: var(--raised); border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: space-between; gap: 18px; }
.panel-b { background: var(--raised-2); border: 1px solid var(--border); }
.panel-c { background: var(--inset); border: 1px solid var(--border); }
.panel-a .big-line { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.15; color: var(--amber-text); }

/* pays for itself */
.sums p { color: var(--soft); margin-bottom: 14px; }
.sums .verdict { color: var(--ink); font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.45rem); max-width: 54ch; }

/* price */
.price .wrap { display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 5vw, 80px); align-items: start; }
.price-figure { font-family: var(--font-display); font-size: clamp(3.6rem, 8vw, 6rem); line-height: 1; }
.price-figure small { display: block; font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; color: var(--muted); margin-top: 10px; }
.includes { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin: 8px 0 30px; }
.includes li { display: flex; gap: 10px; align-items: flex-start; color: var(--soft); }
.includes svg { flex: none; margin-top: 2px; color: var(--go); }

/* form */
.get { background: var(--raised); }
.get .wrap { max-width: 620px; }
.get p.sub { color: var(--soft); margin-bottom: 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 7px; }
.field input {
  width: 100%; min-height: 52px; padding: 0 16px;
  background: var(--inset); color: var(--ink);
  border: 1px solid var(--border-strong); border-radius: 12px;
  font: inherit;
}
.field input::placeholder { color: var(--muted); }
.field input:focus { border-color: var(--amber); outline: none; box-shadow: 0 0 0 3px rgb(247 161 26 / 0.25); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: 0.92rem; color: var(--muted); margin-top: 14px; }
.form-error { display: none; color: #ff8f8f; font-weight: 600; margin-top: 14px; }
.form-error.show { display: block; }
.sorted { display: none; background: var(--raised-2); border: 1px solid var(--border); border-radius: 16px; padding: 34px; }
.sorted.show { display: block; }
.sorted h3 { color: var(--go); font-size: 1.4rem; }

/* footer */
footer { border-top: 1px solid var(--border); padding-block: 44px; }
footer .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
footer p, footer a { color: var(--muted); font-size: 0.95rem; }
footer a { text-underline-offset: 3px; }
footer .mark { font-size: 1rem; margin-bottom: 8px; }

/* ---------- scroll reveals (JS adds html.js; no JS = everything visible) ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .reveal { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  html.js .reveal.in {
    opacity: 1; transform: none; filter: none;
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease), filter 0.6s var(--ease);
    transition-delay: var(--d, 0ms);
  }
}

/* ---------- mobile ---------- */
@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .phone { margin: 0 auto; }
  .steps { grid-template-columns: 1fr; }
  .band .wrap { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .panel-a { grid-row: auto; }
  .price .wrap { grid-template-columns: 1fr; }
  .includes { grid-template-columns: 1fr; }
}
