:root {
  color-scheme: light;
  --black: #050605;
  --black-soft: #0d0f0e;
  --ink: #111311;
  --paper: #f3f3f0;
  --white: #ffffff;
  --muted: #6b706d;
  --muted-dark: #a9aeab;
  --border: #d8dbd8;
  --border-dark: #292c2a;
  --orange: #ff4f19;
  --orange-dark: #d83b0d;
  --orange-deep: #b83305;
  --green: #69c74f;
  --error: #b73535;
  --focus: #ff7a4a;
  --radius: 6px;
  --shadow: 0 28px 78px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 12px 34px rgba(0, 0, 0, 0.1);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --duration: 160ms;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.22em;
}

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

::selection {
  background: var(--orange);
  color: var(--white);
}

h1,
h2,
h3 {
  text-wrap: balance;
  overflow-wrap: anywhere;
}

[id] {
  scroll-margin-top: 96px;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(1376px, calc(100% - 64px));
  margin-inline: auto;
}

.narrow {
  width: min(860px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: 76px;
  border-bottom: 1px solid #181a19;
  background: var(--black);
  color: var(--white);
}

@supports (backdrop-filter: blur(1px)) {
  .site-header {
    background: rgba(5, 6, 5, 0.86);
    backdrop-filter: saturate(1.5) blur(16px);
    -webkit-backdrop-filter: saturate(1.5) blur(16px);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: var(--space-5);
}

.brand {
  color: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.8rem);
}

.site-nav a {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration) ease;
}

.site-nav a:not(.header-cta):hover {
  color: #d0d3d1;
}

.site-nav a[aria-current] {
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.55em;
}

.nav-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  border: 1px solid #3a3d3b;
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: border-color var(--duration) ease, background-color var(--duration) ease;
}

.nav-toggle:hover {
  border-color: #6a6e6b;
  background: #171918;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--duration) ease, color var(--duration) ease, border-color var(--duration) ease,
    transform var(--duration) var(--ease), box-shadow var(--duration) ease;
}

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

.button:active {
  transform: translateY(0) scale(0.99);
}

.button-wide {
  min-width: 226px;
}

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: #e8eae8;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.button-dark {
  background: var(--black);
  color: var(--white);
}

.button-dark:hover {
  background: #242725;
}

.button-outline,
.button-secondary,
.button-muted {
  border-color: #555a57;
  background: transparent;
  color: var(--white);
}

.button-outline:hover,
.button-secondary:hover,
.button-muted:hover {
  border-color: var(--white);
  background: #171918;
}

.header-cta {
  min-height: 42px;
  padding-inline: 1.15rem;
}

.button-row,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.text-link {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  text-underline-offset: 0.35em;
  transition: color var(--duration) ease, text-underline-offset var(--duration) var(--ease);
}

.text-link:hover {
  color: #d4d6d4;
  text-underline-offset: 0.45em;
}

.text-link-dark {
  color: var(--ink);
}

.text-link-dark:hover {
  color: var(--orange-dark);
}

.microcopy {
  color: #9ca19e;
  font-size: 0.86rem;
}

.kicker {
  margin: 0 0 1.05rem;
  color: var(--orange-deep);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-product-stage .kicker,
.client-hub-views .kicker,
.migration-band .kicker,
.about-manifesto .kicker {
  color: var(--orange);
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  margin: 0 0 2.2rem;
  padding: 0.62rem 0.92rem;
  border: 1px solid #343735;
  border-radius: 999px;
  color: #c8ccca;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(105, 199, 79, 0.8);
}

.launch-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.launch-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  min-height: 720px;
  padding-block: 4.5rem 5rem;
}

.launch-hero-copy {
  max-width: 620px;
}

.launch-hero h1,
.page-hero h1,
.final-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(4rem, 5.7vw, 5.65rem);
  font-weight: 250;
  line-height: 0.98;
  letter-spacing: -0.015em;
}

.launch-hero h1 span,
.launch-hero h1 strong {
  display: block;
}

.launch-hero h1 strong,
.page-hero h1 strong {
  font-weight: 850;
}

.hero-summary {
  max-width: 540px;
  margin: 1.7rem 0 0;
  color: #c8ccca;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.launch-hero .microcopy {
  margin: 0.95rem 0 0;
}

.process-strip {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(0, 1fr));
  min-height: 234px;
}

.process-intro,
.process-grid article {
  padding: 2.25rem 2rem;
  border-right: 1px solid var(--border);
}

.process-intro {
  padding-left: 0;
}

.process-grid article:last-child {
  border-right: 0;
}

.process-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 2.7vw, 2.9rem);
  line-height: 1.05;
}

.process-intro h2 span {
  display: block;
  font-weight: 320;
}

.process-grid article {
  display: flex;
  flex-direction: column;
}

.process-grid article p {
  margin: 0;
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 900;
}

.process-grid article h3 {
  margin: 1.15rem 0 0;
  font-size: 1.7rem;
  line-height: 1;
}

.process-grid article span {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.editorial-intro,
.audience-section,
.section,
.legal-content {
  padding: clamp(5.5rem, 8vw, 8rem) 0;
}

.product-declaration {
  padding: clamp(7rem, 11vw, 11rem) 0;
  background: var(--white);
  text-align: center;
}

.product-declaration h2 {
  max-width: 1200px;
  margin: 0 auto;
  font-size: clamp(4rem, 8vw, 8.5rem);
  font-weight: 850;
  line-height: 0.88;
  letter-spacing: -0.02em;
}

.product-declaration h2 span {
  display: block;
  font-weight: 250;
}

.product-declaration > .shell > p:last-child {
  max-width: 760px;
  margin: 2.5rem auto 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.editorial-intro {
  background: var(--white);
}

.editorial-grid,
.product-stage-heading,
.orange-band-grid,
.section-heading,
.migration-grid,
.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.editorial-grid h2,
.product-stage-heading h2,
.feature-ledger-heading h2,
.audience-heading h2,
.orange-band h2,
.section-heading h2,
.migration-grid h2,
.phone-copy h2,
.page-product-copy h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
}

.editorial-grid > div:last-child p,
.product-stage-heading > p,
.orange-band-grid > div:last-child p,
.section-heading > p,
.page-product-copy > p {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.1rem;
}

.product-stage {
  padding: clamp(5.5rem, 8vw, 8rem) 0 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.product-stage-heading h2,
.feature-ledger-heading h2,
.product-stage .kicker,
.feature-ledger .kicker {
  color: var(--white);
}

.product-stage-heading > p {
  color: var(--muted-dark);
}

.dashboard-frame {
  overflow: hidden;
  margin-top: clamp(3.5rem, 6vw, 6rem);
  margin-bottom: 0;
  border: 1px solid #2e312f;
  border-radius: 10px;
  background: #101210;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 40px 110px rgba(0, 0, 0, 0.5);
}

.dashboard-frame img {
  width: 100%;
  height: auto;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 3.5rem;
  border-top: 1px solid var(--border-dark);
}

.proof-rail div {
  min-height: 150px;
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--border-dark);
}

.proof-rail div + div {
  padding-left: 2rem;
}

.proof-rail div:last-child {
  border-right: 0;
}

.proof-rail strong,
.proof-rail span {
  display: block;
}

.proof-rail strong {
  color: var(--white);
  font-size: 1.15rem;
}

.proof-rail span {
  margin-top: 0.55rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.feature-ledger {
  padding: clamp(5.5rem, 8vw, 8rem) 0;
  border-top: 1px solid var(--border-dark);
  background: var(--black);
  color: var(--white);
}

.feature-ledger-heading {
  max-width: 1000px;
}

.feature-ledger-list {
  margin-top: 5rem;
  border-top: 1px solid var(--border-dark);
}

.feature-ledger-list article {
  display: grid;
  grid-template-columns: 70px minmax(260px, 0.9fr) minmax(280px, 1.1fr) auto;
  gap: 2rem;
  align-items: center;
  min-height: 154px;
  border-bottom: 1px solid var(--border-dark);
}

.feature-ledger-list article > p {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-ledger-list h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.65rem, 2.5vw, 2.65rem);
  line-height: 1;
}

.feature-ledger-list span {
  color: var(--muted-dark);
}

.feature-ledger-list a {
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
  transition: color var(--duration) ease;
}

.feature-ledger-list a::after {
  content: "\2192";
  display: inline-block;
  margin-left: 0.4em;
  transition: transform var(--duration) var(--ease);
}

.feature-ledger-list a:hover {
  color: var(--orange);
}

.feature-ledger-list a:hover::after {
  transform: translateX(4px);
}

.audience-section {
  background: var(--white);
}

.audience-heading {
  max-width: 940px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 5rem;
  border-top: 1px solid var(--border);
}

.audience-grid article {
  min-height: 270px;
  padding: 1.8rem 2rem 2rem 0;
  border-right: 1px solid var(--border);
}

.audience-grid article + article {
  padding-left: 2rem;
}

.audience-grid article:last-child {
  border-right: 0;
}

.audience-grid p {
  margin: 0 0 5rem;
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 900;
}

.audience-grid h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1;
}

.audience-grid span {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
}

.orange-band {
  padding: clamp(5rem, 7vw, 7rem) 0;
  background: var(--orange);
  color: #160b07;
}

.orange-band .kicker {
  color: #6f1c06;
}

.orange-band-grid > div:last-child p {
  color: #42160b;
}

.founder-story {
  padding: clamp(5.5rem, 8vw, 8rem) 0;
  background: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.08fr);
  gap: clamp(3.5rem, 8vw, 8rem);
  align-items: center;
}

.founder-portrait {
  margin: 0;
}

.founder-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow-soft);
}

.founder-portrait figcaption {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-copy h2,
.about-manifesto h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.founder-copy > p:not(.kicker) {
  max-width: 700px;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.founder-copy blockquote {
  max-width: 720px;
  margin: 2.5rem 0 0;
  padding: 1.7rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
}

.about-manifesto {
  padding: clamp(5.5rem, 8vw, 8rem) 0;
  background: var(--black);
  color: var(--white);
}

.about-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.about-manifesto h2 {
  color: var(--white);
}

.about-manifesto-grid > div:last-child p {
  margin: 0 0 1.5rem;
  color: var(--muted-dark);
  font-size: 1.08rem;
}

.about-feedback {
  border-top: 1px solid var(--border);
}

.client-hub-home {
  padding: clamp(5.5rem, 8vw, 8rem) 0;
  background: var(--white);
}

.client-hub-home-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.client-hub-home-heading h2,
.client-hub-views-heading h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.client-hub-home-heading > div:last-child p {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.client-hub-role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 5rem;
  border-top: 1px solid var(--border);
}

.client-hub-role-grid article {
  min-height: 310px;
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--border);
}

.client-hub-role-grid article + article {
  padding-left: 2rem;
}

.client-hub-role-grid article:last-child {
  border-right: 0;
}

.client-hub-role-grid article > p {
  margin: 0 0 4.5rem;
  color: var(--orange-deep);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.client-hub-role-grid h3 {
  margin: 0;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1;
}

.client-hub-role-grid span {
  display: block;
  margin-top: 1rem;
  color: var(--muted);
}

.client-hub-views {
  padding: clamp(5.5rem, 8vw, 8rem) 0;
  background: var(--black);
  color: var(--white);
}

.client-hub-views-heading {
  max-width: 1080px;
}

.client-hub-views-heading h2 {
  color: var(--white);
}

.client-hub-view-list {
  margin-top: 5rem;
  border-top: 1px solid var(--border-dark);
}

.client-hub-view-list article {
  display: grid;
  grid-template-columns: 70px minmax(280px, 0.9fr) minmax(260px, 0.7fr);
  gap: 2rem;
  align-items: start;
  min-height: 270px;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.client-hub-view-list article > p {
  margin: 0;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
}

.client-hub-view-list h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.client-hub-view-list h3 + span {
  display: block;
  margin-top: 1rem;
  color: var(--muted-dark);
}

.plain-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.plain-list li {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-dark);
  color: #d0d3d1;
  font-size: 0.92rem;
}

#pricing {
  background: var(--paper);
}

.section-heading {
  margin-bottom: 3.5rem;
}

.section-heading > div:first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.section-heading > p {
  grid-column: 2;
  grid-row: 1;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
}

.pricing-controls {
  display: inline-flex;
  width: fit-content;
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
}

.segmented-button {
  min-width: 106px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.segmented-button.is-active {
  background: var(--black);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: border-color var(--duration) ease, box-shadow var(--duration) ease, transform var(--duration) var(--ease);
}

.plan-card:hover {
  border-color: #b9bdba;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.plan-card.is-recommended,
.plan-card.is-recommended:hover {
  border-color: var(--orange);
  box-shadow: inset 0 4px 0 var(--orange), var(--shadow-soft);
}

.badge {
  width: fit-content;
  margin: 0 0 1rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: #ffe1d6;
  color: #852704;
  font-size: 0.72rem;
  font-weight: 900;
}

.plan-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.plan-card > p {
  color: var(--muted);
  font-size: 0.92rem;
}

.price {
  display: grid;
  gap: 0.25rem;
  margin: 1.4rem 0 0.8rem;
}

.price strong {
  font-size: clamp(2.2rem, 3vw, 3rem);
  line-height: 1;
}

.price span,
.billing-note,
.pricing-footnote {
  color: var(--muted);
  font-size: 0.84rem;
}

.limit-list {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0;
}

.limit-list div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--border);
}

.limit-list dt {
  color: var(--muted);
  font-size: 0.82rem;
}

.limit-list dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: right;
}

.tick-list {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1rem 0 1.5rem;
  list-style: none;
}

.tick-list li {
  padding-left: 1rem;
  border-left: 2px solid var(--orange);
  font-size: 0.86rem;
}

.plan-card .button {
  min-height: 44px;
  margin-top: auto;
  border-radius: var(--radius);
}

.plan-card .button-secondary {
  border-color: #bfc3c0;
  color: var(--ink);
}

.plan-card .button-secondary:hover {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.pricing-footnote {
  margin-top: 1.4rem;
}

.section-muted {
  border-top: 1px solid var(--border);
  background: var(--white);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

thead th {
  background: #ebedea;
}

tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}

tbody tr:hover th,
tbody tr:hover td {
  background: #f8f9f7;
}

.yes {
  color: #2e7e28;
  font-weight: 800;
}

.no {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--border);
}

details {
  border-bottom: 1px solid var(--border);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 58px;
  padding: 1.25rem 0;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 800;
  list-style: none;
  transition: color var(--duration) ease;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: none;
  color: var(--muted);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  transition: transform var(--duration) var(--ease);
}

summary:hover {
  color: var(--orange-deep);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 780px;
  margin: 0;
  padding: 0 0 1.5rem;
  color: var(--muted);
}

.final-cta {
  background: var(--black);
  color: var(--white);
}

.final-cta h2 {
  max-width: 960px;
  font-weight: 850;
}

.final-cta h2 span {
  display: block;
  font-weight: 250;
}

.final-cta .kicker {
  color: var(--orange);
}

.page-hero {
  display: flex;
  align-items: center;
  min-height: 630px;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.page-hero-inner {
  padding-block: 5rem;
}

.page-hero-compact {
  min-height: 420px;
}

.page-hero h1 {
  max-width: 1100px;
  font-weight: 820;
}

.page-hero h1 strong {
  display: inline;
}

.page-hero-inner > p:not(.status-label, .microcopy) {
  max-width: 720px;
  margin: 1.6rem 0 0;
  color: var(--muted-dark);
  font-size: 1.1rem;
}

.page-proof-band {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.page-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-proof-grid article {
  min-height: 220px;
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--border);
}

.page-proof-grid article + article {
  padding-left: 2rem;
}

.page-proof-grid article:last-child {
  border-right: 0;
}

.page-proof-grid article p {
  margin: 0 0 3rem;
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 900;
}

.page-proof-grid article h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.3vw, 2.4rem);
  line-height: 1.08;
}

.page-product-stage {
  padding: clamp(5.5rem, 8vw, 8rem) 0;
  background: var(--black);
  color: var(--white);
}

.page-product-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.page-product-copy h2 {
  color: var(--white);
}

.page-product-copy > p {
  color: var(--muted-dark);
}

.page-product-stage .dashboard-frame {
  margin-top: 4rem;
}

.process-strip-compact .process-grid {
  min-height: 214px;
}

.compare-fit {
  background: var(--white);
}

.compare-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--border);
}

.compare-fit-grid article {
  min-height: 330px;
  padding: 2rem 4rem 2rem 0;
  border-right: 1px solid var(--border);
}

.compare-fit-grid article + article {
  padding-left: 4rem;
  border-right: 0;
}

.compare-fit-grid article > p:first-child {
  margin: 0 0 5rem;
  color: var(--orange-deep);
  font-size: 0.76rem;
  font-weight: 900;
}

.compare-fit-grid h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1;
}

.compare-fit-grid h2 + p {
  color: var(--muted);
}

.migration-band {
  background: var(--black);
  color: var(--white);
}

.migration-grid {
  align-items: start;
}

.migration-grid h2 {
  color: var(--white);
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.migration-grid .tick-list li {
  color: #d0d3d1;
}

.legal-hero-inner {
  max-width: 1000px;
}

.legal-content {
  background: var(--white);
}

.legal-grid {
  align-items: start;
}

.legal-grid aside {
  padding-top: 0.4rem;
}

.legal-grid article {
  max-width: 780px;
}

.legal-grid article p {
  margin: 0 0 1.5rem;
  color: #3f4441;
  font-size: 1.12rem;
}

.redirect-page {
  min-height: calc(100svh - 76px);
}

.site-footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid #1e211f;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
}

.footer-grid h2 {
  margin: 0 0 1rem;
  color: #b7bbb8;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid a {
  color: #d5d8d6;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--duration) ease;
}

.footer-grid a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-intro p,
.footer-bottom {
  color: #979c99;
}

.footer-intro p {
  max-width: 300px;
  margin-top: 1.5rem;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid #242725;
  font-size: 0.8rem;
}

.cookie-panel {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(680px, calc(100% - 32px));
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  background: rgba(13, 15, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel h2 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.cookie-panel p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.cookie-actions {
  gap: 0.5rem;
  margin-top: 0;
}

.cookie-actions .button {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
}

/* ---------------------------------------------------------------------------
   Device mockups — cinematic Apple-style frames for real product screens
--------------------------------------------------------------------------- */

.device {
  position: relative;
  width: 100%;
}

.device img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

/* MacBook */
.device-mac .mac-screen {
  position: relative;
  border: 10px solid #0c0d0e;
  border-bottom-width: 22px;
  border-radius: 18px 18px 10px 10px;
  background: #000;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 -1px 0 rgba(255, 255, 255, 0.18);
}

.device-mac .mac-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.015) 28%, rgba(255, 255, 255, 0) 45%);
  pointer-events: none;
}

.device-mac .mac-base {
  position: relative;
  width: 118%;
  height: 16px;
  margin-left: -9%;
  border-radius: 2px 2px 14px 14px;
  background: linear-gradient(180deg, #e8e9ea 0%, #babcbf 55%, #86888b 100%);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset, 0 6px 14px rgba(0, 0, 0, 0.4);
}

.device-mac .mac-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 13%;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 0 0 10px 10px;
  background: linear-gradient(180deg, #97999c, #c9cbce);
}

/* Live animated demo inside a device screen */
.stage-demo {
  position: relative;
  aspect-ratio: 1512 / 950;
  overflow: hidden;
}

.stage-demo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.stage-demo-frame {
  position: absolute;
  left: 0;
  top: 0;
  width: 1512px;
  height: 950px;
  border: 0;
  transform-origin: 0 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stage-demo.demo-live .stage-demo-frame {
  opacity: 1;
}

/* iPad */
.device-ipad {
  border: 20px solid #0c0d0e;
  border-radius: 34px;
  background: #000;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.1),
    0 30px 70px -18px rgba(0, 0, 0, 0.5),
    0 80px 150px -40px rgba(0, 0, 0, 0.4);
}

/* iPhone */
.device-phone {
  position: relative;
  border: 11px solid #0e0f10;
  border-radius: 54px;
  background: #000;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.12),
    0 26px 60px -16px rgba(0, 0, 0, 0.55),
    0 70px 130px -40px rgba(0, 0, 0, 0.45);
}

.device-phone::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 50%;
  z-index: 2;
  width: 30%;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #050505;
}

.device-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 42px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.09) 0%, rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
}

/* ---------------------------------------------------------------------------
   Hero device composition
--------------------------------------------------------------------------- */

.hero-devices {
  position: relative;
  width: min(760px, 52vw);
  align-self: center;
}

.hero-devices .device-mac {
  width: 93%;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 90px 120px rgba(0, 0, 0, 0.4));
}

.hero-devices .device-phone {
  position: absolute;
  right: 0.5%;
  bottom: -8%;
  width: 23.5%;
  border-width: 7px;
  border-radius: 38px;
}

.hero-devices .device-phone::before {
  top: 7px;
  height: 18px;
}

.hero-devices::before {
  content: "";
  position: absolute;
  inset: -22% -30%;
  z-index: -1;
  background: radial-gradient(52% 52% at 52% 46%, rgba(120, 152, 214, 0.2) 0%, rgba(70, 90, 130, 0.08) 45%, rgba(5, 6, 5, 0) 72%);
  pointer-events: none;
}

/* ---------------------------------------------------------------------------
   Product stage + quote showcase
--------------------------------------------------------------------------- */

.stage-mac {
  width: min(1080px, 92%);
  margin: clamp(3.5rem, 6vw, 6rem) auto 0;
}

.stage-mac .device-mac {
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.5)) drop-shadow(0 90px 130px rgba(0, 0, 0, 0.42));
}

.quote-showcase {
  padding: clamp(5.5rem, 8vw, 8rem) 0;
  overflow: hidden;
  background: var(--white);
}

.quote-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.quote-showcase-copy h2 {
  margin: 0;
  font-size: clamp(3.2rem, 5.4vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.015em;
}

.quote-showcase-copy > p {
  max-width: 560px;
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.quote-points {
  display: grid;
  gap: 0.9rem;
  padding: 0;
  margin: 2.2rem 0 0;
  list-style: none;
}

.quote-points li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.98rem;
  font-weight: 600;
}

.quote-points li::before {
  content: "";
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-1px);
}

.quote-showcase .button-row {
  margin-top: 2.4rem;
}

.quote-ipad-stage {
  position: relative;
  display: flex;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}

.quote-ipad-stage::before {
  content: "";
  position: absolute;
  inset: 6% -8% -10%;
  z-index: 0;
  border-radius: 32px;
  background:
    radial-gradient(90% 90% at 30% 20%, #17191b 0%, #060707 70%),
    #060707;
}

.quote-ipad-stage .device-ipad {
  position: relative;
  z-index: 1;
  width: min(430px, 88%);
  margin: clamp(2.5rem, 4vw, 4rem) 0;
  border-width: 14px;
  border-radius: 28px;
}

.phone-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.phone-feature .device-phone {
  width: min(330px, 84%);
  margin-inline: auto;
  filter: drop-shadow(0 30px 44px rgba(0, 0, 0, 0.28)) drop-shadow(0 70px 90px rgba(0, 0, 0, 0.14));
}

.phone-stage {
  position: relative;
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 6% -8%;
  z-index: -1;
  background: radial-gradient(48% 44% at 50% 46%, rgba(120, 152, 214, 0.16) 0%, rgba(5, 6, 5, 0) 72%);
}

.phone-copy > p:not(.kicker) {
  max-width: 520px;
  margin: 1.6rem 0 1.8rem;
  color: var(--muted);
  font-size: 1.1rem;
}

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .shell {
    width: min(100% - 40px, 1376px);
  }

  .launch-hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-block: 4rem 4.5rem;
  }

  .hero-devices {
    width: min(680px, 92%);
    margin-top: 1.5rem;
  }

  .launch-hero h1,
  .page-hero h1 {
    font-size: clamp(3.6rem, 6.3vw, 5rem);
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .process-intro {
    grid-column: 1 / -1;
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 1376px);
  }

  .site-header,
  .header-inner {
    min-height: 64px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    inset: 64px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem;
    border: 1px solid #2b2e2c;
    border-radius: 8px;
    background: var(--black-soft);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open] {
    display: flex;
    animation: nav-in 220ms var(--ease);
  }

  @keyframes nav-in {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding-inline: 0.6rem;
  }

  .site-nav .header-cta {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .launch-hero,
  .launch-hero-inner {
    min-height: 0;
  }

  .hero-devices {
    width: 100%;
    margin-top: 0.5rem;
  }

  .hero-devices .device-mac {
    filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.5));
  }

  .device-mac .mac-base {
    width: 104%;
    margin-left: -2%;
  }

  .launch-hero-inner {
    align-items: flex-start;
    padding-block: 3rem 4.5rem;
  }

  .launch-hero-copy {
    width: 100%;
  }

  .status-label {
    margin-bottom: 1.5rem;
    font-size: 0.62rem;
  }

  .launch-hero h1,
  .page-hero h1,
  .final-cta h2 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    line-height: 0.94;
  }

  .hero-summary {
    max-width: 330px;
    font-size: 1rem;
  }

  .launch-hero .button-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
    width: 100%;
    max-width: 330px;
  }

  .launch-hero .button-wide {
    width: 100%;
    min-width: 0;
  }

  .launch-hero .text-link {
    min-height: 44px;
    padding: 0.7rem;
    text-align: center;
  }

  .launch-hero .microcopy {
    width: 100%;
    max-width: 330px;
    text-align: center;
  }

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

  .process-intro {
    grid-column: auto;
    min-height: 130px;
    padding: 2rem 0;
  }

  .process-grid article,
  .process-grid article:last-child {
    display: grid;
    grid-template-columns: 42px 0.7fr 1.3fr;
    gap: 0.8rem;
    align-items: center;
    min-height: 96px;
    padding: 1rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .process-grid article h3,
  .process-grid article span {
    margin: 0;
  }

  .process-grid article h3 {
    font-size: 1.3rem;
  }

  .editorial-intro,
  .audience-section,
  .section,
  .legal-content,
  .product-stage,
  .feature-ledger,
  .page-product-stage,
  .founder-story,
  .about-manifesto,
  .client-hub-home,
  .client-hub-views,
  .product-declaration {
    padding: 4.5rem 0;
  }

  .product-declaration h2 {
    font-size: 3.25rem;
    line-height: 0.94;
  }

  .editorial-grid,
  .product-stage-heading,
  .orange-band-grid,
  .section-heading,
  .migration-grid,
    .legal-grid,
    .page-product-copy,
    .founder-grid,
    .about-manifesto-grid,
    .client-hub-home-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .editorial-grid h2,
  .product-stage-heading h2,
  .feature-ledger-heading h2,
  .audience-heading h2,
  .orange-band h2,
  .section-heading h2,
    .migration-grid h2,
    .page-product-copy h2,
    .founder-copy h2,
    .about-manifesto h2,
    .client-hub-home-heading h2,
    .client-hub-views-heading h2 {
    font-size: 2.75rem;
  }

  .founder-portrait {
    width: min(100%, 520px);
  }

  .client-hub-role-grid {
    grid-template-columns: 1fr;
    margin-top: 3rem;
  }

  .client-hub-role-grid article,
  .client-hub-role-grid article + article {
    min-height: 0;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .client-hub-role-grid article > p {
    margin-bottom: 1.6rem;
  }

  .client-hub-view-list {
    margin-top: 3rem;
  }

  .client-hub-view-list article {
    grid-template-columns: 42px 1fr;
    gap: 0.8rem;
    min-height: 0;
    padding: 1.8rem 0;
  }

  .client-hub-view-list .plain-list {
    grid-column: 2;
    margin-top: 1rem;
  }

  .dashboard-frame {
    margin-top: 2.8rem;
    border-radius: var(--radius);
  }

  .proof-rail,
  .audience-grid,
  .page-proof-grid,
  .compare-fit-grid {
    grid-template-columns: 1fr;
  }

  .proof-rail div,
  .proof-rail div + div,
  .audience-grid article,
  .audience-grid article + article,
  .page-proof-grid article,
  .page-proof-grid article + article,
  .compare-fit-grid article,
  .compare-fit-grid article + article {
    min-height: 0;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .proof-rail div {
    border-color: var(--border-dark);
  }

  .feature-ledger-list {
    margin-top: 3rem;
  }

  .feature-ledger-list article {
    grid-template-columns: 42px 1fr;
    gap: 0.8rem;
    padding: 1.5rem 0;
  }

  .feature-ledger-list article span,
  .feature-ledger-list article a {
    grid-column: 2;
  }

  .audience-grid {
    margin-top: 3rem;
  }

  .audience-grid p,
  .page-proof-grid article p,
  .compare-fit-grid article > p:first-child {
    margin-bottom: 1.6rem;
  }

  .orange-band {
    padding: 4.5rem 0;
  }

  .pricing-controls {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }

  .section-heading > div,
  .section-heading > p {
    grid-column: 1;
    grid-row: auto;
  }

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

  .page-hero {
    min-height: 560px;
  }

  .page-hero-inner {
    padding-block: 4rem;
  }

  .page-hero-inner > p:not(.status-label, .microcopy) {
    font-size: 1rem;
  }

  .page-proof-grid article h2 {
    font-size: 1.55rem;
  }

  .compare-fit-grid article h2 {
    font-size: 2.25rem;
  }

  .quote-showcase-grid,
  .phone-feature {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .phone-feature .phone-stage {
    order: 2;
  }

  .quote-ipad-stage .device-ipad {
    border-width: 11px;
    border-radius: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-intro {
    grid-column: 1 / -1;
  }

  .footer-bottom,
  .cookie-panel {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .cookie-panel {
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .button {
    flex: 1 1 90px;
  }
}

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

/* ---------------------------------------------------------------------------
   Motion layer — entrance choreography, scroll depth, moving media.
   Everything lives behind prefers-reduced-motion: no-preference.
--------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  /* Hero entrance: copy cascades, devices rise with the glow blooming in. */
  html.js .launch-hero-copy > * {
    opacity: 0;
    transform: translateY(26px);
    animation: hero-rise 0.9s var(--ease) forwards;
  }

  html.js .launch-hero-copy .status-label { animation-delay: 0.05s; }
  html.js .launch-hero-copy h1 { animation-delay: 0.16s; }
  html.js .launch-hero-copy .hero-summary { animation-delay: 0.3s; }
  html.js .launch-hero-copy .button-row { animation-delay: 0.42s; }
  html.js .launch-hero-copy .microcopy { animation-delay: 0.52s; }

  html.js .hero-devices {
    opacity: 0;
    transform: translateY(44px) scale(0.965);
    animation: hero-rise 1.15s cubic-bezier(0.16, 0.8, 0.3, 1) 0.35s forwards;
  }

  html.js .hero-devices.entered {
    opacity: 1;
    animation: none;
    transform: translate3d(0, var(--plx, 0px), 0) perspective(1400px) rotateX(var(--tiltX, 0deg)) rotateY(var(--tiltY, 0deg));
  }

  @keyframes hero-rise {
    to { opacity: 1; transform: none; }
  }

  /* Aurora: two soft light fields drifting slowly behind the dark hero. */
  .launch-hero { position: relative; overflow: clip; }

  .launch-hero .aurora {
    position: absolute;
    inset: -20%;
    z-index: 0;
    pointer-events: none;
    filter: blur(60px);
    opacity: 0.55;
  }

  .launch-hero .aurora::before,
  .launch-hero .aurora::after {
    content: "";
    position: absolute;
    width: 55%;
    height: 60%;
    border-radius: 50%;
  }

  .launch-hero .aurora::before {
    left: 4%;
    top: 6%;
    background: radial-gradient(closest-side, rgba(96, 132, 108, 0.35), rgba(96, 132, 108, 0) 70%);
    animation: aurora-a 26s ease-in-out infinite alternate;
  }

  .launch-hero .aurora::after {
    right: 0;
    bottom: -8%;
    background: radial-gradient(closest-side, rgba(104, 130, 178, 0.3), rgba(104, 130, 178, 0) 70%);
    animation: aurora-b 32s ease-in-out infinite alternate;
  }

  @keyframes aurora-a {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(9%, 14%) scale(1.18); }
  }

  @keyframes aurora-b {
    from { transform: translate(0, 0) scale(1.12); }
    to { transform: translate(-10%, -10%) scale(0.94); }
  }

  .launch-hero-inner { position: relative; z-index: 1; }

  /* Upgraded reveals: a touch of blur and scale reads as depth, not just fade. */
  html.js [data-reveal] {
    transform: translateY(22px) scale(0.992);
    filter: blur(5px);
    transition:
      opacity 750ms var(--ease),
      transform 750ms var(--ease),
      filter 750ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
  }

  html.js [data-reveal].is-visible {
    transform: none;
    filter: none;
  }

  /* Parallax hosts move on transform only; JS drives --plx. */
  [data-parallax] {
    transform: translate3d(0, var(--plx, 0px), 0);
    will-change: transform;
  }

  /* Ken Burns: photos breathe slowly once revealed. */
  .kenburns { overflow: hidden; }

  .kenburns img {
    animation: kenburns 22s ease-in-out infinite alternate;
    transform-origin: 52% 40%;
  }

  @keyframes kenburns {
    from { transform: scale(1); }
    to { transform: scale(1.07) translate(-1.2%, 1%); }
  }

  /* Device tilt: JS sets --tiltX/--tiltY while the cursor roams the stage.
     translate3d carries the parallax offset so both effects compose. */
  [data-tilt] .device-mac,
  [data-tilt].hero-devices {
    transform: translate3d(0, var(--plx, 0px), 0) perspective(1400px) rotateX(var(--tiltX, 0deg)) rotateY(var(--tiltY, 0deg));
    transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
  }

  [data-tilt] .device-mac { --plx: 0px; }

  /* Button sheen: a light sweep crosses primary buttons on hover. */
  .button {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  }

  .button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: -80%;
    width: 55%;
    background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left 0.6s var(--ease);
    pointer-events: none;
  }

  .button:hover { transform: translateY(-1.5px); }
  .button:hover::after { left: 125%; }

  /* Header condenses and picks up glass once the page scrolls. */
  .site-header {
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
  }

  .site-header[data-scrolled] {
    background: rgba(5, 6, 5, 0.72);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
    backdrop-filter: blur(14px) saturate(1.3);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 30px rgba(0, 0, 0, 0.25);
  }

  /* Capability marquee: one slow, continuous line of what Forman does. */
  .marquee-track { animation: marquee 46s linear infinite; }

  .marquee:hover .marquee-track { animation-play-state: paused; }

  @keyframes marquee {
    to { transform: translateX(-50%); }
  }
}

/* Marquee structure (works with or without motion). */
.marquee {
  overflow: clip;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--black, #050605);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  padding-inline: 1.6rem;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
  color: #9ca19e;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff4f19;
}

/* Stage video sits exactly where the stage image would. */
.stage-video {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------------------------------------------------------------------------
   Showcase layer — feature spotlights, use cases, testimonials, mobile CTA.
--------------------------------------------------------------------------- */

.feature-spotlights {
  padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(3rem, 5vw, 5rem);
  background: var(--paper);
}

.spotlights-heading { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.spotlights-heading h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.08; letter-spacing: -0.02em; }

.spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.2rem, 4vw, 4rem) 0;
}

.spotlight + .spotlight { border-top: 1px solid var(--border); }
.spotlight-rev .spotlight-copy { order: 2; }
.spotlight-rev .spotlight-shot { order: 1; }

.spotlight-copy h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); letter-spacing: -0.02em; line-height: 1.12; }
.spotlight-copy > p:not(.kicker) { margin-top: 0.9rem; color: var(--muted); max-width: 46ch; }
.spotlight-copy .tick-list { margin: 1.1rem 0 1.3rem; }
.spotlight-shot .device-mac { filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28)); }

.toolbox {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.toolbox p { font-weight: 800; margin-bottom: 1rem; }

.toolbox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toolbox li {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.86rem;
  font-weight: 700;
}

/* Use cases */
.use-cases { padding: clamp(4rem, 6vw, 6rem) 0; background: var(--white); }

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2.2rem);
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

.use-case-grid article { min-width: 0; }

.uc-photo {
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}

.uc-photo img { width: 100%; height: 100%; object-fit: cover; }
.use-case-grid h3 { margin-top: 1.1rem; font-size: 1.18rem; letter-spacing: -0.01em; }
.use-case-grid article > p { margin-top: 0.45rem; color: var(--muted); font-size: 0.95rem; }

@media (prefers-reduced-motion: no-preference) {
  .uc-photo img { transition: transform 0.7s var(--ease); }
  .use-case-grid article:hover .uc-photo img { transform: scale(1.045); }
}

/* Testimonials */
.testimonials { padding: clamp(4rem, 6vw, 6rem) 0; background: var(--black); color: var(--white); }
.testimonials .section-heading h2 { color: var(--white); }
.testimonials .kicker { color: var(--orange); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: clamp(2rem, 3.5vw, 3rem);
}

.testimonial-grid figure {
  margin: 0;
  padding: 1.6rem 1.6rem 1.4rem;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  background: var(--black-soft);
  display: flex;
  flex-direction: column;
}

.testimonial-grid .stars { color: var(--orange); letter-spacing: 0.18em; font-size: 0.85rem; }

.testimonial-grid blockquote {
  margin: 0.95rem 0 1.2rem;
  font-size: 1.08rem;
  line-height: 1.45;
  font-weight: 600;
  letter-spacing: -0.01em;
  flex: 1;
}

.testimonial-grid figcaption b { display: block; font-size: 0.92rem; }
.testimonial-grid figcaption span { display: block; margin-top: 0.15rem; color: var(--muted-dark); font-size: 0.84rem; }

/* Sticky mobile CTA */
.mob-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 60;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  background: rgba(5, 6, 5, 0.9);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--white);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
  transform: translateY(130%);
  transition: transform 0.4s var(--ease);
}

.mob-cta.on { transform: none; }
.mob-cta span { flex: 1; font-size: 0.82rem; font-weight: 700; line-height: 1.25; }
.mob-cta .button { min-height: 42px; padding: 0.5rem 1.1rem; font-size: 0.88rem; }

/* ---------- Mobile structure pass ---------- */
@media (max-width: 760px) {
  .mob-cta { display: flex; }

  /* Hero: one big phone, not a shrunken desktop composition */
  .hero-devices .device-mac { display: none; }

  .hero-devices .device-phone {
    position: static;
    width: min(280px, 76%);
    margin: 1.6rem auto 0;
    border-width: 9px;
    border-radius: 46px;
  }

  .launch-hero-inner { padding-block: 2.6rem 3.2rem; min-height: 0; }

  /* Tame the display headings that wrapped into walls */
  .launch-hero h1,
  .page-hero h1,
  .final-cta h2 {
    font-size: clamp(2.5rem, 11vw, 3.4rem);
    line-height: 0.98;
  }

  .spotlights-heading h2 br { display: none; }

  .spotlight {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 2.2rem 0;
  }

  .spotlight-rev .spotlight-copy { order: 1; }
  .spotlight-rev .spotlight-shot { order: 2; }
  .spotlight-shot { margin-inline: -6px; }

  .use-case-grid,
  .testimonial-grid { grid-template-columns: 1fr; }

  .uc-photo { aspect-ratio: 16 / 10; }

  /* Give the quote showcase iPad room to breathe */
  .quote-ipad-stage .device-ipad { border-width: 12px; border-radius: 26px; }

  /* Consistent section rhythm */
  .feature-spotlights,
  .use-cases,
  .testimonials { padding-block: 3.2rem; }
}

/* ---------------------------------------------------------------------------
   Client-quote walkthrough, integrations, workflow trio.
--------------------------------------------------------------------------- */
.quote-demo { padding: clamp(4rem, 6vw, 6.5rem) 0; background: var(--black); color: var(--white); }
.quote-demo .section-heading h2 { color: var(--white); }
.quote-demo .kicker { color: var(--orange); }

.qd-frame { margin-top: clamp(2rem, 3.5vw, 3rem); border-radius: 22px; overflow: hidden; box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55); background: #e9edf3; color: #111311; }
.qd-bar { display: flex; align-items: center; gap: 10px; padding: 12px 18px; background: #16181a; color: #d7b45a; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; }
.qd-bar .qd-dot { width: 7px; height: 7px; border-radius: 50%; background: #d7b45a; }
.qd-bar .qd-actions { margin-left: auto; color: #9ca19e; letter-spacing: 0.04em; }

.qd-banner { position: relative; height: clamp(180px, 26vw, 300px); background: #0b0b0c; margin: clamp(14px, 2.4vw, 26px) clamp(14px, 2.4vw, 26px) 0; border-radius: 18px; overflow: hidden; }
.qd-banner img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; }
.qd-banner strong { position: absolute; right: 6%; top: 50%; transform: translateY(-50%); color: #fff; font-size: clamp(1.1rem, 2.6vw, 2rem); letter-spacing: 0.32em; font-weight: 800; text-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.qd-brandline { position: absolute; left: 22px; bottom: 18px; display: flex; align-items: center; gap: 11px; color: #fff; }
.qd-logo { width: 44px; height: 44px; border-radius: 13px; background: #0b0b0c; border: 2px solid rgba(255,255,255,0.85); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; }
.qd-brandline b { display: block; font-size: 0.95rem; }
.qd-brandline span { font-size: 0.78rem; color: #cfd3d8; }

.qd-body { padding: clamp(14px, 2.4vw, 26px); display: grid; gap: 14px; }
.qd-banner + .qd-body { padding-top: 14px; }
.qd-card { background: #fff; border-radius: 18px; padding: clamp(16px, 2.2vw, 24px); box-shadow: 0 6px 22px rgba(15, 23, 42, 0.07); }
.qd-head { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; background: linear-gradient(150deg, #ffffff 0%, #eef3fd 100%); }
.qd-kicker { color: #0071e3; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; }
.qd-head h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; margin-top: 4px; }
.qd-sub { color: #6b706d; margin-top: 3px; }
.qd-for { margin-top: 12px; font-size: 0.9rem; color: #6b706d; }
.qd-meta { text-align: right; }
.qd-meta em { display: block; font-style: normal; color: #0071e3; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.12em; }
.qd-meta b { display: block; color: #0071e3; font-size: 1.5rem; }
.qd-meta span { display: block; margin-top: 5px; color: #6b706d; font-size: 0.8rem; }
.qd-meta .qd-start { color: #16a34a; font-weight: 700; }

.qd-cardtitle { font-weight: 800; font-size: 1.02rem; }
.qd-cardtitle span { color: #a1a1a6; font-weight: 600; font-size: 0.8rem; margin-left: 8px; }
.qd-line { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid #f1f2f4; }
.qd-line:last-child { border-bottom: 0; }
.qd-line img { width: 58px; height: 58px; border-radius: 14px; object-fit: cover; flex: none; }
.qd-line b { display: block; font-size: 0.95rem; }
.qd-line span { display: block; color: #6b706d; font-size: 0.82rem; margin-top: 1px; }
.qd-line i { display: block; font-style: normal; color: #0071e3; font-size: 0.76rem; font-weight: 700; margin-top: 3px; }
.qd-line em { margin-left: auto; font-style: normal; font-weight: 800; white-space: nowrap; }

.qd-revgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 12px; }
.qd-revgrid figure { margin: 0; padding: 14px 16px; border: 1px solid #eef0f2; border-radius: 14px; }
.qd-revgrid b { font-size: 0.88rem; }
.qd-revgrid i { font-style: normal; color: #e8a33d; font-size: 0.75rem; margin-left: 6px; letter-spacing: 0.12em; }
.qd-revgrid p { margin-top: 6px; color: #454a47; font-size: 0.88rem; font-style: italic; }

.qd-totals > div { display: flex; justify-content: space-between; padding: 5px 0; color: #454a47; font-size: 0.92rem; }
.qd-total { border-top: 1px solid #ececf0; margin-top: 8px; padding-top: 12px !important; align-items: baseline; }
.qd-total em { font-style: normal; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; color: #6b706d; }
.qd-total b { font-size: 1.7rem; letter-spacing: -0.01em; color: #111311; }
.qd-dep { margin-top: 10px; padding: 11px 14px !important; border-radius: 12px; background: #f4f7fb; font-size: 0.85rem !important; }
.qd-dep b { font-weight: 800; }

.qd-accept { text-align: center; background: linear-gradient(170deg, #f6f9ff 0%, #eef3fd 100%); }
.qd-tick { display: inline-flex; width: 44px; height: 44px; border-radius: 14px; background: #dcfce7; color: #16a34a; align-items: center; justify-content: center; font-size: 1.2rem; font-weight: 800; }
.qd-accept h4 { margin-top: 10px; font-size: 1.25rem; }
.qd-accept > p { color: #6b706d; margin-top: 4px; font-size: 0.9rem; }
.qd-when { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.qd-when span { padding: 8px 16px; border-radius: 999px; background: #fbf7ef; font-size: 0.82rem; font-weight: 700; color: #454a47; }
.qd-when .on { background: #0b0b0c; color: #fff; }
.qd-btns { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }
.qd-approve { padding: 13px 34px; border-radius: 12px; background: linear-gradient(180deg, #2b8cff, #0071e3); color: #fff; font-weight: 800; box-shadow: 0 10px 24px rgba(0, 113, 227, 0.35); }
.qd-decline { padding: 13px 26px; border-radius: 12px; background: #fff; border: 1px solid #e2e4e8; font-weight: 700; color: #454a47; }
.qd-small { margin-top: 12px; color: #0071e3; font-size: 0.8rem; font-weight: 700; }

/* Integrations */
.integrations { padding: clamp(3.5rem, 5vw, 5rem) 0; background: var(--white); text-align: center; }
.integrations h2 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); letter-spacing: -0.02em; }
.logo-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 1.8rem; }
.logo-pill { display: inline-flex; align-items: center; gap: 9px; padding: 0.85rem 1.5rem; border: 1px solid var(--border); border-radius: 999px; font-size: 1.02rem; font-weight: 800; letter-spacing: -0.01em; background: var(--paper); }
.logo-revolut { font-weight: 900; }
.logo-stripe { font-family: ui-sans-serif, system-ui; font-weight: 800; letter-spacing: -0.03em; color: #635bff; }
.logo-wa { color: #1faa53; }
.logo-note { margin: 1.4rem auto 0; max-width: 62ch; color: var(--muted); font-size: 0.88rem; }

/* Workflow trio */
.workflow-trio { padding: clamp(4rem, 6vw, 6rem) 0; background: var(--paper); }
.trio-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.2rem, 2.5vw, 2rem); margin-top: clamp(2rem, 3.5vw, 3rem); }
.trio-visual { border-radius: 18px; padding: 1.6rem; min-height: 210px; display: flex; align-items: center; justify-content: center; background: linear-gradient(165deg, #eceeec 0%, #dfe3e0 100%); border: 1px solid var(--border); }
.tv-card { width: 100%; max-width: 320px; background: #fff; border-radius: 16px; padding: 1.1rem 1.2rem; box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12); }
.tv-sub { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; }
.tv-person { display: flex; align-items: center; gap: 10px; margin-top: 0.7rem; }
.tv-face { width: 42px; height: 42px; border-radius: 50%; flex: none; }
.tv-person b { display: block; font-size: 0.92rem; }
.tv-person span { display: block; color: var(--muted); font-size: 0.78rem; }
.tv-line { margin-top: 0.7rem; font-size: 0.84rem; color: #454a47; background: #f4f5f7; border-radius: 10px; padding: 0.6rem 0.75rem; }
.tv-url { font-size: 0.8rem; font-weight: 700; background: #f4f5f7; border-radius: 999px; padding: 0.55rem 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tv-arrow { text-align: center; color: var(--muted); padding: 0.3rem 0; font-weight: 800; }
.tv-mat { display: flex; gap: 10px; align-items: center; border: 1px solid #eef0f2; border-radius: 12px; padding: 0.55rem; }
.tv-mat img { width: 44px; height: 44px; border-radius: 9px; object-fit: cover; }
.tv-mat b { display: block; font-size: 0.85rem; }
.tv-mat span { display: block; color: var(--muted); font-size: 0.76rem; }
.tv-task { margin-top: 0.5rem; padding: 0.5rem 0.7rem; border-radius: 9px; background: #f4f5f7; font-size: 0.82rem; font-weight: 700; color: var(--muted); }
.tv-task.done { background: #e7f6ec; color: #16803c; }
.tv-line2 { margin-top: 0.7rem; font-size: 0.76rem; font-weight: 700; color: var(--muted); }
.trio-grid h3 { margin-top: 1.1rem; font-size: 1.15rem; letter-spacing: -0.01em; }
.trio-grid article > p { margin-top: 0.45rem; color: var(--muted); font-size: 0.94rem; }

@media (max-width: 760px) {
  .qd-head { flex-direction: column; }
  .qd-meta { text-align: left; }
  .qd-revgrid { grid-template-columns: 1fr; }
  .qd-banner strong { display: none; }
  .qd-bar .qd-actions { display: none; }
  .trio-grid { grid-template-columns: 1fr; }
  .quote-demo .section-heading h2 br { display: none; }
  .qd-frame { margin-inline: -6px; }
}

/* Mobile app band */
.app-band { padding: clamp(4rem, 6vw, 6.5rem) 0; background: var(--paper); }
.app-phones { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 2vw, 1.8rem); margin-top: clamp(2rem, 3.5vw, 3rem); }
.app-phones .device-phone { border-width: 8px; border-radius: 40px; }
.app-phones figure { margin: 0; min-width: 0; }
.app-phones figcaption { margin-top: 0.9rem; text-align: center; }
.app-phones figcaption b { display: block; font-size: 0.98rem; }
.app-phones figcaption span { display: block; margin-top: 0.2rem; color: var(--muted); font-size: 0.82rem; }
@media (max-width: 760px) {
  .app-phones { display: flex; gap: 0.9rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.6rem; margin-inline: -6px; padding-inline: 6px; }
  .app-phones figure { flex: 0 0 62%; scroll-snap-align: center; }
}

/* Payments mega-section */
.payments { padding: clamp(4.5rem, 7vw, 7rem) 0; background: var(--white); overflow: clip; }
.payments-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.payments-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.8rem); letter-spacing: -0.02em; line-height: 1.06; }
.payments-copy > p { margin-top: 1rem; color: var(--muted); max-width: 50ch; }
.payments-copy .tick-list { margin-top: 1.2rem; }
.pay-logos { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6rem; }
.logo-big { font-size: 1.25rem; padding: 1rem 1.9rem; }
.payments .logo-note { margin: 1rem 0 0; text-align: left; }

.tap-scene { position: relative; min-height: 480px; }
.tap-merchant { width: min(300px, 74%); margin-inline: auto; border-width: 9px; border-radius: 46px; transform: rotate(3deg); box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35); }
.tap-hand { position: absolute; right: -4%; bottom: -6%; width: min(240px, 58%); transform: rotate(-14deg); filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35)); }
.tap-hand > svg { width: 100%; display: block; }
.tap-cust { position: absolute; left: 9%; top: -34%; width: 82%; border-radius: 30px; border: 8px solid #0e0f10; background: #000; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,0.12); }
.tc-screen { aspect-ratio: 393 / 420; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; background: linear-gradient(180deg, #101312, #191d1b); color: #fff; border-radius: 22px; }
.tc-check { width: 44px; height: 44px; border-radius: 50%; background: #23a247; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; }
.tc-screen b { font-size: 1.35rem; margin-top: 6px; }
.tc-sub { color: #9ca19e; font-size: 0.72rem; font-weight: 700; }
.tap-waves { position: absolute; left: 52%; top: 34%; }
.tap-waves i { position: absolute; border: 2.5px solid rgba(0, 113, 227, 0.55); border-radius: 50%; }
.tap-waves i:nth-child(1) { width: 26px; height: 26px; }
.tap-waves i:nth-child(2) { width: 48px; height: 48px; left: -11px; top: -11px; border-color: rgba(0, 113, 227, 0.32); }
.tap-waves i:nth-child(3) { width: 72px; height: 72px; left: -23px; top: -23px; border-color: rgba(0, 113, 227, 0.16); }
@media (prefers-reduced-motion: no-preference) {
  .tap-waves i { animation: tapping 2s ease-out infinite; }
  .tap-waves i:nth-child(2) { animation-delay: 0.25s; }
  .tap-waves i:nth-child(3) { animation-delay: 0.5s; }
  @keyframes tapping { 0% { opacity: 0.2; transform: scale(0.7); } 50% { opacity: 1; } 100% { opacity: 0; transform: scale(1.25); } }
}

.app-phones-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 760px; margin-inline: auto; }

@media (max-width: 760px) {
  .payments-grid { grid-template-columns: 1fr; }
  .payments-copy h2 br { display: none; }
  .tap-scene { min-height: 0; margin-top: 0.5rem; padding-bottom: 3rem; }
  .tap-merchant { width: 58%; margin-left: 0; }
  .tap-hand { right: 0; bottom: 0; width: 52%; }
  .app-phones-2 figure { flex: 0 0 62%; }
}

/* Interactive quote demo */
.qd-line { align-items: flex-start; }
.qd-line i { cursor: pointer; user-select: none; }
.qd-line-details { display: none; margin-top: 8px; padding: 10px 12px; border-radius: 10px; background: #f4f7fb; color: #454a47; font-size: 0.82rem; max-width: 56ch; }
.qd-line.open .qd-line-details { display: block; }
.qd-whenlabel { margin-top: 16px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; color: #6b706d; }
.qd-tc { margin-top: 12px; color: #a1a1a6; font-size: 0.74rem; }
.qd-tc u { color: #0071e3; text-decoration-color: #0071e3; }
.qd-linkbtn { border: 0; background: none; color: #0071e3; font-size: 0.82rem; font-weight: 700; cursor: pointer; margin-top: 8px; }
.qd-when span { cursor: pointer; }
.qd-approve, .qd-decline { border: 0; cursor: pointer; font-size: 0.95rem; }
.qd-approve:disabled { opacity: 0.5; cursor: default; }
.qd-still { text-align: center; background: #fff; }
.qd-still > p:not(.qd-whenlabel) { color: #6b706d; font-size: 0.88rem; margin-top: 6px; }
.qd-pills { display: flex; justify-content: center; gap: 9px; margin-top: 14px; flex-wrap: wrap; }
.qd-pills span { padding: 9px 16px; border-radius: 999px; border: 1px solid #cfe0f5; background: #f2f7fe; color: #0071e3; font-size: 0.84rem; font-weight: 700; }

.qd-panel { text-align: center; position: relative; background: linear-gradient(170deg, #ffffff 0%, #f4f8ff 100%); }
.qd-back { position: absolute; left: 18px; top: 16px; border: 0; background: none; font-size: 0.85rem; font-weight: 700; color: #454a47; cursor: pointer; }
.qd-ic { display: inline-flex; width: 46px; height: 46px; border-radius: 14px; align-items: center; justify-content: center; font-size: 1.15rem; font-style: normal; }
.qd-ic-blue { background: #dbeafe; }
.qd-ic-yellow { background: #fef3c7; color: #ea580c; }
.qd-panel h4 { margin-top: 10px; font-size: 1.25rem; }
.qd-panel > p { color: #6b706d; margin-top: 4px; font-size: 0.9rem; max-width: 48ch; margin-inline: auto; }
.qd-textarea { display: block; width: min(520px, 100%); margin: 16px auto 0; padding: 12px 14px; border: 0; border-radius: 12px; background: #eef0f3; font: inherit; font-size: 0.88rem; color: #111311; resize: vertical; }
.qd-textarea:focus-visible { outline: 2px solid #0071e3; }
.qd-send { display: block; width: min(520px, 100%); margin: 12px auto 0; }
.qd-sentmsg { margin-top: 18px; color: #16a34a; font-weight: 800; font-size: 0.95rem; }
.qd-reasons { max-width: 480px; margin: 18px auto 0; }
.qd-reasons button { display: flex; width: 100%; align-items: center; gap: 13px; padding: 13px 8px; border: 0; border-bottom: 1px solid #eef0f2; background: none; cursor: pointer; text-align: left; font: inherit; }
.qd-ric { width: 40px; height: 40px; flex: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1rem; font-style: normal; font-weight: 800; }
.qd-ric-green { background: #dcfce7; color: #16a34a; }
.qd-ric-blue { background: #dbeafe; }
.qd-reasons b { display: block; font-size: 0.95rem; }
.qd-reasons i { display: block; font-style: normal; color: #6b706d; font-size: 0.8rem; margin-top: 1px; }
.qd-reasons em { margin-left: auto; color: #a1a1a6; font-style: normal; font-size: 1.1rem; }

.qd-signwrap { position: fixed; inset: 0; z-index: 80; display: flex; align-items: center; justify-content: center; padding: 18px; background: rgba(40, 44, 48, 0.55); backdrop-filter: blur(3px); }
.qd-frame { position: relative; }
.qd-signmodal { width: min(560px, 100%); background: #fff; border-radius: 20px; padding: 20px 22px; box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4); }
.qd-signhead { display: flex; justify-content: space-between; align-items: flex-start; }
.qd-signhead b { font-size: 1.15rem; }
.qd-signhead span { display: block; color: #6b706d; font-size: 0.85rem; margin-top: 2px; }
.qd-x { border: 0; background: none; font-size: 1.4rem; color: #a1a1a6; cursor: pointer; line-height: 1; }
.qd-canvasbox { position: relative; margin-top: 16px; border: 2px dashed #d8dce2; border-radius: 14px; background: #fafbfc; }
.qd-canvasbox canvas { display: block; width: 100%; height: auto; touch-action: none; cursor: crosshair; }
.qd-canvasbox::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: 22%; border-bottom: 1px solid #d8dce2; pointer-events: none; }
.qd-canvashint { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #b7bcc3; font-size: 1.05rem; pointer-events: none; transition: opacity 0.3s; }
.qd-signname { display: block; width: 100%; margin-top: 8px; padding: 12px 14px; border: 0; border-radius: 12px; background: #eef0f3; font: inherit; font-weight: 600; }
.qd-signfoot { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.qd-signfoot .qd-confirm { margin-left: auto; }
.qd-signed { text-align: center; background: linear-gradient(170deg, #f2fbf5 0%, #e8f7ee 100%); }

.qd-signwrap[hidden] { display: none; }

/* Quote demo: tick-list details + material options */
.qd-line-details { background: #fbf9f2; }
.qd-line-details ul { margin: 0; padding: 0; list-style: none; }
.qd-line-details li { position: relative; padding: 4px 0 4px 24px; }
.qd-line-details li::before { content: "✓"; position: absolute; left: 2px; color: #16a34a; font-weight: 800; }
.qd-chooseone { float: right; font-style: normal; padding: 5px 12px; border-radius: 999px; background: #fef3c7; color: #b45309; font-size: 0.74rem; font-weight: 800; }
.qd-opt { display: flex; width: 100%; align-items: center; gap: 14px; margin-top: 12px; padding: 14px 16px; border: 1.5px solid #eef0f2; border-radius: 14px; background: #fff; cursor: pointer; text-align: left; font: inherit; transition: border-color 0.2s, background 0.2s; }
.qd-opt > span:first-child { flex: 1; min-width: 0; }
.qd-opt b { display: block; font-size: 0.95rem; }
.qd-opt i { display: block; font-style: normal; color: #6b706d; font-size: 0.82rem; margin-top: 3px; }
.qd-opt em { font-style: normal; font-weight: 800; white-space: nowrap; }
.qd-radio { width: 22px; height: 22px; flex: none; border-radius: 50%; border: 2px solid #d8dce2; }
.qd-opt.on { border-color: #f0a92e; background: #fffaf0; }
.qd-opt.on .qd-radio { border-color: #f0a92e; background: #f0a92e url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="4"%3E%3Cpath d="m5 13 4 4L19 7"/%3E%3C/svg%3E') center/12px no-repeat; }

/* Optional line + add to quote + gallery */
.qd-note { margin-top: 8px; color: #8b9096; font-size: 0.8rem; font-style: italic; }
.qd-optchip { display: inline-block; margin-left: 8px; padding: 3px 10px; border-radius: 999px; background: #fef3c7; color: #b45309; font-size: 0.68rem; font-weight: 800; font-style: normal; vertical-align: 2px; }
.qd-lineright { margin-left: auto; text-align: right; flex: none; }
.qd-lineright em { display: block; font-style: normal; font-weight: 800; }
.qd-addbtn { margin-top: 7px; padding: 7px 14px; border-radius: 999px; border: 1.5px solid #bcd9f7; background: #f2f8fe; color: #0071e3; font: inherit; font-size: 0.8rem; font-weight: 800; cursor: pointer; transition: background 0.2s, color 0.2s; }
.qd-addbtn.added { background: #0071e3; border-color: #0071e3; color: #fff; }
.qd-line-optional .qd-lineright em { color: #6b706d; }
.qd-gallerygrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
.qd-gallerygrid img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 12px; }
@media (max-width: 760px) { .qd-gallerygrid { grid-template-columns: repeat(2, 1fr); } }

/* Typographic workflow grid */
.trio-text { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--border); }
.trio-text article { padding: 2rem 2.2rem 2.2rem 0; border-bottom: 1px solid var(--border); }
.trio-text article:nth-child(odd) { border-right: 1px solid var(--border); }
.trio-text article:nth-child(even) { padding-left: 2.2rem; padding-right: 0; }
.trio-num { color: var(--orange-deep); font-size: 0.8rem; font-weight: 850; letter-spacing: 0.08em; }
.trio-text h3 { margin-top: 0.6rem; font-size: 1.3rem; letter-spacing: -0.015em; }
.trio-text article > p:not(.trio-num) { margin-top: 0.55rem; color: var(--muted); font-size: 0.96rem; max-width: 46ch; }
@media (max-width: 760px) {
  .trio-text { grid-template-columns: 1fr; }
  .trio-text article, .trio-text article:nth-child(even) { padding-left: 0; padding-right: 0; border-right: 0 !important; }
}

/* Store badges */
.store-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 1.6rem auto 2.2rem; justify-content: center; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; padding: 0.65rem 1.3rem; border-radius: 12px; background: var(--black); color: var(--white); }
.store-badge em { display: block; font-style: normal; font-size: 0.62rem; color: #b9beba; line-height: 1.1; }
.store-badge b { display: block; font-size: 1.05rem; letter-spacing: -0.01em; line-height: 1.15; }
.store-note { width: 100%; text-align: center; color: var(--muted); font-size: 0.82rem; }
@media (min-width: 761px) { .store-note { width: auto; margin-left: 6px; } }

/* Add-ons + trades band */
.addons-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--border); margin-top: 2rem; }
.addons-grid article { padding: 1.8rem 2rem 2rem 0; border-bottom: 1px solid var(--border); }
.addons-grid article + article { padding-left: 2rem; border-left: 1px solid var(--border); }
.addons-grid h3 { font-size: 1.15rem; letter-spacing: -0.01em; }
.addons-grid p { margin-top: 0.5rem; color: var(--muted); font-size: 0.93rem; }
.addons-grid b { color: var(--ink); }
.trades-band { padding: clamp(3.5rem, 5vw, 5.5rem) 0; background: var(--white); }
.trades-list { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.trades-list span { padding: 0.6rem 1.1rem; border: 1px solid var(--border); border-radius: 999px; font-size: 0.9rem; font-weight: 700; background: var(--paper); }
@media (max-width: 760px) {
  .addons-grid { grid-template-columns: 1fr; }
  .addons-grid article, .addons-grid article + article { padding-left: 0; padding-right: 0; border-left: 0; }
}


/* PDF paperwork showcase */
.pdf-band { padding: clamp(4.5rem, 7vw, 7rem) 0; background: var(--paper); overflow: clip; }
.pdf-sheets { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 3.5vw, 3.4rem); margin-top: clamp(2.2rem, 4vw, 3.4rem); align-items: start; max-width: 980px; margin-inline: auto; }
.pdf-sheet { margin: 0; }
.pdf-sheet img { width: 100%; height: auto; display: block; border-radius: 6px; border: 1px solid rgba(15, 23, 18, 0.08); box-shadow: 0 2px 6px rgba(15, 23, 18, 0.06), 0 30px 60px -18px rgba(15, 23, 18, 0.28); background: #fff; }
.pdf-sheet figcaption { margin-top: 1rem; text-align: center; }
.pdf-sheet figcaption b { display: block; font-size: 0.98rem; }
.pdf-sheet figcaption span { display: block; margin-top: 0.2rem; color: var(--muted); font-size: 0.82rem; }
@media (prefers-reduced-motion: no-preference) {
  .pdf-sheet-a { transform: rotate(-1.1deg); }
  .pdf-sheet-b { transform: rotate(1.1deg) translateY(22px); }
  .pdf-sheet { transition: transform 0.6s var(--ease); }
  .pdf-sheet:hover { transform: rotate(0deg) translateY(-6px); }
}
@media (max-width: 760px) {
  .pdf-sheets { grid-template-columns: 1fr; gap: 2rem; max-width: 420px; }
  .pdf-sheet-a, .pdf-sheet-b { transform: none; }
}

/* ---------- Mobile engagement pass: swipe decks ----------
   On phones, long stacked grids become horizontal snap carousels with a
   peeking next card — shorter page, app-like feel. */
@media (max-width: 760px) {
  .spotlight-list,
  .use-case-grid,
  .testimonial-grid,
  .trio-text,
  .audience-grid,
  .pricing-grid,
  .addons-grid,
  .pdf-sheets {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.6rem;
    margin-inline: -8px;
    padding-inline: 8px;
  }

  .spotlight-list::-webkit-scrollbar,
  .use-case-grid::-webkit-scrollbar,
  .testimonial-grid::-webkit-scrollbar,
  .trio-text::-webkit-scrollbar,
  .audience-grid::-webkit-scrollbar,
  .pricing-grid::-webkit-scrollbar,
  .addons-grid::-webkit-scrollbar,
  .pdf-sheets::-webkit-scrollbar { display: none; }

  .spotlight-list > *,
  .use-case-grid > *,
  .testimonial-grid > *,
  .trio-text > *,
  .audience-grid > *,
  .pricing-grid > *,
  .addons-grid > *,
  .pdf-sheets > * {
    flex: 0 0 84%;
    scroll-snap-align: center;
    min-width: 0;
  }

  /* Spotlights become self-contained cards */
  .spotlight,
  .spotlight + .spotlight {
    border-top: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.3rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.1rem;
  }
  .spotlight-shot { margin-inline: 0; width: 100%; }
  .spotlight-copy h3 { font-size: 1.35rem; }
  .spotlight-copy .tick-list { margin: 0.9rem 0 1rem; }

  /* Cards that need their desktop divider styling undone in a deck */
  .audience-grid { border-top: 0; margin-top: 2.2rem; }
  .audience-grid article,
  .audience-grid article + article {
    margin-top: 0;
    padding: 1.4rem 1.3rem 1.6rem;
    border: 1px solid var(--border);
    border-radius: 18px;
    min-height: 0;
  }
  .audience-grid p { margin-bottom: 1.6rem; }
  .audience-grid h3 { font-size: 1.6rem; }

  .trio-text > article {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.3rem 1.2rem 1.5rem;
  }

  .addons-grid > article,
  .addons-grid > article + article {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1.3rem 1.2rem 1.5rem;
  }

  .testimonial-grid > figure { flex-basis: 84%; }
  .pricing-grid > * { flex-basis: 86%; }
  .pdf-sheets { max-width: none; }
  .pdf-sheets > * { flex-basis: 86%; }

  /* Tighter, consistent section rhythm on phones */
  .quote-demo,
  .payments,
  .pdf-band,
  .workflow-trio,
  .app-band,
  .trades-band,
  .audience-section,
  .use-cases,
  .testimonials { padding-block: 3.2rem; }
}
