@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/brand/fonts/web/PlusJakartaSans-Latin-Variable.woff2?v=3.0.0") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("/brand/fonts/web/SourceSans3-Latin-Variable.woff2?v=3.0.0") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  src: url("/brand/fonts/web/DMMono-Latin-Regular.woff2?v=3.0.0") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "DM Mono";
  src: url("/brand/fonts/web/DMMono-Latin-Medium.woff2?v=3.0.0") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --canvas: #f7f4ee;
  --paper: #fffdf9;
  --paper-strong: #ffffff;
  --carbon: #11131a;
  --ink: #11131a;
  --muted: #505663;
  --quiet: #686d78;
  --line: #d9d4cb;
  --line-strong: #bcb6ac;
  --violet: #5e4ee5;
  --violet-hover: #5141d2;
  --violet-soft: #e7e3ff;
  --sky: #ddf1ff;
  --sky-deep: #176b95;
  --apricot: #ffe4d9;
  --apricot-deep: #8d351d;
  --success: #176b5b;
  --error: #a12c44;
  --display: "Plus Jakarta Sans", "Avenir Next", Avenir, system-ui, sans-serif;
  --body: "Source Sans 3", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Menlo, Monaco, Consolas, monospace;
  --shell: 1240px;
  --header-height: 72px;
  --radius-sm: 7px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-low: 0 2px 6px rgb(17 19 26 / 6%);
  --shadow: 0 16px 48px rgb(17 19 26 / 10%), 0 3px 10px rgb(17 19 26 / 5%);
  --shadow-float: 0 22px 65px rgb(17 19 26 / 16%), 0 5px 14px rgb(17 19 26 / 7%);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--canvas);
  color-scheme: light;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body:has(dialog[open]) {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

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

h1 {
  max-width: 11.5ch;
  font-size: clamp(3.45rem, 5.55vw, 5.55rem);
  font-weight: 580;
  letter-spacing: -.052em;
  line-height: .98;
}

h2 {
  font-size: clamp(2.55rem, 4.25vw, 4.45rem);
  font-weight: 560;
  letter-spacing: -.045em;
  line-height: 1.01;
}

h3 {
  font-weight: 650;
  letter-spacing: -.02em;
}

h1 > span,
h2 > span {
  color: var(--violet);
}

::selection {
  color: var(--canvas);
  background: var(--carbon);
}

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

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

.chapter {
  position: relative;
  border-top: 1px solid var(--line);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  color: var(--canvas);
  background: var(--carbon);
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 160ms var(--ease);
}

.skip-link:focus {
  transform: none;
}

.top-sentinel {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(247 244 238 / 94%);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 7px 26px rgb(17 19 26 / 6%);
}

.nav-shell {
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 156px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #3e434f;
  font-size: 14px;
  font-weight: 700;
  padding-inline: 3px;
  text-decoration: none;
  transition: color 140ms ease;
}

.nav-links a:hover {
  color: var(--violet);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, border-color 150ms ease, transform 150ms var(--ease), box-shadow 150ms ease;
}

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

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

.button:disabled {
  cursor: not-allowed;
  opacity: .68;
  transform: none;
}

.button-primary {
  color: #fff;
  background: var(--violet);
  border-color: var(--violet);
  box-shadow: 0 7px 18px rgb(94 78 229 / 18%);
}

.button-primary:hover {
  color: #fff;
  background: var(--violet-hover);
  border-color: var(--violet-hover);
  box-shadow: 0 10px 24px rgb(94 78 229 / 23%);
}

.button-quiet {
  color: var(--ink);
  background: transparent;
  border-color: var(--line-strong);
}

.button-quiet:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--ink);
}

.button-icon,
.text-link svg,
.text-button svg,
.dialog-book svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms var(--ease);
}

.button:hover .button-icon,
.text-link:hover svg,
.text-button:hover svg,
.dialog-book:hover svg {
  transform: translateX(3px);
}

.eyebrow,
.product-label,
.visual-caption > span,
.visual-outcome > span {
  color: #4a3cc5;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .085em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
}

.signal-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 6px rgb(94 78 229 / 11%);
}

.text-link,
.text-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4435c3;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.text-link:hover,
.text-button:hover {
  color: #3325a4;
}

.hero {
  min-height: calc(100svh - var(--header-height));
  border-top: 0;
  display: grid;
  align-items: center;
  padding: clamp(24px, 3.4vh, 36px) 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: -220px;
  right: -190px;
  width: 560px;
  height: 560px;
  border: 1px solid rgb(94 78 229 / 16%);
  border-radius: 50%;
  box-shadow: 0 0 0 88px rgb(94 78 229 / 3%), 0 0 0 176px rgb(94 78 229 / 2%);
  pointer-events: none;
  animation: hero-ring-in 900ms var(--ease) 80ms both;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 4vw, 58px);
}

.hero-copy {
  min-width: 0;
}

.hero-copy h1 {
  max-width: 13.7ch;
  font-size: clamp(3.1rem, 4.3vw, 4.35rem);
}

.hero-copy h1 .hero-line {
  display: block;
  overflow: hidden;
  padding: 0 .04em .055em 0;
  color: var(--ink);
}

.hero-line-inner {
  display: block;
}

.hero-copy h1 em {
  position: relative;
  z-index: 0;
  color: var(--violet);
  font-style: normal;
  white-space: nowrap;
}

.hero-copy h1 em::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.03em;
  right: -.05em;
  bottom: .055em;
  height: .16em;
  border-radius: 999px;
  background: var(--apricot);
  transform: scaleX(0);
  transform-origin: left center;
  animation: hero-underline-in 640ms var(--ease) 620ms both;
}

.hero-lead {
  max-width: 49ch;
  margin: 14px 0 14px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.32vw, 1.18rem);
  line-height: 1.44;
}

.hero-lead strong {
  color: var(--ink);
  font-weight: 760;
}

.field-label {
  display: block;
  margin-bottom: 7px;
  color: #313640;
  font-size: 13px;
  font-weight: 740;
}

.email-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.email-input {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #8a8c93;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--paper-strong);
  font-size: 16px;
  line-height: 1.2;
  box-shadow: inset 0 1px 0 rgb(17 19 26 / 3%);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.email-input::placeholder {
  color: #737781;
  opacity: 1;
}

.email-input:hover {
  border-color: var(--ink);
}

.email-input:focus {
  border-color: var(--violet);
  outline: 3px solid rgb(94 78 229 / 18%);
  outline-offset: 1px;
}

.email-input[aria-invalid="true"] {
  border-color: var(--error);
  outline-color: rgb(161 44 68 / 18%);
}

.hero-form {
  max-width: 590px;
}

.form-submit {
  min-width: 154px;
  min-height: 52px;
  white-space: nowrap;
}

.form-status {
  min-height: 0;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="loading"] {
  color: var(--sky-deep);
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: var(--error);
  font-weight: 650;
}

.form-note {
  margin-top: 7px;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.35;
}

.hero-copy > .text-link {
  margin-top: 4px;
}

.offer-facts {
  max-width: 620px;
  display: grid;
  grid-template-columns: .66fr 1.4fr 1fr;
  margin-top: 15px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.offer-facts div {
  min-width: 0;
  padding: 11px 14px 11px 0;
}

.offer-facts div + div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.offer-facts dt {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.offer-facts dd {
  margin-top: 3px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
}

.hero-proof {
  position: relative;
  min-width: 0;
  align-self: center;
  isolation: isolate;
}

.visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgb(94 78 229 / 18%);
  border-radius: 50%;
  pointer-events: none;
  animation: hero-orbit-in 880ms var(--ease) both;
}

.hero-orbit-one {
  width: 410px;
  height: 410px;
  top: 50%;
  left: 50%;
  box-shadow: 0 0 0 54px rgb(94 78 229 / 3%);
  animation-delay: 160ms;
}

.hero-orbit-two {
  width: 120px;
  height: 120px;
  top: -35px;
  right: -28px;
  border-color: rgb(225 140 107 / 40%);
  box-shadow: 0 0 0 18px rgb(255 228 217 / 32%);
  animation-delay: 240ms;
}

.hero-demo-card {
  position: relative;
  transform: perspective(1100px) rotateX(var(--hero-tilt-x, 0deg)) rotateY(var(--hero-tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 320ms var(--ease);
  will-change: transform;
}

.browser-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid #817d75;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: var(--shadow-float);
  text-decoration: none;
  transform: rotate(.3deg);
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.browser-frame:hover {
  transform: translateY(-5px) rotate(0);
  box-shadow: 0 28px 72px rgb(17 19 26 / 18%), 0 6px 16px rgb(17 19 26 / 8%);
}

.browser-bar {
  height: 36px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  padding: 0 11px;
  border-bottom: 1px solid var(--line);
  background: #f4f1eb;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b6b1a8;
}

.browser-dots i:first-child {
  background: var(--apricot-deep);
}

.browser-dots i:nth-child(2) {
  background: #9b6500;
}

.browser-dots i:last-child {
  background: var(--success);
}

.browser-address {
  min-width: 0;
  overflow: hidden;
  color: #5f646e;
  font-family: var(--mono);
  font-size: 8px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.browser-address i {
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgb(23 107 91 / 10%);
  vertical-align: 1px;
}

.browser-bar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #444954;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.browser-frame picture {
  display: block;
  aspect-ratio: 16 / 9.25;
  overflow: hidden;
}

.browser-frame picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.demo-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border: 1px solid rgb(255 255 255 / 45%);
  border-radius: 5px;
  color: #fff;
  background: var(--carbon);
  font-size: 11px;
  font-weight: 750;
  box-shadow: var(--shadow-low);
  transform: translateZ(26px);
}

.hero-proof-badge {
  position: absolute;
  z-index: 3;
  left: -19px;
  bottom: -18px;
  min-width: 138px;
  padding: 11px 14px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--ink);
  background: var(--paper-strong);
  box-shadow: 0 13px 34px rgb(17 19 26 / 14%);
  transform: translateZ(42px) rotate(-1.6deg);
}

.hero-proof-badge span,
.hero-proof-badge small {
  display: block;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .065em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-proof-badge strong {
  display: block;
  margin: 1px 0 3px;
  color: var(--violet);
  font-family: var(--display);
  font-size: 28px;
  font-weight: 680;
  letter-spacing: -.04em;
  line-height: 1;
}

.hero-demo-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin: 12px 2px 0 132px;
}

.hero-demo-footer strong {
  flex: 0 0 auto;
  color: #303540;
  font-size: 13px;
}

.hero-demo-footer span {
  max-width: 39ch;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.35;
  text-align: right;
}

.concept-note {
  max-width: 63ch;
  margin: 10px 2px 0;
  color: var(--quiet);
  font-size: 11px;
  line-height: 1.4;
}

.proof-contract {
  padding: clamp(58px, 7vw, 96px) 0;
}

.proof-contract-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(460px, 1.2fr);
  gap: 30px clamp(50px, 7vw, 108px);
  align-items: start;
}

.section-heading h2 {
  max-width: 14ch;
}

.section-heading > p:last-child {
  max-width: 49ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.deal-ledger {
  border-top: 1px solid var(--ink);
}

.deal-ledger > div {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(130px, .42fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-strong);
}

.deal-ledger span {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.deal-ledger strong {
  font-family: var(--display);
  font-size: clamp(1.24rem, 1.8vw, 1.65rem);
  font-weight: 620;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.proof-contract-foot {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 30px;
  padding: 21px 0 0;
  border-top: 1px solid var(--line);
}

.proof-contract-foot p {
  max-width: 68ch;
  color: var(--muted);
  font-size: 16px;
}

.products-intro {
  padding: clamp(48px, 6vw, 78px) 0 0;
}

.products-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px 60px;
}

.products-intro .section-heading h2 {
  max-width: 17ch;
}

.plan-price {
  min-width: 275px;
  padding: 19px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-low);
}

.plan-price > span {
  display: block;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.plan-price strong {
  display: block;
  margin-top: 5px;
  font-family: var(--display);
  font-size: 2.65rem;
  font-weight: 610;
  letter-spacing: -.05em;
  line-height: 1;
}

.plan-price small {
  color: var(--muted);
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 650;
  letter-spacing: 0;
}

.plan-price p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
}

.product-jump {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.product-jump a {
  min-width: 0;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 740;
  line-height: 1.2;
  text-decoration: none;
  transition: color 140ms ease, background 140ms ease;
}

.product-jump a + a {
  border-left: 1px solid var(--line);
}

.product-jump a:hover {
  color: #392cb2;
  background: var(--violet-soft);
}

.product-jump span {
  flex: 0 0 auto;
  color: var(--violet);
  font-family: var(--mono);
  font-size: 9px;
}

.product-chapter {
  min-height: min(680px, calc(100svh - var(--header-height)));
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: clamp(38px, 5.4vh, 58px) 0;
}

.product-chapter:nth-of-type(even)::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 4%;
  bottom: 8%;
  width: 180px;
  height: 180px;
  border: 1px solid rgb(94 78 229 / 10%);
  border-radius: 50%;
  pointer-events: none;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(360px, .83fr) minmax(520px, 1.17fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.product-grid-reverse .product-copy {
  order: 2;
}

.product-grid-reverse .product-visual {
  order: 1;
}

.product-copy {
  min-width: 0;
}

.product-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.product-label > span {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #a9a1f2;
  border-radius: 50%;
  color: #3e31af;
  background: var(--violet-soft);
}

.product-copy h2 {
  max-width: 11ch;
  font-size: clamp(2.6rem, 4.2vw, 4.35rem);
}

.product-lead {
  max-width: 49ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.48;
}

.outcome-list {
  max-width: 48ch;
  display: grid;
  gap: 8px;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.outcome-list li {
  position: relative;
  padding-left: 23px;
  color: #323741;
  font-size: 15px;
  line-height: 1.4;
}

.outcome-list li::before {
  content: "";
  position: absolute;
  top: .59em;
  left: 1px;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid var(--violet);
  border-left: 2px solid var(--violet);
  transform: rotate(-45deg);
}

.plain-limit {
  max-width: 54ch;
  margin-top: 18px;
  padding: 11px 13px;
  border-left: 3px solid var(--line-strong);
  color: var(--quiet);
  background: rgb(255 253 249 / 58%);
  font-size: 12px;
  line-height: 1.43;
}

.product-copy > .text-button,
.product-actions {
  margin-top: 14px;
}

.product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 15px;
}

.product-visual {
  min-width: 0;
  min-height: 430px;
  display: grid;
  align-content: center;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-caption {
  margin-bottom: 22px;
}

.visual-caption strong {
  max-width: 30ch;
  color: #323741;
  font-size: 13px;
  text-align: right;
}

.visual-outcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.visual-outcome strong {
  max-width: 33ch;
  color: #292e38;
  font-size: 14px;
  text-align: right;
}

.website-showcase {
  position: relative;
  min-height: 410px;
  padding: 16px 28px 20px 0;
}

.desktop-proof {
  overflow: hidden;
  border: 1px solid #77746e;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(-.65deg);
}

.desktop-proof img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top;
}

.mobile-proof {
  position: absolute;
  right: 0;
  bottom: 1px;
  width: 25%;
  min-width: 126px;
  overflow: hidden;
  padding: 5px;
  border: 1px solid #77746e;
  border-radius: 18px;
  background: #1b1d25;
  box-shadow: var(--shadow-float);
  transform: rotate(2.2deg);
}

.mobile-proof img {
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  border-radius: 13px;
  object-fit: cover;
  object-position: top;
}

.proof-tag {
  position: absolute;
  left: 19px;
  bottom: 6px;
  padding: 7px 10px;
  border: 1px solid #a9a1f2;
  border-radius: 5px;
  color: #3428a2;
  background: var(--violet-soft);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-low);
}

.demo-ribbon {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.demo-ribbon > p {
  margin-bottom: 9px;
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.demo-ribbon > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.demo-ribbon a {
  min-width: 0;
  display: grid;
  grid-template-columns: 102px 1fr;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms var(--ease), box-shadow 160ms ease;
}

.demo-ribbon a:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-low);
  transform: translateY(-2px);
}

.demo-ribbon img {
  width: 102px;
  height: 62px;
  object-fit: cover;
  object-position: top;
  border-right: 1px solid var(--line);
}

.demo-ribbon a > span {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding-right: 11px;
  font-size: 13px;
  font-weight: 720;
}

.demo-ribbon svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.7;
  stroke-linecap: round;
}

.demo-ribbon small {
  display: block;
  margin-top: 8px;
  color: var(--quiet);
  font-size: 10px;
}

.phone-flow {
  background: #ece9e2;
}

.phone-shell {
  width: min(350px, 78%);
  margin-inline: auto;
  padding: 15px 15px 18px;
  border: 1px solid #52555e;
  border-radius: 27px;
  background: #f9f8f5;
  box-shadow: 0 18px 35px rgb(17 19 26 / 15%);
}

.phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 10px;
  color: #535862;
  font-size: 9px;
}

.call-card {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px;
  border: 1px solid #f0c3b3;
  border-radius: 12px;
  background: var(--apricot);
}

.call-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #a84625;
  font-size: 20px;
}

.call-card div {
  min-width: 0;
  display: grid;
  line-height: 1.2;
}

.call-card small,
.call-card span {
  color: #75412f;
  font-size: 9px;
}

.call-card .call-icon {
  color: #fff;
  font-size: 20px;
}

.call-card strong {
  margin: 2px 0;
  font-size: 13px;
}

.message-thread {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.message {
  max-width: 88%;
  padding: 9px 10px 7px;
  border-radius: 12px;
  font-size: 11px;
  line-height: 1.32;
}

.message > span {
  display: block;
  margin-top: 4px;
  font-size: 8px;
  opacity: .68;
}

.message-out {
  justify-self: end;
  color: #fff;
  background: #4b3cc7;
  border-bottom-right-radius: 3px;
}

.message-in {
  justify-self: start;
  color: var(--ink);
  background: #e2e0dc;
  border-bottom-left-radius: 3px;
}

.enquiry-flow {
  background: #e9e6de;
}

.enquiry-stage {
  position: relative;
  min-height: 286px;
  display: grid;
  align-items: center;
}

.chat-widget {
  width: min(365px, 76%);
  overflow: hidden;
  border: 1px solid #74716b;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.chat-head {
  min-height: 62px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  color: #fff;
  background: var(--carbon);
}

.chat-avatar {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--carbon);
  background: #55b8ff;
  font-family: var(--display);
  font-weight: 750;
}

.chat-head div {
  display: grid;
}

.chat-head strong {
  font-size: 13px;
}

.chat-head small {
  color: #d3d0ca;
  font-size: 9px;
}

.chat-head i {
  color: #d3d0ca;
  font-size: 17px;
  font-style: normal;
}

.chat-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 13px;
}

.chat-fields > span {
  min-width: 0;
  display: grid;
  padding: 8px 9px;
  border: 1px solid #cdc8be;
  border-radius: 6px;
  color: #282d37;
  font-size: 11px;
}

.chat-fields small {
  margin-bottom: 2px;
  color: #747781;
  font-size: 8px;
  text-transform: uppercase;
}

.chat-suburb,
.chat-job {
  grid-column: 1 / -1;
}

.chat-submit {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 13px 13px;
  border-radius: 5px;
  color: #fff;
  background: var(--violet);
  font-size: 11px;
  font-weight: 750;
}

.chat-submit svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
}

.lead-text {
  position: absolute;
  right: 0;
  bottom: 4px;
  width: min(245px, 46%);
  padding: 14px;
  border: 1px solid #716d66;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow-float);
  transform: rotate(1.5deg);
}

.lead-text-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #666b75;
  font-size: 9px;
}

.lead-text > strong {
  font-family: var(--display);
  font-size: 13px;
}

.lead-text > p {
  margin-top: 5px;
  color: #363b45;
  font-size: 10px;
  line-height: 1.42;
}

.review-flow {
  background: #f1eee8;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  background: var(--paper-strong);
  list-style: none;
}

.flow-steps li {
  min-width: 0;
  min-height: 175px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 16px;
}

.flow-steps li + li {
  border-left: 1px solid var(--line);
}

.flow-steps li > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
  font-family: var(--mono);
  font-size: 9px;
}

.flow-steps div {
  display: grid;
  gap: 4px;
}

.flow-steps small {
  color: var(--quiet);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .045em;
  text-transform: uppercase;
}

.flow-steps strong {
  font-family: var(--display);
  font-size: 13px;
  line-height: 1.28;
}

.review-principle {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  margin-top: 13px;
  padding: 13px 15px;
  border: 1px solid #efc6b8;
  border-radius: 9px;
  background: var(--apricot);
}

.review-principle > span {
  color: #914225;
  font-size: 18px;
  letter-spacing: .08em;
}

.review-principle p {
  color: #5f3526;
  font-size: 11px;
}

.search-flow {
  background: #ece9e2;
}

.search-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid #77746e;
  border-radius: 24px;
  color: #313640;
  background: #fff;
  box-shadow: var(--shadow-low);
  font-size: 13px;
}

.search-bar svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.7;
}

.search-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.search-pages article {
  min-width: 0;
  min-height: 148px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.search-pages span {
  color: #4a3cc5;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.search-pages strong {
  display: block;
  margin-top: 9px;
  font-family: var(--display);
  font-size: 14px;
  line-height: 1.2;
}

.search-pages p {
  margin-top: 8px;
  color: var(--quiet);
  font-size: 10px;
  line-height: 1.38;
}

.process {
  padding: clamp(50px, 5vw, 68px) 0;
}

.process-shell {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  gap: 28px clamp(54px, 7vw, 110px);
  align-items: start;
}

.process .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.process .section-heading h2 {
  max-width: 9ch;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  min-height: 126px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-strong);
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--violet);
  font-family: var(--mono);
  font-size: 10px;
}

.process-list small {
  color: #4a3cc5;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-list h3 {
  margin-top: 5px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.13;
}

.process-list p {
  max-width: 54ch;
  margin-top: 7px;
  color: var(--muted);
  font-size: 15px;
}

.process-note,
.process-actions {
  grid-column: 2;
}

.process-note {
  padding: 12px 14px;
  border-left: 3px solid var(--violet);
  color: var(--muted);
  background: var(--violet-soft);
  font-size: 12px;
}

.process-actions {
  display: flex;
  align-items: center;
  gap: 10px 18px;
}

.objections {
  padding: clamp(60px, 7vw, 100px) 0;
}

.objections-grid {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(500px, 1.25fr);
  align-items: start;
  gap: clamp(54px, 8vw, 120px);
}

.objections .section-heading {
  position: sticky;
  top: calc(var(--header-height) + 36px);
}

.objections .section-heading h2 {
  max-width: 10ch;
}

.objection-proof {
  display: grid;
  gap: 8px;
  margin-top: 25px;
  padding: 16px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.objection-proof strong {
  font-family: var(--display);
  font-size: 19px;
}

.objection-proof span {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.objection-proof span::before {
  content: "";
  position: absolute;
  top: .62em;
  left: 2px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--violet);
  border-left: 2px solid var(--violet);
  transform: rotate(-45deg);
}

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

.objection-list details {
  border-bottom: 1px solid var(--line-strong);
}

.objection-list summary {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  padding: 13px 0;
  cursor: pointer;
  list-style: none;
}

.objection-list summary::-webkit-details-marker {
  display: none;
}

.objection-list summary span {
  font-family: var(--display);
  font-size: clamp(1.02rem, 1.55vw, 1.25rem);
  font-weight: 630;
  letter-spacing: -.018em;
  line-height: 1.25;
}

.objection-list summary svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--violet);
  stroke-width: 1.8;
  stroke-linecap: round;
  transition: transform 180ms var(--ease);
}

.objection-list details[open] summary svg {
  transform: rotate(45deg);
}

.objection-list details p {
  max-width: 66ch;
  padding: 0 42px 19px 0;
  color: var(--muted);
  font-size: 15px;
}

.final-cta {
  padding: clamp(62px, 8vw, 112px) 0;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: 34px clamp(56px, 8vw, 120px);
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.final-copy h2 {
  max-width: 11ch;
}

.final-copy > p:last-child {
  max-width: 45ch;
  margin-top: 17px;
  color: var(--muted);
  font-size: 17px;
}

.final-form {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--canvas);
}

.final-form > .text-link {
  margin-top: 8px;
}

.contract-note {
  grid-column: 1 / -1;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 12px;
}

.contract-note a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #4334c1;
  font-weight: 750;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 44px 0 max(30px, env(safe-area-inset-bottom));
  color: var(--canvas);
  background: var(--carbon);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: start;
  gap: 24px 48px;
}

.footer-grid img {
  width: 164px;
  height: auto;
}

.footer-grid > div:first-child p {
  max-width: 47ch;
  margin-top: 12px;
  color: #d2cfc8;
  font-size: 14px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #f7f4ee;
  font-size: 14px;
  padding-inline: 3px;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: #c9c3ff;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 17px;
  border-top: 1px solid #41444d;
  color: #b8b5af;
  font-size: 12px;
}

.mobile-sticky-offer {
  display: none;
}

.funnel-dialog {
  width: min(570px, calc(100% - 28px));
  max-height: calc(100dvh - 28px);
  overflow: auto;
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 18px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 28px 80px rgb(17 19 26 / 28%);
  opacity: 0;
  transform: translateY(12px) scale(.99);
  transition: opacity 180ms ease, transform 220ms var(--ease), overlay 220ms allow-discrete, display 220ms allow-discrete;
}

.funnel-dialog[open].is-active {
  opacity: 1;
  transform: none;
}

.funnel-dialog.is-closing {
  opacity: 0;
  transform: translateY(8px) scale(.995);
}

.funnel-dialog::backdrop {
  background: rgb(17 19 26 / 66%);
  opacity: 0;
  transition: opacity 180ms ease, overlay 180ms allow-discrete, display 180ms allow-discrete;
}

.funnel-dialog[open].is-active::backdrop {
  opacity: 1;
}

.dialog-close {
  position: absolute;
  z-index: 4;
  top: 11px;
  right: 11px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.dialog-close:hover {
  background: var(--violet-soft);
}

.dialog-close svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.dialog-body {
  padding: 50px 43px 39px;
}

.dialog-body h2 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 5vw, 3.6rem);
}

.dialog-body > p:not(.eyebrow) {
  max-width: 47ch;
  margin: 16px 0 22px;
  color: var(--muted);
}

.dialog-body .email-row {
  grid-template-columns: 1fr;
}

.dialog-body button[type="submit"] {
  width: 100%;
}

.dialog-book {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  color: #4435c3;
  font-size: 14px;
  font-weight: 750;
  text-underline-offset: 3px;
}

.success-dialog {
  width: min(510px, calc(100% - 28px));
  padding: 47px;
  text-align: center;
}

.success-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin: 0 auto 19px;
  border-radius: 50%;
  color: var(--success);
  background: #e2f3ee;
}

.success-mark svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.success-dialog .eyebrow {
  justify-content: center;
}

.success-dialog h2 {
  max-width: 11ch;
  margin-inline: auto;
  font-size: clamp(2.4rem, 5vw, 3.3rem);
}

.success-dialog > p:not(.eyebrow) {
  max-width: 42ch;
  margin: 16px auto 23px;
  color: var(--muted);
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
}

/* Core content is visible before JavaScript. Motion is enabled only after the
   client has found the below-fold elements it can safely reveal. */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 480ms ease, transform 560ms var(--ease);
}

.reveal.motion-pending {
  opacity: .01;
  transform: translateY(20px);
}

.reveal.motion-pending.is-visible {
  opacity: 1;
  transform: none;
  transition-delay: var(--reveal-delay, 0ms);
}

.hero-copy.hero-reveal {
  animation: none;
}

.hero-proof.hero-reveal {
  animation: hero-proof-in 720ms var(--ease) 160ms both;
}

.hero-copy > .eyebrow {
  animation: hero-detail-in 440ms var(--ease) 60ms both;
}

.hero-copy .hero-line-inner {
  animation: hero-line-in 680ms var(--ease) 120ms both;
}

.hero-copy .hero-line:nth-child(2) .hero-line-inner {
  animation-delay: 210ms;
}

.hero-copy > .hero-lead {
  animation: hero-detail-in 520ms var(--ease) 300ms both;
}

.hero-copy > .hero-form {
  animation: hero-detail-in 540ms var(--ease) 370ms both;
}

.hero-copy > .text-link {
  animation: hero-detail-in 500ms var(--ease) 430ms both;
}

.hero-copy > .offer-facts {
  animation: hero-detail-in 520ms var(--ease) 480ms both;
}

.hero-proof-badge {
  animation: hero-badge-in 620ms var(--ease) 560ms both;
}

@keyframes hero-line-in {
  from {
    opacity: .12;
    transform: translateY(102%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-detail-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-proof-in {
  from {
    opacity: .08;
    transform: translateX(18px) scale(.985);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-badge-in {
  from {
    opacity: 0;
    transform: translate3d(-8px, 13px, 42px) rotate(-4deg) scale(.96);
  }
  to {
    opacity: 1;
    transform: translateZ(42px) rotate(-1.6deg);
  }
}

@keyframes hero-underline-in {
  to {
    transform: scaleX(1);
  }
}

@keyframes hero-ring-in {
  from {
    opacity: 0;
    transform: scale(.88);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-orbit-in {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.82) rotate(-14deg);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0);
  }
}

.hero-orbit-two {
  animation-name: hero-orbit-corner-in;
}

@keyframes hero-orbit-corner-in {
  from {
    opacity: 0;
    transform: scale(.7) rotate(20deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.phone-flow.is-visible .message-out,
.enquiry-flow.is-visible .lead-text,
.review-flow.is-visible .flow-steps li,
.search-flow.is-visible .search-pages article,
.website-showcase.is-visible .desktop-proof,
.website-showcase.is-visible .mobile-proof,
.deal-ledger.is-visible > div,
.process-list.is-visible > li,
.product-copy.is-visible .outcome-list li,
.product-jump.is-visible > a,
.demo-ribbon.is-visible a,
.objection-list.is-visible details {
  animation: detail-in 420ms var(--ease) both;
}

.review-flow.is-visible .flow-steps li:nth-child(2),
.search-flow.is-visible .search-pages article:nth-child(2),
.deal-ledger.is-visible > div:nth-child(2),
.process-list.is-visible > li:nth-child(2),
.website-showcase.is-visible .mobile-proof,
.product-copy.is-visible .outcome-list li:nth-child(2),
.product-jump.is-visible > a:nth-child(2),
.demo-ribbon.is-visible a:nth-child(2),
.objection-list.is-visible details:nth-child(2) {
  animation-delay: 70ms;
}

.review-flow.is-visible .flow-steps li:nth-child(3),
.search-flow.is-visible .search-pages article:nth-child(3),
.enquiry-flow.is-visible .lead-text,
.deal-ledger.is-visible > div:nth-child(3),
.process-list.is-visible > li:nth-child(3),
.product-copy.is-visible .outcome-list li:nth-child(3),
.product-jump.is-visible > a:nth-child(3),
.demo-ribbon.is-visible a:nth-child(3),
.objection-list.is-visible details:nth-child(3) {
  animation-delay: 140ms;
}

.deal-ledger.is-visible > div:nth-child(4),
.product-jump.is-visible > a:nth-child(4),
.objection-list.is-visible details:nth-child(4) {
  animation-delay: 210ms;
}

.product-jump.is-visible > a:nth-child(5),
.objection-list.is-visible details:nth-child(5) {
  animation-delay: 280ms;
}

.objection-list.is-visible details {
  animation-name: detail-fade;
}

@keyframes detail-in {
  from {
    opacity: .82;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes detail-fade {
  from {
    opacity: .5;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
    gap: 42px;
  }

  .product-grid {
    grid-template-columns: minmax(340px, .9fr) minmax(460px, 1.1fr);
    gap: 52px;
  }

  .product-jump a {
    padding-inline: 10px;
    font-size: 12px;
  }

  .objections-grid {
    gap: 66px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 68px;
  }

  .shell {
    width: min(760px, calc(100% - 34px));
  }

  .nav-book {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 48px 0 58px;
  }

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

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

  .hero-copy h1 {
    max-width: 14.5ch;
  }

  .hero-proof {
    width: min(100%, 720px);
  }

  .proof-contract-grid,
  .products-intro-grid,
  .product-grid,
  .process-shell,
  .objections-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .proof-contract-grid {
    gap: 28px;
  }

  .proof-contract-foot {
    grid-column: auto;
  }

  .products-intro-grid {
    align-items: start;
  }

  .plan-price {
    width: min(340px, 100%);
  }

  .product-jump {
    grid-column: auto;
    grid-template-columns: 1fr 1fr;
  }

  .product-jump a {
    border-bottom: 1px solid var(--line);
  }

  .product-jump a:nth-child(odd) {
    border-left: 0;
  }

  .product-jump a:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .product-chapter {
    min-height: 0;
    padding: 56px 0;
  }

  .product-grid {
    gap: 38px;
  }

  .product-grid-reverse .product-copy,
  .product-grid-reverse .product-visual {
    order: initial;
  }

  .product-copy h2 {
    max-width: 13ch;
  }

  .product-visual {
    min-height: 410px;
  }

  .website-showcase {
    min-height: 445px;
  }

  .process .section-heading,
  .objections .section-heading {
    position: static;
  }

  .process-note,
  .process-actions {
    grid-column: auto;
  }

  .objections-grid {
    gap: 42px;
  }

  .objection-proof {
    max-width: 550px;
  }

  .final-cta-grid {
    align-items: stretch;
    gap: 30px;
  }

  .contract-note {
    grid-column: auto;
  }
}

@media (min-width: 701px) and (max-width: 920px) {
  .nav-actions {
    grid-column: 3;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 62px;
  }

  body {
    padding-bottom: 0;
    font-size: 16px;
  }

  .site-header {
    position: relative;
  }

  .shell {
    width: min(560px, calc(100% - 24px));
  }

  .nav-shell {
    grid-template-columns: auto 1fr;
    gap: 8px;
  }

  .brand img {
    width: 133px;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-preview {
    min-height: 44px;
    padding: 9px 11px;
    font-size: 12px;
    white-space: nowrap;
  }

  .nav-preview .button-icon {
    display: none;
  }

  .hero {
    padding: 26px 0 34px;
  }

  .hero::before {
    top: -270px;
    right: -280px;
  }

  .hero-grid {
    gap: 24px;
  }

  h1,
  .hero-copy h1 {
    max-width: 12.6ch;
    font-size: clamp(2.48rem, 11.8vw, 3.55rem);
    line-height: .99;
  }

  h2,
  .product-copy h2 {
    font-size: clamp(2.35rem, 10.7vw, 3.45rem);
  }

  .hero-copy h1 .hero-line {
    display: block;
  }

  .hero-lead {
    margin: 17px 0 16px;
    font-size: 1rem;
    line-height: 1.43;
  }

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

  .email-input,
  .form-submit {
    min-height: 50px;
  }

  .form-submit {
    width: 100%;
  }

  .hero-copy > .text-link {
    margin-top: 5px;
  }

  .offer-facts {
    display: none;
  }

  .proof-note {
    align-items: flex-start;
  }

  .proof-note strong {
    max-width: 22ch;
    text-align: right;
  }

  .browser-frame {
    transform: none;
  }

  .hero-demo-card {
    transform: none !important;
  }

  .hero-orbit-one {
    width: 300px;
    height: 300px;
    opacity: .74;
  }

  .hero-orbit-two {
    width: 84px;
    height: 84px;
    top: -18px;
    right: -14px;
  }

  .hero-proof-badge {
    left: 8px;
    bottom: -13px;
    min-width: 122px;
    padding: 9px 11px 10px;
    transform: rotate(-1deg);
  }

  .hero-proof-badge strong {
    font-size: 24px;
  }

  .hero-demo-footer {
    margin: 22px 2px 0;
  }

  .hero-demo-footer span {
    display: none;
  }

  .browser-frame picture {
    aspect-ratio: 4 / 3;
  }

  .browser-frame picture img {
    object-position: top;
  }

  .browser-bar {
    height: 31px;
    grid-template-columns: 45px minmax(0, 1fr) 18px;
    padding-inline: 8px;
  }

  .browser-dots i {
    width: 6px;
    height: 6px;
  }

  .browser-address {
    font-size: 7px;
  }

  .demo-hint {
    right: 7px;
    bottom: 7px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .proof-contract,
  .process,
  .objections,
  .final-cta {
    padding: 50px 0;
  }

  .section-heading > p:last-child {
    margin-top: 14px;
    font-size: 16px;
  }

  .deal-ledger > div {
    min-height: 64px;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 13px;
  }

  .deal-ledger strong {
    font-size: 1.12rem;
  }

  .proof-contract-foot {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 7px;
  }

  .products-intro {
    padding-top: 47px;
  }

  .product-jump {
    grid-template-columns: 1fr;
  }

  .product-jump a,
  .product-jump a + a,
  .product-jump a:nth-child(odd),
  .product-jump a:last-child {
    grid-column: auto;
    min-height: 54px;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-jump a:last-child {
    border-bottom: 0;
  }

  .product-chapter {
    padding: 48px 0;
  }

  .product-grid {
    gap: 31px;
  }

  .product-lead {
    margin-top: 15px;
    font-size: 1rem;
  }

  .outcome-list {
    margin-top: 16px;
  }

  .outcome-list li {
    font-size: 14px;
  }

  .plain-limit {
    margin-top: 16px;
  }

  .product-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-visual {
    min-height: 0;
    padding: 19px;
    border-radius: 16px;
  }

  .visual-caption {
    align-items: flex-start;
    margin-bottom: 17px;
  }

  .visual-caption strong {
    max-width: 20ch;
    text-align: right;
  }

  .visual-outcome {
    align-items: flex-start;
  }

  .visual-outcome strong {
    max-width: 23ch;
  }

  .website-showcase {
    min-height: 295px;
    padding: 8px 16px 16px 0;
  }

  .mobile-proof {
    width: 27%;
    min-width: 92px;
    border-radius: 13px;
  }

  .mobile-proof img {
    border-radius: 9px;
  }

  .proof-tag {
    left: 8px;
    bottom: 0;
  }

  .demo-ribbon {
    margin-top: 20px;
  }

  .demo-ribbon > div {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 1px 2px 8px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    scrollbar-color: #9d978e transparent;
  }

  .demo-ribbon a {
    flex: 0 0 230px;
    scroll-snap-align: start;
  }

  .phone-shell {
    width: min(335px, 96%);
  }

  .enquiry-stage {
    min-height: 310px;
  }

  .chat-widget {
    width: 86%;
    align-self: start;
  }

  .lead-text {
    width: 54%;
  }

  .flow-steps,
  .search-pages {
    grid-template-columns: 1fr;
  }

  .flow-steps li {
    min-height: 0;
    grid-template-columns: 32px 1fr;
    align-items: center;
    align-content: center;
    gap: 11px;
    padding: 12px;
  }

  .flow-steps li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .review-principle {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .search-pages article {
    min-height: 0;
  }

  .process-shell {
    gap: 31px;
  }

  .process .section-heading h2 {
    max-width: 12ch;
  }

  .process-list li {
    min-height: 0;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    padding: 17px 0;
  }

  .step-number {
    width: 38px;
    height: 38px;
  }

  .process-list p {
    font-size: 14px;
  }

  .process-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .objections .section-heading h2 {
    max-width: 12ch;
  }

  .objection-list summary {
    min-height: 62px;
  }

  .objection-list details p {
    padding-right: 28px;
    font-size: 14px;
  }

  .final-cta-grid {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .final-copy > p:last-child {
    font-size: 16px;
  }

  .final-form {
    padding: 17px;
  }

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

  .footer-links {
    justify-content: flex-start;
    gap: 4px 17px;
  }

  .footer-legal {
    grid-column: auto;
  }

  .mobile-sticky-offer {
    position: fixed;
    z-index: 85;
    right: 0;
    bottom: 0;
    left: 0;
    min-height: calc(66px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: minmax(78px, .55fr) minmax(165px, 1.15fr) 44px;
    align-items: center;
    gap: 10px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid #484b54;
    color: #fff;
    background: var(--carbon);
    box-shadow: 0 -10px 30px rgb(17 19 26 / 14%);
    transform: translateY(120%);
    visibility: hidden;
    transition: transform 240ms var(--ease), visibility 240ms;
  }

  .mobile-sticky-offer.is-visible {
    transform: none;
    visibility: visible;
  }

  .mobile-sticky-copy {
    min-width: 0;
    display: grid;
    line-height: 1.1;
  }

  .mobile-sticky-copy span {
    color: #c6c1ff;
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: .05em;
    text-transform: uppercase;
  }

  .mobile-sticky-copy strong {
    margin-top: 4px;
    color: #fff;
    font-size: 13px;
  }

  .mobile-sticky-offer .button {
    width: 100%;
    min-height: 48px;
  }

  .mobile-sticky-dismiss {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid #656873;
    border-radius: var(--radius-sm);
    color: #fff;
    background: transparent;
    cursor: pointer;
    transition: border-color 160ms var(--ease), background-color 160ms var(--ease), transform 160ms var(--ease);
  }

  .mobile-sticky-dismiss:hover {
    border-color: #8b8e98;
    background: #252832;
  }

  .mobile-sticky-dismiss:active {
    transform: translateY(1px) scale(.98);
  }

  .mobile-sticky-dismiss svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
  }

  .dialog-body {
    padding: 46px 21px 27px;
  }

  .dialog-body h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }

  .success-dialog {
    padding: 43px 20px 27px;
  }

  .success-actions {
    flex-direction: column;
  }

  .success-actions .button {
    width: 100%;
  }
}

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

  .brand img {
    width: 122px;
  }

  .nav-preview {
    padding-inline: 9px;
    font-size: 11px;
  }

  .hero {
    padding-top: 27px;
  }

  .hero .eyebrow {
    margin-bottom: 11px;
    font-size: 9px;
  }

  h1,
  .hero-copy h1 {
    max-width: 12.2ch;
    font-size: 2.42rem;
  }

  .hero-lead {
    margin-block: 14px;
    font-size: .96rem;
  }

  .field-label {
    font-size: 12px;
  }

  .offer-facts {
    display: none;
  }

  .proof-note strong {
    font-size: 11px;
  }

  .hero-proof-badge {
    left: 6px;
    min-width: 112px;
  }

  .deal-ledger > div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .plan-price {
    min-width: 0;
  }

  .website-showcase {
    min-height: 260px;
  }

  .chat-widget {
    width: 93%;
  }

  .lead-text {
    width: 58%;
    padding: 11px;
  }

  .mobile-sticky-offer {
    grid-template-columns: minmax(0, 1fr) 44px;
    padding-inline: 9px;
  }

  .mobile-sticky-copy {
    display: none;
  }

  .mobile-sticky-offer .button-icon {
    display: none;
  }
}

@media (max-width: 360px) and (max-height: 620px) and (orientation: portrait) {
  .request-dialog {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 12px);
  }

  .request-dialog .dialog-close {
    position: sticky;
    top: 6px;
    right: auto;
    margin: 6px 6px -50px auto;
  }

  .request-dialog .dialog-body {
    padding: 44px 14px 14px;
  }

  .request-dialog .dialog-body > .eyebrow {
    margin-bottom: 8px;
    font-size: 9px;
  }

  .request-dialog .dialog-body h2 {
    max-width: 13ch;
    font-size: 1.95rem;
    line-height: 1;
  }

  .request-dialog .dialog-body > p:not(.eyebrow) {
    margin: 9px 0 12px;
    font-size: 14px;
    line-height: 1.35;
  }

  .request-dialog .field-label {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .request-dialog .dialog-body .email-row {
    gap: 6px;
  }

  .request-dialog .dialog-body .email-input,
  .request-dialog .dialog-body button[type="submit"] {
    min-height: 44px;
  }

  .request-dialog .dialog-body .form-note {
    margin-top: 5px;
    font-size: 11px;
  }

  .request-dialog .dialog-book {
    min-height: 44px;
    margin-top: 3px;
    font-size: 13px;
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  :root {
    --header-height: 56px;
  }

  body {
    padding-bottom: 0;
  }

  .site-header {
    position: relative;
  }

  .brand img {
    width: 120px;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    padding: 18px 0 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, .92fr) minmax(300px, 1.08fr);
    gap: 26px;
  }

  .hero .eyebrow {
    margin-bottom: 8px;
    font-size: 8px;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(1.8rem, 4.5vw, 2rem);
    line-height: .98;
  }

  .hero-copy h1 .hero-line {
    display: block;
  }

  .hero-lead {
    margin: 7px 0 8px;
    font-size: 11.5px;
    line-height: 1.25;
  }

  .field-label {
    margin-bottom: 4px;
    font-size: 10px;
  }

  .email-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 5px;
  }

  .email-input,
  .form-submit {
    min-height: 42px;
  }

  .form-submit {
    width: auto;
    min-width: 126px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .form-note,
  .hero-copy > .text-link,
  .offer-facts,
  .proof-note,
  .concept-note,
  .hero-demo-footer,
  .hero-proof-badge,
  .hero-orbit {
    display: none;
  }

  .browser-bar {
    height: 26px;
  }

  .browser-frame picture {
    aspect-ratio: 16 / 8.6;
  }

  .mobile-sticky-offer {
    display: none;
  }

  .success-dialog {
    width: min(560px, calc(100% - 16px));
    max-height: calc(100dvh - 12px);
    padding: 20px 54px 16px;
  }

  .success-mark {
    width: 48px;
    height: 48px;
    margin-bottom: 7px;
  }

  .success-mark svg {
    width: 26px;
    height: 26px;
  }

  .success-dialog h2 {
    font-size: 2.15rem;
  }

  .success-dialog > p:not(.eyebrow) {
    margin: 7px auto 11px;
    font-size: 13px;
    line-height: 1.35;
  }

  .success-actions {
    flex-direction: row;
    gap: 8px;
  }

  .success-actions .button {
    width: auto;
    min-height: 44px;
  }
}

@media (min-width: 560px) and (max-width: 920px) and (max-height: 520px) and (orientation: landscape) {
  .hero {
    padding-block: 5px 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(270px, .95fr);
    gap: 18px;
  }

  .hero .form-submit {
    min-width: 108px;
    padding-inline: 9px;
  }

  .hero .form-submit .button-icon {
    display: none;
  }

  .hero-lead {
    margin-block: 5px;
  }

  .field-label {
    margin-bottom: 2px;
  }

  .hero-copy > .text-link {
    min-height: 44px;
    display: inline-flex;
    margin-top: 1px;
    font-size: 11px;
  }

  .request-dialog {
    width: min(650px, calc(100% - 16px));
    max-height: calc(100dvh - 12px);
  }

  .request-dialog .dialog-body {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
    grid-template-areas:
      "eyebrow form"
      "title form"
      "copy form"
      ". book";
    align-items: start;
    column-gap: 25px;
    row-gap: 5px;
    padding: 24px 53px 18px 24px;
  }

  .request-dialog .dialog-body > .eyebrow {
    grid-area: eyebrow;
    margin: 0 0 2px;
    font-size: 8px;
  }

  .request-dialog .dialog-body h2 {
    grid-area: title;
    max-width: 12ch;
    font-size: clamp(1.65rem, 4.4vw, 2rem);
    line-height: 1;
  }

  .request-dialog .dialog-body > p:not(.eyebrow) {
    grid-area: copy;
    margin: 7px 0 0;
    font-size: 12px;
    line-height: 1.35;
  }

  .request-dialog .dialog-body form {
    grid-area: form;
    min-width: 0;
  }

  .request-dialog .dialog-body .email-row {
    gap: 6px;
  }

  .request-dialog .dialog-body .email-input,
  .request-dialog .dialog-body button[type="submit"] {
    min-height: 44px;
  }

  .request-dialog .dialog-body .form-note {
    margin-top: 5px;
    font-size: 10px;
  }

  .request-dialog .dialog-book {
    grid-area: book;
    min-height: 44px;
    margin-top: 0;
    font-size: 11px;
  }
}

@media (max-width: 559px) and (max-height: 520px) and (orientation: landscape) {
  .hero {
    min-height: 0;
    padding-block: 16px 28px;
    overflow: hidden;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .hero-lead {
    margin-block: 12px;
    font-size: 15px;
    line-height: 1.4;
  }

  .email-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .email-input,
  .form-submit,
  .hero .form-submit {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .hero-copy > .text-link {
    min-height: 44px;
    display: inline-flex;
    margin-top: 4px;
  }

  .hero-proof {
    min-width: 0;
  }

  .request-dialog {
    width: calc(100% - 12px);
    max-height: calc(100dvh - 8px);
    overflow-x: hidden;
  }

  .request-dialog .dialog-body {
    display: block;
    min-width: 0;
    padding: 48px 16px 20px;
  }

  .request-dialog .dialog-body h2 {
    max-width: 12ch;
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .request-dialog .dialog-body > p:not(.eyebrow) {
    margin: 10px 0 15px;
    font-size: 14px;
  }

  .request-dialog .dialog-body .email-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 7px;
  }

  .request-dialog .dialog-body .email-input,
  .request-dialog .dialog-body button[type="submit"] {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .request-dialog .dialog-book {
    min-height: 44px;
    margin-top: 8px;
  }
}

@media (min-width: 921px) and (max-height: 760px) {
  .hero {
    min-height: calc(100svh - var(--header-height));
    padding-block: 28px;
  }

  .hero .offer-facts {
    display: none;
  }

  .product-chapter {
    padding-block: 22px;
  }

  .demo-ribbon {
    margin-top: 16px;
    padding-top: 12px;
  }

  .demo-ribbon img {
    height: 52px;
  }

  .process {
    padding-block: 25px;
  }

  .process-list li {
    min-height: 108px;
    padding-block: 12px;
  }

  .process-shell {
    gap-block: 20px;
  }

  .objections,
  .final-cta {
    padding-block: 36px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .hero-reveal {
    opacity: 1;
    transform: none;
  }

  .hero-copy h1 em::after {
    transform: scaleX(1);
  }

  .hero-demo-card {
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .button,
  .email-input,
  .browser-frame,
  .deal-ledger,
  .plan-price,
  .product-visual,
  .desktop-proof,
  .mobile-proof,
  .demo-ribbon a,
  .phone-shell,
  .chat-widget,
  .lead-text,
  .flow-steps,
  .search-bar,
  .search-pages article,
  .final-cta-grid,
  .final-form,
  .funnel-dialog {
    border: 2px solid CanvasText;
  }

  .signal-dot {
    box-shadow: none;
  }

  .mobile-sticky-offer {
    border: 2px solid CanvasText;
  }
}
