:root {
  --brand: #2563eb;
  --brand-soft: #93c5fd;
  --ink: #f8fafc;
  --ink-muted: #cbd5e1;
  --ink-faint: #7e8798;
  --bg: #030405;
  --panel: rgba(11, 12, 14, 0.78);
  --panel-strong: rgba(247, 248, 250, 0.96);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.26);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #030405;
  background-size: 44px 44px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(115deg, rgba(37, 99, 235, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%),
    linear-gradient(90deg, rgba(3, 4, 5, 0.1), rgba(3, 4, 5, 0.9) 72%),
    linear-gradient(0deg, rgba(3, 4, 5, 0.18), rgba(3, 4, 5, 0.88));
}

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

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

button,
input {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(3, 4, 5, 0.76);
  backdrop-filter: blur(18px);
}

.joina-logo {
  display: inline-block;
  line-height: 0;
}

.joina-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.joina-logo--nav {
  width: 88px;
}

.brand-mark {
  justify-self: start;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
  border-radius: 999px;
}

.site-nav a,
.header-login,
.header-cta,
.header-signup,
.ghost-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  white-space: nowrap;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 0 14px;
  color: var(--ink-muted);
  font-size: 13px;
  transition: color 160ms ease, background 160ms ease;
}

.header-login {
  padding: 0 8px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 13px;
  font-weight: 680;
  transition: color 160ms ease;
}

.header-login:hover {
  color: #ffffff;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.header-signup,
.ghost-button {
  padding: 0 16px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-signup {
  border-color: rgba(147, 197, 253, 0.46);
  color: #ffffff;
  background: linear-gradient(180deg, #2f6ef3, #1d4ed8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 28px rgba(37, 99, 235, 0.24);
  font-weight: 760;
}

.header-cta,
.header-signup {
  font-size: 13px;
}

.primary-button {
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(147, 197, 253, 0.46);
  color: #ffffff;
  background: linear-gradient(180deg, #2f6ef3, #1d4ed8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 34px rgba(37, 99, 235, 0.28);
  font-weight: 760;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.ghost-button {
  min-height: 46px;
  padding: 0 18px;
  color: var(--ink-muted);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.primary-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 22px 42px rgba(37, 99, 235, 0.36);
}

.ghost-button:hover,
.header-cta:hover {
  color: #ffffff;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.header-signup:hover {
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 34px rgba(37, 99, 235, 0.34);
}

main {
  position: relative;
  z-index: 3;
}

.hero {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 72px);
  overflow: visible;
  isolation: isolate;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 78px 0 88px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-visual {
  position: absolute;
  top: 78px;
  right: -20px;
  bottom: 54px;
  z-index: 0;
  width: min(780px, 54vw);
  overflow: hidden;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0.52;
  filter: saturate(0.78) contrast(1.04) brightness(0.96);
  background:
    linear-gradient(90deg, #030405 0%, rgba(3, 4, 5, 0.64) 26%, rgba(3, 4, 5, 0.04) 58%, rgba(3, 4, 5, 0.78) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.86), rgba(3, 4, 5, 0.02) 36%, rgba(3, 4, 5, 0.88) 100%),
    url("./assets/joinery-breakthrough-hero.jpg") center / cover no-repeat;
  -webkit-mask-image: radial-gradient(ellipse at 58% 48%, #000 0%, #000 48%, rgba(0, 0, 0, 0.68) 64%, transparent 84%);
  mask-image: radial-gradient(ellipse at 58% 48%, #000 0%, #000 48%, rgba(0, 0, 0, 0.68) 64%, transparent 84%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 44% 38%, rgba(147, 197, 253, 0.2), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  mix-blend-mode: screen;
  opacity: 0.48;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--brand-soft);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.pricing-title {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: 78px;
  font-weight: 860;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  color: rgba(248, 250, 252, 0.76);
  font-size: 22px;
  line-height: 1.45;
}

.hero-statement {
  max-width: 820px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 78px;
  font-weight: 820;
  line-height: 0.96;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  position: absolute;
  right: 30px;
  bottom: 42px;
  z-index: 1;
  width: min(760px, 48vw);
  aspect-ratio: 1.42;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #050607;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(37, 99, 235, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 42px 0 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(3, 4, 5, 0.12), transparent 46%);
}

.floating-metric {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(3, 4, 5, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.floating-metric span {
  color: var(--ink-faint);
  font-size: 11px;
}

.floating-metric strong {
  font-size: 18px;
}

.metric-one {
  right: 18px;
  top: 68px;
}

.metric-two {
  left: 18px;
  bottom: 18px;
}

.story-hero-panel {
  background:
    radial-gradient(circle at 50% 48%, rgba(37, 99, 235, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #050607;
}

.story-hero-panel::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.5;
}

.story-paths {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(147, 197, 253, 0.52);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 10 13;
  animation: path-drift 9s linear infinite;
}

.story-node,
.story-core {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(7, 9, 12, 0.86);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.story-node {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.story-node > strong {
  color: #ffffff;
  font-size: 15px;
}

.story-node--pdf {
  left: 36px;
  top: 142px;
  width: 172px;
}

.story-node--cabinet {
  right: 42px;
  top: 84px;
  width: 236px;
}

.story-node--outputs {
  right: 44px;
  bottom: 56px;
  width: 230px;
}

.story-core {
  left: 50%;
  top: 50%;
  width: 154px;
  height: 154px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.story-core::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed rgba(147, 197, 253, 0.5);
  border-radius: 50%;
  animation: slow-spin 18s linear infinite;
}

.story-core strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
}

.story-core em {
  position: absolute;
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid rgba(147, 197, 253, 0.32);
  border-radius: 999px;
  color: var(--brand-soft);
  background: rgba(37, 99, 235, 0.14);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 22px;
}

.story-core em:nth-of-type(1) {
  left: -28px;
  top: 36px;
}

.story-core em:nth-of-type(2) {
  right: -22px;
  top: 54px;
}

.story-core em:nth-of-type(3) {
  bottom: 24px;
}

.story-tag {
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pdf-vector {
  position: relative;
  width: 88px;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
}

.pdf-vector span {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 30px;
  border-left: 1px solid rgba(147, 197, 253, 0.42);
  border-bottom: 1px solid rgba(147, 197, 253, 0.42);
  background: rgba(147, 197, 253, 0.14);
}

.pdf-vector i {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.pdf-vector i:nth-of-type(1) {
  bottom: 30px;
}

.pdf-vector i:nth-of-type(2) {
  bottom: 22px;
  right: 30px;
}

.pdf-vector i:nth-of-type(3) {
  bottom: 14px;
  right: 42px;
}

.pdf-vector strong {
  color: #ffffff;
  font-size: 18px;
  letter-spacing: 0;
}

.cabinet-vector {
  width: 100%;
  height: auto;
}

.cabinet-vector rect,
.cabinet-vector path,
.cabinet-vector circle {
  fill: none;
  stroke: rgba(248, 250, 252, 0.84);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.cabinet-vector circle {
  fill: var(--brand);
  stroke: none;
}

.output-stack {
  position: relative;
  min-height: 132px;
}

.output-sheet {
  position: absolute;
  display: block;
  width: 116px;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
}

.output-sheet--quote {
  left: 0;
  top: 0;
  display: grid;
  align-content: end;
  gap: 7px;
  padding: 14px;
}

.output-sheet--quote i {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
}

.output-sheet--quote b {
  color: #ffffff;
  font-size: 18px;
}

.output-sheet--drawing {
  right: 16px;
  top: 18px;
  background: rgba(37, 99, 235, 0.12);
}

.output-sheet--drawing svg {
  width: 100%;
  height: 100%;
  padding: 12px;
}

.output-sheet--drawing rect,
.output-sheet--drawing path {
  fill: none;
  stroke: rgba(248, 250, 252, 0.72);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

@keyframes path-drift {
  to {
    stroke-dashoffset: -92;
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

.signal-strip {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.signal-strip div {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 20px;
  background: rgba(6, 7, 9, 0.88);
}

.signal-strip strong {
  font-size: 24px;
}

.signal-strip span {
  color: var(--ink-muted);
  line-height: 1.45;
}

.workflow-section,
.supplier-section,
.labour-section,
.property-section,
.workbook-section,
.walkthrough-agenda,
.walkthrough-process,
.product-section,
.drawing-section,
.calculator-section,
.pricing-inclusions,
.pricing-calculator,
.pricing-faq,
.final-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.workflow-section {
  padding: 132px 0 72px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.66fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 32px;
}

h2 {
  margin-bottom: 0;
  font-size: 54px;
  line-height: 1.02;
  font-weight: 840;
  letter-spacing: 0;
}

.section-head p,
.product-copy p,
.calculator-layout p,
.final-cta p {
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.62;
}

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

.workflow-card {
  position: relative;
  min-height: 278px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.workflow-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--brand);
  opacity: 0;
  transition: opacity 180ms ease;
}

.workflow-card.active {
  border-color: rgba(147, 197, 253, 0.38);
  background: rgba(255, 255, 255, 0.07);
}

.workflow-card.active::after {
  opacity: 1;
}

.step-index {
  display: block;
  margin-bottom: 96px;
  color: rgba(147, 197, 253, 0.86);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
}

.workflow-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.workflow-card p {
  color: rgba(248, 250, 252, 0.62);
  line-height: 1.56;
}

.supplier-section {
  position: relative;
  padding: 104px 0 84px;
}

.supplier-section::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  z-index: -1;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 76% 34%, rgba(37, 99, 235, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.018);
}

.supplier-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.72fr);
  gap: 44px;
  align-items: center;
}

.supplier-copy,
.supplier-panel,
.labour-panel,
.labour-copy,
.workbook-panel,
.workbook-copy {
  min-width: 0;
}

.supplier-copy h2 {
  max-width: 780px;
  margin-bottom: 22px;
}

.supplier-copy p:not(.section-kicker) {
  max-width: 760px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.64;
}

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

.supplier-panel {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 24px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.026)),
    #050607;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.supplier-panel--screenshot {
  display: block;
  min-height: 0;
  padding: 14px;
}

.supplier-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 44% 16%, rgba(147, 197, 253, 0.16), transparent 32%);
  background-size: 32px 32px, 32px 32px, auto;
}

.supplier-screenshot-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 1520 / 1240;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 7px;
  background: #030405;
}

.supplier-screenshot-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: invert(1) hue-rotate(180deg) saturate(1.08) brightness(1.02) contrast(1.06);
  opacity: 0.96;
}

.supplier-logo-strip,
.pricing-engine-flow,
.engine-total {
  position: relative;
  z-index: 1;
}

.supplier-logo-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px 34px;
  max-width: 690px;
  margin-top: 34px;
}

.supplier-logo {
  display: block;
  width: auto;
  max-width: 100%;
  flex: 0 1 auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.32));
  opacity: 0.9;
}

.supplier-logo--laminex {
  height: 42px;
  max-width: 238px;
}

.supplier-logo--polytec {
  height: 35px;
  max-width: 190px;
}

.supplier-logo--lincoln {
  height: 48px;
  max-width: 300px;
}

.pricing-engine-flow {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.pricing-engine-flow div,
.engine-total {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(3, 4, 5, 0.64);
}

.pricing-engine-flow span,
.engine-total span {
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-engine-flow strong {
  font-size: 18px;
}

.engine-total {
  margin-top: 14px;
  border-color: rgba(37, 99, 235, 0.52);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.22), rgba(255, 255, 255, 0.045));
}

.engine-total strong {
  font-size: 34px;
  line-height: 1.05;
}

.labour-section {
  padding: 104px 0 116px;
}

.labour-layout {
  display: grid;
  grid-template-columns: minmax(460px, 0.92fr) minmax(0, 0.82fr);
  gap: 46px;
  align-items: center;
}

.labour-panel {
  position: relative;
  overflow: hidden;
  min-height: 458px;
  padding: 14px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.024)),
    #050607;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.labour-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 24% 16%, rgba(147, 197, 253, 0.16), transparent 34%);
  background-size: 32px 32px, 32px 32px, auto;
}

.labour-screenshot-frame {
  position: relative;
  z-index: 1;
  height: 430px;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 7px;
  background: #030405;
}

.labour-screenshot-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  filter: invert(1) hue-rotate(180deg) saturate(1.08) brightness(1.02) contrast(1.06);
  opacity: 0.96;
}

.labour-copy h2 {
  margin-bottom: 22px;
}

.labour-copy p:not(.section-kicker) {
  max-width: 640px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.64;
}

.labour-summary-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.labour-summary-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.labour-summary-grid span {
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.labour-summary-grid strong {
  font-size: 18px;
}

.property-section {
  position: relative;
  padding: 82px 0 72px;
}

.property-section::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  z-index: -1;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 22% 34%, rgba(37, 99, 235, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.016);
}

.property-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 0.95fr);
  gap: 46px;
  align-items: center;
}

.property-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
}

.property-copy p:not(.section-kicker) {
  max-width: 650px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.64;
}

.property-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.property-summary-grid div {
  display: grid;
  gap: 6px;
  min-height: 104px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.property-summary-grid span,
.property-address-card span,
.property-metrics span,
.property-calculation span,
.property-distance-badge span {
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.property-summary-grid strong {
  font-size: 17px;
  line-height: 1.2;
}

.property-panel {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.024)),
    #050607;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.property-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 70% 18%, rgba(147, 197, 253, 0.18), transparent 34%);
  background-size: 32px 32px, 32px 32px, auto;
}

.property-window {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 7px;
  background: rgba(3, 4, 5, 0.94);
}

.property-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 38px;
}

.property-window-top strong {
  font-size: 18px;
}

.property-window-top span {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.18);
  font-size: 11px;
  font-weight: 860;
  text-transform: uppercase;
}

.property-address-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.036)),
    rgba(255, 255, 255, 0.04);
}

.property-address-card strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
}

.property-address-card em {
  color: rgba(248, 250, 252, 0.58);
  font-size: 13px;
  font-style: normal;
}

.property-map-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 22%, rgba(37, 99, 235, 0.22), transparent 34%),
    radial-gradient(circle at 20% 72%, rgba(147, 197, 253, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.035);
}

.property-map-card svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-grid {
  fill: none;
  stroke: rgba(248, 250, 252, 0.07);
  stroke-width: 1;
}

.map-road {
  fill: none;
  stroke: rgba(248, 250, 252, 0.16);
  stroke-width: 8;
  stroke-linecap: round;
}

.map-route {
  fill: none;
  stroke: url(#property-route-gradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
  animation: route-flow 10s linear infinite;
}

.map-point {
  fill: #030405;
  stroke-width: 5;
}

.map-point--factory {
  stroke: rgba(147, 197, 253, 0.8);
}

.map-point--site {
  stroke: rgba(37, 99, 235, 0.95);
}

.property-map-card text {
  fill: rgba(248, 250, 252, 0.7);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 820;
}

.property-distance-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 3px;
  min-width: 156px;
  padding: 14px;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 8px;
  background: rgba(3, 4, 5, 0.78);
  backdrop-filter: blur(14px);
}

.property-distance-badge strong {
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
}

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

.property-metrics div {
  display: grid;
  gap: 5px;
  min-height: 82px;
  align-content: center;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.property-metrics strong {
  font-size: 15px;
  line-height: 1.22;
}

.property-calculation {
  display: grid;
  gap: 8px;
}

.property-calculation div {
  display: grid;
  grid-template-columns: minmax(130px, 0.6fr) minmax(170px, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.property-calculation strong {
  color: rgba(248, 250, 252, 0.76);
  font-size: 14px;
}

.property-calculation b {
  color: #ffffff;
  font-size: 15px;
  text-align: right;
  white-space: nowrap;
}

.property-calculation .property-calculation-total {
  grid-template-columns: minmax(130px, 0.7fr) auto;
  border-color: rgba(37, 99, 235, 0.52);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(255, 255, 255, 0.045));
}

.property-calculation-total strong {
  color: #ffffff;
  font-size: 23px;
  text-align: right;
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -96;
  }
}

.workbook-section {
  padding: 104px 0 122px;
}

.workbook-layout {
  display: grid;
  grid-template-columns: minmax(640px, 1.08fr) minmax(0, 0.68fr);
  gap: 38px;
  align-items: center;
}

.workbook-panel {
  position: relative;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.024)),
    #050607;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.workbook-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 30% 18%, rgba(147, 197, 253, 0.16), transparent 34%);
  background-size: 32px 32px, 32px 32px, auto;
}

.workbook-window {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 7px;
  background: rgba(3, 4, 5, 0.94);
}

.workbook-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
}

.workbook-window-top div {
  display: grid;
  gap: 4px;
}

.workbook-window-top span,
.workbook-row--head span,
.workbook-notes span,
.workbook-summary-grid span {
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.workbook-window-top strong {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.1;
}

.workbook-window-top b {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(147, 197, 253, 0.34);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.18);
  font-size: 11px;
  text-transform: uppercase;
}

.workbook-table {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.workbook-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(138px, 1.08fr) minmax(112px, 0.92fr) minmax(118px, 0.86fr) minmax(74px, auto);
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.workbook-row > *,
.workbook-notes > *,
.workbook-summary-grid > * {
  min-width: 0;
}

.workbook-row--head {
  min-height: 36px;
  padding-block: 8px;
  background: rgba(37, 99, 235, 0.12);
}

.workbook-row strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
}

.workbook-row span {
  color: rgba(248, 250, 252, 0.66);
  font-size: 12px;
  line-height: 1.35;
}

.workbook-row b {
  color: #ffffff;
  font-size: 14px;
  text-align: right;
  white-space: nowrap;
}

.workbook-row--total {
  border-color: rgba(37, 99, 235, 0.52);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(255, 255, 255, 0.045));
}

.workbook-row--total b {
  font-size: 21px;
}

.workbook-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.workbook-notes div,
.workbook-summary-grid div {
  display: grid;
  gap: 6px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.workbook-notes strong,
.workbook-summary-grid strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.22;
}

.workbook-copy h2 {
  max-width: 720px;
  margin-bottom: 22px;
}

.workbook-copy p:not(.section-kicker) {
  max-width: 650px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.64;
}

.workbook-summary-grid {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.product-section {
  position: relative;
  isolation: isolate;
  padding: 72px 0;
}

.product-section::before {
  content: "";
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 0;
  width: min(620px, 46vw);
  height: 470px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0.2;
  filter: saturate(0.62) contrast(1.08) brightness(0.62);
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.98), rgba(3, 4, 5, 0.42) 48%, rgba(3, 4, 5, 0.9)),
    linear-gradient(180deg, rgba(3, 4, 5, 0.72), rgba(3, 4, 5, 0.12) 44%, rgba(3, 4, 5, 0.9)),
    url("./assets/joinery-breakthrough-product.jpg") center / cover no-repeat;
  -webkit-mask-image: radial-gradient(ellipse at 60% 48%, #000 0%, #000 44%, rgba(0, 0, 0, 0.62) 62%, transparent 84%);
  mask-image: radial-gradient(ellipse at 60% 48%, #000 0%, #000 44%, rgba(0, 0, 0, 0.62) 62%, transparent 84%);
}

.product-section > * {
  position: relative;
  z-index: 1;
}

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

.hit-card {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hit-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: var(--brand);
  opacity: 0;
  transition: opacity 180ms ease;
}

.hit-index {
  position: absolute;
  left: 22px;
  top: 22px;
  color: rgba(147, 197, 253, 0.86);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
}

.hit-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.hit-card p {
  color: rgba(248, 250, 252, 0.62);
  line-height: 1.56;
}

.drawing-section {
  width: min(1480px, calc(100% - 40px));
  padding: 72px 0;
}

.drawing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: 18px;
  align-items: stretch;
}

.drawing-showcase {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #050607;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.drawing-showcase-head {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.drawing-showcase-title {
  display: grid;
  gap: 4px;
}

.drawing-showcase-title span {
  color: var(--brand-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.drawing-showcase-title strong {
  color: #ffffff;
}

.drawing-play-button {
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border-color: rgba(147, 197, 253, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 0 rgba(37, 99, 235, 0.38),
    0 0 20px rgba(37, 99, 235, 0.16);
  animation: drawing-play-glow 2.4s ease-in-out infinite;
  cursor: pointer;
}

.drawing-play-button[aria-pressed="true"] {
  color: #ffffff;
  border-color: rgba(147, 197, 253, 0.48);
  background: rgba(37, 99, 235, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 24px rgba(37, 99, 235, 0.28);
  animation: none;
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
}

@keyframes drawing-play-glow {
  0%,
  100% {
    border-color: rgba(147, 197, 253, 0.28);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 0 rgba(37, 99, 235, 0.28),
      0 0 18px rgba(37, 99, 235, 0.16);
  }

  50% {
    border-color: rgba(147, 197, 253, 0.62);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 0 0 5px rgba(37, 99, 235, 0.16),
      0 0 34px rgba(37, 99, 235, 0.38);
  }
}

.drawing-frame {
  position: relative;
  flex: 1 1 auto;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  padding: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(37, 99, 235, 0.14), transparent 46%),
    #030405;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.drawing-frame.is-playing {
  overflow: hidden;
  padding: 0;
}

.drawing-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 6px;
}

.drawing-inverted {
  margin: auto;
  width: min(100%, 1100px);
  max-height: none;
  object-fit: contain;
  border-radius: 4px;
  opacity: 0.96;
  filter: invert(1) grayscale(1) brightness(1.55) contrast(1.16);
}

.drawing-action-video {
  margin: auto;
  width: min(100%, 1100px);
  aspect-ratio: 2702 / 1828;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  background: #030405;
  filter: invert(1) grayscale(1) brightness(1.2) contrast(1.24);
  opacity: 0.96;
}

.drawing-frame.is-playing .drawing-action-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  aspect-ratio: auto;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.drawing-explainer {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(147, 197, 253, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.024)),
    #050607;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.drawing-explainer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 18% 12%, rgba(37, 99, 235, 0.2), transparent 38%);
  background-size: 34px 34px, 34px 34px, auto;
}

.drawing-explainer > * {
  position: relative;
  z-index: 1;
}

.drawing-explainer h3 {
  max-width: 420px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.02;
}

.drawing-explainer p:not(.section-kicker) {
  max-width: 430px;
  color: rgba(248, 250, 252, 0.66);
  font-size: 16px;
  line-height: 1.62;
}

.drawing-automation-list {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

.drawing-automation-list div,
.drawing-pricing-note {
  display: grid;
  gap: 6px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(3, 4, 5, 0.64);
}

.drawing-automation-list span,
.drawing-pricing-note span {
  color: var(--brand-soft);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.drawing-automation-list strong {
  font-size: 17px;
}

.drawing-pricing-note {
  margin-top: auto;
  border-color: rgba(37, 99, 235, 0.48);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(255, 255, 255, 0.045));
}

.drawing-pricing-note strong {
  font-size: 22px;
  line-height: 1.12;
}

.drawing-actions {
  margin-top: 18px;
}

.drawings-page {
  padding-bottom: 1px;
}

.drawings-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.48fr);
  gap: 48px;
  align-items: center;
  margin: 0 auto;
  padding: 78px 0 82px;
}

.drawings-copy {
  min-width: 0;
  max-width: 820px;
}

.drawings-copy h1 {
  max-width: 860px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 76px;
  font-weight: 880;
  line-height: 0.98;
  letter-spacing: 0;
}

.drawings-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.62;
}

.drawings-signal-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.026)),
    #050607;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.drawings-signal-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 25% 10%, rgba(37, 99, 235, 0.2), transparent 38%);
  background-size: 32px 32px, 32px 32px, auto;
}

.drawings-signal-panel div {
  position: relative;
  z-index: 1;
  min-height: 118px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(3, 4, 5, 0.58);
}

.drawings-signal-panel span {
  color: var(--brand-soft);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 900;
}

.drawings-signal-panel strong {
  color: #ffffff;
  font-size: 19px;
  line-height: 1.18;
}

.drawings-action-stage {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 12px 0 92px;
}

.drawings-action-head {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) auto;
  gap: 34px;
  align-items: end;
  margin-bottom: 24px;
}

.drawings-action-head h2 {
  max-width: 820px;
  margin-bottom: 0;
}

.drawings-video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 52% 42%, rgba(37, 99, 235, 0.13), transparent 48%),
    #030405;
  background-size: 34px 34px, 34px 34px, auto, auto;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.56),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.drawings-video-shell::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 6px;
}

.drawings-live-note {
  position: absolute;
  left: clamp(32px, 34vw, 430px);
  bottom: 32px;
  z-index: 5;
  display: grid;
  gap: 6px;
  max-width: min(420px, calc(100% - 64px));
  padding: 14px 16px;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(3, 4, 5, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 18px 42px rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.drawings-price-connector {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.drawings-price-connector path {
  fill: none;
  stroke: rgba(147, 197, 253, 0.86);
  stroke-width: 0.28;
  stroke-linecap: round;
  stroke-dasharray: 1 1.35;
  filter: drop-shadow(0 0 5px rgba(37, 99, 235, 0.95));
}

.connector-path-mobile {
  display: none;
}

.drawings-project-total-highlight {
  position: absolute;
  right: 11.8%;
  bottom: 1.7%;
  z-index: 4;
  width: clamp(78px, 8.8vw, 112px);
  height: clamp(24px, 2.8vw, 34px);
  border: 2px solid rgba(147, 197, 253, 0.92);
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.08);
  box-shadow:
    0 0 0 1px rgba(3, 4, 5, 0.68),
    0 0 28px rgba(37, 99, 235, 0.55),
    inset 0 0 18px rgba(37, 99, 235, 0.16);
  animation: project-total-pulse 2.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes project-total-pulse {
  0%,
  100% {
    border-color: rgba(147, 197, 253, 0.72);
    box-shadow:
      0 0 0 1px rgba(3, 4, 5, 0.68),
      0 0 18px rgba(37, 99, 235, 0.34),
      inset 0 0 14px rgba(37, 99, 235, 0.12);
  }

  50% {
    border-color: rgba(219, 234, 254, 0.98);
    box-shadow:
      0 0 0 1px rgba(3, 4, 5, 0.74),
      0 0 34px rgba(37, 99, 235, 0.82),
      0 0 64px rgba(147, 197, 253, 0.26),
      inset 0 0 22px rgba(37, 99, 235, 0.24);
  }
}

.drawings-live-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.drawings-live-note span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.72);
}

.drawings-live-note strong {
  font-size: 18px;
  line-height: 1.18;
}

.drawings-action-video {
  display: block;
  width: 100%;
  aspect-ratio: 2702 / 1828;
  object-fit: cover;
  object-position: center;
  background: #030405;
  filter: invert(1) grayscale(1) brightness(1.2) contrast(1.24);
  opacity: 0.96;
}

.production-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin: 76px 0 28px;
}

.production-section-head h2 {
  max-width: 980px;
}

.production-section-head p:not(.section-kicker) {
  max-width: 560px;
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.62;
}

.production-output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.production-output-card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    #050607;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.production-output-head {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
}

.production-output-head span {
  color: var(--brand-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.production-output-head strong {
  color: #ffffff;
}

.production-page-crop {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1040 / 620;
  min-height: 390px;
  height: auto;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 50% 44%, rgba(37, 99, 235, 0.12), transparent 42%),
    #030405;
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.production-page-crop::after {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-radius: 6px;
}

.production-page-crop--screenshot {
  display: flex;
  align-items: center;
  justify-content: center;
}

.production-output-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border: 1px solid rgba(147, 197, 253, 0.14);
  border-radius: 6px;
  filter: invert(1) grayscale(0.08) brightness(1.08) contrast(1.08);
  opacity: 0.95;
}

.production-output-image--nesting {
  object-position: center;
}

.production-output-image--cutlist {
  object-position: center top;
}

.product-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 620px;
  padding-right: 16px;
}

.product-copy h2 {
  margin-bottom: 22px;
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
  margin: 34px 0 18px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.tab-button {
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  color: var(--ink-muted);
  background: transparent;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

.tab-button.active {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.82);
}

.product-facts {
  display: grid;
  gap: 10px;
  padding-top: 10px;
  color: rgba(248, 250, 252, 0.68);
  line-height: 1.5;
}

.product-facts span {
  display: block;
  padding-left: 15px;
  border-left: 2px solid rgba(147, 197, 253, 0.55);
}

.product-visuals {
  position: relative;
  height: calc(100% - 42px);
  min-height: 578px;
}

.product-visual {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-visual.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.story-stage {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 46%, rgba(37, 99, 235, 0.22), transparent 35%),
    #050607;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.story-stage-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.5;
}

.story-visuals {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 620px;
}

.story-scene {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  padding: 28px;
}

.scene-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(248, 250, 252, 0.86);
}

.scene-label span {
  color: var(--brand-soft);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
}

.scene-label strong {
  max-width: 360px;
  text-align: right;
  font-size: 18px;
  line-height: 1.2;
}

.scene-visual {
  position: relative;
  min-height: 486px;
}

.large-pdf-card,
.drop-target-vector,
.extract-core,
.extract-token,
.cabinet-drag-card,
.drawing-brief-card,
.output-doc {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(7, 9, 12, 0.82);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.large-pdf-card {
  position: absolute;
  left: 24px;
  top: 54px;
  width: 210px;
  min-height: 286px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 16px;
  padding: 22px;
  animation: drag-float 4.8s ease-in-out infinite;
}

.large-pdf-card b,
.cabinet-drag-card b {
  color: #ffffff;
  font-size: 14px;
}

.pdf-vector--large {
  width: 124px;
  height: 156px;
}

.drag-arrow,
.cabinet-arrow {
  position: absolute;
  fill: none;
  stroke: rgba(147, 197, 253, 0.66);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10 12;
  animation: path-drift 8s linear infinite;
}

.drag-arrow {
  left: 214px;
  top: 116px;
  width: 260px;
}

.drop-target-vector {
  position: absolute;
  right: 38px;
  top: 96px;
  width: 204px;
  height: 204px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.drop-target-vector span {
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(147, 197, 253, 0.68);
  border-radius: 50%;
  animation: slow-spin 20s linear infinite;
}

.drop-target-vector strong {
  color: #ffffff;
  font-size: 34px;
}

.extraction-chips {
  position: absolute;
  left: 266px;
  right: 34px;
  bottom: 44px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.extraction-chips span,
.drawing-brief-card span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(147, 197, 253, 0.28);
  border-radius: 8px;
  color: rgba(248, 250, 252, 0.78);
  background: rgba(37, 99, 235, 0.1);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.scene-visual--extract {
  min-height: 486px;
}

.extract-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(147, 197, 253, 0.42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  animation: path-drift 10s linear infinite;
}

.extract-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 174px;
  height: 174px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
}

.extract-core span {
  position: absolute;
  inset: 20px;
  border: 1px dashed rgba(147, 197, 253, 0.52);
  border-radius: 50%;
  animation: slow-spin 18s linear infinite;
}

.extract-core strong {
  color: #ffffff;
  font-size: 30px;
}

.extract-token {
  position: absolute;
  z-index: 3;
  min-width: 128px;
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 0 14px;
  color: rgba(248, 250, 252, 0.84);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.token-a {
  left: 32px;
  top: 88px;
}

.token-b {
  right: 44px;
  top: 92px;
}

.token-c {
  left: 40px;
  bottom: 72px;
}

.token-d {
  right: 42px;
  bottom: 74px;
}

.token-e {
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
}

.cabinet-drag-card {
  position: absolute;
  left: 26px;
  top: 66px;
  width: 284px;
  display: grid;
  gap: 12px;
  padding: 18px;
  animation: drag-float 5.2s ease-in-out infinite;
}

.cabinet-vector--large {
  width: 100%;
}

.cabinet-arrow {
  left: 292px;
  top: 210px;
  width: 220px;
}

.drawing-brief-card {
  position: absolute;
  right: 38px;
  top: 96px;
  width: 232px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.scene-visual--outputs {
  display: grid;
  place-items: center;
}

.output-doc {
  position: absolute;
  width: 218px;
  min-height: 286px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
}

.output-doc span {
  color: var(--brand-soft);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.output-doc--quote {
  left: 72px;
  top: 80px;
  z-index: 2;
}

.output-doc--quote i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.output-doc--quote i:nth-of-type(2) {
  width: 72%;
}

.output-doc--quote i:nth-of-type(3) {
  width: 54%;
}

.output-doc--quote strong {
  margin-top: 56px;
  color: #ffffff;
  font-size: 34px;
}

.output-doc--drawing {
  right: 94px;
  top: 54px;
  width: 286px;
  min-height: 330px;
  background: rgba(37, 99, 235, 0.11);
}

.output-doc--drawing svg {
  width: 100%;
  height: 210px;
}

.output-doc--drawing rect,
.output-doc--drawing path,
.output-doc--drawing circle {
  fill: none;
  stroke: rgba(248, 250, 252, 0.78);
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.output-doc--drawing circle {
  fill: var(--brand);
  stroke: none;
}

.output-doc--back {
  right: 42px;
  top: 112px;
  z-index: 0;
  opacity: 0.52;
  transform: scale(0.9);
}

@keyframes drag-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
  }

  50% {
    transform: translate3d(10px, -8px, 0) rotate(1deg);
  }
}

.calculator-section {
  padding: 72px 0;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 40px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.calculator-layout h2 {
  margin-bottom: 20px;
}

.calculator {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(3, 4, 5, 0.62);
}

.range-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.range-head span,
.calc-output span {
  color: var(--ink-faint);
  font-size: 12px;
  text-transform: uppercase;
}

.range-head strong {
  font-size: 48px;
  line-height: 1;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--brand);
}

.calc-output {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.calc-output div {
  min-height: 118px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.calc-output strong {
  font-size: 30px;
}

.final-cta {
  position: relative;
  isolation: isolate;
  margin-bottom: 40px;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 64px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #050607;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.24;
  filter: saturate(0.62) contrast(1.08) brightness(0.64);
  transform: scale(1.04);
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.48) 50%, rgba(5, 6, 7, 0.96)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.22) 48%, rgba(5, 6, 7, 0.94)),
    url("./assets/joinery-breakthrough-cta.jpg") center / cover no-repeat;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(37, 99, 235, 0.18), transparent 36%),
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.final-cta > * {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  max-width: 820px;
  margin-bottom: 28px;
}

.site-footer {
  position: relative;
  z-index: 3;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    #050607;
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 28px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 32px;
}

.joina-logo--footer {
  width: 96px;
  flex: 0 0 auto;
}

.footer-brand-row p {
  max-width: 560px;
  margin: 0;
  color: rgba(248, 250, 252, 0.68);
  font-size: 15px;
  line-height: 1.55;
  text-align: right;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.18fr 1fr 1fr 0.96fr 0.86fr;
  gap: 38px;
  padding: 10px 0 42px;
}

.footer-columns nav {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.2;
}

.site-footer a {
  color: rgba(248, 250, 252, 0.62);
  font-size: 14px;
  line-height: 1.34;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-product-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-product-row strong {
  color: #ffffff;
  font-size: 15px;
}

.footer-product-row a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding-left: 18px;
  white-space: nowrap;
}

.footer-product-row a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.55);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  color: rgba(248, 250, 252, 0.56);
  font-size: 13px;
}

.footer-region,
.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-region span:first-child {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--brand-soft);
}

.footer-legal a {
  color: rgba(248, 250, 252, 0.58);
  font-size: 13px;
}

.pricing-page {
  padding-bottom: 1px;
}

.pricing-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.58fr);
  gap: 48px;
  align-items: center;
  margin: 0 auto;
  padding: 78px 0 88px;
}

.pricing-copy {
  max-width: 760px;
}

.pricing-copy > p:not(.eyebrow),
.pricing-calc-copy p,
.pricing-feature-grid p,
.faq-grid p,
.pricing-note,
.price-subcopy {
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.62;
}

.pricing-copy .hero-actions {
  margin-top: 30px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    #050607;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.64),
    0 0 0 1px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.92;
}

.pricing-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.plan-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border: 1px solid rgba(147, 197, 253, 0.42);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(37, 99, 235, 0.18);
}

.price-lockup {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

.price-currency {
  padding-top: 14px;
  color: var(--brand-soft);
  font-size: 34px;
  font-weight: 850;
}

.price-lockup strong {
  color: #ffffff;
  font-size: 112px;
  font-weight: 890;
  line-height: 0.8;
  letter-spacing: 0;
}

.price-period {
  align-self: flex-end;
  padding-bottom: 5px;
  color: var(--ink-muted);
  font-size: 16px;
  font-weight: 760;
  white-space: nowrap;
}

.price-subcopy {
  margin-bottom: 24px;
}

.pricing-list {
  display: grid;
  gap: 13px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  min-height: 28px;
  padding-left: 24px;
  color: rgba(248, 250, 252, 0.84);
  line-height: 1.42;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand);
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.7);
}

.pricing-card-button {
  width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.2;
}

.pricing-note {
  margin: 18px 0 0;
  font-size: 14px;
}

.pricing-inclusions {
  padding: 72px 0;
}

.pricing-inclusions > div:first-child {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(260px, 0.52fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 32px;
}

.pricing-feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pricing-feature-grid article,
.faq-grid article {
  min-height: 276px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.pricing-feature-grid span {
  display: block;
  margin-bottom: 88px;
  color: rgba(147, 197, 253, 0.86);
  font-family: "SF Mono", "Roboto Mono", ui-monospace, monospace;
  font-size: 12px;
}

.pricing-feature-grid h3,
.faq-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.15;
}

.pricing-calculator {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 40px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.pricing-calc-copy h2 {
  margin-bottom: 20px;
}

.pricing-mini-calc {
  background: rgba(3, 4, 5, 0.72);
}

.pricing-faq {
  padding: 72px 0 86px;
}

.pricing-faq h2 {
  margin-bottom: 28px;
}

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

.faq-grid article {
  min-height: 284px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.walkthrough-page {
  padding-bottom: 1px;
}

.walkthrough-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100svh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.58fr);
  gap: 48px;
  align-items: center;
  margin: 0 auto;
  padding: 78px 0 86px;
}

.walkthrough-copy {
  min-width: 0;
  max-width: 780px;
}

.walkthrough-title {
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 76px;
  font-weight: 880;
  line-height: 0.98;
  letter-spacing: 0;
}

.walkthrough-copy > p:not(.eyebrow),
.walkthrough-process-copy p,
.walkthrough-agenda-grid p,
.walkthrough-form-status {
  color: rgba(248, 250, 252, 0.68);
  font-size: 17px;
  line-height: 1.62;
}

.walkthrough-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.walkthrough-pill-row span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(147, 197, 253, 0.26);
  border-radius: 999px;
  color: rgba(219, 234, 254, 0.9);
  background: rgba(37, 99, 235, 0.13);
  font-size: 13px;
  font-weight: 760;
}

.walkthrough-form-card {
  position: relative;
  overflow: visible;
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    #050607;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.64),
    0 0 0 1px rgba(37, 99, 235, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 180ms ease;
}

.walkthrough-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 26% 12%, rgba(147, 197, 253, 0.2), transparent 34%);
  background-size: 32px 32px, 32px 32px, auto;
}

.walkthrough-form-head,
.walkthrough-form {
  position: relative;
  z-index: 1;
}

.walkthrough-form-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.walkthrough-form-head span,
.walkthrough-form label span,
.walkthrough-field > span,
.walkthrough-scheduler-head span,
.walkthrough-scheduler-column strong,
.walkthrough-agenda-grid span,
.walkthrough-process-list span {
  color: var(--brand-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.walkthrough-form-head strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.08;
}

.walkthrough-form {
  display: grid;
  gap: 10px;
}

.walkthrough-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.walkthrough-form label,
.walkthrough-field {
  display: grid;
  gap: 7px;
}

.walkthrough-form input,
.walkthrough-form select,
.walkthrough-form textarea,
.focus-select-trigger {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(3, 4, 5, 0.7);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.walkthrough-form textarea {
  min-height: 78px;
  resize: vertical;
}

.walkthrough-scheduler {
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(147, 197, 253, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.11), rgba(255, 255, 255, 0.025)),
    rgba(3, 4, 5, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.walkthrough-scheduler-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.walkthrough-scheduler-head small {
  color: rgba(219, 234, 254, 0.76);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.4;
  text-align: right;
}

.walkthrough-scheduler-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.walkthrough-scheduler-column {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.walkthrough-day-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 6px;
}

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

.walkthrough-day-button,
.walkthrough-time-button,
.focus-select-menu button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(248, 250, 252, 0.78);
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.walkthrough-day-button {
  display: grid;
  min-height: 56px;
  padding: 7px 7px;
  border-radius: 8px;
  text-align: left;
}

.walkthrough-day-button span,
.walkthrough-day-button em {
  color: rgba(203, 213, 225, 0.72);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.walkthrough-day-button strong {
  margin: 3px 0;
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.walkthrough-time-button {
  min-height: 32px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 820;
  white-space: nowrap;
}

.walkthrough-day-button:hover,
.walkthrough-time-button:hover,
.focus-select-menu button:hover {
  color: #ffffff;
  border-color: rgba(147, 197, 253, 0.34);
  background: rgba(147, 197, 253, 0.1);
}

.walkthrough-day-button.is-selected,
.walkthrough-time-button.is-selected,
.focus-select-menu button.is-selected {
  color: #ffffff;
  border-color: rgba(147, 197, 253, 0.56);
  background:
    linear-gradient(180deg, rgba(47, 110, 243, 0.88), rgba(29, 78, 216, 0.72)),
    rgba(37, 99, 235, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(37, 99, 235, 0.16);
}

.walkthrough-day-button:focus-visible,
.walkthrough-time-button:focus-visible,
.focus-select-menu button:focus-visible {
  outline: none;
  border-color: rgba(147, 197, 253, 0.68);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.focus-select {
  position: relative;
}

.focus-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  cursor: pointer;
}

.focus-select-chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-right: 2px solid rgba(219, 234, 254, 0.78);
  border-bottom: 2px solid rgba(219, 234, 254, 0.78);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.focus-select.is-open .focus-select-chevron {
  transform: translateY(2px) rotate(225deg);
}

.focus-select-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 4;
  display: none;
  gap: 6px;
  margin-top: 7px;
  padding: 6px;
  border: 1px solid rgba(147, 197, 253, 0.2);
  border-radius: 8px;
  background: #050607;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 34px rgba(0, 0, 0, 0.34);
}

.focus-select.is-open .focus-select-menu {
  display: grid;
}

.focus-select-menu button {
  min-height: 36px;
  padding: 0 10px;
  border-radius: 6px;
  text-align: left;
  font-size: 13px;
  font-weight: 740;
}

.walkthrough-form input:focus,
.walkthrough-form select:focus,
.walkthrough-form textarea:focus,
.focus-select-trigger:focus-visible {
  border-color: rgba(147, 197, 253, 0.58);
  background: rgba(3, 4, 5, 0.92);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.walkthrough-submit {
  width: 100%;
  margin-top: 8px;
}

.walkthrough-form-status {
  margin: 2px 0 0;
  font-size: 13px;
}

.walkthrough-agenda {
  padding: 72px 0;
}

.walkthrough-agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.walkthrough-agenda-grid article {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.walkthrough-agenda-grid span {
  margin-bottom: auto;
}

.walkthrough-agenda-grid h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.walkthrough-process {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: 44px;
  align-items: center;
  margin-bottom: 72px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.035);
}

.walkthrough-process-copy {
  min-width: 0;
}

.walkthrough-process-copy h2 {
  margin-bottom: 20px;
}

.walkthrough-process-list {
  display: grid;
  gap: 10px;
}

.walkthrough-process-list div {
  min-width: 0;
  display: grid;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(3, 4, 5, 0.62);
}

.walkthrough-process-list strong {
  color: #ffffff;
  font-size: 18px;
}

.walkthrough-process-list p {
  color: rgba(248, 250, 252, 0.64);
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1400px) {
  .hero-panel {
    width: 820px;
  }

  .hero-visual {
    right: -80px;
    width: min(800px, 55vw);
  }

  .product-section::before {
    right: -80px;
  }

  .pricing-title {
    font-size: 84px;
  }
}

@media (max-width: 1100px) {
  .hero-visual {
    right: 0;
    width: min(760px, 68vw);
    opacity: 0.28;
  }

  .product-section::before {
    right: 0;
    width: min(620px, 58vw);
    opacity: 0.15;
  }

  .section-head,
  .product-shell,
  .supplier-layout,
  .labour-layout,
  .property-layout,
  .workbook-layout,
  .drawing-layout,
  .calculator-layout,
  .production-section-head,
  .walkthrough-hero,
  .walkthrough-process,
  .drawings-hero,
  .drawings-action-head,
  .pricing-hero,
  .pricing-inclusions > div:first-child,
  .pricing-calculator {
    grid-template-columns: 1fr;
  }

  .product-copy,
  .story-stage {
    min-height: auto;
  }

  .workflow-grid,
  .hit-grid,
  .walkthrough-agenda-grid,
  .pricing-feature-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-product-row {
    flex-wrap: wrap;
  }

  .pricing-card {
    max-width: 620px;
  }

  .supplier-panel {
    max-width: 640px;
  }

  .property-panel {
    max-width: 720px;
  }

  .workbook-panel {
    max-width: 760px;
  }

  .walkthrough-form-card {
    max-width: 640px;
  }

  .drawings-signal-panel {
    max-width: 620px;
  }

  .drawing-explainer {
    min-height: auto;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 18px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    min-height: 34px;
    padding: 0 12px;
  }

  .header-signup {
    min-height: 34px;
    padding: 0 12px;
  }

  .hero {
    width: calc(100% - 28px);
    min-height: auto;
    overflow: hidden;
    padding: 46px 0 54px;
  }

  .hero-visual {
    top: 16px;
    right: -92px;
    bottom: auto;
    width: 108%;
    height: 330px;
    opacity: 0.16;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.74) 52%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.74) 52%, transparent 100%);
  }

  h2 {
    font-size: 38px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-statement {
    font-size: 42px;
    line-height: 1;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .primary-button,
  .hero-actions .ghost-button,
  .final-cta .primary-button {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 10px 16px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .hero-panel {
    display: none;
  }

  .product-section::before {
    display: none;
  }

  .final-cta::before {
    opacity: 0.16;
  }

  .signal-strip,
  .workflow-grid,
  .hit-grid,
  .calc-output {
    grid-template-columns: 1fr;
  }

  .workflow-section,
  .supplier-section,
  .labour-section,
  .property-section,
  .workbook-section,
  .walkthrough-hero,
  .walkthrough-agenda,
  .walkthrough-process,
  .drawings-hero,
  .drawings-action-stage,
  .product-section,
  .drawing-section,
  .calculator-section,
  .pricing-hero,
  .pricing-inclusions,
  .pricing-calculator,
  .pricing-faq,
  .final-cta,
  .footer-inner {
    width: calc(100% - 28px);
  }

  .site-footer {
    margin-top: 54px;
  }

  .footer-inner {
    padding: 34px 0 24px;
  }

  .footer-brand-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand-row p {
    max-width: none;
    text-align: left;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 34px;
  }

  .footer-columns nav {
    gap: 10px;
  }

  .footer-product-row {
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .footer-product-row strong {
    flex: 1 0 100%;
  }

  .footer-product-row a {
    white-space: normal;
  }

  .footer-legal {
    align-items: flex-start;
  }

  .pricing-hero {
    min-height: auto;
    padding: 46px 0 34px;
  }

  .pricing-title {
    font-size: 46px;
    line-height: 1;
  }

  .walkthrough-hero {
    min-height: auto;
    padding: 46px 0 54px;
  }

  .drawings-hero {
    min-height: auto;
    padding: 46px 0 54px;
  }

  .walkthrough-title {
    font-size: 44px;
    line-height: 1;
  }

  .drawings-copy h1 {
    font-size: 44px;
    line-height: 1;
  }

  .walkthrough-copy > p:not(.eyebrow),
  .walkthrough-process-copy p,
  .walkthrough-agenda-grid p,
  .drawings-copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .walkthrough-form-card,
  .walkthrough-process {
    padding: 18px;
  }

  .walkthrough-form-grid,
  .walkthrough-scheduler-grid {
    grid-template-columns: 1fr;
  }

  .walkthrough-scheduler-head {
    display: grid;
    gap: 4px;
  }

  .walkthrough-scheduler-head small {
    text-align: left;
  }

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

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

  .walkthrough-agenda {
    padding: 58px 0;
  }

  .walkthrough-agenda-grid {
    grid-template-columns: 1fr;
  }

  .walkthrough-process {
    margin-bottom: 58px;
  }

  .drawings-signal-panel {
    padding: 18px;
  }

  .drawings-signal-panel div {
    min-height: 104px;
  }

  .drawings-action-stage {
    padding: 10px 0 68px;
  }

  .drawings-action-head {
    gap: 18px;
  }

  .drawings-action-head .ghost-button {
    width: 100%;
  }

  .drawings-video-shell::after {
    inset: 12px;
  }

  .drawings-live-note {
    left: 12px;
    right: auto;
    bottom: 12px;
    max-width: min(240px, calc(100% - 116px));
    padding: 10px 11px;
  }

  .drawings-live-note span {
    gap: 7px;
    font-size: 9px;
  }

  .drawings-live-note span::before {
    width: 7px;
    height: 7px;
  }

  .drawings-live-note strong {
    font-size: 12px;
  }

  .drawings-price-connector path {
    stroke-width: 0.46;
  }

  .connector-path-desktop {
    display: none;
  }

  .connector-path-mobile {
    display: block;
  }

  .drawings-project-total-highlight {
    right: 7.6%;
    bottom: 2.2%;
    width: 58px;
    height: 20px;
    border-width: 1px;
    border-radius: 5px;
  }

  .workflow-section {
    padding-top: 72px;
  }

  .supplier-section {
    padding: 58px 0;
  }

  .supplier-layout {
    gap: 24px;
  }

  .supplier-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .labour-section {
    padding: 58px 0;
  }

  .labour-layout {
    gap: 24px;
  }

  .labour-panel {
    min-height: auto;
    padding: 16px;
  }

  .labour-screenshot-frame {
    height: 270px;
  }

  .labour-screenshot-image {
    object-fit: contain;
    object-position: center top;
  }

  .labour-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .property-section {
    padding: 58px 0;
  }

  .property-layout {
    gap: 24px;
  }

  .property-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .property-summary-grid,
  .property-metrics {
    grid-template-columns: 1fr;
  }

  .property-panel {
    padding: 16px;
  }

  .property-map-card {
    min-height: 230px;
  }

  .property-distance-badge {
    left: 14px;
    right: auto;
  }

  .property-calculation div,
  .property-calculation .property-calculation-total {
    grid-template-columns: 1fr;
  }

  .property-calculation b,
  .property-calculation-total strong {
    text-align: left;
  }

  .workbook-section {
    padding: 58px 0;
  }

  .workbook-layout {
    gap: 24px;
  }

  .workbook-panel {
    padding: 16px;
  }

  .workbook-window-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .workbook-row {
    grid-template-columns: 1fr;
  }

  .workbook-row--head {
    display: none;
  }

  .workbook-row b {
    text-align: left;
  }

  .workbook-notes {
    grid-template-columns: 1fr;
  }

  .workbook-copy p:not(.section-kicker) {
    font-size: 16px;
  }

  .supplier-panel {
    min-height: auto;
    padding: 16px;
  }

  .supplier-screenshot-frame {
    min-height: 300px;
  }

  .supplier-screenshot-image {
    object-fit: contain;
    object-position: center top;
  }

  .supplier-logo-strip {
    gap: 18px 28px;
    max-width: 100%;
  }

  .engine-total strong {
    font-size: 28px;
  }

  .workflow-card,
  .hit-card,
  .pricing-feature-grid article,
  .faq-grid article {
    min-height: 220px;
  }

  .drawing-showcase-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 14px;
  }

  .drawing-frame {
    min-height: 360px;
    justify-content: flex-start;
    padding: 14px;
  }

  .drawing-inverted {
    width: auto;
    min-width: 920px;
    max-width: none;
    max-height: 520px;
  }

  .drawing-frame::after {
    inset: 14px;
  }

  .drawing-explainer {
    padding: 20px;
  }

  .drawing-explainer h3 {
    font-size: 30px;
  }

  .drawing-pricing-note strong {
    font-size: 19px;
  }

  .production-output-grid {
    grid-template-columns: 1fr;
  }

  .production-section-head {
    gap: 18px;
    margin: 52px 0 22px;
  }

  .production-section-head p:not(.section-kicker) {
    font-size: 16px;
  }

  .production-output-head {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 14px;
  }

  .production-page-crop {
    min-height: 0;
    height: auto;
  }

  .production-output-image {
    object-fit: contain;
    object-position: center;
  }

  .step-index,
  .pricing-feature-grid span {
    margin-bottom: 54px;
  }

  .pricing-card,
  .pricing-calculator {
    padding: 22px;
  }

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

  .product-visuals {
    min-height: 438px;
  }

  .story-stage,
  .story-visuals {
    min-height: 560px;
  }

  .story-scene {
    gap: 16px;
    padding: 18px;
  }

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

  .scene-label strong {
    max-width: none;
    text-align: left;
    font-size: 16px;
  }

  .scene-visual {
    min-height: 440px;
  }

  .large-pdf-card {
    left: 18px;
    top: 48px;
    width: 150px;
    min-height: 218px;
    gap: 12px;
    padding: 16px;
  }

  .large-pdf-card b,
  .cabinet-drag-card b {
    font-size: 12px;
  }

  .pdf-vector--large {
    width: 86px;
    height: 112px;
  }

  .drag-arrow {
    left: 136px;
    top: 112px;
    width: 150px;
  }

  .drop-target-vector {
    right: 18px;
    top: 88px;
    width: 146px;
    height: 146px;
  }

  .drop-target-vector strong {
    font-size: 24px;
  }

  .extraction-chips {
    left: 18px;
    right: 18px;
    bottom: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .extract-core {
    width: 128px;
    height: 128px;
  }

  .extract-core strong {
    font-size: 22px;
  }

  .extract-token {
    min-width: 94px;
    min-height: 40px;
    font-size: 11px;
  }

  .token-a {
    left: 12px;
    top: 84px;
  }

  .token-b {
    right: 12px;
    top: 86px;
  }

  .token-c {
    left: 12px;
    bottom: 72px;
  }

  .token-d {
    right: 12px;
    bottom: 72px;
  }

  .token-e {
    top: 18px;
  }

  .cabinet-drag-card {
    left: 18px;
    top: 52px;
    width: 200px;
    padding: 14px;
  }

  .cabinet-arrow {
    display: none;
  }

  .drawing-brief-card {
    left: 18px;
    right: 18px;
    top: 282px;
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .output-doc {
    padding: 14px;
  }

  .output-doc--quote {
    left: 18px;
    top: 106px;
    width: 146px;
    min-height: 216px;
  }

  .output-doc--quote strong {
    margin-top: 34px;
    font-size: 24px;
  }

  .output-doc--drawing {
    right: 18px;
    top: 66px;
    width: 198px;
    min-height: 252px;
  }

  .output-doc--drawing svg {
    height: 158px;
  }

  .output-doc--back {
    right: 6px;
    top: 178px;
  }

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

  .calculator-layout {
    padding: 22px;
  }
}

@media (max-width: 460px) {
  .joina-logo--nav {
    width: 54px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-cta,
  .header-login,
  .header-signup {
    font-size: 12px;
  }

  .header-cta {
    display: none;
  }

  h2 {
    font-size: 32px;
  }

  .hero-statement {
    font-size: 36px;
  }

  .walkthrough-title {
    font-size: 36px;
  }

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

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

  .pricing-title {
    font-size: 38px;
  }

  .price-lockup {
    align-items: baseline;
    flex-wrap: wrap;
  }

  .price-currency {
    padding-top: 0;
    font-size: 28px;
  }

  .price-lockup strong {
    font-size: 78px;
  }

  .hero-panel {
    aspect-ratio: 0.74;
  }

  .supplier-logo--laminex {
    height: 34px;
    max-width: 196px;
  }

  .supplier-logo--polytec {
    height: 30px;
    max-width: 162px;
  }

  .supplier-logo--lincoln {
    height: 40px;
    max-width: 244px;
  }

  .tab-list {
    grid-template-columns: 1fr;
  }
}

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

  .drawing-play-button {
    animation: none;
  }
}
