:root {
  --ink: #12151a;
  --ink-soft: #2a3140;
  --paper: #f2efe6;
  --muted: #8a9080;
  --line: rgba(242, 239, 230, 0.14);
  --amber: #e8a317;
  --amber-deep: #c4840a;
  --asphalt: #0c0e12;
  --panel: #171b22;
  --ok: #6fbf7a;
  --hold: #d4a25a;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(232, 163, 23, 0.18), transparent 55%),
    radial-gradient(900px 500px at 10% 20%, rgba(80, 110, 140, 0.16), transparent 50%),
    linear-gradient(180deg, #10131a 0%, var(--asphalt) 45%, #090b0f 100%);
  overflow-x: hidden;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 0;
}

.top,
main,
.foot {
  position: relative;
  z-index: 1;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  max-width: 1120px;
  margin: 0 auto;
}

.mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
  text-decoration: none;
}

nav {
  display: flex;
  gap: 1.25rem;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--paper);
}

.hero {
  min-height: calc(100vh - 5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 4rem;
}

.brand {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--amber);
  animation: rise 0.7s ease both;
}

.hero h1 {
  margin: 0 0 1rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--paper);
  animation: rise 0.7s ease 0.08s both;
}

.lede {
  margin: 0 0 1.75rem;
  max-width: 36ch;
  color: #c5c9bc;
  animation: rise 0.7s ease 0.16s both;
}

.hero-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  animation: rise 0.7s ease 0.3s both;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.7s ease 0.24s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 2px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: linear-gradient(180deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: #1a1200;
}

.btn.ghost {
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  animation: drift-in 0.9s ease 0.2s both;
  min-width: 0;
}

/* —— App screen mocks (match desktop Theme) —— */
:root {
  --app-side: #162030;
  --app-bg: #f1f4f8;
  --app-surface: #ffffff;
  --app-border: #e2e8f0;
  --app-text: #0f172a;
  --app-muted: #64748b;
  --app-accent: #2563eb;
  --app-ok: #16a34a;
  --app-warn: #d97706;
  --app-bad: #dc2626;
  --app-yellow: #facc15;
  --app-ui: "Segoe UI", system-ui, sans-serif;
}

.win-chrome {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.35);
  background: var(--app-side);
}

.win-titlebar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.85rem;
  background: #111827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.win-dots {
  display: flex;
  gap: 0.35rem;
}

.win-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3a4250;
  display: block;
}

.win-dots i:first-child {
  background: #c45c4a;
}

.win-dots i:nth-child(2) {
  background: #c4a14a;
}

.win-dots i:nth-child(3) {
  background: #4a9c5d;
}

.win-caption {
  font-family: var(--app-ui);
  font-size: 0.78rem;
  color: #94a3b8;
}

.app-shell {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 320px;
  font-family: var(--app-ui);
  background: var(--app-bg);
  color: var(--app-text);
}

.app-shell--hero {
  min-height: 0;
  transform: none;
}

.app-shell--hero .app-side {
  padding: 0.75rem 0.65rem 0.85rem;
}

.app-shell--hero .app-nav,
.app-shell--hero .app-cta {
  font-size: 0.72rem;
  padding: 0.4rem 0.55rem;
}

.app-shell--hero .app-main {
  padding: 0.75rem;
}

.app-shell--hero .app-head h3 {
  font-size: 1rem;
}

.app-shell--hero .app-list .vrow:nth-child(n + 3) {
  display: none;
}

.app-side {
  background: var(--app-side);
  color: #e2e8f0;
  padding: 1rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.app-brand strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.app-brand em {
  display: block;
  margin: 0.2rem 0 0.65rem;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--app-yellow);
}

.app-sec {
  margin: 0.55rem 0 0.25rem;
  padding-left: 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.app-nav {
  appearance: none;
  border: 0;
  background: transparent;
  color: #cbd5e1;
  text-align: left;
  font: inherit;
  font-size: 0.8rem;
  padding: 0.45rem 0.55rem;
  border-radius: 6px;
  cursor: default;
}

.app-nav.is-on {
  background: #243a5c;
  color: #fff;
  box-shadow: inset 3px 0 0 var(--app-accent);
}

.app-cta {
  appearance: none;
  border: 0;
  margin: 0.55rem 0 0.25rem;
  background: var(--app-accent);
  color: #fff;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.55rem 0.65rem;
  border-radius: 6px;
  cursor: default;
}

.app-foot {
  margin-top: auto;
  padding: 0.75rem 0.45rem 0;
  font-size: 0.65rem;
  color: #64748b;
}

.app-main {
  padding: 1rem 1.1rem 1.1rem;
  min-width: 0;
}

.app-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.app-head h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--app-text);
}

.app-head p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--app-muted);
}

.app-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: flex-end;
}

.app-search {
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 6px;
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  color: #94a3b8;
  min-width: 10rem;
}

.app-btn-blue,
.app-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.app-btn-blue {
  background: var(--app-accent);
  color: #fff;
}

.app-btn-ghost {
  background: #fff;
  color: var(--app-text);
  border: 1px solid var(--app-border);
}

.app-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.screen-frame .app-stats {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat {
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
}

.stat span {
  display: block;
  font-size: 0.68rem;
  color: var(--app-muted);
}

.stat b {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--app-text);
}

.stat b.warn {
  color: var(--app-warn);
}

.stat b.ok {
  color: var(--app-ok);
}

.stat b.bad {
  color: var(--app-bad);
}

.app-list {
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  padding: 0.45rem;
  display: grid;
  gap: 0.35rem;
}

.vrow {
  display: grid;
  grid-template-columns: 52px 1fr auto auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.55rem 0.55rem;
  border-radius: 10px;
  animation: row-glow 5s ease-in-out infinite;
}

.vrow:nth-child(2) {
  animation-delay: 0.7s;
}

.vrow:nth-child(3) {
  animation-delay: 1.4s;
}

.vrow.abandon {
  background: #fff7ed;
}

.thumb {
  width: 52px;
  height: 40px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
}

.thumb.t1,
.case-thumbs i.t1,
.case-hero-photo {
  background-image: linear-gradient(135deg, #334155, #64748b 40%, #94a3b8);
}

.thumb.t2,
.case-thumbs i.t2 {
  background-image: linear-gradient(135deg, #1e293b, #475569 45%, #94a3b8);
}

.thumb.t3,
.case-thumbs i.t3 {
  background-image: linear-gradient(135deg, #0f172a, #334155 50%, #e2e8f0);
}

.thumb.t4 {
  background-image: linear-gradient(135deg, #7c2d12, #c2410c 45%, #fdba74);
}

.vmeta {
  min-width: 0;
  display: grid;
  gap: 0.1rem;
}

.vmeta strong {
  font-size: 0.82rem;
  font-weight: 650;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vmeta span {
  font-size: 0.7rem;
  color: var(--app-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pill {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  color: #fff;
  white-space: nowrap;
}

.pill.onlot {
  background: var(--app-accent);
}

.pill.hold {
  background: var(--app-warn);
}

.pill.ready {
  background: var(--app-ok);
}

.pill.abandon {
  background: var(--app-bad);
}

.vbal {
  text-align: right;
  display: grid;
  gap: 0.05rem;
  min-width: 4.5rem;
}

.vbal em,
.vbal span {
  font-style: normal;
  font-size: 0.65rem;
  color: var(--app-muted);
}

.vbal b {
  font-size: 0.85rem;
  color: var(--app-text);
}

.screens .screen-block {
  margin: 0 0 2.75rem;
}

.screens .screen-block:last-of-type {
  margin-bottom: 0;
}

.screen-frame {
  width: 100%;
}

.screen-frame .app-shell {
  grid-template-columns: 200px 1fr;
  min-height: 420px;
}

.screen-block figcaption {
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
  max-width: 40rem;
}

.screen-block figcaption strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--paper);
}

.screen-block figcaption span {
  color: #a8ad9f;
  font-size: 0.98rem;
}

.screen-block--split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.25rem;
  align-items: start;
}

.screen-block--split figcaption {
  grid-column: 1 / -1;
}

.screen-frame--narrow {
  max-width: 100%;
}

.case-shell {
  font-family: var(--app-ui);
  background: #f5f6f8;
  color: var(--app-text);
}

.case-banner {
  background: #fff;
  border-bottom: 1px solid var(--app-border);
  padding: 0.9rem 1.1rem;
}

.case-banner h3 {
  margin: 0;
  font-size: 1.05rem;
}

.case-banner p {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: var(--app-muted);
}

.case-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0.75rem;
  padding: 0.85rem;
}

.case-col {
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.case-card {
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}

.case-card h4 {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--app-muted);
}

.case-hero-photo {
  height: 110px;
  border-radius: 8px;
  margin-bottom: 0.45rem;
}

.case-thumbs {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.case-thumbs i {
  width: 42px;
  height: 32px;
  border-radius: 4px;
  display: block;
}

.case-dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.75rem;
}

.case-dl div {
  display: grid;
  gap: 0.1rem;
}

.case-dl dt {
  font-size: 0.65rem;
  color: var(--app-muted);
}

.case-dl dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

.stepper {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.stepper li {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--app-muted);
}

.stepper li.done {
  background: #dcfce7;
  color: #166534;
}

.stepper li.current {
  background: #dbeafe;
  color: #1d4ed8;
}

.fee-mods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.fee-mods span {
  font-size: 0.72rem;
  background: #f8fafc;
  border: 1px solid var(--app-border);
  border-radius: 6px;
  padding: 0.25rem 0.45rem;
  color: var(--app-muted);
}

.fee-mods b {
  color: var(--app-text);
}

.fee-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.fee-lines li {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  padding: 0.2rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.fee-total {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--app-muted);
}

.fee-total b {
  color: var(--app-text);
}

.case-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.check-list li {
  font-size: 0.8rem;
  padding-left: 1.35rem;
  position: relative;
  color: var(--app-muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 3px;
  border: 1.5px solid #cbd5e1;
  background: #fff;
}

.check-list li.ok {
  color: var(--app-text);
}

.check-list li.ok::before {
  border-color: var(--app-ok);
  background: var(--app-ok);
  box-shadow: inset 0 0 0 2px #fff;
}

.case-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1.1rem;
  background: var(--app-side);
  color: #e2e8f0;
  font-size: 0.9rem;
  font-weight: 700;
}

.case-bottom-btns {
  display: flex;
  gap: 0.4rem;
}

.pay-shell {
  font-family: var(--app-ui);
  background: var(--app-bg);
  color: var(--app-text);
  padding: 1rem 1.1rem 1.1rem;
}

.pay-vehicle {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.pay-meta {
  margin: 0.2rem 0 0.85rem;
  font-size: 0.78rem;
  color: var(--app-muted);
}

.pay-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.pay-summary div {
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 8px;
  padding: 0.45rem 0.55rem;
}

.pay-summary span {
  display: block;
  font-size: 0.65rem;
  color: var(--app-muted);
}

.pay-summary b {
  font-size: 0.9rem;
}

.pay-summary b.due {
  color: var(--app-accent);
}

.pay-shell label {
  display: block;
  margin: 0.45rem 0 0.2rem;
  font-size: 0.72rem;
  color: var(--app-muted);
}

.pay-field {
  background: #fff;
  border: 1px solid var(--app-border);
  border-radius: 6px;
  padding: 0.45rem 0.65rem;
  font-size: 0.85rem;
}

.pay-field.muted {
  color: #94a3b8;
}

.pay-footer {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--app-border);
}

.invoice-shell {
  font-family: var(--app-ui);
  background: #fff;
  color: var(--app-text);
  padding: 1.15rem 1.25rem 1.35rem;
  min-height: 280px;
}

.invoice-shell header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--app-text);
}

.invoice-shell header strong {
  display: block;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.invoice-shell header p {
  margin: 0.2rem 0 0;
  font-size: 0.85rem;
  color: var(--app-muted);
}

.inv-right {
  text-align: right;
  font-size: 0.8rem;
  color: var(--app-muted);
}

.inv-right p {
  margin: 0 0 0.15rem;
}

.inv-vehicle {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.invoice-shell table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.invoice-shell th,
.invoice-shell td {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--app-border);
  text-align: left;
}

.invoice-shell th:last-child,
.invoice-shell td:last-child {
  text-align: right;
}

.invoice-shell th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--app-muted);
}

.inv-total {
  margin: 1rem 0 0;
  text-align: right;
  font-size: 0.95rem;
}

.hero-app {
  animation: float-soft 7s ease-in-out infinite;
}

.screens .screen-block:nth-child(odd) .win-chrome {
  animation: drift-in 0.8s ease both;
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes row-glow {
  0%,
  100% {
    background: transparent;
  }
  50% {
    background: #eff6ff;
  }
}

.vrow.abandon {
  animation: none;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 4.5rem clamp(1.25rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.section h2,
.legal h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-lede {
  margin: 0 0 2rem;
  max-width: 48ch;
  color: #b7bcae;
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 1.5rem;
}

.features li {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.85rem;
  border-top: 2px solid rgba(232, 163, 23, 0.35);
}

.features strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.features span {
  color: #a8ad9f;
  font-size: 0.98rem;
}

.price-block {
  margin: 0 0 1.25rem;
  padding: 1.25rem 0;
  border-top: 2px solid rgba(232, 163, 23, 0.35);
  max-width: 28rem;
}

.price-main {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--paper);
}

.price-main span {
  color: var(--amber);
}

.price-detail {
  margin: 0.65rem 0 0;
  font-weight: 600;
  color: var(--paper);
}

.price-extra {
  margin: 0.35rem 0 0;
  color: #b7bcae;
}

.steps {
  margin: 0 0 1.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1.1rem;
  max-width: 40rem;
  counter-reset: step;
}

.steps li {
  display: grid;
  gap: 0.2rem;
  padding-left: 2.75rem;
  position: relative;
  counter-increment: step;
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 1.85rem;
  height: 1.85rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: #1a1200;
  background: var(--amber);
}

.steps strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.steps span {
  color: #a8ad9f;
}

.download-cta {
  margin-bottom: 1rem;
}

.contact .email-line {
  margin: 0 0 0.75rem;
}

.contact .email-line a {
  color: var(--amber);
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
}

.contact .email-line a:hover {
  text-decoration: underline;
}

.fine {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 46ch;
}

.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 3rem) 5rem;
}

.legal .updated {
  color: var(--muted);
  margin-top: 0;
}

.legal h2 {
  margin: 2rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal a {
  color: var(--amber);
}

.foot {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--line);
}

.foot a {
  color: var(--muted);
  text-decoration: none;
}

.foot a:hover {
  color: var(--paper);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 1rem;
  }

  .features {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .app-shell,
  .screen-frame .app-shell {
    grid-template-columns: 1fr;
  }

  .app-side {
    display: none;
  }

  .app-stats,
  .screen-frame .app-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vrow {
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "thumb meta"
      "thumb bal";
  }

  .thumb {
    grid-area: thumb;
  }

  .vmeta {
    grid-area: meta;
  }

  .pill {
    display: none;
  }

  .vbal {
    grid-area: bal;
    text-align: left;
    display: flex;
    gap: 0.5rem;
    align-items: baseline;
  }

  .case-grid,
  .screen-block--split {
    grid-template-columns: 1fr;
  }

  .app-head {
    flex-direction: column;
  }

  .hero-app {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
