/*
  COLOUR GUIDE
  Change the values below to update the colour palette across the whole site.
*/
:root {
  --navy: #0b1117;
  --navy-soft: #111b25;
  --green-950: #0f2a22;
  --green-900: #0f2a22;
  --green-800: #126d38;
  --green-600: #16a344;
  --green-200: #b8e7c6;
  --sage: #e6f5eb;
  --lime: #16a344;
  --blue: #0284c7;
  --blue-accent: #2563eb;
  --sand: #e7edf2;
  --paper: #f1f5f9;
  --white: #ffffff;
  --charcoal: #111820;
  --muted: #5f6c78;
  --line: #d7e0e7;
  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "Space Grotesk", Arial, sans-serif;
  --container: 1180px;
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: #fff;
  color: #0b1117;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.24);
  font-weight: 600;
  transform: translateY(-150%);
}

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

main:focus {
  outline: none;
}

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

button {
  color: inherit;
  font: inherit;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid rgba(29, 37, 33, 0.12);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #445049;
  font-size: 14px;
  font-weight: 500;
}

.site-nav > a:not(.button) {
  transition: color 180ms ease;
}

.site-nav > a:not(.button):hover {
  color: var(--green-800);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 13px;
}

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

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

.button-primary:hover,
.button-dark:hover {
  background: var(--green-800);
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  padding: 176px 0 110px;
  background:
    radial-gradient(circle at 77% 40%, rgba(185, 212, 196, 0.55), transparent 23%),
    linear-gradient(120deg, #f5f2e9 0%, #eeeee5 54%, #e6eee5 100%);
}

.hero::before {
  position: absolute;
  top: -160px;
  right: -110px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(18, 56, 44, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid,
.early-grid {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(18, 56, 44, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 56, 44, 0.055) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 38%, transparent 62%, black);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  color: var(--green-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 680px;
  font-size: clamp(48px, 5.1vw, 76px);
  font-weight: 600;
}

h1 em,
h2 em {
  color: var(--green-600);
  font-family: inherit;
  font-weight: 400;
}

.hero-intro {
  max-width: 610px;
  margin: 28px 0 0;
  color: #535e57;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 600;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 46px;
  color: var(--muted);
  font-size: 13px;
}

.hero-note p {
  margin: 0;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span {
  display: grid;
  width: 31px;
  height: 31px;
  margin-right: -8px;
  place-items: center;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
}

.avatar-stack span:nth-child(2) {
  background: var(--green-600);
}

.avatar-stack span:nth-child(3) {
  background: #9eaa79;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(18, 56, 44, 0.14);
  border-radius: 50%;
}

.orbit-one {
  inset: 10px -90px -20px 0;
}

.orbit-two {
  inset: 74px -25px 44px 64px;
}

.dashboard-card {
  position: absolute;
  z-index: 2;
  top: 64px;
  left: 40px;
  width: min(100% - 35px, 440px);
  overflow: hidden;
  border: 1px solid rgba(18, 56, 44, 0.12);
  border-radius: 22px;
  background: rgba(255, 254, 250, 0.96);
  box-shadow: 0 32px 70px rgba(25, 55, 44, 0.15);
  transform: rotate(-1.5deg);
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 25px 26px 20px;
  border-bottom: 1px solid #e8e7df;
}

.dashboard-top > div {
  display: flex;
  flex-direction: column;
}

.dashboard-label {
  margin-bottom: 4px;
  color: #7c857f;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.dashboard-top strong {
  font-family: var(--font-display);
  font-size: 20px;
}

.status-pill {
  padding: 5px 10px;
  border-radius: 20px;
  background: var(--sage);
  color: var(--green-800);
  font-size: 10px;
  font-weight: 600;
}

.workflow-list {
  padding: 26px;
}

.workflow-item {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
}

.workflow-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
}

.workflow-icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.homeowner-icon {
  background: #edf0df;
  color: #66743c;
}

.builder-icon {
  background: var(--sage);
  color: var(--green-800);
}

.contractor-icon {
  background: #e8e8e4;
  color: #555d58;
}

.workflow-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.workflow-copy strong {
  font-size: 13px;
}

.workflow-copy span {
  color: #89908c;
  font-size: 11px;
}

.check {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: white;
  font-size: 11px;
}

.workflow-arrow {
  color: var(--green-800);
  font-size: 18px;
}

.workflow-line {
  width: 1px;
  height: 24px;
  margin: 3px 0 3px 20px;
  background: #dadcd7;
}

.workflow-line.active {
  background: var(--green-600);
}

.dashboard-footer {
  padding: 13px 26px;
  background: #f1f3ec;
  color: #68726c;
  font-size: 10px;
}

.dashboard-footer span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-footer i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6b9657;
  box-shadow: 0 0 0 4px rgba(107, 150, 87, 0.15);
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid rgba(18, 56, 44, 0.1);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(25, 55, 44, 0.13);
}

.floating-card > div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.floating-card strong {
  font-size: 11px;
}

.floating-card small {
  color: #89908c;
  font-size: 9px;
}

.mini-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  background: var(--sage);
  color: var(--green-900);
  font-size: 13px;
}

.floating-home {
  top: 42px;
  right: -4px;
}

.floating-proof {
  bottom: 45px;
  left: 0;
}

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

.trust-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
}

.trust-content p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-roles {
  display: flex;
  align-items: center;
  gap: 21px;
  color: #7c847f;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
}

.trust-roles i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--green-600);
}

.section {
  padding: 130px 0;
}

.section-number {
  display: block;
  margin-bottom: 22px;
  color: var(--green-600);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 70px;
}

.section-heading h2,
.solution-sticky h2,
.difference-copy h2,
.early-copy h2 {
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 600;
}

.split-heading > p {
  max-width: 450px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 17px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-card {
  position: relative;
  min-height: 330px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, transform 200ms ease;
}

.problem-card:hover {
  z-index: 2;
  background: var(--white);
  transform: translateY(-5px);
}

.card-index {
  color: #a0a6a2;
  font-family: var(--font-display);
  font-size: 11px;
}

.line-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 52px 0 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green-800);
}

.line-icon svg {
  width: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.problem-card h3 {
  margin-bottom: 13px;
  font-size: 20px;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.solution-section {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.solution-section::after {
  position: absolute;
  top: 22%;
  right: -200px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.solution-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 120px;
}

.solution-sticky {
  align-self: start;
  position: sticky;
  top: 60px;
}

.section-number.light {
  color: var(--green-200);
}

.solution-sticky h2 em {
  color: var(--lime);
}

.solution-sticky p {
  max-width: 420px;
  margin: 30px 0;
  color: #aebdb5;
  font-size: 17px;
}

.light-link {
  color: var(--white);
}

.solution-steps {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.solution-step {
  display: grid;
  grid-template-columns: 65px 1fr;
  gap: 30px;
  padding: 46px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.step-number {
  padding-top: 5px;
  color: #71847a;
  font-family: var(--font-display);
  font-size: 13px;
}

.step-tag {
  display: block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.step-content h3 {
  font-size: 29px;
  font-weight: 500;
}

.step-content p {
  max-width: 560px;
  margin: 16px 0 22px;
  color: #aebdb5;
}

.feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-chips span {
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  color: #d4ded8;
  font-size: 11px;
}

.difference-section {
  padding-bottom: 60px;
}

.difference-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 570px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--sand);
}

.difference-copy {
  padding: 70px;
}

.difference-copy p {
  max-width: 500px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.difference-copy strong {
  color: var(--charcoal);
}

.connection-diagram {
  position: relative;
  height: 100%;
  min-height: 570px;
  background:
    linear-gradient(rgba(18, 56, 44, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 56, 44, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
}

.connection-diagram::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(18, 56, 44, 0.1);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.connection-node,
.branch-node {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connection-node {
  flex-direction: column;
  gap: 7px;
}

.connection-node span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid #cdd4cc;
  border-radius: 50%;
  background: var(--white);
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(24, 50, 41, 0.08);
}

.connection-node small {
  color: #77817b;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.node-builder {
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
}

.node-contractor {
  bottom: 68px;
  left: 58px;
}

.node-homeowner {
  right: 58px;
  bottom: 68px;
}

.branch-node {
  top: 50%;
  left: 50%;
  flex-direction: column;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 20px 40px rgba(18, 56, 44, 0.2);
  transform: translate(-50%, -50%);
}

.branch-node svg {
  width: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.branch-node strong {
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 13px;
}

.connection-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 145px;
  background: var(--green-600);
  transform-origin: top center;
}

.line-a {
  transform: rotate(180deg);
}

.line-b {
  transform: rotate(122deg);
}

.line-c {
  transform: rotate(238deg);
}

.centered-heading {
  margin-bottom: 65px;
  text-align: center;
}

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

.user-card {
  min-height: 450px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

.user-card.featured {
  background: #e7eee6;
}

.user-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 75px;
}

.user-monogram {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 18px;
}

.user-number {
  color: #939b96;
  font-size: 10px;
}

.user-card h3 {
  font-size: 27px;
}

.user-card > p {
  min-height: 78px;
  margin: 16px 0 24px;
  color: var(--muted);
  font-size: 15px;
}

.user-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: #4e5952;
  font-size: 13px;
}

.user-card li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-card li span {
  color: var(--green-600);
  font-weight: 600;
}

.early-access {
  position: relative;
  overflow: hidden;
  padding: 115px 0;
  background: var(--green-800);
  color: var(--white);
}

.early-access::before {
  position: absolute;
  top: -310px;
  left: -160px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
}

.early-grid {
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  mask-image: none;
}

.early-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 120px;
}

.light-eyebrow {
  color: var(--lime);
}

.early-copy h2 {
  max-width: 690px;
}

.early-copy p {
  max-width: 650px;
  margin: 28px 0 36px;
  color: #c6d5cc;
  font-size: 17px;
}

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

.button-light:hover {
  background: var(--lime);
}

.pilot-card {
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  background: rgba(13, 43, 34, 0.5);
  backdrop-filter: blur(8px);
}

.pilot-label {
  color: var(--lime);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.pilot-card h3 {
  margin-top: 24px;
  font-size: 27px;
  font-weight: 500;
}

.pilot-card > p {
  margin: 16px 0 30px;
  color: #b8c8bf;
  font-size: 14px;
}

.pilot-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pilot-list span {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #d7e1db;
  font-size: 13px;
}

.pilot-list i {
  color: #7f9b8c;
  font-style: normal;
  font-size: 10px;
}

.site-footer {
  padding: 58px 0 24px;
  background: #0a221a;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-bottom: 45px;
}

.footer-main p {
  margin: 0;
  color: #9bafa4;
  font-family: var(--font-body);
  font-size: 17px;
  font-style: normal;
  text-align: center;
}

.footer-main > a:last-child {
  color: #aebfb5;
  font-size: 13px;
  text-align: right;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #789084;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    max-width: 750px;
  }

  .hero-visual {
    width: min(100%, 600px);
    margin: 0 auto;
  }

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

  .solution-layout {
    gap: 70px;
  }

  .difference-copy {
    padding: 50px;
  }

  .early-layout {
    gap: 70px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .nav-toggle {
    z-index: 22;
    display: grid;
    gap: 6px;
    width: 38px;
    height: 38px;
    place-content: center;
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--charcoal);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: 70px 30px;
    background: var(--paper);
    opacity: 0;
    font-family: var(--font-display);
    font-size: 25px;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
  }

  .site-nav .button {
    margin-top: 15px;
    font-family: var(--font-body);
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 75px;
  }

  .hero-grid {
    background-size: 50px 50px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-note {
    margin-top: 35px;
  }

  .hero-visual {
    min-height: 465px;
    margin-top: 10px;
  }

  .dashboard-card {
    top: 55px;
    left: 10px;
    width: calc(100% - 20px);
  }

  .floating-home {
    top: 22px;
    right: -7px;
  }

  .floating-proof {
    bottom: 18px;
    left: -5px;
  }

  .trust-content {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 25px 0;
  }

  .trust-roles {
    flex-wrap: wrap;
    gap: 12px;
  }

  .section {
    padding: 90px 0;
  }

  .split-heading,
  .solution-layout,
  .difference-card,
  .early-layout {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 28px;
    margin-bottom: 50px;
  }

  .section-heading h2,
  .solution-sticky h2,
  .difference-copy h2,
  .early-copy h2 {
    font-size: clamp(37px, 10vw, 48px);
  }

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

  .problem-card {
    min-height: 280px;
  }

  .line-icon {
    margin: 40px 0 24px;
  }

  .solution-layout {
    gap: 55px;
  }

  .solution-sticky {
    position: static;
  }

  .solution-step {
    grid-template-columns: 42px 1fr;
    gap: 15px;
    padding: 36px 0;
  }

  .step-content h3 {
    font-size: 25px;
  }

  .difference-section {
    padding-bottom: 35px;
  }

  .difference-card {
    min-height: 0;
  }

  .difference-copy {
    padding: 48px 28px 20px;
  }

  .connection-diagram {
    min-height: 440px;
  }

  .connection-diagram::after {
    width: 270px;
    height: 270px;
  }

  .connection-line {
    height: 112px;
  }

  .node-builder {
    top: 28px;
  }

  .node-contractor {
    bottom: 35px;
    left: 30px;
  }

  .node-homeowner {
    right: 30px;
    bottom: 35px;
  }

  .branch-node {
    width: 110px;
    height: 110px;
  }

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

  .user-card {
    min-height: auto;
  }

  .user-card-top {
    margin-bottom: 50px;
  }

  .user-card > p {
    min-height: 0;
  }

  .early-access {
    padding: 90px 0;
  }

  .early-layout {
    gap: 55px;
  }

  .pilot-card {
    padding: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-main p,
  .footer-main > a:last-child {
    text-align: left;
  }
}

/* AUDIENCE FLIP CARDS
   Colours and illustration styling can be adjusted in this section. */
.user-grid {
  perspective: 1400px;
}

.user-card {
  position: relative;
  display: block;
  height: 510px;
  min-height: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  cursor: pointer;
  perspective: 1200px;
}

.user-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(11, 17, 23, 0.08);
  transform-style: preserve-3d;
  transition: transform 650ms cubic-bezier(0.2, 0.72, 0.2, 1), box-shadow 220ms ease;
}

.user-card.is-flipped .user-card-inner {
  transform: rotateY(180deg);
}

.user-card:hover .user-card-inner,
.user-card:focus-visible .user-card-inner {
  box-shadow: 0 24px 55px rgba(2, 132, 199, 0.16);
}

.user-card:not(.is-flipped):hover .user-card-inner,
.user-card:not(.is-flipped):focus-visible .user-card-inner {
  transform: translateY(-7px);
}

.user-card.is-flipped:hover .user-card-inner,
.user-card.is-flipped:focus-visible .user-card-inner {
  transform: translateY(-7px) rotateY(180deg);
}

.user-card:focus-visible .user-card-inner {
  outline: 3px solid rgba(2, 132, 199, 0.45);
  outline-offset: 4px;
}

.user-card-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.user-card-front {
  display: grid;
  grid-template-rows: 220px 1fr;
}

.audience-visual {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid rgba(2, 132, 199, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(22, 163, 68, 0.22), rgba(2, 132, 199, 0.27));
}

.audience-visual::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(11, 17, 23, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 17, 23, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent);
}

.audience-visual svg {
  position: relative;
  width: 88%;
  height: auto;
  transition: filter 240ms ease, transform 350ms ease;
}

.user-card:hover .audience-visual svg,
.user-card:focus-visible .audience-visual svg {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.audience-visual > span {
  position: absolute;
  right: 20px;
  bottom: 15px;
  color: #52616d;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.visual-line,
.visual-ground,
.visual-accent {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.visual-line {
  stroke: #233442;
}

.visual-ground {
  stroke: rgba(35, 52, 66, 0.26);
  stroke-width: 2;
}

.visual-accent {
  stroke: var(--blue);
}

.visual-node {
  fill: var(--green-600);
}

.audience-visual-contractors {
  background:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    linear-gradient(135deg, rgba(2, 132, 199, 0.25), rgba(37, 99, 235, 0.22));
}

.audience-visual-homeowners {
  background:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    linear-gradient(135deg, rgba(16, 185, 129, 0.22), rgba(2, 132, 199, 0.22));
}

.user-card-front-copy {
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 0 18px;
  padding: 28px 30px 26px;
}

.user-card-front-copy .user-monogram {
  grid-row: 1 / 3;
}

.user-card-front-copy h3 {
  align-self: center;
  margin: 0;
}

.user-card-front-copy p {
  grid-column: 2;
  min-height: 0;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.user-card-front-copy small,
.flip-back-cue {
  display: flex;
  align-self: end;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: #087bae;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.user-card-front-copy small b,
.flip-back-cue b {
  font-size: 15px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.user-card:hover .user-card-front-copy small b,
.user-card:focus-visible .user-card-front-copy small b {
  transform: translate(2px, -2px);
}

.user-card-back {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 24px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.1), rgba(22, 163, 68, 0.06)),
    #111b25;
  color: var(--white);
  transform: rotateY(180deg);
}

.user-card-back .user-monogram {
  margin-bottom: 27px;
  background: linear-gradient(135deg, var(--green-600), var(--blue));
}

.user-card-back h3 {
  margin: 0;
  color: var(--white);
}

.user-card-back p {
  min-height: 0;
  margin: 15px 0 0;
  color: #bdc8d0;
  font-size: 14px;
}

.user-card-back ul {
  align-self: end;
  min-height: 0;
  padding-top: 20px;
  border-color: rgba(255, 255, 255, 0.12);
  color: #d2dbe1;
}

.user-card-back li span {
  color: #55c7ea;
}

.flip-back-cue {
  border-color: rgba(255, 255, 255, 0.12);
  color: #7fc9e8;
}

@media (max-width: 980px) and (min-width: 761px) {
  .user-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .user-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 8px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .user-card {
    height: 490px;
  }

  .user-card-front {
    grid-template-rows: 205px 1fr;
  }

  .user-card-front-copy,
  .user-card-back {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .user-card-inner,
  .audience-visual svg,
  .user-card-front-copy small b {
    transition-duration: 0.01ms;
  }
}

/* INTERACTION AND CONSISTENCY PASS */
.site-header {
  position: fixed;
  background: rgba(11, 17, 23, 0.86);
  backdrop-filter: blur(16px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(11, 17, 23, 0.96);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
}

.nav-wrap {
  min-height: 92px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  animation: brand-breathe 7s ease-in-out infinite;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.28em;
  line-height: 1;
}

.brand-copy small {
  color: #8dcda5;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: none;
}

@keyframes brand-breathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.hero {
  padding-top: 195px;
}

section,
.user-card {
  scroll-margin-top: 112px;
}

.avatar-stack a {
  display: grid;
  width: 34px;
  height: 34px;
  margin-right: -7px;
  place-items: center;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.avatar-stack a:nth-child(2) {
  background: var(--blue);
}

.avatar-stack a:nth-child(3) {
  background: var(--blue-accent);
}

.avatar-stack a:hover,
.avatar-stack a:focus-visible {
  z-index: 2;
  outline: none;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.problem-section,
.users-section {
  background: #f1f5f9;
}

.difference-section,
.validation-section {
  background: #edf3f7;
}

.problem-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 0;
}

.problem-card {
  display: grid;
  grid-template-columns: 66px 1fr;
  grid-template-rows: auto auto;
  column-gap: 22px;
  min-height: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.problem-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(125deg, rgba(22, 163, 68, 0.14), rgba(2, 132, 199, 0.16));
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.problem-card:hover {
  border-color: rgba(2, 132, 199, 0.42);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(2, 132, 199, 0.13);
  transform: translateY(-6px);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-card .line-icon {
  grid-row: 1 / 3;
  width: 58px;
  height: 58px;
  margin: 0;
}

.problem-card h3 {
  align-self: end;
  margin: 0 0 8px;
}

.problem-card p {
  grid-column: 2;
}

.solution-section {
  background: #101820;
}

.step-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(72, 204, 119, 0.28);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(22, 163, 68, 0.14), rgba(2, 132, 199, 0.14));
  color: #58d383;
}

.step-icon svg,
.validation-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.connection-links {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.connection-links line {
  stroke: url("#connection-gradient");
  stroke: #5aafbf;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  transition: stroke 180ms ease, stroke-width 180ms ease, filter 180ms ease;
}

.connection-node {
  color: inherit;
  transition: transform 180ms ease;
}

.connection-node:hover span,
.connection-node:focus-visible span {
  border-color: transparent;
  background: linear-gradient(135deg, var(--green-600), var(--blue));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(2, 132, 199, 0.25);
  transform: scale(1.1);
}

.connection-node:focus-visible {
  outline: none;
}

.connection-diagram:has(.node-builder:hover) .link-builder,
.connection-diagram:has(.node-builder:focus-visible) .link-builder,
.connection-diagram:has(.node-contractor:hover) .link-contractor,
.connection-diagram:has(.node-contractor:focus-visible) .link-contractor,
.connection-diagram:has(.node-homeowner:hover) .link-homeowner,
.connection-diagram:has(.node-homeowner:focus-visible) .link-homeowner {
  stroke: var(--green-600);
  stroke-width: 4;
  filter: drop-shadow(0 0 5px rgba(22, 163, 68, 0.38));
}

.validation-grid {
  gap: 14px;
  border: 0;
}

.validation-item {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.validation-item:hover {
  border-color: rgba(22, 163, 68, 0.45);
  box-shadow: 0 15px 35px rgba(22, 163, 68, 0.1);
  transform: translateY(-4px);
}

.validation-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
}

.validation-icon span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.validation-item h3 {
  margin-top: 45px;
}

.footer-brand .brand-copy small {
  color: #79bd91;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal button,
.text-button {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-transform: inherit;
}

.footer-legal button:hover,
.footer-legal a:hover {
  color: var(--white);
}

.cookie-notice {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  width: min(720px, calc(100% - 48px));
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(11, 17, 23, 0.97);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

.cookie-notice strong {
  display: block;
  margin-bottom: 5px;
  font-family: var(--font-display);
}

.cookie-notice p {
  margin: 0;
  color: #aebbc5;
  font-size: 13px;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.cookie-actions .text-button {
  color: #a7d9b8;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-dialog {
  width: min(620px, calc(100% - 34px));
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
}

.legal-dialog::backdrop {
  background: rgba(5, 10, 14, 0.72);
  backdrop-filter: blur(5px);
}

.legal-dialog h2 {
  max-width: 500px;
  font-size: 34px;
}

.legal-dialog p {
  color: var(--muted);
}

.legal-dialog a {
  color: var(--blue);
  text-decoration: underline;
}

.dialog-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--charcoal);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark {
    animation: none;
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 82px;
  }

  .brand-mark {
    width: 51px;
    height: 51px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    max-width: 170px;
    font-size: 7px;
  }

  .hero {
    padding-top: 138px;
  }

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

  .problem-card {
    grid-template-columns: 58px 1fr;
    padding: 23px;
  }

  .solution-step {
    grid-template-columns: 54px 1fr;
  }

  .connection-links line {
    stroke-width: 1.2;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .cookie-notice {
    right: 17px;
    bottom: 17px;
    grid-template-columns: 1fr;
    gap: 18px;
    width: calc(100% - 34px);
  }

  .cookie-actions {
    justify-content: space-between;
    gap: 12px;
  }

  .legal-dialog {
    padding: 36px 25px 28px;
  }
}

@media (max-width: 390px) {
  .dashboard-top,
  .workflow-list {
    padding-right: 18px;
    padding-left: 18px;
  }

  .floating-card {
    padding: 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

/* BRAND REFRESH
   These overrides apply the supplied Branch brand palette and logo system.
   Keep colour changes grouped here for straightforward future editing. */
:root {
  --navy: #0b1117;
  --navy-soft: #111b25;
  --green-950: #0f2a22;
  --green-900: #0f2a22;
  --green-800: #126d38;
  --green-600: #16a344;
  --green-200: #b8e7c6;
  --sage: #e6f5eb;
  --lime: #16a344;
  --blue: #0284c7;
  --blue-accent: #2563eb;
  --sand: #e7edf2;
  --paper: #f1f5f9;
  --white: #ffffff;
  --charcoal: #111820;
  --muted: #5f6c78;
  --line: #d7e0e7;
  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "Space Grotesk", Arial, sans-serif;
}

.site-header {
  border-bottom-color: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.brand {
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.28em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.site-nav {
  color: rgba(255, 255, 255, 0.72);
}

.site-nav > a:not(.button):hover {
  color: var(--white);
}

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

.button-primary {
  background: linear-gradient(100deg, var(--green-600), var(--blue));
  color: var(--white);
}

.button-primary:hover,
.button-dark:hover {
  background: var(--blue-accent);
}

.hero {
  background:
    radial-gradient(circle at 76% 38%, rgba(2, 132, 199, 0.17), transparent 25%),
    radial-gradient(circle at 84% 58%, rgba(22, 163, 68, 0.12), transparent 27%),
    var(--navy);
  color: var(--white);
}

.hero::before {
  border-color: rgba(2, 132, 199, 0.18);
}

.hero-grid {
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
}

.eyebrow {
  color: #62d88b;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1 em,
h2 em {
  color: var(--green-600);
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
}

.hero h1 em {
  background: linear-gradient(90deg, #45d36f, #33bfe5);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.hero-intro {
  color: #b7c2cb;
}

.hero .text-link {
  color: var(--white);
}

.hero-note {
  color: #93a2ad;
}

.avatar-stack span {
  border-color: var(--navy);
  background: var(--green-600);
}

.avatar-stack span:nth-child(2) {
  background: var(--blue);
}

.avatar-stack span:nth-child(3) {
  background: var(--blue-accent);
}

.visual-orbit {
  border-color: rgba(63, 191, 225, 0.16);
}

.dashboard-card {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--charcoal);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.status-pill {
  background: #e5f7eb;
  color: #087632;
}

.homeowner-icon {
  background: #e8f4fb;
  color: var(--blue);
}

.builder-icon {
  background: var(--sage);
  color: var(--green-600);
}

.contractor-icon {
  background: #e9edff;
  color: var(--blue-accent);
}

.check {
  background: var(--green-600);
}

.workflow-arrow {
  color: var(--blue);
}

.workflow-line.active {
  background: linear-gradient(var(--green-600), var(--blue));
}

.dashboard-footer i {
  background: var(--green-600);
  box-shadow: 0 0 0 4px rgba(22, 163, 68, 0.15);
}

.mini-icon {
  background: #e8f4fb;
  color: var(--blue);
}

.floating-card {
  color: var(--charcoal);
}

.trust-strip {
  background: var(--white);
}

.trust-roles i {
  background: var(--blue);
}

.line-icon {
  background: linear-gradient(135deg, #e6f5eb, #e8f4fb);
  color: var(--blue);
}

.problem-card:hover {
  box-shadow: 0 20px 45px rgba(11, 17, 23, 0.07);
}

.solution-section {
  background: var(--navy);
}

.solution-sticky h2 em,
.step-tag {
  color: #48cc77;
}

.difference-card {
  background: linear-gradient(135deg, #e9f5ed, #e8f1f8);
}

.branch-node {
  background: var(--navy);
}

.branch-node svg {
  stroke: var(--white);
}

.branch-node img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.branch-node strong {
  margin-top: -4px;
}

.connection-line {
  background: linear-gradient(var(--green-600), var(--blue));
}

.connection-node span {
  color: var(--blue);
}

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

.validation-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.validation-copy {
  position: sticky;
  top: 70px;
}

.validation-copy h2 {
  font-size: clamp(40px, 4.2vw, 60px);
  font-weight: 600;
}

.validation-copy p {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.validation-item {
  min-height: 265px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.validation-item > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.validation-item h3 {
  margin: 68px 0 14px;
  font-size: 22px;
}

.validation-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.user-card.featured {
  background: linear-gradient(145deg, #e8f5ec, #e9f2fb);
}

.user-monogram {
  background: var(--navy);
}

.user-card:nth-child(2) .user-monogram {
  background: var(--green-600);
}

.user-card:nth-child(3) .user-monogram {
  background: var(--blue);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.role-grid article {
  min-height: 175px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.role-grid span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.role-grid p {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.early-access {
  background: var(--navy-soft);
}

.early-access::before {
  border-color: rgba(2, 132, 199, 0.14);
}

.button-light {
  color: var(--navy);
}

.button-light:hover {
  background: #dff4e6;
}

.pilot-card {
  background: rgba(11, 17, 23, 0.66);
}

.site-footer {
  background: #070b0f;
}

.footer-brand .brand-mark {
  width: 58px;
  height: 58px;
}

.footer-bottom a {
  color: inherit;
}

@media (max-width: 760px) {
  .nav-toggle span {
    background: var(--white);
  }

  .site-nav {
    background: var(--navy);
    color: var(--white);
  }

  .validation-layout,
  .validation-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .validation-layout {
    gap: 50px;
  }

  .validation-copy {
    position: static;
  }

  .validation-item {
    min-height: 230px;
  }
}

/* Keep the interaction refinements authoritative after the brand overrides above. */
.site-header .brand-mark {
  width: 58px;
  height: 58px;
}

.problem-section,
.users-section {
  background: #f1f5f9;
}

.difference-section,
.validation-section {
  background: #edf3f7;
}

.problem-card:hover {
  border-color: rgba(2, 132, 199, 0.42);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(2, 132, 199, 0.13);
  transform: translateY(-6px);
}

.solution-section {
  background: #101820;
}

.validation-grid {
  gap: 14px;
  border: 0;
}

.validation-item {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.validation-item h3 {
  margin-top: 45px;
}

@media (max-width: 760px) {
  .site-header .brand-mark {
    width: 51px;
    height: 51px;
  }
}

/* ALIGNMENT AND RHYTHM REFINEMENTS */
.brand-copy {
  gap: 8px;
}

.brand-copy small,
.footer-main p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
}

.footer-main p {
  color: #8dcda5;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.section {
  padding-top: 94px;
  padding-bottom: 94px;
}

.difference-section {
  padding-bottom: 46px;
}

.split-heading {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 48px;
}

.split-heading > p {
  align-self: end;
  justify-self: start;
  max-width: 470px;
  margin-left: 0;
}

.solution-layout {
  gap: 88px;
}

.solution-step {
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 35px 0;
}

.step-icon {
  width: 38px;
  height: 38px;
  border-color: rgba(2, 132, 199, 0.38);
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.12);
  color: #4ab9ed;
}

.step-icon svg {
  width: 19px;
}

.step-tag {
  margin-top: 2px;
  margin-bottom: 12px;
  color: #58bce9;
}

.feature-chips {
  gap: 10px 20px;
}

.feature-chips span {
  position: relative;
  padding: 0 0 0 13px;
  border: 0;
  border-radius: 0;
  color: #9eafb9;
  font-size: 11px;
}

.feature-chips span::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
  content: "";
  transform: translateY(-50%);
}

.validation-item {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.76);
  isolation: isolate;
}

.validation-item::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(130deg, rgba(22, 163, 68, 0.13), rgba(2, 132, 199, 0.16));
  content: "";
  opacity: 0;
  transition: opacity 200ms ease;
}

.validation-item {
  position: relative;
}

.validation-item:hover {
  border-color: rgba(2, 132, 199, 0.44);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(2, 132, 199, 0.13);
  transform: translateY(-6px);
}

.validation-item:hover::before {
  opacity: 1;
}

.user-grid {
  align-items: stretch;
}

.user-card {
  display: grid;
  grid-template-rows: 56px 76px 142px auto;
  min-height: 0;
  padding: 32px;
}

.user-card-top {
  align-items: flex-start;
  margin-bottom: 0;
}

.user-monogram {
  width: 50px;
  height: 50px;
}

.user-card h3 {
  align-self: start;
  margin-top: 28px;
}

.user-card > p {
  min-height: 0;
  margin: 15px 0 23px;
}

.user-card ul {
  align-self: end;
  min-height: 122px;
  grid-template-rows: repeat(3, minmax(22px, auto));
  padding-top: 20px;
}

.user-card li {
  align-items: flex-start;
}

.role-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid #283746;
  border-radius: 15px;
  background: #283746;
}

.role-grid article {
  display: grid;
  grid-template-rows: 34px 1fr;
  min-height: 190px;
  padding: 28px;
  border: 0;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.07), rgba(22, 163, 68, 0.04)),
    #16212b;
  transition: background 180ms ease, transform 180ms ease;
}

.role-grid article:hover {
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.24), rgba(22, 163, 68, 0.16)),
    #192631;
  transform: translateY(-3px);
}

.role-grid span {
  align-self: start;
  color: #66bfe6;
  line-height: 1.4;
}

.role-grid p {
  align-self: start;
  margin: 28px 0 0;
  color: #c0cad1;
  line-height: 1.65;
}

.early-access {
  padding: 88px 0;
}

.early-layout {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 62px;
}

.early-copy,
.pilot-card {
  align-self: start;
}

.early-copy .eyebrow {
  margin-bottom: 24px;
}

.early-copy p {
  margin: 25px 0 31px;
}

.pilot-card {
  margin-left: -14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.pilot-label {
  display: block;
  min-height: 18px;
  padding-top: 1px;
  color: #58bce9;
}

.pilot-card h3 {
  margin-top: 30px;
}

.pilot-card > p {
  max-width: 500px;
  margin-bottom: 25px;
}

.pilot-list {
  max-width: 500px;
}

@media (max-width: 760px) {
  .brand-copy {
    gap: 6px;
  }

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

  .split-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .solution-layout {
    gap: 42px;
  }

  .solution-step {
    grid-template-columns: 42px 1fr;
    gap: 13px;
  }

  .user-card {
    grid-template-rows: 54px auto auto auto;
  }

  .user-card ul {
    min-height: 0;
  }

  .role-grid article {
    min-height: 160px;
  }

  .early-access {
    padding: 72px 0;
  }

  .early-layout {
    gap: 48px;
  }

  .pilot-card {
    margin-left: 0;
  }
}

/* Use the hero's green-to-blue brand gradient for all highlighted heading words. */
h1 em,
h2 em,
.solution-sticky h2 em {
  display: inline-block;
  background: linear-gradient(90deg, #45d36f, #33bfe5);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* CLICKABLE ROLE CARDS AND REUSABLE ROLE MODAL */
.role-grid .role-card {
  position: relative;
  display: grid;
  grid-template-rows: 34px 1fr auto;
  min-height: 210px;
  padding: 28px;
  border: 0;
  background:
    linear-gradient(145deg, rgba(37, 99, 235, 0.07), rgba(22, 163, 68, 0.04)),
    #16212b;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.role-grid .role-card:hover,
.role-grid .role-card:focus-visible {
  z-index: 1;
  outline: none;
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.25), rgba(22, 163, 68, 0.17)),
    #192631;
  box-shadow: inset 0 0 0 1px rgba(74, 185, 237, 0.45);
  transform: translateY(-3px);
}

.role-card span {
  align-self: start;
  color: #66bfe6;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.role-card p {
  align-self: start;
  margin: 28px 0 22px;
  color: #c0cad1;
  font-size: 13px;
  line-height: 1.65;
}

.role-card small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8fcce7;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.role-card small b {
  font-size: 14px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.role-card:hover small b,
.role-card:focus-visible small b {
  transform: translate(2px, -2px);
}

.role-dialog {
  width: min(850px, calc(100% - 40px));
  max-height: min(820px, calc(100vh - 40px));
  padding: 45px;
  overflow: auto;
  border: 1px solid #2a3a48;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.08), rgba(22, 163, 68, 0.04)),
    #111b25;
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.role-dialog::backdrop {
  background: rgba(5, 10, 14, 0.72);
  backdrop-filter: blur(5px);
}

.role-dialog .dialog-close {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.role-dialog .section-number {
  margin-bottom: 16px;
  color: #64c6eb;
}

.role-dialog h2 {
  max-width: 690px;
  font-size: clamp(34px, 4vw, 50px);
}

.role-dialog-summary {
  max-width: 740px;
  margin: 20px 0 34px;
  color: #bdc8d0;
  font-size: 16px;
}

.role-dialog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.role-dialog-grid section,
.role-dialog-outcomes {
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.role-dialog-outcomes {
  margin-top: 14px;
  background: linear-gradient(110deg, rgba(22, 163, 68, 0.08), rgba(2, 132, 199, 0.08));
}

.role-dialog h3 {
  margin-bottom: 18px;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.role-dialog ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.role-dialog li {
  position: relative;
  padding-left: 17px;
  color: #abb9c3;
  font-size: 13px;
  line-height: 1.55;
}

.role-dialog li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue));
  content: "";
  transform: translateY(-50%);
}

.feedback-dialog {
  width: min(800px, calc(100% - 40px));
  max-height: min(880px, calc(100vh - 40px));
  padding: 44px;
  overflow: auto;
  border: 1px solid #2a3a48;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.09), rgba(22, 163, 68, 0.04)),
    #111b25;
  color: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.feedback-dialog::backdrop {
  background: rgba(5, 10, 14, 0.76);
  backdrop-filter: blur(6px);
}

.feedback-dialog .dialog-close {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.feedback-dialog .section-number {
  margin-bottom: 14px;
  color: #64c6eb;
}

.feedback-dialog h2 {
  max-width: 650px;
  font-size: clamp(31px, 4vw, 46px);
}

.feedback-dialog-intro {
  max-width: 690px;
  margin: 17px 0 28px;
  color: #b9c6cf;
  line-height: 1.7;
}

.feedback-questionnaire {
  display: grid;
  gap: 22px;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.feedback-anonymous {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(100, 198, 235, 0.24);
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.08);
  color: #b8c6cf;
  cursor: pointer;
}

.feedback-anonymous input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--blue);
}

.feedback-anonymous span {
  display: grid;
  gap: 3px;
  font-size: 13px;
  line-height: 1.5;
}

.feedback-anonymous strong {
  color: #fff;
  font-size: 14px;
}

.feedback-contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  transition: opacity 180ms ease;
}

.feedback-contact-fields label:last-child {
  grid-column: 1 / -1;
}

.feedback-contact-fields.is-disabled {
  opacity: 0.35;
}

.feedback-questionnaire label,
.feedback-question legend {
  color: #d5dfe5;
  font-size: 13px;
}

.feedback-questionnaire label {
  display: grid;
  gap: 8px;
}

.feedback-questionnaire small {
  color: #8194a2;
  font-size: 11px;
}

.feedback-questionnaire input[type="text"],
.feedback-questionnaire input[type="email"],
.feedback-questionnaire textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font: inherit;
  font-size: 14px;
}

.feedback-questionnaire input[type="text"],
.feedback-questionnaire input[type="email"] {
  min-height: 48px;
  padding: 0 14px;
}

.feedback-questionnaire textarea {
  padding: 13px 14px;
  resize: vertical;
}

.feedback-questionnaire input:focus,
.feedback-questionnaire textarea:focus {
  outline: 2px solid rgba(81, 201, 237, 0.55);
  outline-offset: 2px;
  border-color: transparent;
}

.feedback-question {
  margin: 0;
  padding: 0;
  border: 0;
}

.feedback-question legend {
  margin-bottom: 12px;
}

.feedback-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.feedback-choice-grid label {
  display: flex;
  gap: 9px;
  align-items: center;
  min-height: 49px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.feedback-choice-grid label:hover,
.feedback-choice-grid label:focus-within {
  border-color: rgba(81, 201, 237, 0.52);
  background: rgba(2, 132, 199, 0.12);
  transform: translateY(-1px);
}

.feedback-choice-grid input {
  accent-color: var(--blue);
}

.feedback-form-error {
  margin: -6px 0 0;
  color: #f5a5a5;
  font-size: 13px;
}

.feedback-questionnaire .button {
  justify-self: start;
}

.feedback-questionnaire .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.feedback-complete {
  padding: 30px 0 12px;
}

.feedback-complete p {
  max-width: 590px;
  margin: 18px 0 27px;
  color: #b9c6cf;
}

.feedback-edit {
  margin-left: 16px;
  border: 0;
  background: transparent;
  color: #75cdf0;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}

.feedback-edit:hover,
.feedback-edit:focus-visible {
  color: #fff;
}

@media (max-width: 760px) {
  .role-grid .role-card {
    min-height: 180px;
    padding: 25px;
  }

  .role-dialog {
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    padding: 38px 20px 22px;
    border-radius: 17px;
  }

  .role-dialog-grid {
    grid-template-columns: 1fr;
  }

  .role-dialog-grid section,
  .role-dialog-outcomes {
    padding: 21px;
  }

  .feedback-dialog {
    width: calc(100% - 18px);
    max-height: calc(100vh - 18px);
    padding: 38px 19px 23px;
    border-radius: 17px;
  }

  .feedback-contact-fields,
  .feedback-choice-grid {
    grid-template-columns: 1fr;
  }

  .feedback-contact-fields label:last-child {
    grid-column: auto;
  }

  .feedback-questionnaire .button {
    width: 100%;
  }

  .feedback-edit {
    display: block;
    margin: 18px 0 0;
  }
}

/* Keep the flip-card layout authoritative over earlier audience-card rules. */
.user-grid > .user-card {
  display: block;
  height: 510px;
  padding: 0;
  background: transparent;
}

.user-card-front-copy h3,
.user-card-back h3 {
  align-self: auto;
  margin: 0;
}

@media (max-width: 760px) {
  .user-grid > .user-card {
    height: 490px;
  }
}

/* WORKFLOW CLARITY SECTIONS
   Edit comparison and MVP section colours here. */
.workflow-break-section {
  background: #f7f9fb;
}

.workflow-break-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  column-gap: 80px;
}

.workflow-break-heading .section-number,
.workflow-break-heading h2 {
  grid-column: 1;
}

.workflow-break-heading h2 {
  max-width: 650px;
}

.workflow-break-intro {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
}

.workflow-break-intro p {
  margin: 0 0 14px;
  color: var(--muted);
}

.workflow-break-intro p:first-child {
  color: var(--navy);
  font-weight: 600;
}

.workflow-comparison {
  display: grid;
  grid-template-columns: 1fr 58px 1fr;
  align-items: stretch;
  margin-top: 58px;
}

.comparison-column {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.comparison-current {
  background: #fff;
}

.comparison-branch {
  border-color: rgba(2, 132, 199, 0.22);
  background:
    linear-gradient(140deg, rgba(22, 163, 68, 0.08), rgba(2, 132, 199, 0.1)),
    #fff;
}

.comparison-label {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.comparison-label span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: #e8ecef;
  color: #68757e;
  font-weight: 700;
}

.comparison-branch .comparison-label span {
  background: linear-gradient(135deg, var(--green-600), var(--blue));
  color: #fff;
}

.comparison-label h3 {
  font-size: 20px;
  text-transform: uppercase;
}

.comparison-column ul,
.grounded-list,
.pilot-audiences {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.comparison-column li,
.grounded-list li,
.pilot-audiences li {
  position: relative;
  padding-left: 22px;
  color: #4e5b64;
  font-size: 14px;
}

.comparison-column li::before,
.grounded-list li::before,
.pilot-audiences li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #98a3aa;
  content: "";
  transform: translateY(-50%);
}

.comparison-branch li::before,
.grounded-list li::before {
  background: linear-gradient(135deg, var(--green-600), var(--blue));
}

.comparison-shift {
  display: grid;
  place-items: center;
}

.comparison-shift span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
}

.mvp-workflow-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #101923;
  background-size: 42px 42px;
  color: var(--white);
}

.mvp-heading {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 70px;
  align-items: end;
}

.mvp-heading .section-number,
.mvp-heading h2 {
  grid-column: 1;
}

.mvp-heading p {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  color: #b8c5ce;
}

.mvp-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.mvp-flow-step {
  position: relative;
  min-height: 275px;
  padding: 0 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.mvp-flow-step::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  width: 1px;
  background: linear-gradient(transparent, rgba(52, 191, 230, 0.55), transparent);
  box-shadow: 0 0 12px rgba(2, 132, 199, 0.24);
  content: "";
  opacity: 0.48;
}

.mvp-flow-step:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.mvp-flow-step:not(:last-child)::after {
  position: absolute;
  top: 26px;
  right: -10px;
  z-index: 1;
  color: #4abce8;
  content: "→";
  font-size: 18px;
  filter: drop-shadow(0 0 7px rgba(74, 188, 232, 0.45));
}

.mvp-flow-number {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 55px;
  place-items: center;
  border: 1px solid rgba(76, 195, 237, 0.55);
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.1);
  color: #66c7ec;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 18px;
  transition:
    background 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease,
    color 250ms ease,
    transform 250ms ease;
}

.mvp-flow-step:hover .mvp-flow-number,
.mvp-flow-step:focus-within .mvp-flow-number {
  border-color: rgba(107, 219, 255, 0.95);
  background: linear-gradient(135deg, rgba(22, 163, 68, 0.22), rgba(2, 132, 199, 0.3));
  box-shadow:
    0 0 0 5px rgba(2, 132, 199, 0.08),
    0 0 24px rgba(36, 185, 229, 0.36);
  color: #fff;
  transform: scale(1.08);
}

.mvp-flow-step.reveal {
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.mvp-flow-step:nth-child(2) {
  transition-delay: 90ms;
}

.mvp-flow-step:nth-child(3) {
  transition-delay: 180ms;
}

.mvp-flow-step:nth-child(4) {
  transition-delay: 270ms;
}

.mvp-flow-step:nth-child(5) {
  transition-delay: 360ms;
}

.mvp-flow-step h3 {
  min-height: 54px;
  color: #fff;
  font-size: 18px;
}

.mvp-flow-step p {
  margin: 14px 0 0;
  color: #9fadb7;
  font-size: 13px;
}

.founder-story {
  position: relative;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(22, 163, 68, 0.07), rgba(2, 132, 199, 0.09)),
    #fff;
  box-shadow: 0 18px 48px rgba(11, 17, 23, 0.07);
}

.founder-story::after {
  position: absolute;
  right: -75px;
  bottom: -95px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(2, 132, 199, 0.12);
  border-radius: 50%;
  content: "";
}

.founder-story-label {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.founder-story p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.founder-story p:first-of-type {
  color: var(--navy);
  font-weight: 600;
}

.founder-story-proof {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 17, 23, 0.1);
}

.founder-story-proof span {
  padding: 8px 11px;
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #31566b;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.feedback-section {
  position: relative;
  overflow: hidden;
  background: #0e1822;
  color: #fff;
}

.feedback-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, transparent, black 35%, black 65%, transparent);
}

.feedback-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 100px;
  align-items: start;
}

.feedback-heading h2 {
  margin-top: 18px;
  color: #fff;
}

.feedback-subheading {
  max-width: 520px;
  margin: 24px 0 0;
  color: #80cce8;
  font-size: 18px;
}

.feedback-copy {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.feedback-copy p {
  margin: 0 0 18px;
  color: #b7c5ce;
}

.feedback-copy p:first-child {
  color: #fff;
  font-weight: 600;
}

.feedback-copy .button {
  margin-top: 12px;
}

.pilot-audience-label {
  margin-bottom: 0 !important;
  color: #fff !important;
  font-weight: 600;
}

.pilot-audiences {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 16px 0 0;
}

.pilot-audiences li {
  color: #c6d4dc;
}

.pilot-audiences li::before {
  background: #51c5e9;
}

.pilot-supporting-line {
  margin: 25px 0 24px !important;
  color: #84d2ed !important;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 9px;
  background: linear-gradient(100deg, var(--green-600), var(--blue));
  color: #fff;
  box-shadow: 0 12px 35px rgba(11, 17, 23, 0.24);
  font-size: 12px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sticky-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta:hover,
.sticky-cta:focus-visible {
  box-shadow: 0 16px 42px rgba(2, 132, 199, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .workflow-break-heading,
  .mvp-heading,
  .feedback-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .workflow-break-intro,
  .mvp-heading p {
    grid-column: 1;
    grid-row: auto;
  }

  .mvp-flow {
    grid-template-columns: 1fr;
  }

  .mvp-flow-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    min-height: 0;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .mvp-flow-step::before {
    top: -1px;
    right: 0;
    bottom: auto;
    left: 0;
    width: auto;
    height: 1px;
  }

  .mvp-flow-step:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mvp-flow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 18px;
    content: "↓";
  }

  .mvp-flow-number {
    width: 44px;
    height: 44px;
    margin: 0;
  }

  .mvp-flow-step h3 {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .workflow-comparison {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

  .comparison-shift span {
    transform: rotate(90deg);
  }

  .comparison-column {
    padding: 27px;
  }

  .founder-story,
  .feedback-copy {
    padding: 26px;
  }

  .pilot-audiences {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    padding: 12px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sticky-cta,
  .mvp-flow-number,
  .mvp-flow-step.reveal {
    transition: none;
  }

  .mvp-flow-step {
    transition-delay: 0ms;
  }
}

/* PRODUCT SCREENSHOTS
   Replace the four image files in assets/product to update product visuals. */
.product-showcase-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(22, 163, 68, 0.08), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(2, 132, 199, 0.1), transparent 32%),
    #f5f8fb;
}

.product-showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: 70px;
  align-items: end;
}

.product-showcase-heading .section-number,
.product-showcase-heading h2 {
  grid-column: 1;
}

.product-showcase-heading p {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  color: var(--muted);
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 65px;
}

.product-shot {
  display: grid;
  gap: 22px;
  align-content: start;
  margin: 0;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(11, 17, 23, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 20px 60px rgba(11, 17, 23, 0.08);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.product-shot:hover {
  border-color: rgba(2, 132, 199, 0.24);
  box-shadow: 0 30px 75px rgba(2, 132, 199, 0.14);
  transform: translateY(-5px);
}

.product-shot-builder,
.product-shot-homeowner {
  background:
    linear-gradient(145deg, rgba(22, 163, 68, 0.06), rgba(2, 132, 199, 0.08)),
    rgba(255, 255, 255, 0.9);
}

.product-shot-homeowner {
  grid-row: span 2;
  padding: 38px;
}

.product-shot-contractor {
  grid-column: 1;
}

.device-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(11, 17, 23, 0.18);
  background: #0b1117;
  box-shadow:
    0 20px 45px rgba(11, 17, 23, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 380ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.product-shot:hover .device-shell {
  transform: scale(1.018);
}

.tablet-shell {
  max-height: 570px;
  border-radius: 18px;
}

.phone-shell {
  width: min(100%, 360px);
  max-height: 590px;
  border-width: 7px;
  border-radius: 28px;
}

.product-shot-homeowner .phone-shell {
  width: min(100%, 405px);
  max-height: 710px;
}

.device-bar {
  display: flex;
  gap: 6px;
  height: 28px;
  padding: 11px 13px;
  background: #151e27;
}

.device-bar span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.phone-speaker {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 2;
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(-50%);
}

.device-screen {
  height: 100%;
  overflow: hidden;
  background: #eef2ff;
}

.device-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.tablet-shell .device-screen img {
  margin-top: -1%;
}

.phone-shell .device-screen img {
  margin-top: -0.5%;
}

.product-shot figcaption span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.product-shot figcaption p {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .product-showcase-heading,
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase-heading {
    gap: 24px;
  }

  .product-showcase-heading p {
    grid-column: 1;
    grid-row: auto;
  }

  .product-shot-homeowner,
  .product-shot-contractor {
    grid-row: auto;
    grid-column: auto;
  }

  .phone-shell,
  .product-shot-homeowner .phone-shell {
    width: min(100%, 430px);
    max-height: 680px;
  }
}

@media (max-width: 760px) {
  .product-showcase-grid {
    margin-top: 42px;
  }

  .product-shot,
  .product-shot-homeowner {
    gap: 18px;
    padding: 20px;
    border-radius: 17px;
  }

  .tablet-shell {
    max-height: 500px;
  }

  .phone-shell,
  .product-shot-homeowner .phone-shell {
    max-height: 600px;
    border-width: 5px;
    border-radius: 22px;
  }

  .product-shot figcaption p {
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-shot,
  .device-shell {
    transition: none;
  }
}

/* JUNE LAYOUT REFINEMENTS */
.brand-copy {
  gap: 12px;
}

.brand-copy small {
  font-size: 12px;
  letter-spacing: 0.055em;
}

.hero-product-stack {
  min-height: 590px;
  isolation: isolate;
}

.hero-product-stack::before {
  position: absolute;
  inset: 45px 5px 35px 5px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18), rgba(22, 163, 68, 0.07) 42%, transparent 70%);
  content: "";
  filter: blur(8px);
}

.hero-screen-card {
  position: absolute;
  overflow: hidden;
  border: 5px solid #18232d;
  border-radius: 22px;
  background: #edf2ff;
  box-shadow:
    0 30px 65px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: transform 320ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.hero-screen-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-screen-builder {
  z-index: 2;
  top: 20px;
  left: 8%;
  width: 46%;
  height: 515px;
  transform: rotate(-5deg);
}

.hero-screen-homeowner {
  z-index: 3;
  top: 43px;
  left: 33%;
  width: 43%;
  height: 525px;
  transform: rotate(3deg);
}

.hero-screen-contractor {
  z-index: 1;
  top: 88px;
  right: 0;
  width: 39%;
  height: 455px;
  transform: rotate(8deg);
}

.hero-product-stack:hover .hero-screen-builder {
  transform: translate(-8px, -5px) rotate(-7deg);
}

.hero-product-stack:hover .hero-screen-homeowner {
  transform: translateY(-10px) rotate(2deg);
}

.hero-product-stack:hover .hero-screen-contractor {
  transform: translate(8px, -4px) rotate(10deg);
}

.hero-product-label {
  position: absolute;
  right: 2%;
  bottom: 4px;
  z-index: 5;
  max-width: 255px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(11, 17, 23, 0.88);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.hero-product-label span {
  color: #59cbed;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.hero-product-label strong {
  display: block;
  margin-top: 5px;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}

.comparison-column {
  cursor: default;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.comparison-column:hover,
.comparison-column:focus-visible {
  outline: none;
  border-color: rgba(2, 132, 199, 0.38);
  background:
    linear-gradient(140deg, rgba(22, 163, 68, 0.09), rgba(2, 132, 199, 0.13)),
    #fff;
  box-shadow: 0 22px 52px rgba(2, 132, 199, 0.14);
  transform: translateY(-6px);
}

.comparison-column:hover .comparison-label span,
.comparison-column:focus-visible .comparison-label span {
  background: linear-gradient(135deg, var(--green-600), var(--blue));
  color: #fff;
  box-shadow: 0 0 18px rgba(2, 132, 199, 0.25);
}

.mvp-flow-step:not(:last-child)::after {
  display: none;
}

.mvp-flow-number {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(103, 216, 252, 0.88);
  background:
    linear-gradient(145deg, rgba(22, 163, 68, 0.24), rgba(2, 132, 199, 0.34)),
    #142635;
  box-shadow:
    0 0 0 6px rgba(2, 132, 199, 0.07),
    0 0 22px rgba(31, 179, 225, 0.25);
  color: #fff;
  font-size: 21px;
}

.step-tag {
  font-size: 12px;
  letter-spacing: 0.14em;
}

.validation-layout {
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.18fr);
  gap: 82px;
}

.validation-copy {
  position: relative;
  top: auto;
}

.validation-product-screen {
  position: relative;
  width: min(88%, 360px);
  height: 415px;
  margin: 45px 0 0 18px;
  overflow: hidden;
  border: 6px solid #15212b;
  border-radius: 24px;
  background: #eef2ff;
  box-shadow: 0 30px 65px rgba(11, 17, 23, 0.22);
  transform: rotate(-4deg);
}

.validation-product-screen::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 17px;
  content: "";
  pointer-events: none;
}

.validation-product-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.founder-story {
  padding: 35px 0 15px 42px;
  overflow: visible;
  border: 0;
  border-left: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.founder-story::after {
  display: none;
}

.founder-story p {
  max-width: 650px;
  font-size: 17px;
  line-height: 1.75;
}

.founder-story p:first-of-type {
  font-size: 20px;
  line-height: 1.55;
}

.role-grid .role-card:hover,
.role-grid .role-card:focus-visible {
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.46), rgba(22, 163, 68, 0.28)),
    #1c2b36;
  box-shadow:
    inset 0 0 0 1px rgba(91, 211, 246, 0.72),
    0 16px 34px rgba(2, 132, 199, 0.18);
  transform: translateY(-6px);
}

.role-card:hover span,
.role-card:focus-visible span {
  color: #8be0fb;
}

.role-card:hover p,
.role-card:focus-visible p {
  color: #fff;
}

.role-card:hover small,
.role-card:focus-visible small {
  border-color: rgba(255, 255, 255, 0.22);
  color: #8ee4ff;
}

.feedback-layout {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 95px;
  align-items: center;
}

.feedback-visual {
  position: relative;
  min-height: 585px;
}

.feedback-screen {
  position: absolute;
  overflow: hidden;
  border: 6px solid #1b2833;
  border-radius: 24px;
  background: #eef2ff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}

.feedback-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.feedback-screen-main {
  z-index: 2;
  top: 12px;
  left: 4%;
  width: 52%;
  height: 540px;
  transform: rotate(-5deg);
}

.feedback-screen-secondary {
  top: 58px;
  right: 2%;
  width: 49%;
  height: 485px;
  transform: rotate(7deg);
}

.feedback-copy-open {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.feedback-copy-open h2 {
  margin: 18px 0 22px;
  color: #fff;
}

.feedback-copy-open .feedback-subheading {
  margin-bottom: 34px;
}

@media (max-width: 1000px) {
  .hero-product-stack {
    width: min(100%, 650px);
  }
}

@media (max-width: 900px) {
  .validation-layout,
  .feedback-layout {
    grid-template-columns: 1fr;
  }

  .validation-product-screen {
    width: min(72%, 390px);
  }

  .founder-story {
    padding: 10px 0 0;
    border-left: 0;
  }

  .feedback-visual {
    width: min(100%, 620px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .brand-copy {
    gap: 8px;
  }

  .brand-copy small {
    max-width: 190px;
    font-size: 8px;
  }

  .hero-product-stack {
    min-height: 460px;
  }

  .hero-screen-builder {
    left: 2%;
    width: 49%;
    height: 390px;
  }

  .hero-screen-homeowner {
    left: 29%;
    width: 48%;
    height: 405px;
  }

  .hero-screen-contractor {
    top: 72px;
    width: 42%;
    height: 350px;
  }

  .hero-product-label {
    right: 0;
    bottom: -8px;
  }

  .mvp-flow-number {
    width: 50px;
    height: 50px;
  }

  .validation-product-screen {
    width: min(85%, 360px);
    height: 390px;
    margin-left: 8px;
  }

  .founder-story p {
    font-size: 15px;
  }

  .founder-story p:first-of-type {
    font-size: 18px;
  }

  .feedback-visual {
    min-height: 480px;
  }

  .feedback-screen-main {
    width: 55%;
    height: 430px;
  }

  .feedback-screen-secondary {
    top: 48px;
    width: 52%;
    height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-screen-card,
  .comparison-column {
    transition: none;
  }
}

/* DEVICE, MVP AND PILOT REFINEMENTS */
.hero-device {
  position: absolute;
  overflow: hidden;
  background: #edf2ff;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.42);
  transition: transform 320ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.hero-device img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-laptop {
  z-index: 1;
  top: 52px;
  left: 0;
  width: 68%;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  transform: rotate(-4deg);
}

.hero-laptop-screen {
  height: 370px;
  overflow: hidden;
  border: 8px solid #202830;
  border-bottom-width: 13px;
  border-radius: 15px 15px 7px 7px;
  background: #eef2ff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.hero-laptop-base {
  position: relative;
  width: 112%;
  height: 15px;
  margin-left: -6%;
  border-radius: 2px 2px 12px 12px;
  background: linear-gradient(#d2d7db, #8d949a);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}

.hero-laptop-base::after {
  position: absolute;
  top: 0;
  left: 43%;
  width: 14%;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: #747b80;
  content: "";
}

.hero-tablet {
  z-index: 2;
  top: 82px;
  right: 5%;
  width: 43%;
  height: 430px;
  border: 8px solid #29323a;
  border-radius: 20px;
  transform: rotate(5deg);
}

.hero-mobile {
  z-index: 3;
  right: 30%;
  bottom: 5px;
  width: 27%;
  height: 355px;
  border: 7px solid #111920;
  border-radius: 29px;
  transform: rotate(-2deg);
}

.hero-mobile-speaker {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 2;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  transform: translateX(-50%);
}

.hero-product-stack:hover .hero-laptop {
  transform: translate(-7px, -5px) rotate(-5deg);
}

.hero-product-stack:hover .hero-tablet {
  transform: translate(8px, -7px) rotate(6deg);
}

.hero-product-stack:hover .hero-mobile {
  transform: translateY(-10px) rotate(-1deg);
}

.mvp-flow-number {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(76, 195, 237, 0.55);
  background: rgba(2, 132, 199, 0.1);
  box-shadow: none;
  color: #66c7ec;
  font-size: 18px;
}

.mvp-flow-step:hover .mvp-flow-number,
.mvp-flow-step:focus-within .mvp-flow-number {
  border-color: #77dcfb;
  background: linear-gradient(135deg, rgba(22, 163, 68, 0.4), rgba(2, 132, 199, 0.62));
  box-shadow:
    0 0 0 7px rgba(2, 132, 199, 0.12),
    0 0 32px rgba(56, 200, 241, 0.58);
  color: #fff;
  transform: scale(1.12);
}

.mvp-flow-step:not(:last-child)::after {
  display: block;
}

.validation-macbook {
  position: relative;
  width: min(100%, 455px);
  margin: 45px 0 0 18px;
  transform: rotate(-4deg);
}

.validation-macbook-screen {
  position: relative;
  height: 310px;
  overflow: hidden;
  border: 9px solid #222a31;
  border-bottom-width: 15px;
  border-radius: 16px 16px 7px 7px;
  background: #eef2ff;
  box-shadow: 0 28px 55px rgba(11, 17, 23, 0.2);
}

.validation-macbook-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.macbook-camera {
  position: absolute;
  top: -6px;
  left: 50%;
  z-index: 2;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #0b1117;
  transform: translateX(-50%);
}

.validation-macbook-base {
  width: 112%;
  height: 17px;
  margin-left: -6%;
  border-radius: 2px 2px 14px 14px;
  background: linear-gradient(#d9dde1, #92999f);
  box-shadow: 0 13px 24px rgba(11, 17, 23, 0.2);
}

.validation-macbook-base span {
  display: block;
  width: 17%;
  height: 5px;
  margin: 0 auto;
  border-radius: 0 0 5px 5px;
  background: #7f868b;
}

.founder-story {
  padding-left: 0;
  border-left: 0;
}

.founder-story-proof {
  padding-top: 0;
  border-top: 0;
}

.early-layout {
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: 54px;
}

.early-copy {
  padding: 38px;
  border: 1px solid rgba(73, 213, 122, 0.25);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(22, 163, 68, 0.14), rgba(16, 185, 129, 0.05)),
    rgba(255, 255, 255, 0.025);
}

.pilot-who-label {
  color: #67d98d;
}

.pilot-card {
  margin-left: 0;
  padding: 38px;
  border: 1px solid rgba(88, 188, 233, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.16), rgba(37, 99, 235, 0.05)),
    rgba(255, 255, 255, 0.025);
}

.pilot-label {
  color: #63c8ed;
}

.pilot-card h3 {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .validation-macbook {
    width: min(90%, 480px);
  }

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

@media (max-width: 760px) {
  .hero-laptop {
    top: 42px;
    width: 70%;
  }

  .hero-laptop-screen {
    height: 285px;
  }

  .hero-tablet {
    top: 72px;
    width: 43%;
    height: 340px;
  }

  .hero-mobile {
    right: 31%;
    width: 28%;
    height: 290px;
  }

  .validation-macbook {
    width: min(95%, 430px);
    margin-left: 8px;
  }

  .validation-macbook-screen {
    height: 275px;
  }

  .early-copy,
  .pilot-card {
    padding: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-device {
    transition: none;
  }
}

/* FINAL DEVICE AND PILOT PASS */
.hero-laptop-screen img,
.hero-tablet img,
.hero-mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-laptop-screen img {
  object-position: center 7%;
}

.hero-tablet img {
  object-position: center 5%;
}

.hero-mobile img {
  object-position: center top;
}

.mvp-flow-step:not(:last-child)::after {
  display: none;
}

.mvp-flow-step:hover .mvp-flow-number,
.mvp-flow-step:focus-within .mvp-flow-number {
  border-color: #a2eaff;
  background: linear-gradient(135deg, rgba(35, 205, 91, 0.58), rgba(2, 132, 199, 0.82));
  box-shadow:
    0 0 0 8px rgba(2, 132, 199, 0.15),
    0 0 38px rgba(71, 208, 247, 0.72);
  color: #fff;
  transform: scale(1.16);
}

.validation-fold {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 8px 1fr;
  width: min(100%, 485px);
  height: 360px;
  margin: 45px 0 0 5px;
  padding: 7px;
  border: 1px solid #4d555c;
  border-radius: 19px;
  background: linear-gradient(145deg, #2f373e, #11171d);
  box-shadow:
    0 32px 65px rgba(11, 17, 23, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-7deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.validation-fold::before {
  position: absolute;
  top: 12px;
  left: 50%;
  z-index: 4;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #05080a;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
  transform: translateX(-50%);
}

.validation-fold-panel {
  overflow: hidden;
  background: #eef2ff;
}

.validation-fold-left {
  border-radius: 12px 3px 3px 12px;
}

.validation-fold-right {
  border-radius: 3px 12px 12px 3px;
}

.validation-fold-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.validation-fold-left img {
  object-position: 42% top;
}

.validation-fold-right img {
  object-position: 58% top;
}

.validation-fold-hinge {
  position: relative;
  z-index: 2;
  background:
    linear-gradient(90deg, #080d11, #596168 45%, #151b20 55%, #06090c);
  box-shadow:
    -2px 0 4px rgba(0, 0, 0, 0.35),
    2px 0 4px rgba(0, 0, 0, 0.35);
}

.founder-feedback-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 27px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.founder-feedback-link span {
  transition: transform 180ms ease;
}

.founder-feedback-link:hover span,
.founder-feedback-link:focus-visible span {
  transform: translateY(3px);
}

.pilot-section-layout {
  position: relative;
  z-index: 2;
}

.pilot-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 30px 80px;
  align-items: end;
  margin-bottom: 55px;
}

.pilot-section-heading .eyebrow,
.pilot-section-heading h2 {
  grid-column: 1;
}

.pilot-section-heading h2 {
  max-width: 680px;
  font-size: clamp(42px, 5vw, 66px);
}

.pilot-section-heading > p {
  grid-column: 2;
  grid-row: 1 / 3;
  margin: 0;
  color: #bdcbd4;
  font-size: 17px;
}

.pilot-section-heading .button {
  grid-column: 2;
  justify-self: start;
}

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

.pilot-detail-card {
  position: relative;
  min-height: 355px;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.08), rgba(22, 163, 68, 0.04)),
    rgba(255, 255, 255, 0.035);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.pilot-detail-card:hover {
  border-color: rgba(86, 203, 240, 0.42);
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.19), rgba(22, 163, 68, 0.11)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.18);
  transform: translateY(-5px);
}

.pilot-detail-number {
  color: #62c9ed;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.pilot-detail-card h3 {
  min-height: 60px;
  margin: 44px 0 18px;
  color: #fff;
  font-size: 21px;
}

.pilot-detail-card p,
.pilot-detail-card li {
  color: #b9c7d0;
  font-size: 13px;
  line-height: 1.65;
}

.pilot-detail-card p {
  margin: 0;
}

.pilot-detail-card ul,
.pilot-detail-card ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: pilot-step;
}

.pilot-detail-card li {
  position: relative;
  padding-left: 17px;
}

.pilot-detail-card li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue));
  content: "";
  transform: translateY(-50%);
}

.pilot-partner-card {
  border-color: rgba(70, 211, 119, 0.2);
  background:
    linear-gradient(145deg, rgba(22, 163, 68, 0.15), rgba(16, 185, 129, 0.05)),
    rgba(255, 255, 255, 0.035);
}

@media (max-width: 1080px) {
  .pilot-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pilot-detail-card {
    min-height: 310px;
  }
}

@media (max-width: 900px) {
  .pilot-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

@media (max-width: 760px) {
  .validation-fold {
    width: min(100%, 430px);
    height: 315px;
    margin-left: 0;
  }

  .pilot-detail-grid {
    grid-template-columns: 1fr;
  }

  .pilot-detail-card {
    min-height: 0;
  }

  .pilot-detail-card h3 {
    min-height: 0;
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pilot-detail-card,
  .founder-feedback-link span {
    transition: none;
  }
}

/* REAL MOBILE SCREEN FAN */
.hero-product-fan {
  min-height: 650px;
  isolation: isolate;
}

.hero-product-fan::before {
  position: absolute;
  inset: 25px -10px 115px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 48%, rgba(2, 132, 199, 0.2), transparent 42%),
    radial-gradient(circle at 58% 55%, rgba(22, 163, 68, 0.14), transparent 48%);
  content: "";
  filter: blur(12px);
}

.hero-app-screen {
  position: absolute;
  top: 25px;
  width: 38%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #edf2ff;
  box-shadow:
    0 30px 65px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(2, 132, 199, 0.12);
  transform-origin: bottom center;
  transition:
    border-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.hero-app-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-app-builder {
  z-index: 1;
  left: 3%;
  transform: translateY(34px) rotate(-8deg);
}

.hero-app-homeowner {
  z-index: 3;
  left: 31%;
  width: 40%;
  transform: translateY(2px);
}

.hero-app-contractor {
  z-index: 2;
  right: 1%;
  transform: translateY(34px) rotate(8deg);
}

.hero-app-screen:hover {
  z-index: 5;
  border-color: rgba(97, 218, 251, 0.58);
  box-shadow:
    0 38px 75px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(55, 204, 239, 0.3),
    0 0 48px rgba(22, 163, 68, 0.13);
}

.hero-app-builder:hover {
  transform: translateY(22px) rotate(-7deg);
}

.hero-app-homeowner:hover {
  transform: translateY(-10px);
}

.hero-app-contractor:hover {
  transform: translateY(22px) rotate(7deg);
}

.hero-product-caption {
  position: absolute;
  right: 2%;
  bottom: 0;
  left: 2%;
  z-index: 6;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(11, 17, 23, 0.9);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.hero-product-caption h2 {
  margin: 0;
  color: #fff;
  font-size: 19px;
  font-weight: 600;
}

.hero-product-caption p {
  margin: 9px 0 0;
  color: #aebdc7;
  font-size: 12px;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .hero-product-fan {
    width: min(100%, 650px);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  .hero-product-fan {
    min-height: 560px;
    margin-top: 15px;
  }

  .hero-app-screen {
    top: 18px;
    width: 40%;
    border-radius: 13px;
  }

  .hero-app-builder {
    left: 0;
  }

  .hero-app-homeowner {
    left: 29%;
    width: 42%;
  }

  .hero-app-contractor {
    right: 0;
  }

  .hero-product-caption {
    right: 0;
    left: 0;
    padding: 17px 18px;
  }

  .hero-product-caption h2 {
    font-size: 17px;
  }

  .hero-product-caption p {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-app-screen {
    transition: none;
  }
}

/* REAL DESKTOP + MOBILE PRODUCT PAIR */
.validation-product-pair {
  position: relative;
  width: min(100%, 570px);
  min-height: 345px;
  margin-top: 45px;
}

.validation-desktop-screen,
.validation-mobile-screen {
  overflow: hidden;
  border: 1px solid rgba(11, 17, 23, 0.2);
  background: #eef2ff;
  box-shadow: 0 28px 62px rgba(11, 17, 23, 0.2);
  transition:
    border-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.validation-desktop-screen {
  width: 92%;
  aspect-ratio: 3356 / 1648;
  border: 7px solid #202830;
  border-radius: 14px;
  transform: rotate(-2deg);
}

.validation-mobile-screen {
  position: absolute;
  right: 1%;
  bottom: 4px;
  z-index: 2;
  width: 24%;
  aspect-ratio: 945 / 2048;
  border: 6px solid #10171d;
  border-radius: 23px;
  transform: rotate(4deg);
}

.validation-desktop-screen img,
.validation-mobile-screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}

.validation-environment-label {
  position: absolute;
  bottom: 11px;
  left: 16px;
  padding: 10px 13px;
  border: 1px solid rgba(2, 132, 199, 0.16);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.9);
  color: #31566b;
  box-shadow: 0 10px 25px rgba(11, 17, 23, 0.12);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.validation-desktop-screen:hover,
.validation-mobile-screen:hover {
  z-index: 5;
  border-color: rgba(82, 207, 242, 0.62);
  box-shadow:
    0 38px 78px rgba(11, 17, 23, 0.3),
    0 0 38px rgba(43, 197, 236, 0.32),
    0 0 48px rgba(22, 163, 68, 0.12);
}

.validation-desktop-screen:hover {
  transform: translateY(-8px) rotate(-2deg) scale(1.025);
}

.validation-mobile-screen:hover {
  transform: translateY(-10px) rotate(3deg) scale(1.055);
}

/* Stronger but restrained hover treatment for every real product screenshot. */
.hero-app-screen:hover,
.feedback-screen:hover {
  z-index: 8;
  border-color: rgba(101, 221, 251, 0.7);
  box-shadow:
    0 42px 85px rgba(0, 0, 0, 0.52),
    0 0 42px rgba(50, 201, 239, 0.38),
    0 0 55px rgba(22, 163, 68, 0.16);
}

.feedback-screen {
  transition:
    border-color 250ms ease,
    box-shadow 250ms ease,
    transform 250ms ease;
}

.feedback-screen-main:hover {
  transform: translateY(-10px) rotate(-4deg) scale(1.035);
}

.feedback-screen-secondary:hover {
  transform: translateY(-10px) rotate(6deg) scale(1.035);
}

/* Give Help Shape Branch a deliberate visual boundary. */
.feedback-section {
  border-top: 1px solid rgba(85, 207, 242, 0.16);
  border-bottom: 1px solid rgba(85, 207, 242, 0.16);
}

.feedback-section::after {
  position: absolute;
  top: 11%;
  right: -8%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(56, 194, 234, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

/* GUIDED EARLY ACCESS WORKFLOW */
.access-workflow {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(0, 1fr);
  gap: 60px;
  margin-top: 65px;
  padding: 42px;
  border: 1px solid rgba(92, 207, 241, 0.22);
  border-radius: 22px;
  background:
    linear-gradient(140deg, rgba(2, 132, 199, 0.13), rgba(22, 163, 68, 0.07)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.18);
}

.access-workflow-intro > span,
.access-complete > span {
  color: #64caed;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.access-workflow-intro h3,
.access-complete h3 {
  margin: 20px 0 14px;
  color: #fff;
  font-size: 29px;
}

.access-workflow-intro p,
.access-complete p {
  margin: 0;
  color: #afbec8;
  font-size: 14px;
}

.access-progress {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 7px;
  margin-top: 35px;
}

.access-progress span {
  height: 3px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 200ms ease, box-shadow 200ms ease;
}

.access-progress span.active {
  background: linear-gradient(90deg, var(--green-600), #51c9ed);
  box-shadow: 0 0 10px rgba(66, 201, 237, 0.24);
}

.access-form {
  min-height: 355px;
}

.access-step {
  margin: 0;
  padding: 0;
  border: 0;
  animation: access-step-in 320ms ease both;
}

.access-step legend {
  margin-bottom: 28px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
}

.access-step-copy {
  max-width: 540px;
  margin: -15px 0 23px;
  color: #afbec8;
  font-size: 13px;
  line-height: 1.65;
}

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

.access-options button {
  min-height: 58px;
  padding: 15px 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
  color: #d2dce2;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  text-align: left;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.access-options button:hover,
.access-options button:focus-visible,
.access-options button.selected {
  outline: none;
  border-color: rgba(89, 207, 241, 0.62);
  background: linear-gradient(135deg, rgba(22, 163, 68, 0.2), rgba(2, 132, 199, 0.25));
  box-shadow: 0 12px 25px rgba(2, 132, 199, 0.16);
  color: #fff;
  transform: translateY(-2px);
}

.access-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
  margin-bottom: 24px;
}

.access-fields label {
  display: grid;
  gap: 8px;
  color: #aebdc7;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.access-fields label:last-child {
  grid-column: 1 / -1;
}

.access-fields input,
.access-fields textarea,
.access-fields select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font: inherit;
  font-size: 14px;
  resize: vertical;
}

.access-fields input:focus,
.access-fields textarea:focus,
.access-fields select:focus {
  border-color: rgba(89, 207, 241, 0.65);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.access-fields select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #93a8b4 50%),
    linear-gradient(135deg, #93a8b4 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.access-fields select option {
  background: #101a22;
  color: #fff;
}

.access-location-fields {
  margin-bottom: 18px;
}

.access-location-fields[hidden] {
  display: none;
}

.access-field-error {
  margin: -5px 0 15px;
  color: #ffb4ae;
  font-size: 12px;
}

.access-continue {
  margin-top: 4px;
}

.access-back {
  display: flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  margin-top: 19px;
  padding: 7px 2px;
  border: 0;
  background: transparent;
  color: #9fb0bb;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  transition: color 180ms ease, transform 180ms ease;
}

.access-back:hover,
.access-back:focus-visible {
  outline: none;
  color: #fff;
  transform: translateX(-3px);
}

.access-outcome-panel {
  margin-bottom: 25px;
  padding: 25px;
  border: 1px solid rgba(89, 207, 241, 0.26);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.13), rgba(22, 163, 68, 0.08));
}

.access-outcome-panel.is-eligible,
.access-outcome-panel.is-available {
  border-color: rgba(54, 205, 113, 0.46);
  box-shadow: inset 3px 0 0 rgba(54, 205, 113, 0.8);
}

.access-outcome-panel.is-available {
  background: linear-gradient(135deg, rgba(22, 163, 68, 0.18), rgba(2, 132, 199, 0.11));
}

.access-outcome-panel.is-available > span {
  color: #75dfa0;
}

.access-outcome-panel.is-waiting {
  border-color: rgba(89, 207, 241, 0.38);
  box-shadow: inset 3px 0 0 rgba(89, 207, 241, 0.72);
}

.access-outcome-panel > span {
  color: #59cff1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.access-outcome-panel h3 {
  margin: 10px 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
}

.access-outcome-panel p {
  max-width: 580px;
  margin: 0;
  color: #afbec8;
  font-size: 14px;
  line-height: 1.7;
}

.access-complete .button {
  margin-top: 25px;
}

.access-restart {
  margin-left: 14px;
  border: 0;
  background: transparent;
  color: #93a8b4;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
}

.access-restart:hover {
  color: #fff;
}

@keyframes access-step-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .access-workflow {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}

@media (max-width: 760px) {
  .validation-product-pair {
    min-height: 300px;
  }

  .validation-desktop-screen {
    width: 96%;
  }

  .validation-mobile-screen {
    right: 0;
    width: 27%;
  }

  .access-workflow {
    padding: 27px 20px;
  }

  .access-options,
  .access-fields {
    grid-template-columns: 1fr;
  }

  .access-fields label:last-child {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .validation-desktop-screen,
  .validation-mobile-screen,
  .feedback-screen,
  .access-options button,
  .access-progress span {
    transition: none;
  }

  .access-step {
    animation: none;
  }
}

/* FINAL TYPE, NAVIGATION AND EARLY-ACCESS REFINEMENTS */
body,
button,
input,
select,
textarea {
  font-family: "Space Grotesk", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 em,
h2 em,
h3 em,
.section-number,
.eyebrow {
  font-family: "Space Grotesk", Arial, sans-serif;
}

.site-nav {
  gap: 13px;
}

.site-nav > a:not(.button) {
  position: relative;
  padding: 10px 11px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.76);
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 11px;
  bottom: 5px;
  left: 11px;
  height: 1px;
  background: #35bdf2;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible {
  outline: none;
  background: rgba(2, 132, 199, 0.13);
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.14);
  color: #45c7ff;
  transform: translateY(-2px) scale(1.035);
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-nav > .button {
  flex: 0 0 auto;
  width: max-content;
  min-width: 0;
  padding-inline: 16px;
  white-space: nowrap;
}

.hero-note {
  align-items: flex-start;
}

.hero-note p {
  max-width: 440px;
  color: #afbec8;
  line-height: 1.55;
}

.problem-section {
  border-top: 1px solid rgba(2, 132, 199, 0.12);
}

.access-country-confirmation {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  padding: 13px 15px;
  border: 1px solid rgba(89, 207, 241, 0.24);
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.1);
}

.access-country-confirmation span {
  color: #93a8b4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.access-country-confirmation input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: #59cff1;
  cursor: default;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1000px) and (min-width: 761px) {
  .site-nav {
    gap: 2px;
    font-size: 12px;
  }

  .site-nav > a:not(.button) {
    padding-inline: 7px;
  }

  .site-nav > .button {
    padding-inline: 12px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    gap: 12px;
  }

  .site-nav > a:not(.button) {
    padding: 9px 12px;
  }

  .site-nav > .button {
    width: max-content;
    align-self: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav > a:not(.button) {
    transition: none;
  }
}

/* HOMEOWNER FEEDBACK AND PRODUCT SCREEN PREVIEW */
.access-other-response {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(89, 207, 241, 0.26);
  border-radius: 12px;
  background: rgba(2, 132, 199, 0.08);
}

.access-other-response[hidden] {
  display: none;
}

.access-other-response label {
  display: grid;
  gap: 9px;
  color: #b8c6cf;
  font-size: 12px;
  font-weight: 600;
}

.access-other-response textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font: inherit;
  resize: vertical;
}

.access-other-response textarea:focus {
  border-color: rgba(89, 207, 241, 0.65);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.12);
}

.access-other-response .button {
  margin-top: 14px;
}

.hero-app-screen {
  padding: 0;
  cursor: grab;
  font: inherit;
}

.hero-app-screen:active {
  cursor: grabbing;
}

.hero-app-screen:focus-visible {
  z-index: 8;
  outline: 2px solid #45c7ff;
  outline-offset: 4px;
}

.hero-app-builder.is-picked {
  z-index: 10;
  transform: translate(18px, 5px) rotate(-3deg) scale(1.12);
}

.hero-app-homeowner.is-picked {
  z-index: 10;
  transform: translateY(-12px) scale(1.1);
}

.hero-app-contractor.is-picked {
  z-index: 10;
  transform: translate(-18px, 5px) rotate(3deg) scale(1.12);
}

.hero-app-screen.is-picked {
  border-color: rgba(101, 221, 251, 0.72);
  box-shadow:
    0 45px 90px rgba(0, 0, 0, 0.58),
    0 0 42px rgba(55, 204, 239, 0.34),
    0 0 55px rgba(22, 163, 68, 0.14);
}

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

/* Remove the large decorative arc that could read as a screen crack. */
.hero::before {
  display: none;
}

@media (max-width: 760px) {
  .hero-app-builder.is-picked {
    transform: translate(8px, 5px) rotate(-3deg) scale(1.08);
  }

  .hero-app-homeowner.is-picked {
    transform: translateY(-6px) scale(1.08);
  }

  .hero-app-contractor.is-picked {
    transform: translate(-8px, 5px) rotate(3deg) scale(1.08);
  }
}

/* NAV ALIGNMENT + SECTION 05 ICON POINTS */
@media (min-width: 761px) {
  .site-nav {
    flex: 1;
    justify-content: flex-end;
    margin-left: auto;
    text-align: right;
  }
}

.founder-story-proof {
  display: grid;
  gap: 0;
  margin-top: 30px;
  padding-top: 0;
  border-top: 1px solid rgba(11, 17, 23, 0.1);
}

.founder-proof-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(11, 17, 23, 0.1);
}

.founder-story-proof .founder-proof-icon {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(2, 132, 199, 0.38);
  border-radius: 10px;
  background: rgba(2, 132, 199, 0.1);
  color: #168fc8;
  font-size: inherit;
  letter-spacing: normal;
}

.founder-story-proof .founder-proof-icon svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.founder-proof-item div {
  display: grid;
  gap: 3px;
}

.founder-proof-item strong {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.founder-proof-item small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .founder-proof-item {
    grid-template-columns: 38px 1fr;
    gap: 13px;
  }
}

/* AUTHORITATIVE MOBILE NAVIGATION OVERLAY */
@media (max-width: 760px) {
  body.menu-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  body.menu-open .site-header {
    position: fixed;
    z-index: 1001;
    inset: 0 0 auto;
    border-bottom-color: rgba(255, 255, 255, 0.1);
    background: transparent;
    box-shadow: none;
  }

  body.menu-open .site-header .brand {
    position: relative;
    z-index: 1003;
    color: #fff;
  }

  body.menu-open .brand-copy small {
    color: rgba(255, 255, 255, 0.72);
  }

  .nav-toggle {
    position: relative;
    z-index: 1003;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: transparent;
    touch-action: manipulation;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
  }

  .nav-toggle[aria-expanded="true"] {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 100dvh;
    padding:
      max(112px, calc(env(safe-area-inset-top) + 96px))
      max(24px, env(safe-area-inset-right))
      max(38px, calc(env(safe-area-inset-bottom) + 24px))
      max(24px, env(safe-area-inset-left));
    overflow-y: auto;
    background: #0b1117;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav > a:not(.button) {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 58px;
    padding: 13px 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(21px, 6vw, 28px);
    line-height: 1.2;
  }

  .site-nav > a:not(.button)::after {
    display: none;
  }

  .site-nav > a:not(.button):hover,
  .site-nav > a:not(.button):focus-visible {
    border-color: rgba(69, 199, 255, 0.32);
    outline: none;
    background: rgba(2, 132, 199, 0.16);
    box-shadow: none;
    color: #62d2ff;
    transform: none;
  }

  .site-nav > .button {
    align-self: stretch;
    width: 100%;
    min-height: 56px;
    margin-top: 16px;
    border-radius: 8px;
    background: #16a344;
    color: #fff;
    font-size: 16px;
  }

  .site-nav > .button:hover,
  .site-nav > .button:focus-visible {
    outline: 2px solid #62d2ff;
    outline-offset: 3px;
    background: #138c3c;
    transform: none;
  }
}

/* FOUNDER STORY + TRUST */
.founder-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(2, 132, 199, 0.1);
  background:
    radial-gradient(circle at 16% 26%, rgba(2, 132, 199, 0.08), transparent 31%),
    linear-gradient(180deg, #f8fafc, #eef3f6);
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(45px, 6vw, 85px);
  align-items: start;
}

.founder-portrait {
  position: sticky;
  top: 120px;
  width: 100%;
  max-width: 280px;
  margin: 0;
}

.founder-portrait::before {
  position: absolute;
  inset: 14px -12px -12px 14px;
  z-index: -1;
  border: 1px solid rgba(2, 132, 199, 0.22);
  border-radius: 22px;
  content: "";
}

.founder-portrait img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 55px rgba(11, 17, 23, 0.18);
  filter: grayscale(1) contrast(1.04);
}

.founder-portrait figcaption {
  display: grid;
  gap: 2px;
  margin: 20px 0 0 2px;
}

.founder-portrait strong {
  color: var(--navy);
  font-size: 17px;
}

.founder-portrait span {
  color: var(--muted);
  font-size: 13px;
}

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

.founder-copy h2 {
  margin: 19px 0 30px;
}

.founder-copy p {
  max-width: 720px;
  margin: 0 0 18px;
  color: #455764;
  font-size: 16px;
  line-height: 1.78;
}

.founder-copy .founder-lead {
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.founder-copy blockquote {
  margin: 32px 0;
  padding: 4px 0 4px 25px;
  border-left: 3px solid var(--blue);
  color: var(--navy);
  font-size: clamp(20px, 2.2vw, 27px);
  font-weight: 500;
  line-height: 1.45;
}

.founder-friction-list {
  display: grid;
  gap: 0;
  max-width: 700px;
  margin: 26px 0 32px;
  padding: 0;
  border-top: 1px solid rgba(11, 17, 23, 0.11);
  list-style: none;
}

.founder-friction-list li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid rgba(11, 17, 23, 0.11);
  color: #3f5360;
  font-size: 14px;
}

.founder-friction-list li::before {
  position: absolute;
  top: 19px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue));
  content: "";
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.founder-credentials li {
  padding: 10px 13px;
  border: 1px solid rgba(2, 132, 199, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: #31566b;
  font-size: 12px;
  font-weight: 600;
}

.trust-section {
  border-top: 1px solid rgba(2, 132, 199, 0.1);
  background: #eaf0f3;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
}

.trust-copy h2 {
  max-width: 620px;
  margin: 18px 0 24px;
}

.trust-copy p {
  max-width: 590px;
  color: #50626f;
  font-size: 16px;
  line-height: 1.75;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(11, 17, 23, 0.12);
  list-style: none;
}

.trust-points li {
  display: grid;
  gap: 7px;
  min-height: 130px;
  padding: 25px 24px 25px 0;
  border-bottom: 1px solid rgba(11, 17, 23, 0.12);
}

.trust-points li:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid rgba(11, 17, 23, 0.12);
}

.trust-points strong {
  color: var(--navy);
  font-size: 14px;
}

.trust-points span {
  color: #647681;
  font-size: 13px;
  line-height: 1.55;
}

.feedback-privacy-note {
  padding-left: 17px;
  border-left: 2px solid rgba(101, 221, 251, 0.55);
  color: #c8d7df !important;
  font-size: 13px !important;
}

@media (max-width: 900px) {
  .founder-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    position: relative;
    top: auto;
    width: min(46%, 280px);
  }

  .trust-points {
    max-width: 760px;
  }
}

@media (max-width: 600px) {
  .founder-portrait {
    width: min(68%, 245px);
  }

  .founder-portrait::before {
    inset: 13px -12px -12px 13px;
  }

  .founder-copy blockquote {
    padding-left: 18px;
  }

  .founder-credentials {
    display: grid;
  }

  .trust-points {
    grid-template-columns: 1fr;
  }

  .trust-points li,
  .trust-points li:nth-child(even) {
    min-height: 0;
    padding: 20px 0;
    border-left: 0;
  }
}

/* ECOSYSTEM POSITIONING UPDATE */
.hero-focus-line {
  display: inline-flex;
  margin: 24px 0 0;
  padding: 9px 13px;
  border: 1px solid rgba(2, 132, 199, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: #31566b;
  font-size: 12px;
  font-weight: 600;
}

.mvp-entry-section {
  background:
    radial-gradient(circle at 82% 15%, rgba(2, 132, 199, 0.08), transparent 30%),
    #f7fafb;
}

.mvp-entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: clamp(45px, 7vw, 90px);
  align-items: start;
}

.mvp-entry-copy h2 {
  margin: 18px 0 26px;
}

.mvp-entry-copy p {
  max-width: 680px;
  color: #4f6270;
  font-size: 17px;
  line-height: 1.75;
}

.mvp-module-card {
  padding: 32px;
  border: 1px solid rgba(2, 132, 199, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(2, 132, 199, 0.08), rgba(22, 163, 68, 0.06)),
    #fff;
  box-shadow: 0 24px 60px rgba(11, 17, 23, 0.09);
}

.mvp-module-card > span,
.ecosystem-card > span,
.feedback-card-meta span,
.feedback-response-box span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mvp-module-card h3 {
  margin: 14px 0 20px;
  color: var(--navy);
}

.mvp-module-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mvp-module-card li {
  position: relative;
  padding-left: 23px;
  color: #50626f;
  font-size: 14px;
  line-height: 1.45;
}

.mvp-module-card li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-600), var(--blue));
  content: "";
}

.ecosystem-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 8%, rgba(22, 163, 68, 0.08), transparent 28%),
    linear-gradient(180deg, #edf3f6, #f8fafc);
}

.ecosystem-section .section-heading p {
  max-width: 820px;
  margin-inline: auto;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 55px;
}

.ecosystem-card {
  position: relative;
  min-height: 245px;
  padding: 23px 20px;
  overflow: hidden;
  border: 1px solid rgba(11, 17, 23, 0.1);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 38px rgba(11, 17, 23, 0.07);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.ecosystem-card::after {
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(2, 132, 199, 0.13);
  border-radius: 50%;
  content: "";
}

.ecosystem-card:hover {
  border-color: rgba(2, 132, 199, 0.3);
  box-shadow: 0 22px 55px rgba(2, 132, 199, 0.12);
  transform: translateY(-5px);
}

.ecosystem-card h3 {
  margin: 17px 0 12px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.035em;
}

.ecosystem-card p {
  margin: 0;
  color: #5b6c78;
  font-size: 13px;
  line-height: 1.55;
}

.ecosystem-card small {
  display: inline-flex;
  margin-top: 18px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.08);
  color: #216a8d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ecosystem-core {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(11, 17, 23, 0.96), rgba(14, 36, 47, 0.94));
}

.ecosystem-core h3,
.ecosystem-core p {
  color: #fff;
}

.ecosystem-core p {
  color: #c9d6df;
}

.ecosystem-core small {
  background: rgba(101, 221, 251, 0.13);
  color: #7edbff;
}

.feedback-card-stack {
  display: grid;
  gap: 20px;
}

.industry-feedback-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.feedback-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.feedback-card-meta strong {
  padding: 7px 9px;
  border: 1px solid rgba(101, 221, 251, 0.23);
  border-radius: 999px;
  color: #9ee5ff;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-feedback-card h3 {
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(21px, 2.3vw, 29px);
  line-height: 1.18;
}

.industry-feedback-card p {
  margin: 0 0 15px;
  color: #bac8d1;
  font-size: 14px;
  line-height: 1.65;
}

.feedback-response-box {
  margin-top: 19px;
  padding: 18px;
  border: 1px solid rgba(22, 163, 68, 0.22);
  border-radius: 13px;
  background: rgba(22, 163, 68, 0.07);
}

.feedback-response-box p {
  margin: 8px 0 0;
}

.future-permit-list {
  margin-top: 18px;
  color: #d7e4eb;
  font-size: 13px;
}

.future-permit-list summary {
  cursor: pointer;
  color: #8edfff;
  font-weight: 600;
}

.future-permit-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: #b8c8d1;
}

@media (max-width: 1120px) {
  .ecosystem-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mvp-entry-layout,
  .feedback-layout {
    grid-template-columns: 1fr;
  }

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

  .ecosystem-core {
    grid-column: span 1;
  }
}

@media (max-width: 600px) {
  .hero-focus-line {
    align-items: flex-start;
    border-radius: 12px;
    line-height: 1.45;
  }

  .mvp-module-card,
  .industry-feedback-card {
    padding: 22px;
  }

  .ecosystem-grid,
  .future-permit-list ul {
    grid-template-columns: 1fr;
  }

  .ecosystem-card {
    min-height: 0;
  }
}
