:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-2: #151515;
  --ink: #f7f7f2;
  --muted: #9b9ca1;
  --muted-2: #686a70;
  --line: #272727;
  --line-strong: #3a3a3a;
  --white: #ffffff;
  --black: #000000;
  --accent: #baff2a;
  --accent-2: #7dd3fc;
  --nav-h: 76px;
  --body-font: "IBM Plex Sans", "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display-font: "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.45;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1460px, calc(100vw - 48px));
  margin: 0 auto;
}

.noise-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background-image: linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 72px 72px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  background: rgba(5, 5, 5, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(5px);
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  width: auto;
  height: 28px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.95;
}

.brand-footer .brand-logo {
  height: 24px;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: 0 14px;
  font: inherit;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
button.button:hover {
  transform: translateY(-1px);
  border-color: var(--ink);
}

.button-primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--black);
}

.button-primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
}

.button-secondary,
.button-ghost {
  color: var(--muted);
}

.button-secondary:hover,
.button-ghost:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
}

.page-main {
  padding-bottom: 64px;
}

.page-hero,
.page-band,
.panel,
.final-cta,
.page-footer {
  position: relative;
}

.page-hero {
  min-height: calc(100vh - var(--nav-h));
  padding: 76px 0 72px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 4vw, 64px);
  align-items: start;
  position: relative;
  width: min(1460px, calc(100vw - 56px));
  margin-left: 28px;
  margin-right: auto;
  min-height: clamp(610px, calc(100vh - var(--nav-h) - 148px), 820px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(1320px, 92vw);
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display-font);
  font-weight: 500;
  line-height: 0.96;
}

h1 {
  max-width: 1320px;
  margin-bottom: 30px;
  font-size: clamp(60px, 7.2vw, 126px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 6.4vw, 104px);
}

h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.lead {
  max-width: 960px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 1.75vw, 28px);
  font-weight: 400;
  line-height: 1.25;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.trust-row {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-chip {
  padding: 13px 18px 13px 0;
  margin-right: 18px;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.trust-chip:last-child {
  border-right: 0;
}

.positioning-line {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.positioning-line strong {
  color: var(--ink);
  font-weight: 650;
}

.hero-card,
.page-band__box {
  padding: 0 0 0 28px;
  border-left: 1px solid var(--line-strong);
}

.hero-card {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  padding: 70px 0 0;
  border-left: 0;
}

.hero-card .mini-label {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-note {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 16px;
}

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

.signal {
  padding: 18px 24px 18px 0;
  margin-right: 24px;
  border-right: 1px solid var(--line);
}

.signal:last-child {
  margin-right: 0;
  border-right: 0;
}

.signal strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
}

.signal span {
  color: var(--muted);
  font-size: 14px;
}

.hero-prop {
  position: absolute;
  z-index: 1;
  top: clamp(46px, 7vw, 108px);
  right: clamp(-168px, calc(-5vw - 40px), -68px);
  width: min(48vw, 720px);
  height: clamp(380px, 42vw, 640px);
  min-height: 0;
  margin-top: 0;
  pointer-events: none;
  perspective: 1100px;
  opacity: 0.8;
}

.prop-stage {
  --prop-glow: 0;
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  animation: propFloat 9s ease-in-out infinite;
}

.prop-glow {
  display: none;
}

.prop-shadow {
  position: absolute;
  right: 13%;
  bottom: 10%;
  width: 46%;
  height: 9%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.9), transparent 72%);
  filter: blur(12px);
  opacity: 0.56;
  transform: rotate(-8deg);
}

.prop-cube {
  --s: 132px;
  --g: 0;
  --o: 1;
  --rx: -24deg;
  --ry: -36deg;
  --rz: 0deg;
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--s);
  height: var(--s);
  transform-style: preserve-3d;
  transform: translate3d(-50%, -50%, var(--z)) rotateX(var(--rx)) rotateY(var(--ry)) rotateZ(var(--rz));
  will-change: transform;
}

.cube-one {
  --s: clamp(118px, 11vw, 168px);
  --x: 28%;
  --y: 60%;
  --z: 82px;
  --rx: -26deg;
  --ry: -34deg;
  --rz: -24deg;
}

.cube-two {
  --s: clamp(96px, 9vw, 132px);
  --x: 13%;
  --y: 14%;
  --z: 168px;
  --rx: -32deg;
  --ry: -32deg;
  --rz: 30deg;
}

.cube-three {
  --s: clamp(104px, 9.6vw, 144px);
  --x: 86%;
  --y: 18%;
  --z: 124px;
  --rx: -28deg;
  --ry: -34deg;
  --rz: -34deg;
}

.cube-four {
  --s: clamp(132px, 12vw, 186px);
  --x: 82%;
  --y: 89%;
  --z: -48px;
  --rx: -22deg;
  --ry: -40deg;
  --rz: 18deg;
}

.cube-face {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.27);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.09) 40%, rgba(0, 0, 0, 0.9)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.07), transparent);
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.055),
    inset 0 -24px 44px rgba(0, 0, 0, 0.46);
  opacity: var(--o);
  backface-visibility: hidden;
}

.cube-four .cube-face {
  border-color: rgba(255, 255, 255, calc(0.27 + (var(--g) * 0.62)));
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08) 42%, rgba(0, 0, 0, 0.92)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.07), transparent);
  box-shadow:
    inset 0 0 34px rgba(255, 255, 255, 0.055),
    inset 0 -24px 44px rgba(0, 0, 0, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, calc(var(--g) * 0.82)),
    0 0 12px rgba(255, 255, 255, calc(var(--g) * 0.68)),
    0 0 30px rgba(255, 255, 255, calc(var(--g) * 0.36)),
    0 0 58px rgba(255, 255, 255, calc(var(--g) * 0.18));
}

.cube-decal {
  position: absolute;
  top: 47%;
  right: 15%;
  left: 15%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 22%;
  background: transparent;
  border: 0;
  box-shadow: none;
  opacity: var(--g);
  transform: translateY(-50%) translateZ(calc(var(--s) / 2 + 2px));
  backface-visibility: hidden;
  pointer-events: none;
}

.cube-decal img {
  width: 78%;
  height: 72%;
  object-fit: contain;
  filter: invert(1) brightness(1.6) drop-shadow(0 0 8px rgba(255, 255, 255, 0.72))
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.48));
  mix-blend-mode: screen;
  opacity: 0.9;
}

.cube-front {
  transform: translateZ(calc(var(--s) / 2));
}

.cube-back {
  transform: rotateY(180deg) translateZ(calc(var(--s) / 2));
}

.cube-right {
  transform: rotateY(90deg) translateZ(calc(var(--s) / 2));
  filter: brightness(0.82);
}

.cube-left {
  transform: rotateY(-90deg) translateZ(calc(var(--s) / 2));
  filter: brightness(0.52);
}

.cube-top {
  transform: rotateX(90deg) translateZ(calc(var(--s) / 2));
  filter: brightness(1.26);
}

.cube-bottom {
  transform: rotateX(-90deg) translateZ(calc(var(--s) / 2));
  filter: brightness(0.34);
}

@keyframes propFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotateZ(0deg);
  }

  50% {
    transform: translate3d(0, -8px, 0) rotateZ(0.5deg);
  }
}

.hero-media {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 16px;
  margin-top: 72px;
}

.hero-media img {
  width: 100%;
}

.hero-media img:last-child {
  object-position: top left;
}

.visual-orb {
  display: none;
}

.panel {
  padding: 108px 0;
  border-bottom: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.65fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.35;
}

.how-wrap,
.split-grid,
.founder-grid,
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.5fr);
  gap: 40px;
}

.how-panel,
.quick-points,
.card,
.list-card,
.faq-item,
.final-cta-box,
.flow-step,
.timeline-item,
.case-template,
.metric-placeholder,
.form-shell,
.booking-card {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 0;
  box-shadow: none;
}

.how-panel,
.quick-points,
.list-card,
.final-cta-box,
.form-shell,
.booking-card,
.case-template {
  padding: 28px;
}

.progress-track {
  height: 2px;
  margin-bottom: 24px;
  background: var(--line-strong);
  overflow: hidden;
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
}

.step-stack {
  display: grid;
  gap: 0;
}

.step-card {
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transform-origin: left center;
}

.step-card:last-child {
  border-bottom: 0;
}

.step-index {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.step-card p,
.quick-points li,
.card p,
.card li,
.list-card li,
.timeline-item p,
.case-template li,
.booking-card p,
.founder-copy p,
.human-copy p,
.portrait-card figcaption,
.dashboard-copy p,
.flow-list span,
.dashboard-main-shot figcaption,
.dashboard-shot-grid figcaption {
  color: var(--muted);
}

.quick-points ul,
.card ul,
.list-card ul,
.case-template ul,
.checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 18px;
}

.cards-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.services-grid .card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto minmax(92px, 1fr) auto;
  gap: 10px;
  align-items: start;
  min-height: clamp(360px, 34vw, 440px);
  padding: clamp(30px, 4vw, 48px);
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.services-grid .card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: clamp(300px, 24vw, 360px);
}

.services-grid .icon-pill {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 0;
}

.services-grid h3 {
  grid-column: 1;
  grid-row: 2;
  max-width: 560px;
  margin: 0;
  font-size: clamp(34px, 3.25vw, 54px);
  line-height: 0.98;
}

.services-grid p {
  grid-column: 1;
  grid-row: 3;
  align-self: center;
  max-width: 680px;
  margin: 0;
  font-size: 19px;
  line-height: 1.45;
}

.services-grid ul {
  grid-column: 1;
  grid-row: 4;
  max-width: 680px;
  margin-top: 10px;
  padding-left: 18px;
}

.section-footnote {
  max-width: 980px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.card,
.flow-step,
.timeline-item,
.metric-placeholder {
  padding: 28px;
}

.card h3,
.list-card h2,
.quick-points h3,
.form-shell h2,
.booking-card h3,
.founder-copy h2,
.human-copy h2,
.dashboard-copy h3 {
  line-height: 1.08;
}

.list-card h2 {
  font-size: clamp(34px, 4.4vw, 64px);
  overflow-wrap: anywhere;
}

.founder-grid {
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: stretch;
}

.portrait-card {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--panel);
}

.portrait-card img {
  width: 100%;
  height: clamp(420px, 48vw, 640px);
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.18) contrast(1.05) brightness(0.92);
}

.portrait-card figcaption {
  padding: 13px 14px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-copy,
.human-copy {
  align-self: center;
}

.founder-copy p,
.human-copy p {
  max-width: 980px;
  margin: 0;
  font-size: 20px;
  line-height: 1.55;
}

.founder-copy p + p,
.human-copy p + p {
  margin-top: 18px;
}

.human-copy h2 {
  max-width: 980px;
}

.dashboard-panel {
  background: #060606;
}

.dashboard-showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.dashboard-copy {
  position: sticky;
  top: calc(var(--nav-h) + 28px);
}

.dashboard-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.4vw, 74px);
}

.dashboard-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.dashboard-copy p + p {
  margin-top: 16px;
}

.flow-list {
  display: grid;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.flow-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.flow-list strong {
  color: var(--accent);
  font-size: 12px;
}

.flow-list span {
  font-size: 16px;
}

.dashboard-note {
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}

.dashboard-visual {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.dashboard-main-shot {
  margin: 0;
}

.dashboard-main-shot img,
.dashboard-shot-grid img {
  width: 100%;
  object-fit: cover;
  object-position: top left;
  border: 1px solid var(--line-strong);
  background: var(--black);
}

.dashboard-main-shot img {
  aspect-ratio: 16 / 9;
}

.dashboard-shot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-thumb {
  display: grid;
  gap: 10px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.dashboard-thumb:hover,
.dashboard-thumb.is-active {
  border-color: var(--ink);
  color: var(--ink);
}

.dashboard-thumb.is-active {
  background: rgba(255, 255, 255, 0.04);
}

.dashboard-thumb img {
  aspect-ratio: 1 / 1;
  border: 0;
}

.dashboard-thumb span {
  padding: 0 10px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-main-shot figcaption {
  margin-top: 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-crm {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 340px);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  margin-top: clamp(46px, 6vw, 76px);
  padding-top: clamp(28px, 4vw, 46px);
  border-top: 1px solid var(--line);
}

.mobile-crm-copy h3 {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 0.98;
}

.mobile-crm-copy p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.phone-preview-shell {
  position: relative;
  display: flex;
  justify-content: center;
  overflow: visible;
  border: 0;
  background: transparent;
}

.phone-preview-stage {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
  perspective: none;
}

.iphone-device {
  position: relative;
  width: min(306px, 31vw);
  aspect-ratio: 430 / 818;
  margin: 0;
  padding: 6px;
  border: 1px solid #3a3a3a;
  border-radius: 40px;
  background:
    linear-gradient(135deg, #242424, #050505 44%, #3a3a3a 76%, #111),
    #050505;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.08);
  transform: none;
}

.iphone-device::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 36px;
  pointer-events: none;
}

.iphone-side-button {
  position: absolute;
  width: 2px;
  border-radius: 3px;
  background: #2d2d2d;
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.18);
}

.iphone-side-button--top {
  left: -3px;
  top: 17%;
  height: 38px;
}

.iphone-side-button--middle {
  left: -3px;
  top: 26%;
  height: 68px;
}

.iphone-side-button--right {
  right: -3px;
  top: 28%;
  height: 78px;
}

.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid #050505;
  border-radius: 34px;
  background: #1c2431;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    inset 0 0 42px rgba(0, 0, 0, 0.86);
}

.iphone-island {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 4;
  width: 86px;
  height: 24px;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.iphone-dashboard-shot {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: none;
  height: calc(100% + 3px);
  object-fit: fill;
  object-position: top center;
  opacity: 0.96;
  transform: translateX(-50%);
}

.icon-pill {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.list-card.bad-fit {
  background: #101010;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 22px;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  color: var(--accent);
}

.faq-answer {
  height: 0;
  display: none;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.faq-answer p {
  margin: 0;
  padding: 20px 0 26px;
  color: var(--muted);
  font-size: 17px;
}

.final-cta {
  padding: 118px 0;
}

.final-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 40px;
  align-items: end;
  background: var(--white);
  color: var(--black);
}

.final-cta-box h2 {
  max-width: 900px;
}

.final-cta-box p {
  margin: 0;
  color: #555;
  font-size: 20px;
}

.final-cta-box .button-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.final-cta-box .button-ghost {
  color: #222;
  border-color: #b7b7b7;
}

.page-footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links a,
.footer-note {
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
}

.page-band {
  padding: 112px 0 72px;
  border-bottom: 1px solid var(--line);
}

.page-band__box {
  max-width: 1080px;
  margin-left: 0;
}

.page-band p {
  color: var(--muted);
}

.flow-grid,
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.flow-step strong {
  display: block;
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 24px;
}

.checklist {
  max-width: 980px;
  color: var(--muted);
  font-size: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 14px 12px;
  background: var(--black);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--accent);
  border-color: var(--accent);
}

textarea {
  min-height: 136px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 18px;
}

.small-copy {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .section-head,
  .how-wrap,
  .dashboard-showcase,
  .mobile-crm,
  .founder-grid,
  .split-grid,
  .contact-wrap,
  .final-cta-box,
  .flow-grid,
  .timeline-grid,
  .cards-grid,
  .metrics-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    width: min(1460px, calc(100vw - 56px));
    margin-left: 28px;
    margin-right: auto;
    min-height: auto;
  }

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

  .hero-prop {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 700px);
    height: clamp(300px, 58vw, 500px);
    margin: 12px 0 0 auto;
    opacity: 0.86;
  }

  .hero-card,
  .page-band__box {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
    padding-top: 28px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
    border-top: 1px solid var(--line);
  }

  .signal {
    padding: 18px 0;
    margin-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal:last-child {
    border-bottom: 0;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .dashboard-copy {
    position: static;
  }

  .dashboard-visual {
    margin-top: 0;
  }

  .mobile-crm-copy {
    max-width: 760px;
  }

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

@media (max-width: 860px) {
  :root {
    --nav-h: 68px;
  }

  .container {
    width: min(100vw - 28px, 1460px);
  }

  .brand-logo {
    height: 24px;
  }

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

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 5, 5, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a,
  .nav-links .button {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
  }

  .page-hero,
  .page-band {
    padding: 76px 0 52px;
  }

  .hero-grid {
    width: min(1460px, calc(100vw - 56px));
    margin-left: 28px;
  }

  h1 {
    font-size: clamp(48px, 13.5vw, 82px);
  }

  h2 {
    font-size: clamp(38px, 12vw, 72px);
  }

  .lead {
    font-size: 21px;
  }

  .panel,
  .final-cta {
    padding: 72px 0;
  }

  .hero-media img {
    height: 220px;
  }

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

  .mobile-crm {
    margin-top: 42px;
    padding-top: 30px;
  }

  .mobile-crm-copy h3 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .mobile-crm-copy p {
    font-size: 17px;
  }

  .phone-preview-shell {
    justify-content: center;
  }

  .phone-preview-stage {
    place-items: center;
  }

  .iphone-device {
    width: min(272px, 72vw);
    border-radius: 38px;
    transform: none;
  }

  .iphone-screen {
    border-radius: 32px;
  }

  .portrait-card {
    width: min(100%, 420px);
  }

  .portrait-card img {
    height: min(520px, 125vw);
  }

  .founder-copy p,
  .human-copy p {
    font-size: 18px;
  }

  .trust-row {
    display: inline-grid;
  }

  .trust-chip {
    margin: 0;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-chip:last-child {
    border-bottom: 0;
  }

  .services-grid .card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    min-height: 0;
    padding: 28px 0;
  }

  .services-grid,
  .services-grid .card:last-child:nth-child(odd) {
    grid-template-columns: 1fr;
  }

  .services-grid {
    border-left: 0;
  }

  .services-grid .icon-pill,
  .services-grid h3,
  .services-grid p,
  .services-grid ul {
    grid-column: 1;
    grid-row: auto;
  }

  .services-grid h3 {
    max-width: none;
    font-size: clamp(30px, 10vw, 44px);
  }

  .services-grid p,
  .services-grid ul {
    max-width: none;
  }

  .card,
  .flow-step,
  .timeline-item,
  .metric-placeholder,
  .how-panel,
  .quick-points,
  .list-card,
  .final-cta-box,
  .form-shell,
  .booking-card,
  .case-template {
    padding: 20px;
  }
}

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