:root {
  --cream: #f7f3e8;
  --paper: #fffaf0;
  --mint: #bff2df;
  --aqua: #7fd9ee;
  --teal: #197c7c;
  --coral: #ff6d4a;
  --scarlet: #ef3151;
  --amber: #f6bd38;
  --ink: #101113;
  --muted: #5e605b;
  --line: rgba(16, 17, 19, 0.14);
  --shadow: 0 28px 80px rgba(20, 24, 22, 0.18);
  --radius: 8px;
  font-family: "Cabinet Grotesk", "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  cursor: auto;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(125deg, rgba(127, 217, 238, 0.2), transparent 38%),
    linear-gradient(245deg, rgba(255, 109, 74, 0.18), transparent 42%),
    var(--cream);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(16, 17, 19, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 17, 19, 0.035) 1px, transparent 1px);
  background-size: 24px 24px;
  mix-blend-mode: multiply;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

a,
button,
select {
  cursor: pointer;
}

input,
textarea {
  cursor: text;
}

body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready input,
body.cursor-ready select,
body.cursor-ready textarea {
  cursor: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
}

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

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

.cursor-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(16, 17, 19, 0.7);
  border-radius: 50%;
  background: rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(5px);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cursor-ring.is-active {
  width: 74px;
  height: 74px;
  border-color: rgba(255, 109, 74, 0.92);
  background: rgba(255, 109, 74, 0.12);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--amber), var(--aqua), var(--teal));
}

.site-header {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  padding: 0.55rem;
  border: 1px solid rgba(16, 17, 19, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 50px rgba(16, 17, 19, 0.08);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: clamp(190px, 17vw, 258px);
  height: 56px;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("/assets/brand/jones-tech-lockup-site-transparent.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}

.footer-brand {
  width: clamp(190px, 17vw, 258px);
  height: 58px;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 2rem);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(16, 17, 19, 0.72);
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0.7rem 0.1rem;
  min-height: 44px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.nav-cta {
  color: var(--paper);
  background: var(--ink);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(16, 17, 19, 0.18);
}

.button-light {
  color: var(--ink);
  border-color: rgba(16, 17, 19, 0.18);
  background: rgba(255, 250, 240, 0.72);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(16, 17, 19, 0.16);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.section-chapter {
  position: relative;
  min-height: 100svh;
  padding: clamp(7rem, 11vw, 11rem) clamp(1rem, 4vw, 4rem);
  scroll-margin-top: 7.5rem;
  isolation: isolate;
}

section[id] {
  scroll-margin-top: 7.25rem;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(16, 17, 19, 0.62);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h1 {
  max-width: 1100px;
  margin-bottom: 1.35rem;
  font-size: clamp(4rem, 9vw, 9.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(3rem, 7vw, 7.8rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 1;
}

p {
  color: rgba(16, 17, 19, 0.68);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.45;
}

.hero {
  display: grid;
  align-items: start;
  min-height: 112svh;
  padding-top: clamp(7rem, 10vw, 8.6rem);
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 16%, rgba(191, 242, 223, 0.76), transparent 22rem),
    radial-gradient(circle at 86% 22%, rgba(255, 109, 74, 0.2), transparent 24rem),
    radial-gradient(circle at 50% 62%, rgba(255, 250, 240, 0.92), transparent 28rem),
    linear-gradient(135deg, rgba(191, 242, 223, 0.72), rgba(255, 250, 240, 0.92) 52%, rgba(255, 109, 74, 0.28)),
    var(--cream);
}

.hero-content {
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  max-width: 1120px;
  margin-top: clamp(0.85rem, 2.4vw, 2.25rem);
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(3.7rem, 6.25vw, 6.15rem);
  line-height: 0.9;
}

.hero-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  margin: 0 0 1.7rem;
  padding: 0.44rem 1.1rem;
  border-radius: 999px;
  color: var(--paper);
  background: linear-gradient(90deg, var(--orange, #ff8a45), var(--scarlet));
  box-shadow: 0 14px 34px rgba(255, 109, 74, 0.2);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero p {
  color: rgba(16, 17, 19, 0.7);
}

.hero-copy {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.hero-actions {
  justify-content: center;
  margin-top: 1.9rem;
}

.positioning-rail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 980px;
  margin: 1.3rem auto 0;
  color: rgba(16, 17, 19, 0.66);
  font-size: clamp(0.72rem, 0.95vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.08;
  text-transform: uppercase;
}

.positioning-rail span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.95rem;
}

.positioning-rail span + span::before {
  display: inline-flex;
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-right: 0.95rem;
  border-radius: 50%;
  content: "";
  background: linear-gradient(135deg, var(--coral), var(--amber));
  box-shadow: 0 0 0 5px rgba(255, 109, 74, 0.1);
}

.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(6px);
  pointer-events: none;
}

.hero-orb-mint {
  top: 14%;
  left: -8%;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(127, 217, 238, 0.36), transparent 66%);
}

.hero-orb-coral {
  right: -10%;
  bottom: 14%;
  width: 38vw;
  height: 38vw;
  background: radial-gradient(circle, rgba(255, 109, 74, 0.25), transparent 68%);
}

.workflow-board {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(168px, 1fr));
  gap: 0.82rem;
  width: min(1060px, 100%);
  margin: clamp(1.35rem, 2.4vw, 2rem) auto 0;
  padding: 1rem;
  border: 1px solid rgba(16, 17, 19, 0.1);
  border-radius: 28px;
  background: rgba(255, 250, 240, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.workflow-board::before {
  position: absolute;
  top: 50%;
  right: 5%;
  left: 5%;
  z-index: -1;
  height: 5px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral), #7f7cf8);
  opacity: 0.64;
}

.flow-card {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  padding: clamp(1rem, 1.6vw, 1.25rem);
  border: 1px solid rgba(16, 17, 19, 0.1);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.96);
  box-shadow: 0 16px 42px rgba(16, 17, 19, 0.08);
  transition: transform 350ms ease, box-shadow 350ms ease;
}

.flow-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 56px rgba(16, 17, 19, 0.12);
}

.source-card,
.output-card {
  grid-column: span 2;
  grid-row: span 2;
}

.agent-queue-card,
.human-review-card,
.roi-tracker-card {
  grid-column: span 2;
}

.roi-tracker-card {
  padding-bottom: 4.5rem;
}

.flow-card span {
  display: inline-flex;
  margin-bottom: 0.6rem;
  color: rgba(16, 17, 19, 0.52);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.flow-card strong {
  display: block;
  max-width: 320px;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  line-height: 1.08;
}

.mini-stack {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.48rem;
}

.mini-stack i,
.node-row i,
.bar-chart i,
.review-line {
  display: block;
  border-radius: 999px;
}

.mini-stack i {
  height: 18px;
  background: rgba(25, 124, 124, 0.18);
}

.node-row {
  display: flex;
  gap: 0.42rem;
  margin-top: 1rem;
}

.node-row i {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--teal), var(--aqua));
}

.review-line {
  width: 72%;
  height: 12px;
  margin-top: 1.4rem;
  background: linear-gradient(90deg, var(--ink) 60%, rgba(16, 17, 19, 0.12) 60%);
}

.bar-chart {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: end;
  gap: 0.4rem;
  height: 42px;
}

.bar-chart i {
  flex: 1;
  background: linear-gradient(180deg, var(--scarlet), var(--coral));
}

.bar-chart i:nth-child(1) {
  height: 34%;
}

.bar-chart i:nth-child(2) {
  height: 56%;
}

.bar-chart i:nth-child(3) {
  height: 80%;
}

.bar-chart i:nth-child(4) {
  height: 100%;
}

.pulse {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: min(42%, 132px);
  height: min(42%, 132px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 124, 248, 0.5), transparent 68%);
}

.operations-section {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.76), transparent 44%),
    linear-gradient(60deg, rgba(127, 217, 238, 0.62), rgba(246, 189, 56, 0.38) 52%, rgba(255, 109, 74, 0.42));
}

.chapter-intro {
  width: min(1100px, 100%);
  margin: 0 auto 3rem;
  text-align: center;
}

.chapter-intro p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.accordion-wall {
  display: flex;
  gap: 0.75rem;
  width: min(1240px, 100%);
  height: min(68svh, 640px);
  margin: 0 auto;
}

.accordion-panel {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  transition: flex 650ms cubic-bezier(0.2, 0.8, 0.2, 1), transform 650ms ease;
}

.accordion-panel.active,
.accordion-panel:hover,
.accordion-panel:focus-within {
  flex: 3.4;
}

.accordion-panel img {
  filter: saturate(1.1) contrast(1.02);
  transition: transform 800ms ease;
}

.accordion-panel:hover img {
  transform: scale(1.06);
}

.accordion-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(16, 17, 19, 0.7), transparent 58%);
}

.panel-copy {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 2;
  color: var(--paper);
}

.panel-copy span {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 250, 240, 0.4);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent), transparent 18%);
  font-weight: 900;
  line-height: 1.04;
  overflow-wrap: anywhere;
  white-space: normal;
}

.panel-copy strong {
  display: block;
  max-width: 440px;
  font-size: clamp(1.15rem, 2vw, 2rem);
  line-height: 1.06;
  transition: opacity 260ms ease, transform 260ms ease, max-height 260ms ease;
}

.accordion-panel:not(.active):not(:hover):not(:focus-within) .panel-copy strong {
  display: none;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(8px);
}

.map-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    linear-gradient(115deg, rgba(255, 250, 240, 0.92), rgba(191, 242, 223, 0.58) 46%, rgba(255, 109, 74, 0.22)),
    var(--paper);
}

.bento-copy {
  max-width: 520px;
}

.bento-copy h2 {
  font-size: clamp(3rem, 5.8vw, 6.4rem);
}

.bento-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 0.85rem;
}

.bento-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  min-height: 220px;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid rgba(16, 17, 19, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(127, 217, 238, 0.28)),
    rgba(255, 250, 240, 0.86);
  box-shadow: 0 18px 60px rgba(16, 17, 19, 0.1);
}

.bento-card-large {
  grid-column: span 5;
  grid-row: span 2;
  display: flex;
  align-items: end;
}

.bento-card-large img {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.9;
  transition: transform 800ms ease;
}

.bento-card-large:hover img {
  transform: scale(1.05);
}

.bento-card-large::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(0deg, rgba(255, 250, 240, 0.94), rgba(255, 250, 240, 0.08) 58%);
}

.bento-card-large > div,
.bento-card > span,
.bento-card > p {
  position: relative;
  z-index: 2;
}

.bento-card span {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bento-card p {
  margin-bottom: 0;
  font-weight: 600;
}

.bento-ink {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(239, 49, 81, 0.78), rgba(16, 17, 19, 0.94)),
    var(--ink);
}

.bento-ink p {
  color: rgba(255, 250, 240, 0.76);
}

.bento-note {
  background:
    linear-gradient(135deg, rgba(246, 189, 56, 0.76), rgba(255, 250, 240, 0.9)),
    var(--amber);
}

.orbit-section {
  display: grid;
  place-items: center;
  min-height: 120svh;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(127, 217, 238, 0.46), rgba(255, 250, 240, 0.82) 46%, rgba(255, 109, 74, 0.36)),
    var(--paper);
}

.orbit-media {
  position: absolute;
  inset: 8rem clamp(1rem, 5vw, 5rem);
  z-index: -2;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.orbit-media img {
  opacity: 0.74;
  filter: saturate(1.14) contrast(1.05);
}

.orbit-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.32), rgba(255, 250, 240, 0.84)),
    repeating-linear-gradient(45deg, rgba(16, 17, 19, 0.05) 0 1px, transparent 1px 24px);
}

.orbit-copy {
  width: min(900px, 100%);
  min-width: 0;
  max-width: 900px;
  text-align: center;
}

.service-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.service-chip {
  position: absolute;
  pointer-events: auto;
  max-width: min(100%, 19rem);
  padding: 0.95rem 1.15rem;
  border: 1px solid rgba(16, 17, 19, 0.16);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 18px 45px rgba(16, 17, 19, 0.12);
  backdrop-filter: blur(15px);
  font-weight: 900;
}

.service-chip:nth-child(1) {
  top: 22%;
  left: 12%;
}

.service-chip:nth-child(2) {
  top: 26%;
  right: 8%;
}

.service-chip:nth-child(3) {
  top: 50%;
  left: 6%;
}

.service-chip:nth-child(4) {
  right: 12%;
  bottom: 28%;
}

.service-chip:nth-child(5) {
  bottom: 18%;
  left: 22%;
}

.service-chip:nth-child(6) {
  right: 26%;
  bottom: 14%;
}

.case-section {
  min-height: auto;
  overflow: clip;
  background:
    linear-gradient(100deg, rgba(246, 189, 56, 0.52), rgba(255, 250, 240, 0.76) 50%, rgba(127, 217, 238, 0.48)),
    var(--cream);
}

.case-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  width: min(100%, 1320px);
  margin: 0 auto;
  align-items: stretch;
}

.case-panel {
  display: grid;
  align-items: center;
  min-width: 0;
  min-height: clamp(420px, 44vw, 620px);
  padding: clamp(1.4rem, 4vw, 4rem);
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: var(--shadow);
}

.case-copy-panel {
  grid-column: span 5;
}

.case-copy {
  min-width: 0;
  max-width: min(100%, 760px);
}

.case-copy h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 5.4vw, 6.7rem);
}

.case-copy p {
  max-width: 36rem;
}

.image-panel {
  grid-column: span 7;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.image-panel img {
  transition: transform 900ms ease;
}

.image-panel:hover img {
  transform: scale(1.05);
}

.image-panel span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.82);
  font-weight: 900;
}

.case-connected {
  grid-column: span 7;
}

.proof-panel {
  grid-column: span 5;
  grid-template-columns: 1fr;
  gap: 0.82rem;
  background: linear-gradient(135deg, var(--ink), #2c1f24);
}

.metric {
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: clamp(2.1rem, 4.2vw, 4.9rem);
  font-weight: 900;
  line-height: 0.95;
  text-wrap: balance;
}

.metric span {
  color: var(--mint);
}

.layer-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    linear-gradient(140deg, rgba(191, 242, 223, 0.86), rgba(255, 250, 240, 0.76) 48%, rgba(127, 217, 238, 0.44)),
    var(--mint);
}

.inline-headline h2 {
  font-size: clamp(2.7rem, 6vw, 6.7rem);
}

.inline-image {
  display: inline-block;
  width: clamp(74px, 12vw, 170px);
  height: clamp(40px, 6vw, 84px);
  margin: 0 0.16em;
  overflow: hidden;
  border: 2px solid rgba(16, 17, 19, 0.16);
  border-radius: 999px;
  vertical-align: middle;
  box-shadow: 0 12px 30px rgba(16, 17, 19, 0.12);
}

.product-frame {
  position: relative;
  overflow: hidden;
  min-height: min(68svh, 720px);
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.66);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.product-frame img {
  filter: saturate(1.05) contrast(1.02);
}

.product-tags {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.6rem 0.78rem;
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.82);
  font-size: 0.86rem;
  font-weight: 900;
  white-space: nowrap;
}

.founder-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  background:
    linear-gradient(115deg, rgba(255, 250, 240, 0.94), rgba(246, 189, 56, 0.38) 42%, rgba(239, 49, 81, 0.18)),
    var(--paper);
}

.founder-portrait {
  min-height: min(74svh, 760px);
  overflow: hidden;
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.founder-copy h2 {
  font-size: clamp(3rem, 6vw, 7rem);
}

.proof-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2rem;
  padding: 0.8rem;
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.64);
  box-shadow: 0 16px 48px rgba(16, 17, 19, 0.08);
}

.proof-carousel blockquote {
  margin: 0;
}

.proof-carousel p {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 800;
}

.proof-carousel cite {
  color: rgba(16, 17, 19, 0.56);
  font-style: normal;
  font-weight: 700;
}

.carousel-arrow {
  min-width: 58px;
  min-height: 48px;
  border: 1px solid rgba(16, 17, 19, 0.14);
  border-radius: 999px;
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 900;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  color: var(--paper);
  background: #152322;
}

.cta-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.cta-background img {
  opacity: 0.82;
  filter: saturate(1.06) contrast(1.05);
}

.cta-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(16, 17, 19, 0.78), rgba(16, 17, 19, 0.18) 52%, rgba(16, 17, 19, 0.72)),
    linear-gradient(0deg, rgba(16, 17, 19, 0.84), transparent 56%);
}

.cta-section .eyebrow,
.cta-section p {
  color: rgba(255, 250, 240, 0.78);
}

.cta-content {
  max-width: 900px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(24px);
}

.lead-form label {
  display: grid;
  gap: 0.45rem;
}

.lead-form span {
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  color: var(--paper);
  background: rgba(16, 17, 19, 0.44);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(255, 250, 240, 0.62);
}

.lead-form select option {
  color: var(--ink);
}

.form-wide,
.form-actions,
.form-status {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: rgba(255, 250, 240, 0.8);
  font-size: 0.95rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(16, 17, 19, 0.12);
  background: var(--paper);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-weight: 800;
}

.site-footer nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

@media (max-width: 1180px) {
  .case-section {
    padding: clamp(6rem, 10vw, 8rem) clamp(1rem, 4vw, 3rem);
  }

  .case-layout {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .case-copy-panel,
  .proof-panel {
    grid-column: span 3;
  }

  .image-panel,
  .case-connected {
    grid-column: span 3;
  }

  .case-panel {
    min-height: min(560px, 68svh);
  }
}

@media (max-width: 1120px) {
  .cta-section {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cta-content {
    max-width: 780px;
  }
}

@media (max-width: 980px) {
  :root,
  button,
  a,
  input,
  select,
  textarea {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .site-header {
    grid-template-columns: auto auto;
    gap: 0.5rem;
  }

  .nav-links {
    display: none;
  }

  .section-chapter {
    min-height: auto;
    padding-top: 7.5rem;
    padding-bottom: 6rem;
  }

  .hero {
    min-height: 100svh;
    padding-top: 7.9rem;
    padding-bottom: 3.8rem;
  }

  .hero h1 {
    max-width: min(100%, 760px);
    font-size: clamp(2.45rem, 10vw, 4.4rem);
  }

  .hero-copy {
    font-size: 1.1rem;
  }

  .positioning-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
    width: min(100%, 460px);
    margin-top: 1.25rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .positioning-rail span {
    justify-content: center;
    min-height: 44px;
    padding: 0.58rem 0.62rem;
    border: 1px solid rgba(16, 17, 19, 0.12);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.68);
    box-shadow: 0 12px 34px rgba(16, 17, 19, 0.07);
    text-align: center;
  }

  .positioning-rail span + span::before {
    display: none;
  }

  .workflow-board {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    border-radius: 20px;
    gap: 0.72rem;
    margin-top: 1.35rem;
  }

  .source-card,
  .output-card,
  .agent-queue-card,
  .human-review-card,
  .roi-tracker-card {
    grid-column: auto;
    grid-row: auto;
  }

  .flow-card {
    min-height: auto;
    padding: 1.12rem;
    background: rgba(255, 250, 240, 0.98);
  }

  .roi-tracker-card {
    padding-bottom: 1.12rem;
  }

  .flow-card span,
  .flow-card strong {
    position: relative;
    z-index: 2;
  }

  .flow-card span {
    color: rgba(16, 17, 19, 0.64);
  }

  .flow-card strong {
    max-width: none;
    font-size: clamp(1.18rem, 4.2vw, 1.56rem);
    line-height: 1.06;
  }

  .mini-stack,
  .bar-chart {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin-top: 1rem;
  }

  .mini-stack {
    gap: 0.36rem;
  }

  .mini-stack i {
    height: 14px;
  }

  .bar-chart {
    height: 42px;
  }

  .pulse {
    display: none;
  }

  h1 {
    font-size: clamp(3.35rem, 16vw, 6rem);
  }

  h2 {
    font-size: clamp(2.7rem, 12vw, 5rem);
  }

  .accordion-wall {
    flex-direction: column;
    height: auto;
  }

  .accordion-panel,
  .accordion-panel.active,
  .accordion-panel:hover {
    flex: none;
    min-height: 330px;
  }

  .accordion-panel:not(.active):not(:hover):not(:focus-within) .panel-copy strong {
    display: block;
    max-height: none;
    opacity: 1;
    overflow: visible;
    transform: none;
  }

  .map-section,
  .layer-section,
  .founder-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-card,
  .bento-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .service-orbit {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 2rem;
    pointer-events: auto;
  }

  .service-chip,
  .service-chip:nth-child(n) {
    position: static;
    transform: none !important;
    white-space: normal;
  }

  .orbit-media {
    inset: 7rem 1rem 1rem;
  }

  .case-layout {
    grid-template-columns: 1fr;
  }

  .case-copy-panel,
  .image-panel,
  .case-connected,
  .proof-panel {
    grid-column: auto;
  }

  .case-panel {
    min-height: 430px;
  }

  .proof-carousel {
    grid-template-columns: 1fr;
  }

  .product-frame,
  .founder-portrait {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .product-frame img,
  .founder-portrait img {
    object-position: top center;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .section-chapter {
    padding-top: 5.75rem;
    padding-bottom: 5rem;
  }

  section[id] {
    scroll-margin-top: 7rem;
  }

  .site-header {
    top: 16px;
    width: calc(100% - 24px);
    min-height: 62px;
    padding: 0.45rem;
  }

  .brand {
    width: 54px;
    height: 54px;
  }

  .brand-logo {
    background-image: url("/assets/brand/jones-tech-logomark-site-transparent.png");
    background-position: center;
  }

  .footer-brand {
    width: 168px;
    height: 48px;
  }

  .footer-brand .brand-logo {
    background-image: url("/assets/brand/jones-tech-lockup-site-transparent.png");
    background-position: left center;
  }

  .nav-cta,
  .button {
    min-height: 44px;
    padding: 0.78rem 1rem;
    font-size: 0.86rem;
  }

  .hero {
    padding-top: 7.35rem;
    padding-bottom: 2.8rem;
  }

  .hero-banner {
    max-width: min(100%, 340px);
    min-height: auto;
    white-space: normal;
    line-height: 1.12;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: 1rem;
  }

  h2,
  .bento-copy h2,
  .inline-headline h2,
  .founder-copy h2,
  .cta-content h2 {
    font-size: clamp(2.08rem, 8.8vw, 3rem);
    line-height: 1.04;
  }

  .orbit-section {
    place-items: start center;
    min-height: auto;
  }

  .orbit-copy h2 {
    font-size: clamp(2.2rem, 9.2vw, 3.1rem);
    line-height: 1.04;
  }

  .orbit-copy p {
    color: rgba(16, 17, 19, 0.74);
    font-size: 1rem;
  }

  .orbit-media {
    inset: 7.5rem 1rem auto;
    height: min(680px, 78svh);
  }

  .orbit-media img {
    opacity: 0.58;
  }

  .orbit-media::after {
    background:
      linear-gradient(180deg, rgba(255, 250, 240, 0.9), rgba(255, 250, 240, 0.78)),
      repeating-linear-gradient(45deg, rgba(16, 17, 19, 0.04) 0 1px, transparent 1px 24px);
  }

  .workflow-board {
    gap: 0.62rem;
    padding: 0.72rem;
  }

  .flow-card {
    min-height: auto;
    padding: 1rem;
    border-radius: 16px;
  }

  .roi-tracker-card {
    padding-bottom: 1rem;
  }

  .flow-card span {
    margin-bottom: 0.48rem;
    font-size: 0.72rem;
  }

  .flow-card strong {
    font-size: clamp(1.12rem, 6vw, 1.36rem);
  }

  .accordion-panel,
  .accordion-panel.active,
  .accordion-panel:hover {
    min-height: 300px;
  }

  .case-panel {
    min-height: auto;
  }

  .image-panel {
    aspect-ratio: 1.05 / 1;
  }

  .image-panel img {
    object-position: center;
  }

  .metric {
    font-size: clamp(1.75rem, 9vw, 2.75rem);
  }

  .product-tags {
    gap: 0.42rem;
  }

  .product-tags span {
    min-height: 34px;
    padding: 0.5rem 0.62rem;
    font-size: 0.74rem;
  }

  .service-orbit {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: auto;
  }

  .service-chip,
  .service-chip:nth-child(n) {
    width: 100%;
    padding: 0.78rem 0.68rem;
    font-size: 0.8rem;
    line-height: 1.08;
    text-align: center;
  }

  .cta-section {
    gap: 1.4rem;
  }

  .cta-background::after {
    background:
      linear-gradient(180deg, rgba(16, 17, 19, 0.64), rgba(16, 17, 19, 0.86)),
      linear-gradient(90deg, rgba(16, 17, 19, 0.6), rgba(16, 17, 19, 0.4));
  }

  .site-footer nav {
    gap: 0.4rem 0.85rem;
    font-size: 0.86rem;
  }
}

@media (max-width: 360px) {
  .site-header {
    width: calc(100% - 20px);
  }

  .brand {
    width: 48px;
    height: 48px;
  }

  .nav-cta {
    padding-right: 0.86rem;
    padding-left: 0.86rem;
  }

  .hero {
    padding-top: 6.95rem;
  }

  .hero h1 {
    max-width: 300px;
    font-size: clamp(2.25rem, 11vw, 2.55rem);
  }

  .hero-banner {
    max-width: 292px;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
    font-size: 0.74rem;
  }

  .hero-actions {
    gap: 0.55rem;
  }

  .flow-card {
    padding: 0.88rem;
  }

  .flow-card strong {
    font-size: 1.08rem;
    line-height: 1.12;
  }
}

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