:root {
  --brand: #d85a30;
  --brand-deep: #b84722;
  --brand-soft: rgba(216, 90, 48, 0.12);
  --ink: #16120e;
  --ink-soft: #5c5a57;
  --line: rgba(22, 18, 14, 0.1);
  --paper: #fafafa;
  --surface: #ffffff;
  --mist: #ebe9e6;
  --band: #f3f2f0;
  --ok: #2a7a52;
  /* Outfit ≈ ObjectSans (geometric display); Nunito Sans ≈ Avenir Next (body) */
  --font-display: "Outfit", "Nunito Sans", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
  --shadow: 0 24px 64px rgba(22, 18, 14, 0.12);
  --radius: 0.5rem;
  --pad-x: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(4.5rem, 12vh, 7.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
  background: var(--paper);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

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

/* —— Top nav —— */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad-x);
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.logo svg {
  height: 1.75rem;
  width: auto;
}

.logo-pulse {
  animation: logo-pulse 2.8s ease-in-out infinite;
  transform-origin: 28px 28px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav > a:not(.btn) {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.5rem 0.85rem;
  border-radius: 0.35rem;
  transition: color 0.2s ease;
}

.nav > a:not(.btn):hover {
  color: var(--ink);
}

.nav-login {
  margin-left: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--surface);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem var(--pad-x) 1.25rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.mobile-nav a {
  font-weight: 600;
  padding: 0.7rem 0.5rem;
  color: var(--ink-soft);
}

.mobile-nav .btn {
  margin-top: 0.35rem;
  width: 100%;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.6rem 1.15rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

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

.btn-brand {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px rgba(216, 90, 48, 0.28);
}

.btn-brand:hover {
  background: var(--brand-deep);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: rgba(22, 18, 14, 0.2);
}

.btn-lg {
  padding: 0.95rem 1.55rem;
  font-size: 1.05rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.35rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brand);
  transition: color 0.2s ease;
}

.text-link:hover {
  color: var(--brand-deep);
}

/* —— Hero (Markup-like: centered copy + full-bleed product shot) —— */
.hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: clamp(3rem, 8vh, 5.5rem) 0 0;
  gap: clamp(2.5rem, 6vh, 4rem);
}

.hero-copy {
  padding: 0 var(--pad-x);
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  animation: rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-hero {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.85rem, 9vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand-accent {
  color: var(--brand);
}

.hero-copy h1 {
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 3.2vw, 2.125rem);
  letter-spacing: -0.035em;
  line-height: 1.25;
  color: var(--ink);
  max-width: 22ch;
}

.lede {
  margin: 1.25rem auto 0;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 36rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
  justify-content: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 clamp(0.75rem, 3vw, 2rem);
  min-height: min(58vh, 560px);
  animation: rise 1s 0.12s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-atmosphere {
  position: absolute;
  inset: 12% 8% auto;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(216, 90, 48, 0.2), transparent 68%);
  filter: blur(36px);
  pointer-events: none;
}

/* —— Hero product mock: mirrors apps/web review-workspace —— */
.review-app {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: min(58vh, 560px);
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 0.85rem 0.85rem 0 0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--mist);
  background: #fff;
  flex-shrink: 0;
}

.app-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.app-pulse {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(216, 90, 48, 0.18);
  animation: logo-pulse 2.8s ease-in-out infinite;
}

.app-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.app-wordmark span {
  color: var(--brand);
}

.app-title-block {
  flex: 1;
  min-width: 0;
}

.app-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-meta {
  font-size: 0.68rem;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.live-pill {
  color: var(--ok);
  font-weight: 700;
}

.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border: 1px solid var(--mist);
  border-radius: 0.5rem;
  background: #f3f6f8;
  flex-shrink: 0;
}

.mode-btn {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 0.35rem;
  color: var(--ink-soft);
}

.mode-btn.active {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 1px 2px rgba(216, 90, 48, 0.25);
}

.mode-hint {
  flex-shrink: 0;
  padding: 0.45rem 0.9rem;
  font-size: 0.72rem;
  color: var(--brand-deep);
  background: rgba(216, 90, 48, 0.08);
  border-bottom: 1px solid rgba(216, 90, 48, 0.18);
}

.mode-hint strong {
  font-weight: 700;
}

.app-body {
  flex: 1;
  display: grid;
  grid-template-columns: 15.5rem 1fr;
  min-height: 0;
}

.comment-sidebar {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--mist);
  background: #fff;
  min-height: 0;
}

.sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0.85rem 0.5rem;
  border-bottom: 1px solid var(--mist);
}

.sidebar-head h3 {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}

.page-filter {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--mist);
  border-radius: 0.35rem;
  padding: 0.15rem 0.4rem;
}

.pages-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem;
  border-bottom: 1px solid var(--mist);
}

.page-chip {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f3f6f8;
  color: var(--ink-soft);
}

.page-chip.active {
  background: rgba(216, 90, 48, 0.15);
  color: var(--brand-deep);
}

.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  flex: 1;
}

.comment-item {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--mist);
}

.comment-item.active {
  background: rgba(216, 90, 48, 0.08);
}

.comment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.3rem;
}

.comment-id {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
}

.badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}

.badge.open {
  background: rgba(216, 90, 48, 0.15);
  color: var(--brand-deep);
}

.badge.resolved {
  background: rgba(42, 122, 82, 0.15);
  color: var(--ok);
}

.comment-item p {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--ink-soft);
}

.comment-author {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.62rem;
  color: rgba(92, 90, 87, 0.85);
}

.review-canvas {
  position: relative;
  padding: clamp(0.75rem, 1.8vw, 1.1rem);
  background: #eef3f6;
  overflow: hidden;
  min-height: 0;
}

.page-surface {
  height: 100%;
  min-height: 16rem;
  border-radius: 0.45rem;
  background: linear-gradient(180deg, #fbfbfc 0%, #f2f3f6 100%);
  padding: clamp(1rem, 2.2vw, 1.5rem);
  box-shadow: 0 1px 0 rgba(22, 18, 14, 0.04), 0 12px 28px rgba(22, 18, 14, 0.06);
  border: 1px solid rgba(215, 226, 234, 0.9);
}

.page-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-logo {
  width: 4.5rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #c9ced6;
}

.page-links {
  width: 7rem;
  height: 0.4rem;
  border-radius: 999px;
  background: #dce0e6;
  margin-left: auto;
}

.page-nav-cta {
  width: 3.25rem;
  height: 1.1rem;
  border-radius: 0.3rem;
  background: var(--brand);
  opacity: 0.85;
}

.page-hero-block {
  margin-bottom: 1.5rem;
}

.page-line {
  height: 0.55rem;
  border-radius: 999px;
  background: #d5dae2;
  margin-bottom: 0.55rem;
}

.page-line.lg {
  width: 58%;
  height: 0.95rem;
  background: #b8c0cb;
}
.page-line.md {
  width: 42%;
}
.page-line.sm {
  width: 28%;
  opacity: 0.7;
}

.page-cta {
  width: 5.5rem;
  height: 1.55rem;
  margin-top: 0.95rem;
  border-radius: 0.4rem;
  background: var(--brand);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: min(100%, 28rem);
}

.page-tile {
  height: 4.25rem;
  border-radius: 0.4rem;
  background: #e4e7ed;
}

.page-tile.accent {
  background: linear-gradient(145deg, rgba(216, 90, 48, 0.35), #e8ebf0);
}

.pin {
  position: absolute;
  z-index: 2;
}

.pin-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 0 0 6px rgba(216, 90, 48, 0.22), 0 8px 18px rgba(216, 90, 48, 0.4);
  animation: pin-pulse 2.6s ease-in-out infinite;
}

.pin-dot.ok {
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(42, 122, 82, 0.2), 0 8px 18px rgba(42, 122, 82, 0.35);
}

.pin-bubble {
  position: absolute;
  left: 1.75rem;
  top: 50%;
  transform: translateY(-50%);
  white-space: nowrap;
  max-width: 15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.45rem 0.7rem;
  border-radius: 0.45rem;
  border: 1px solid var(--mist);
  box-shadow: var(--shadow);
  animation: float 3.2s ease-in-out infinite;
}

.pin-1 {
  top: 28%;
  left: 18%;
}
.pin-2 {
  top: 54%;
  left: 48%;
}
.pin-2 .pin-dot {
  animation-delay: 0.45s;
}
.pin-2 .pin-bubble {
  animation-delay: 0.35s;
}
.pin-3 {
  top: 40%;
  left: 72%;
}
.pin-3 .pin-dot {
  animation-delay: 0.9s;
}
.pin-3 .pin-bubble {
  animation-delay: 0.7s;
}

/* —— Make feedback simple (pipeline card) —— */
.feedback-simple {
  padding: clamp(3rem, 8vh, 5rem) var(--pad-x);
  background: var(--band);
}

.feedback-card {
  max-width: 64rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.25rem;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2.25rem, 5vw, 3.25rem);
  box-shadow: 0 18px 48px rgba(22, 18, 14, 0.06);
  text-align: center;
}

.feedback-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--ink);
}

.feedback-card > p {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: var(--ink-soft);
}

.pipeline {
  position: relative;
  margin-top: clamp(2.5rem, 5vh, 3.5rem);
  padding-top: 2.75rem;
}

.pipeline-logo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
}

.pipeline-pulse {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 7px rgba(216, 90, 48, 0.16);
  animation: logo-pulse 2.8s ease-in-out infinite;
}

.pipeline-icons {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 0.75rem;
  align-items: end;
  margin-bottom: 1rem;
  padding: 0 0.25rem;
}

.pipe-col {
  display: flex;
  justify-content: center;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 0.65rem;
  max-width: 100%;
}

.tool-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(22, 18, 14, 0.1);
  flex-shrink: 0;
}

.tool-icon svg,
.tool-icon img {
  width: 2.15rem;
  height: 2.15rem;
  display: block;
  object-fit: contain;
}

.pipeline-track {
  position: relative;
  height: 1.25rem;
  display: flex;
  align-items: center;
}

.track-line {
  display: block;
  width: 100%;
  height: 2px;
  background: #3a3a3a;
  border-radius: 1px;
}

.track-arrow {
  position: absolute;
  right: -1px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #3a3a3a;
  transform: translateY(-50%);
}

.track-div {
  position: absolute;
  top: 50%;
  left: 33.333%;
  width: 1px;
  height: 1.1rem;
  background: #3a3a3a;
  transform: translate(-50%, -50%);
}

.track-div.mid {
  left: 66.666%;
}

.pipeline-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* —— Feature sections —— */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: var(--section-y) var(--pad-x);
  max-width: 72rem;
  margin: 0 auto;
}

.feature.band {
  max-width: none;
  width: 100%;
  background: var(--band);
  padding-left: max(var(--pad-x), calc((100% - 72rem) / 2 + var(--pad-x)));
  padding-right: max(var(--pad-x), calc((100% - 72rem) / 2 + var(--pad-x)));
}

.feature.reverse {
  direction: rtl;
}

.feature.reverse > * {
  direction: ltr;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand);
}

.eyebrow.center {
  text-align: center;
}

.feature-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
  max-width: 14ch;
}

.feature-copy p:not(.eyebrow) {
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 34rem;
}

.feature-visual {
  min-height: 12rem;
}

.mini-browser {
  border-radius: 0.75rem;
  overflow: hidden;
  background: #1c2026;
  box-shadow: var(--shadow);
}

.mini-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
}

.mini-bar span {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #5c6570;
}

.mini-bar em {
  margin-left: 0.5rem;
  font-style: normal;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
}

.mini-body {
  position: relative;
  height: 11rem;
  background: linear-gradient(135deg, #2a3038, #1e2329);
}

.live-skeleton {
  position: absolute;
  inset: 1.1rem 1.25rem;
  border-radius: 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.85rem;
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.sk-nav,
.sk-title,
.sk-body {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.sk-nav {
  width: 35%;
  height: 0.4rem;
}
.sk-title {
  width: 55%;
  height: 0.7rem;
  margin-top: 0.35rem;
}
.sk-body {
  width: 70%;
  height: 0.4rem;
}

.live-pin {
  position: absolute;
  top: 34%;
  left: 30%;
}

.live-pin.delay {
  top: 60%;
  left: 64%;
}

.live-pin i {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(216, 90, 48, 0.25);
  animation: pin-pulse 2.4s ease-in-out infinite;
}

.live-pin.delay i {
  animation-delay: 0.5s;
}

.media-stack {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  justify-content: center;
  min-height: 11rem;
}

.media-card {
  width: 5rem;
  height: 6.5rem;
  border-radius: 0.55rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
}

.media-card.pdf {
  background: linear-gradient(160deg, #3a4048, #23282e);
  height: 7.25rem;
}

.media-card.img {
  background: linear-gradient(160deg, var(--brand), var(--brand-deep));
  height: 8.25rem;
  transform: translateY(-0.35rem);
}

.media-card.vid {
  background: linear-gradient(160deg, #4a515c, #2a3038);
  height: 6.75rem;
}

.invite-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.35rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.85rem;
  max-width: 18rem;
  margin-inline: auto;
}

.invite-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.avatar.b {
  background: #3a4048;
}

.invite-line {
  flex: 1;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--mist);
}

.invite-line.short {
  width: 55%;
  flex: none;
}

.invite-chip {
  justify-self: start;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.chat-mock {
  display: grid;
  gap: 0.65rem;
  max-width: 18rem;
  margin-inline: auto;
}

.chat-bubble {
  font-size: 0.9rem;
  padding: 0.75rem 0.95rem;
  border-radius: 0.85rem;
  max-width: 90%;
  line-height: 1.4;
}

.chat-bubble.in {
  background: var(--surface);
  border: 1px solid var(--line);
  justify-self: start;
  border-bottom-left-radius: 0.25rem;
}

.chat-bubble.out {
  background: var(--brand);
  color: #fff;
  justify-self: end;
  border-bottom-right-radius: 0.25rem;
}

.chat-bubble.pulse-in {
  animation: rise 0.8s 0.4s both;
}

.chat-bubble.delay {
  animation: rise 0.8s 0.9s both;
}

/* —— How it works —— */
.how {
  padding: var(--section-y) var(--pad-x);
  text-align: center;
  background: var(--band);
}

.how h2 {
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.04em;
  max-width: 18ch;
  line-height: 1.12;
}

.steps {
  list-style: none;
  margin: 3rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 58rem;
  text-align: left;
}

.steps li {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.step-num {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

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

.steps li > span:last-child {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

/* —— Pricing —— */
.pricing {
  padding: var(--section-y) var(--pad-x);
  text-align: center;
  background: var(--surface);
}

.pricing h2 {
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  letter-spacing: -0.04em;
}

.pricing-lede {
  margin: 1rem auto 0;
  color: var(--ink-soft);
  max-width: 32rem;
  font-size: 1.125rem;
  line-height: 1.65;
}

.price-panel {
  margin: 2.75rem auto 0;
  max-width: 22rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 2rem 1.65rem;
  text-align: left;
  box-shadow: var(--shadow);
}

.price-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.price {
  margin: 0.35rem 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.price span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.04em;
}

.price-panel ul {
  list-style: none;
  margin: 1.5rem 0 1.65rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.price-panel li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.price-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
}

.price-panel .btn {
  width: 100%;
}

/* —— Closing —— */
.closing {
  padding: clamp(4.5rem, 12vh, 7.5rem) var(--pad-x);
  text-align: center;
  background:
    radial-gradient(640px 280px at 50% 0%, rgba(216, 90, 48, 0.14), transparent 70%),
    var(--band);
}

.closing h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.closing p {
  margin: 1rem 0 1.75rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

/* —— Footer —— */
.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.75rem var(--pad-x) 2.25rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.footer .logo svg {
  height: 1.45rem;
}

.footer-links {
  display: flex;
  gap: 1.35rem;
}

.footer-links a {
  font-weight: 700;
  color: var(--ink);
}

.footer-links a:hover {
  color: var(--brand);
}

.copyright {
  margin: 0;
  width: 100%;
  order: 3;
}

/* —— Motion —— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pin-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(216, 90, 48, 0.22), 0 8px 18px rgba(216, 90, 48, 0.4);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 10px rgba(216, 90, 48, 0.12), 0 8px 18px rgba(216, 90, 48, 0.4);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 4px));
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    opacity: 0.18;
    transform: scale(1);
  }
  50% {
    opacity: 0.28;
    transform: scale(1.08);
  }
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .app-body {
    grid-template-columns: 1fr;
  }

  .comment-sidebar {
    display: none;
  }

  .feature,
  .feature.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature.band {
    padding-left: var(--pad-x);
    padding-right: var(--pad-x);
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 24rem;
  }

  .hero-copy h1 {
    max-width: 28ch;
  }

  .pipeline-icons {
    gap: 0.5rem;
  }

  .tool-icon {
    width: 2.25rem;
    height: 2.25rem;
  }

  .tool-icon svg,
  .tool-icon img {
    width: 1.75rem;
    height: 1.75rem;
  }

  .feedback-card {
    border-radius: 1rem;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 1.05rem;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .mobile-nav:not([hidden]) {
    display: flex;
  }

  .pin-3 {
    display: none;
  }

  .pin-bubble {
    max-width: 9rem;
    white-space: normal;
  }

  .app-meta {
    display: none;
  }

  .mode-hint {
    display: none;
  }

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

  .page-tile:last-child {
    display: none;
  }

  .review-app {
    height: min(50vh, 440px);
    border-radius: 0.65rem 0.65rem 0 0;
  }

  .hero-visual {
    min-height: min(50vh, 440px);
    padding: 0;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
