:root {
  --ink-950: #111318;
  --ink-900: #171b22;
  --ink-800: #272f3d;
  --ink-700: #39465a;
  --accent: #e8634a;
  --accent-glow: #f28b72;
  --accent-dim: #c94e38;
  --mint: #5db8a8;
  --stone: #e8eaed;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.14);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-sans);
  color: var(--stone);
  background: var(--ink-950);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-bg {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 0%, rgba(232, 99, 74, 0.14), transparent 42%),
    radial-gradient(circle at 88% 100%, rgba(93, 184, 168, 0.09), transparent 45%),
    linear-gradient(165deg, #111318 0%, #171b22 55%, #131720 100%);
}

.wrap {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mark {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: var(--accent);
  color: var(--ink-950);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--stone);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.65rem;
  padding: 0.7rem 1.15rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--ink-950);
  box-shadow: 0 0 36px rgba(232, 99, 74, 0.14);
}

.btn-primary:hover {
  background: var(--accent-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
  color: var(--stone);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Full-bleed product hero */
.hero-bleed {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  margin-bottom: 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: hero-ken 18s ease-in-out alternate both;
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.55) 0%, rgba(17, 19, 24, 0.2) 35%, rgba(17, 19, 24, 0.88) 100%),
    linear-gradient(90deg, rgba(17, 19, 24, 0.75) 0%, rgba(17, 19, 24, 0.25) 55%, transparent 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 3.5rem 0 4.25rem;
  animation: rise 800ms ease both;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0 0 1rem;
  color: #fafaf9;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.45);
}

.hero-bleed .hero-lead {
  max-width: 32rem;
  color: #d6d3d1;
  font-size: 1.15rem;
  margin: 0 0 1.75rem;
}

@keyframes hero-ken {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.hero {
  padding: 4.5rem 0 5.5rem;
  min-height: min(78vh, 720px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: rise 700ms ease both;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 0 1rem;
  color: #fafaf9;
}

.hero-lead {
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 1.75rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.product-shot {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 3rem;
  animation: rise 900ms ease both;
}

.product-shot img,
.product-shot .desk-frame {
  width: 100%;
  border-radius: 0.35rem;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.product-shot .desk-frame {
  min-height: 300px;
}

.product-shot figcaption h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}

.product-shot figcaption p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

@media (min-width: 880px) {
  .product-shot {
    grid-template-columns: 1.35fr 0.65fr;
    align-items: end;
    gap: 2rem;
  }

  .product-shot-alt {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .product-shot-alt img {
    order: 2;
  }

  .product-shot-alt figcaption {
    order: 1;
  }
}

.section {
  padding: 4rem 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.section-lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 2rem;
}

.feature {
  display: grid;
  gap: 0.35rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  animation: rise 800ms ease both;
}

.feature:nth-child(2) { animation-delay: 40ms; }
.feature:nth-child(3) { animation-delay: 80ms; }
.feature:nth-child(4) { animation-delay: 120ms; }

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  color: var(--muted);
  max-width: 40rem;
}

.plan-lane-label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 2rem 0 1rem;
  padding: 0.65rem 0 0.65rem 0.85rem;
  border-left: 4px solid var(--line);
}

.plan-lane-cloud {
  border-left-color: var(--mint);
  color: var(--mint);
  margin-top: 1.25rem;
}

.plan-lane-local {
  border-left-color: var(--accent);
  color: var(--accent-glow);
}

.pricing-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.plan {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(42, 36, 28, 0.7), rgba(26, 22, 18, 0.85));
  border-radius: 1rem;
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan.featured {
  border-color: rgba(232, 99, 74, 0.45);
}

.plan h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.35rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.price span {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  font-family: var(--font-sans);
}

.plan ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  flex: 1;
}

.plan li {
  margin-bottom: 0.35rem;
}

.form {
  display: grid;
  gap: 0.75rem;
  max-width: 32rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border-radius: 0.65rem;
  border: 1px solid var(--line);
  background: var(--ink-900);
  color: var(--stone);
  padding: 0.7rem 0.85rem;
  font: inherit;
}

.form textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-msg {
  font-size: 0.9rem;
  color: var(--mint);
  min-height: 1.25rem;
}

.form-msg.err {
  color: #fda4af;
}

.addons {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer a:hover {
  color: var(--accent-glow);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 720px) {
  .nav-links .hide-sm {
    display: none;
  }

  .nav-links a.nav-keep {
    display: inline-flex;
  }

  .hero {
    padding-top: 2.5rem;
    min-height: auto;
  }

  .hero-bleed {
    min-height: min(78vh, 640px);
  }

  .hero-copy {
    padding: 2.25rem 0 2.75rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr !important;
  }
}

.compare-hero .eyebrow {
  animation: fade-up 0.55s ease both;
}

.compare-hero h1 {
  animation: fade-up 0.65s ease 0.08s both;
}

.compare-hero .hero-lead,
.compare-hero .cta-row {
  animation: fade-up 0.7s ease 0.16s both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(0.85rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.cost-col {
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.cost-col.us {
  border-top-color: rgba(232, 99, 74, 0.55);
}

.cost-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.cost-col.us .cost-label {
  color: var(--accent);
}

.cost-figure {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.65rem;
}

.cost-figure span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.cost-col p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.strike-list,
.win-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  font-size: 0.9rem;
}

.strike-list li {
  color: #a8a29e;
  padding-left: 1.15rem;
  position: relative;
}

.strike-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #78716c;
  font-weight: 700;
}

.win-list li {
  color: var(--stone);
  padding-left: 1.15rem;
  position: relative;
}

.win-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-size: 0.65rem;
  top: 0.35rem;
}

.cost-math {
  margin: 2rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232, 99, 74, 0.28);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent-glow);
  max-width: 40rem;
  animation: fade-up 0.8s ease 0.2s both;
}

.switch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2.5rem;
  margin-top: 1.5rem;
}

.switch-grid h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}

.switch-grid p {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
}

.compare-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.compare-legend i {
  font-style: normal;
  margin-right: 0.35rem;
}

.compare-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(26, 22, 18, 0.65);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table thead th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.25);
  position: sticky;
  top: 0;
  z-index: 1;
}

.compare-table th.col-us,
.compare-table td.col-us {
  color: var(--accent-glow);
  background: rgba(232, 99, 74, 0.06);
  font-weight: 500;
}

.compare-table tr.group td {
  font-family: var(--font-display);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: rgba(232, 99, 74, 0.05);
  padding-top: 1rem;
  padding-bottom: 0.55rem;
  border-bottom-color: rgba(232, 99, 74, 0.2);
}

.compare-table i.yes {
  color: var(--mint);
  font-style: normal;
}

.compare-table i.partial {
  color: var(--accent-glow);
  font-style: normal;
}

.compare-table i.no {
  color: #78716c;
  font-style: normal;
}

.compare-verdict {
  text-align: left;
}

.verdict-lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.35;
  max-width: 38rem;
  margin: 0 0 1.5rem;
  color: var(--stone);
}

.verdict-lead em {
  font-style: normal;
  color: var(--accent-glow);
}

.compare-teaser {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.compare-teaser .row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.compare-teaser .row.head {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-bottom-color: rgba(232, 99, 74, 0.25);
}

.compare-teaser .us {
  color: var(--accent-glow);
  font-weight: 600;
}

.compare-teaser .them {
  color: #78716c;
}

@media (max-width: 900px) {
  .cost-grid {
    grid-template-columns: 1fr;
  }

  .switch-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .compare-teaser .row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}
/* Faithful Hearth Desk desk chrome for marketing (matches renderer Layout + pages) */

.desk-frame {
  display: grid;
  grid-template-columns: 148px 1fr;
  width: 100%;
  min-height: 320px;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: #111318;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.35;
  color: #e7e5e4;
  text-align: left;
}

.desk-frame * {
  box-sizing: border-box;
}

.desk-side {
  background: rgba(26, 22, 18, 0.92);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.65rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.desk-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.45rem 0.55rem;
}

.desk-mark {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 0.45rem;
  background: #e8634a;
  color: #111318;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 800;
  flex-shrink: 0;
}

.desk-shop {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: -0.02em;
}

.desk-lic {
  font-size: 0.48rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #f28b72;
}

.desk-nav {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  flex: 1;
}

.desk-nav span {
  display: block;
  padding: 0.28rem 0.45rem;
  border-radius: 0.4rem;
  color: #a8a29e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.desk-nav span.on {
  background: rgba(232, 99, 74, 0.15);
  color: #f28b72;
}

.desk-user {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem;
  color: #a8a29e;
  font-size: 0.58rem;
}

.desk-user strong {
  display: block;
  color: #e7e5e4;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.desk-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 99, 74, 0.12), transparent 38%),
    linear-gradient(165deg, #111318 0%, #171b22 55%, #18140f 100%);
}

.desk-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(26, 22, 18, 0.55);
}

.desk-top-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: -0.02em;
  min-width: 4.5rem;
}

.desk-search {
  flex: 1;
  border-radius: 0.4rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: #171b22;
  padding: 0.28rem 0.5rem;
  color: #78716c;
  font-size: 0.62rem;
}

.desk-body {
  padding: 0.75rem;
  flex: 1;
  min-height: 0;
}

.desk-glass {
  background: linear-gradient(180deg, rgba(42, 36, 28, 0.94), rgba(26, 22, 18, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 0.75rem;
  padding: 0.65rem;
}

.desk-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
  font-size: 0.52rem;
  font-weight: 600;
  background: rgba(93, 184, 168, 0.18);
  color: #5db8a8;
}

.desk-badge.amber {
  background: rgba(232, 99, 74, 0.18);
  color: #f28b72;
}

.desk-h {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0.2rem 0 0.55rem;
}

.desk-muted {
  color: #a8a29e;
}

.desk-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  margin-bottom: 0.55rem;
}

.desk-stat {
  padding: 0.45rem;
}

.desk-stat label {
  display: block;
  font-size: 0.52rem;
  color: #a8a29e;
  margin-bottom: 0.15rem;
}

.desk-stat b {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafaf9;
}

.desk-stat small {
  display: block;
  font-size: 0.5rem;
  color: #78716c;
  margin-top: 0.1rem;
}

/* Intake / Scan Match */
.desk-intake {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 0.5rem;
}

.desk-tabs {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.45rem;
}

.desk-tabs i {
  font-style: normal;
  padding: 0.2rem 0.45rem;
  border-radius: 0.35rem;
  color: #a8a29e;
  border: 1px solid transparent;
}

.desk-tabs i.on {
  background: rgba(232, 99, 74, 0.15);
  color: #f28b72;
  border-color: rgba(232, 99, 74, 0.25);
}

.desk-cam {
  aspect-ratio: 16 / 9;
  border-radius: 0.5rem;
  background: #0a0908;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: #57534e;
  margin-bottom: 0.4rem;
  position: relative;
  overflow: hidden;
}

.desk-cam::after {
  content: '';
  position: absolute;
  inset: 18% 28%;
  border: 1px dashed rgba(232, 99, 74, 0.45);
  border-radius: 0.25rem;
}

.desk-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.3rem;
}

.desk-card-tile {
  aspect-ratio: 5 / 7;
  border-radius: 0.3rem;
  background: linear-gradient(145deg, #39465a, #171b22);
  border: 1px solid rgba(148, 163, 184, 0.14);
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.desk-card-tile.on {
  border-color: rgba(232, 99, 74, 0.55);
  box-shadow: 0 0 0 1px rgba(232, 99, 74, 0.25);
}

.desk-card-tile b {
  font-size: 0.52rem;
  font-weight: 600;
}

.desk-card-tile span {
  font-size: 0.45rem;
  color: #f28b72;
}

.desk-confirm .art {
  aspect-ratio: 5 / 7;
  max-width: 5.5rem;
  margin: 0 auto 0.4rem;
  border-radius: 0.35rem;
  background: linear-gradient(160deg, rgba(232, 99, 74, 0.35), rgba(93, 184, 168, 0.25));
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.desk-confirm .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin: 0.35rem 0;
}

.desk-btn {
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 0.45rem;
  padding: 0.4rem;
  background: #e8634a;
  color: #111318;
  font-weight: 700;
  font-size: 0.65rem;
  margin-top: 0.45rem;
}

.desk-btn.ghost {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
  color: #e7e5e4;
}

/* POS */
.desk-pos {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 0.5rem;
}

.desk-hit {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.desk-hit b {
  font-weight: 600;
  font-size: 0.65rem;
}

.desk-hit span {
  color: #f28b72;
  font-size: 0.62rem;
}

.desk-cart-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  padding: 0.25rem 0;
  color: #d6d3d1;
}

.desk-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.45rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

/* Sync */
.desk-markets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.35rem;
  margin-top: 0.45rem;
}

.desk-mkt {
  border-radius: 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(26, 22, 18, 0.75);
  padding: 0.45rem;
  text-align: center;
}

.desk-mkt .letter {
  width: 1.4rem;
  height: 1.4rem;
  margin: 0 auto 0.3rem;
  border-radius: 0.3rem;
  background: #e8634a;
  color: #111318;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.7rem;
}

.desk-mkt b {
  display: block;
  font-size: 0.58rem;
  margin-bottom: 0.15rem;
}

.desk-log {
  margin-top: 0.45rem;
  font-size: 0.55rem;
  color: #a8a29e;
}

.desk-log div {
  padding: 0.2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero wraps a large frame */
.hero-desk-wrap {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
  animation: rise 900ms ease 120ms both;
}

.hero-desk-wrap .desk-frame {
  min-height: min(52vh, 420px);
  transform-origin: center bottom;
  animation: desk-settle 1.1s ease both;
}

@keyframes desk-settle {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-bleed.hero-with-desk {
  justify-content: flex-start;
  min-height: auto;
  padding-bottom: 0;
}

.hero-bleed.hero-with-desk .hero-copy {
  padding-bottom: 1.25rem;
}

.hero-bleed.hero-with-desk .hero-media {
  opacity: 0.35;
  filter: saturate(0.85);
}

.hero-bleed.hero-with-desk .hero-veil {
  background:
    linear-gradient(180deg, rgba(17, 19, 24, 0.72) 0%, rgba(17, 19, 24, 0.55) 40%, #111318 100%);
}

@media (max-width: 820px) {
  .desk-frame {
    grid-template-columns: 1fr;
  }

  .desk-side {
    display: none;
  }

  .desk-intake,
  .desk-pos {
    grid-template-columns: 1fr;
  }

  .desk-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .desk-markets {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Cloud vs Local chooser — primary decision surface */
.path-band {
  padding: 2.75rem 0 3.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(23, 27, 34, 0.95), rgba(17, 19, 24, 0.98)),
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(93, 184, 168, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 80% at 80% 50%, rgba(232, 99, 74, 0.1), transparent 55%);
}

.path-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  text-align: center;
}

.path-band-lead {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 1.75rem;
  max-width: 36rem;
  font-size: 1.05rem;
}

.path-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.path-panel {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.75rem 1.6rem 1.5rem;
  border-radius: 1.1rem;
  border: 1px solid var(--line);
  min-height: 100%;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  animation: path-in 700ms ease both;
}

.path-panel:nth-child(2) {
  animation-delay: 90ms;
}

.path-panel:hover {
  transform: translateY(-3px);
}

.path-cloud {
  background: linear-gradient(165deg, rgba(93, 184, 168, 0.14), rgba(23, 27, 34, 0.9) 42%);
  border-color: rgba(93, 184, 168, 0.35);
  box-shadow: inset 4px 0 0 var(--mint);
}

.path-cloud:hover {
  border-color: rgba(93, 184, 168, 0.65);
  background: linear-gradient(165deg, rgba(93, 184, 168, 0.22), rgba(23, 27, 34, 0.92) 45%);
}

.path-local {
  background: linear-gradient(165deg, rgba(232, 99, 74, 0.14), rgba(23, 27, 34, 0.9) 42%);
  border-color: rgba(232, 99, 74, 0.35);
  box-shadow: inset 4px 0 0 var(--accent);
}

.path-local:hover {
  border-color: rgba(232, 99, 74, 0.65);
  background: linear-gradient(165deg, rgba(232, 99, 74, 0.22), rgba(23, 27, 34, 0.92) 45%);
}

.path-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.path-cloud .path-kicker {
  color: var(--mint);
}

.path-local .path-kicker {
  color: var(--accent-glow);
}

.path-name {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.path-price {
  font-size: 1.15rem;
  color: var(--stone);
}

.path-price em {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.path-blurb {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 28rem;
}

.path-points {
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--stone);
  font-size: 0.9rem;
  flex: 1;
}

.path-points li {
  padding: 0.35rem 0;
  border-top: 1px solid var(--line);
}

.path-points li:last-child {
  border-bottom: 1px solid var(--line);
}

.path-cta {
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.path-cloud .path-cta {
  color: var(--mint);
}

.path-local .path-cta {
  color: var(--accent-glow);
}

@keyframes path-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.path-band .wrap {
  /* when path-band sits inside .wrap on buy page */
  width: 100%;
}

@media (max-width: 720px) {
  .path-split {
    grid-template-columns: 1fr;
  }

  .path-band {
    padding: 2rem 0 2.5rem;
  }

  .path-name {
    font-size: 2.75rem;
  }
}
