/* ============================================================
   JBTrack landing — dark app-native design system
   Palette from src/theme/colors.js (dark)
   ============================================================ */

:root {
  --bg-start: #0f1020;
  --bg-end: #1b1d38;
  --primary: #7C3AED;
  --accent: #22D3EE;
  --success: #10B981;
  --warning: #F59E0B;
  --text: #E5E7EB;
  --muted: #94A3B8;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.09);
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.22);
  --font-sans: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
  --radius: 14px;
  --radius-sm: 9px;
  --maxw: 1180px;
  --grad: linear-gradient(94deg, #a78bfa 0%, var(--primary) 30%, var(--accent) 100%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg-start);
  background-image:
    radial-gradient(900px 500px at 85% -5%, rgba(124, 58, 237, 0.22), transparent 60%),
    radial-gradient(700px 420px at 8% 300px, rgba(34, 211, 238, 0.10), transparent 55%),
    linear-gradient(175deg, var(--bg-start) 0%, var(--bg-end) 55%, var(--bg-start) 100%);
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: var(--font-mono); }

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.022em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 800; font-stretch: 105%; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-stretch: 105%; }
h3 { font-size: 1.25rem; }
.h2--smaller { font-size: clamp(1.5rem, 3vw, 2.1rem); }
p { margin: 0 0 1em; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* focus */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ============ buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.7em 1.35em;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn--primary {
  background: linear-gradient(94deg, var(--primary), #6d28d9);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.45);
}
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 6px 32px rgba(124, 58, 237, 0.6); }
.btn--outline { border-color: var(--border-strong); color: var(--text); background: rgba(255,255,255,0.03); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost { color: var(--muted); }
.btn--ghost:hover { color: var(--text); }
.btn--lg { padding: 0.9em 1.7em; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ============ ticket eyebrow (signature structural device) ============ */
.ticket-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0 0 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.ticket-eyebrow__id {
  padding: 0.3em 0.8em;
  background: rgba(34, 211, 238, 0.12);
  color: var(--accent);
  border-right: 1px dashed var(--border-strong);
}
.ticket-eyebrow__label { padding: 0.3em 0.9em; color: var(--muted); }

/* ============ nav ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 16, 32, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.7rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__brand { display: flex; align-items: baseline; gap: 0.55rem; text-decoration: none; }
.nav__brand img { align-self: center; border-radius: 8px; }
.nav__brand-name { font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.wordmark-gold { color: #EFB43F; font-style: normal; }
.nav__brand-by { font-size: 0.72rem; color: var(--muted); font-family: var(--font-mono); }
.nav__links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--muted); font-size: 0.94rem; font-weight: 500; }
.nav__links a:hover { color: var(--text); }
.nav__actions { display: flex; gap: 0.4rem; align-items: center; }
.nav__toggle { display: none; }
.nav__mobile { display: none; }

/* ============ hero ============ */
.hero { position: relative; overflow: hidden; }
.hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.4rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 3.5rem;
  align-items: center;
}
.hero__sub { color: var(--muted); font-size: 1.13rem; max-width: 34em; }
.hero__ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; margin: 1.6rem 0 0.9rem; }
.hero__note { color: var(--muted); font-size: 0.85rem; font-family: var(--font-mono); }

.hero__visual { position: relative; min-height: 420px; }

/* job ticket (signature element) — mirrors the app's TaskCard */
.job-ticket {
  position: absolute;
  z-index: 2;
  bottom: -2rem;
  left: -2rem;
  width: min(360px, 86%);
  background: #1d1f36;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 1.05rem 1.15rem;
  box-shadow: 0 24px 60px rgba(5, 6, 18, 0.6);
}
.job-ticket__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.8rem; margin-bottom: 0.35rem; }
.job-ticket__dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3B82F6;
  margin-right: 0.55em;
  vertical-align: 0.1em;
  transition: background 0.4s;
}
.job-ticket__status {
  flex-shrink: 0;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.3em 0.9em;
  border-radius: 999px;
  background: #bcd3f7;
  color: #16233c;
  transition: background 0.4s, color 0.4s;
}
.job-ticket__status.is-inprogress { background: #f4c27e; color: #3d2a10; }
.job-ticket__status.is-review { background: #cbb8f5; color: #2c1a52; }
.job-ticket__status.is-done { background: #a9e6c8; color: #123b29; }
.job-ticket__title { font-weight: 700; font-size: 0.96rem; line-height: 1.35; margin: 0; }
.job-ticket__project { color: #a78bfa; font-size: 0.82rem; font-weight: 600; margin: 0 0 0.15rem 1.1rem; }
.job-ticket__line { color: var(--muted); font-size: 0.82rem; margin: 0 0 0.75rem 1.1rem; }
.job-ticket__link { text-decoration: underline; color: var(--text); }
.job-ticket__meta {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px dashed var(--border-strong);
}
.job-ticket__meta .mono { color: var(--accent); }

/* screenshot frames */
.shot {
  margin: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: #14152b;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(5, 6, 18, 0.65);
}
.shot__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid var(--border);
}
.shot__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.shot__bar span { margin-left: 10px; font-size: 0.7rem; color: var(--muted); }
.shot img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }

.shot--hero { margin-left: 3.5rem; }
.shot--phone {
  width: min(280px, 70%);
  margin: 0 auto;
  border-radius: 34px;
  padding: 10px;
  background: #101126;
}
.shot--phone img { border-radius: 24px; aspect-ratio: 9 / 19; }

/* ============ problem section ============ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}
.compare__col { margin: 0; }
.compare__caption {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.chat__bubble {
  max-width: 78%;
  padding: 0.5em 0.9em;
  border-radius: 16px;
  font-size: 0.92rem;
  line-height: 1.4;
  margin: 0;
}
.chat__bubble--office {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  border-bottom-left-radius: 5px;
}
.chat__bubble--tech {
  align-self: flex-end;
  background: rgba(59, 130, 246, 0.35);
  color: #dbeafe;
  border-bottom-right-radius: 5px;
}
.chat__time {
  display: block;
  font-size: 0.62rem;
  color: var(--muted);
  margin-top: 0.25em;
}

.job-ticket--static {
  position: static;
  width: auto;
  bottom: auto;
  left: auto;
  box-shadow: 0 16px 44px rgba(5, 6, 18, 0.45);
}
.job-ticket__facts { margin: 0.2rem 0 0 1.1rem; }
.job-ticket__facts li { font-size: 0.85rem; }

.pains { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.pain__no, .pain__yes { position: relative; padding-left: 1.8em; margin: 0; }
.pain__no {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}
.pain__yes { color: var(--text); font-size: 0.95rem; }
.pain__no::before {
  content: "✗";
  position: absolute;
  left: 0;
  color: var(--error);
  font-weight: 700;
}
.pain__yes::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.problem__close { text-align: center; max-width: 640px; margin: 3rem auto 0; }
.problem__closing { font-size: 1.15rem; font-weight: 600; }
.problem__kicker { color: var(--muted); }
.problem__bridge { color: var(--accent); font-size: 0.82rem; margin-top: 1.6rem; }

/* ============ trust ============ */
.trust { border-block: 1px solid var(--border); background: rgba(255, 255, 255, 0.02); }
.trust__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust__logos { display: flex; align-items: center; gap: 1.8rem; flex-wrap: wrap; }
.trust__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.trust__logo { color: var(--muted); text-decoration: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.01em; opacity: 0.85; }
.trust__logo:hover { color: var(--text); opacity: 1; }
.trust__stats { display: flex; gap: 2.2rem; }
.trust__stats div { display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust__stats strong { font-size: 1.4rem; color: var(--accent); }
.trust__stats span { font-size: 0.76rem; color: var(--muted); }

/* ============ sections ============ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) 1.4rem 0; }
.section__head { max-width: 640px; margin-bottom: 3rem; }
.section__head--sub { margin-top: 5rem; }
.section__sub { color: var(--muted); font-size: 1.08rem; }

/* cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.card:hover { border-color: rgba(34, 211, 238, 0.35); background: var(--card-strong); }

/* features */
.features__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.feature h3 { font-size: 1.06rem; margin: 0.9rem 0 0.4rem; }
.feature p { color: var(--muted); font-size: 0.93rem; margin: 0; }
.feature__icon {
  display: inline-flex;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  border-radius: 11px;
  background: linear-gradient(150deg, rgba(124, 58, 237, 0.25), rgba(34, 211, 238, 0.12));
  border: 1px solid rgba(124, 58, 237, 0.35);
}
.feature__icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.6; }

/* showcase */
.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}
.showcase--flip .showcase__copy { order: 2; }
.showcase--flip .shot { order: 1; }
.showcase__copy h3 { font-size: 1.6rem; }
.showcase__copy p { color: var(--muted); }
.showcase--phone { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }

.check-list { list-style: none; padding: 0; margin: 1.1rem 0 0; }
.check-list li { padding: 0.28em 0 0.28em 1.7em; position: relative; color: var(--text); font-size: 0.95rem; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 0.95em; height: 0.55em;
  border-left: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(-45deg);
}
.check-list--tight li { font-size: 0.88rem; padding-block: 0.2em; }
.check-list--tight li strong { font-weight: 600; }

/* ============ pricing ============ */
.period-toggle {
  display: inline-flex;
  margin-top: 1.4rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
}
.period-toggle__btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.45em 1.2em;
  border-radius: 999px;
  cursor: pointer;
}
.period-toggle__btn.is-active { background: var(--primary); color: #fff; }
.period-toggle__save { font-size: 0.72rem; opacity: 0.85; margin-left: 0.4em; }

.tiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; align-items: start; }
.tier { display: flex; flex-direction: column; position: relative; }
.tier--popular {
  border-color: rgba(124, 58, 237, 0.65);
  background: linear-gradient(170deg, rgba(124, 58, 237, 0.14), var(--card) 45%);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.22);
}
.tier__badge {
  position: absolute;
  top: -0.85em;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #0f1020;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35em 1.1em;
  border-radius: 999px;
  margin: 0;
  white-space: nowrap;
}
.tier__name { font-size: 1.15rem; margin-bottom: 0.15em; }
.tier__desc { color: var(--muted); font-size: 0.85rem; min-height: 2.6em; }
.tier__price { font-size: 2rem; font-weight: 600; margin: 0.2em 0 0.1em; letter-spacing: -0.03em; }
.tier__per { font-size: 0.8rem; color: var(--muted); font-weight: 400; margin-left: 0.2em; }
.tier__annual-note { color: var(--accent); font-size: 0.78rem; margin: 0 0 0.4em; font-family: var(--font-mono); }
.tier__limits { color: var(--muted); font-size: 0.72rem; margin-bottom: 1.1em; }
.tier .btn { margin-bottom: 1.2rem; }
.tier .check-list { margin-top: 0; }

/* ============ add-ons ============ */
.addons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.addon { position: relative; }
.addon__flag {
  position: absolute;
  top: 1.1rem; right: 1.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(34, 211, 238, 0.4);
  border-radius: 999px;
  padding: 0.25em 0.8em;
  margin: 0;
}
.addon__flag--soon { color: var(--warning); border-color: rgba(245, 158, 11, 0.4); }
.addon--soon { opacity: 0.75; }
.addon__head h3 { font-size: 1.05rem; margin-bottom: 0.2em; padding-right: 6.5em; }
.addon__price { font-size: 1.3rem; font-weight: 600; color: var(--text); margin: 0 0 0.6em; }
.addon__price span { font-size: 0.72rem; color: var(--muted); font-weight: 400; margin-left: 0.15em; }
.addon__price--soon { font-size: 0.85rem; color: var(--muted); }
.addon__desc { color: var(--muted); font-size: 0.88rem; }
.addon__toggle {
  background: none;
  border: 0;
  color: var(--accent);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}
.addon__toggle:hover { text-decoration: underline; }
.addon__details {
  list-style: none;
  padding: 0.8rem 0 0;
  margin: 0;
  display: none;
  color: var(--muted);
  font-size: 0.85rem;
}
.addon__details li { padding: 0.18em 0 0.18em 1.3em; position: relative; }
.addon__details li::before { content: "→"; position: absolute; left: 0; color: var(--primary); }
.addon.is-open .addon__details { display: block; }

/* ============ calculator ============ */
.calc {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 0;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
}
.calc__form { padding: 2.2rem; }
.h3--calc { font-size: 1.5rem; margin-bottom: 1.4rem; }
.calc__field { margin-bottom: 1.5rem; border: 0; padding: 0; }
.calc__field label:not(.calc__addon), .calc__field legend {
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.calc__field select, .calc__field input[type="number"] {
  width: 100%;
  max-width: 380px;
  padding: 0.7em 0.9em;
  font: inherit;
  color: var(--text);
  background: #14152b;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
}
.calc__hint { color: var(--warning); font-size: 0.74rem; margin: 0.4rem 0 0; min-height: 1em; }
.calc__addon {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.45em 0;
  cursor: pointer;
  font-size: 0.95rem;
}
.calc__addon input { accent-color: var(--primary); width: 17px; height: 17px; }
.calc__addon em { margin-left: auto; font-style: normal; color: var(--muted); font-size: 0.78rem; }
.calc__addon.is-included { opacity: 0.55; }
.calc__addon.is-included em::after { content: " · included"; color: var(--success); }

.period-toggle--calc { display: flex; width: 100%; margin-top: 0; }
.period-toggle--calc .period-toggle__btn { flex: 1; }

.calc__result {
  padding: 2.2rem;
  background: linear-gradient(170deg, rgba(124, 58, 237, 0.2), rgba(15, 16, 32, 0.4));
  border-left: 1px dashed var(--border-strong);
  display: flex;
  flex-direction: column;
}
.calc__total-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin: 1.4rem 0 0.2rem; }
.calc__total { font-size: 2.9rem; font-weight: 600; letter-spacing: -0.03em; margin: 0 0 1rem; }
.calc__lines { list-style: none; padding: 0; margin: 0 0 1.6rem; font-size: 0.82rem; color: var(--muted); flex: 1; }
.calc__lines li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.35em 0; border-bottom: 1px dashed var(--border); }
.calc__lines li:last-child { border-bottom: 0; color: var(--text); font-weight: 600; }

/* ============ examples ============ */
.examples { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-top: 0; }
.example h3 { font-size: 1rem; }
.example__setup { color: var(--muted); font-size: 0.85rem; min-height: 3em; }
.example__price { font-size: 1.7rem; font-weight: 600; color: var(--accent); margin: 0 0 0.4em; }
.example__price span { font-size: 0.8rem; color: var(--muted); }
.example__detail { font-size: 0.72rem; color: var(--muted); margin: 0; }

/* ============ FAQ ============ */
.section--faq { max-width: 820px; }
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card);
  margin-bottom: 0.7rem;
  overflow: hidden;
}
.faq__item summary {
  cursor: pointer;
  padding: 1.05rem 1.3rem;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 3rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 1.3rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p { padding: 0 1.3rem 1.1rem; color: var(--muted); margin: 0; }

/* ============ CTA + footer ============ */
.cta-final { padding: clamp(4rem, 9vw, 7rem) 1.4rem; text-align: center; }
.cta-final__inner { max-width: 640px; margin: 0 auto; }
.cta-final p { color: var(--muted); font-size: 1.1rem; }
.cta-final .hero__ctas { justify-content: center; }

.footer { border-top: 1px solid var(--border); background: rgba(10, 11, 24, 0.6); }
.footer__cols {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 1.4rem 2rem;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 2rem;
}
.footer__brand-row { display: flex; align-items: center; gap: 0.7rem; }
.footer__brand-row img { border-radius: 7px; }
.footer__brand-row p { color: var(--text); font-weight: 700; font-size: 0.95rem; margin: 0; }
.footer__brand-tag { color: var(--muted); font-size: 0.88rem; margin-top: 0.6rem; }
.footer h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin: 0 0 0.9rem; }
.footer nav a { display: block; color: var(--text); opacity: 0.8; text-decoration: none; font-size: 0.9rem; padding: 0.22em 0; }
.footer nav a:hover { opacity: 1; color: var(--accent); }
.footer__legal {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.2rem 1.4rem 2rem;
  color: var(--muted);
  font-size: 0.74rem;
  border-top: 1px solid var(--border);
}

/* ============ reveal animation ============ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card { transition: none; }
}

/* ============ responsive ============ */
@media (max-width: 1080px) {
  .features__grid, .addons { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .examples { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero__visual { min-height: 0; }
  .job-ticket { position: relative; top: 0; left: 0; width: min(340px, 92%); margin: 0 0 -2.2rem 0; }
  .shot--hero { margin-left: 1.6rem; }
  .showcase, .showcase--phone { grid-template-columns: 1fr; gap: 1.8rem; }
  .compare { grid-template-columns: 1fr; gap: 2.2rem; }
  .pains { grid-template-columns: 1fr; }
  .showcase--flip .showcase__copy { order: 0; }
  .showcase--flip .shot { order: 0; }
  .calc { grid-template-columns: 1fr; }
  .calc__result { border-left: 0; border-top: 1px dashed var(--border-strong); }
  .nav__links, .nav__actions { display: none; }
  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
  }
  .nav__toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
  .nav__mobile {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.6rem 1.4rem 1.2rem;
    border-top: 1px solid var(--border);
  }
  .nav__mobile.is-open { display: flex; }
  .nav__mobile a { text-decoration: none; color: var(--text); padding: 0.55em 0; }
}

@media (max-width: 560px) {
  .features__grid, .addons, .tiers, .examples { grid-template-columns: 1fr; }
  .trust__inner { justify-content: center; text-align: center; }
  .trust__stats div { align-items: center; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
}
